Gentoo Archives: gentoo-commits

From: "Matt Turner (mattst88)" <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-auth/pam_mount: ChangeLog pam_mount-2.11.ebuild
Date: Tue, 30 Aug 2011 20:37:10
Message-Id: 20110830203700.2DD0E2004C@flycatcher.gentoo.org
1 mattst88 11/08/30 20:37:00
2
3 Modified: ChangeLog pam_mount-2.11.ebuild
4 Log:
5 Don't install selinux files with USE=-selinux. Thanks to Agostino Sarubbo for noticing in bug 380783.
6
7 (Portage version: 2.1.10.3/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.58 sys-auth/pam_mount/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/pam_mount/ChangeLog?rev=1.58&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/pam_mount/ChangeLog?rev=1.58&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/pam_mount/ChangeLog?r1=1.57&r2=1.58
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-auth/pam_mount/ChangeLog,v
19 retrieving revision 1.57
20 retrieving revision 1.58
21 diff -u -r1.57 -r1.58
22 --- ChangeLog 25 Aug 2011 23:44:53 -0000 1.57
23 +++ ChangeLog 30 Aug 2011 20:37:00 -0000 1.58
24 @@ -1,6 +1,10 @@
25 # ChangeLog for sys-auth/pam_mount
26 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_mount/ChangeLog,v 1.57 2011/08/25 23:44:53 flameeyes Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_mount/ChangeLog,v 1.58 2011/08/30 20:37:00 mattst88 Exp $
29 +
30 + 30 Aug 2011; Matt Turner <mattst88@g.o> pam_mount-2.11.ebuild:
31 + Don't install selinux files with USE=-selinux. Thanks to Agostino Sarubbo for
32 + noticing in bug 380783.
33
34 25 Aug 2011; Diego E. Pettenò <flameeyes@g.o> pam_mount-2.11.ebuild:
35 QA: run eautoreconf to avoid maintainer-mode rebuild.
36
37
38
39 1.4 sys-auth/pam_mount/pam_mount-2.11.ebuild
40
41 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/pam_mount/pam_mount-2.11.ebuild?rev=1.4&view=markup
42 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/pam_mount/pam_mount-2.11.ebuild?rev=1.4&content-type=text/plain
43 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/pam_mount/pam_mount-2.11.ebuild?r1=1.3&r2=1.4
44
45 Index: pam_mount-2.11.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/sys-auth/pam_mount/pam_mount-2.11.ebuild,v
48 retrieving revision 1.3
49 retrieving revision 1.4
50 diff -u -r1.3 -r1.4
51 --- pam_mount-2.11.ebuild 25 Aug 2011 23:44:53 -0000 1.3
52 +++ pam_mount-2.11.ebuild 30 Aug 2011 20:37:00 -0000 1.4
53 @@ -1,6 +1,6 @@
54 # Copyright 1999-2011 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_mount/pam_mount-2.11.ebuild,v 1.3 2011/08/25 23:44:53 flameeyes Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_mount/pam_mount-2.11.ebuild,v 1.4 2011/08/30 20:37:00 mattst88 Exp $
58
59 EAPI=4
60
61 @@ -41,6 +41,7 @@
62 }
63
64 src_install() {
65 - emake DESTDIR="${D}" install
66 + default
67 + use selinux || rm -r "${D}"/etc/selinux
68 dodoc doc/*.txt
69 }