Gentoo Archives: gentoo-commits

From: "Chris PeBenito (pebenito)" <pebenito@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/checkpolicy: checkpolicy-2.0.16.ebuild
Date: Fri, 03 Oct 2008 03:37:27
Message-Id: E1KlbTn-00085f-W7@stork.gentoo.org
1 pebenito 08/10/03 03:37:23
2
3 Modified: checkpolicy-2.0.16.ebuild
4 Log:
5 fix checkpolicy repoman complaints.
6 (Portage version: 2.2_rc11/cvs/Linux 2.6.24-gentoo-r3 x86_64)
7
8 Revision Changes Path
9 1.2 sys-apps/checkpolicy/checkpolicy-2.0.16.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/checkpolicy/checkpolicy-2.0.16.ebuild?rev=1.2&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/checkpolicy/checkpolicy-2.0.16.ebuild?rev=1.2&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/checkpolicy/checkpolicy-2.0.16.ebuild?r1=1.1&r2=1.2
14
15 Index: checkpolicy-2.0.16.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/sys-apps/checkpolicy/checkpolicy-2.0.16.ebuild,v
18 retrieving revision 1.1
19 retrieving revision 1.2
20 diff -u -r1.1 -r1.2
21 --- checkpolicy-2.0.16.ebuild 3 Oct 2008 03:31:56 -0000 1.1
22 +++ checkpolicy-2.0.16.ebuild 3 Oct 2008 03:37:23 -0000 1.2
23 @@ -1,6 +1,6 @@
24 # Copyright 1999-2008 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/checkpolicy/checkpolicy-2.0.16.ebuild,v 1.1 2008/10/03 03:31:56 pebenito Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/checkpolicy/checkpolicy-2.0.16.ebuild,v 1.2 2008/10/03 03:37:23 pebenito Exp $
28
29 IUSE="debug"
30
31 @@ -25,13 +25,11 @@
32
33 src_unpack() {
34 unpack ${A}
35 - cd ${S}
36
37 [ ! -z "${BUGFIX_PATCH}" ] && epatch "${BUGFIX_PATCH}"
38 }
39
40 src_compile() {
41 - cd ${S}
42 emake YACC="bison -y" || die
43 }
44
45 @@ -39,7 +37,8 @@
46 make DESTDIR="${D}" install
47
48 if useq debug; then
49 - dobin ${S}/test/{dismod,dispol}
50 + dobin "${S}/test/dismod"
51 + dobin "${S}/test/dispol"
52 fi
53 }