Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: sys-cluster/blcr/
Date: Wed, 23 Sep 2015 12:48:16
Message-Id: 1443009741.e0e7af2e3f62a9959094f1a2857597d69f929d3a.jlec@gentoo
1 commit: e0e7af2e3f62a9959094f1a2857597d69f929d3a
2 Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 23 12:02:21 2015 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 23 12:02:21 2015 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=e0e7af2e
7
8 sys-cluster/blcr: Use default functions
9
10 Package-Manager: portage-2.2.21
11 Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
12
13 sys-cluster/blcr/blcr-0.8.4.ebuild | 10 +++++-----
14 1 file changed, 5 insertions(+), 5 deletions(-)
15
16 diff --git a/sys-cluster/blcr/blcr-0.8.4.ebuild b/sys-cluster/blcr/blcr-0.8.4.ebuild
17 index feaff9b..8145dd0 100644
18 --- a/sys-cluster/blcr/blcr-0.8.4.ebuild
19 +++ b/sys-cluster/blcr/blcr-0.8.4.ebuild
20 @@ -1,4 +1,4 @@
21 -# Copyright 1999-2014 Gentoo Foundation
22 +# Copyright 1999-2015 Gentoo Foundation
23 # Distributed under the terms of the GNU General Public License v2
24 # $Id$
25
26 @@ -41,13 +41,13 @@ pkg_setup() {
27 src_install() {
28 dodoc README NEWS
29 cd "${S}"/util || die
30 - emake DESTDIR="${D}" install
31 + default
32 cd "${S}"/libcr || die
33 - emake DESTDIR="${D}" install
34 + default
35 cd "${S}"/man || die
36 - emake DESTDIR="${D}" install
37 + default
38 cd "${S}"/include || die
39 - emake DESTDIR="${D}" install
40 + default
41 linux-mod_src_install
42 }