Gentoo Archives: gentoo-commits

From: "Patrick McLean (chutzpah)" <chutzpah@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-fs/ntfs3g: ChangeLog ntfs3g-2009.3.8.ebuild
Date: Mon, 30 Mar 2009 17:18:10
Message-Id: E1LoL7g-00085z-Mc@stork.gentoo.org
1 chutzpah 09/03/30 17:18:08
2
3 Modified: ChangeLog
4 Added: ntfs3g-2009.3.8.ebuild
5 Log:
6 Version bump.
7 (Portage version: 2.1.6.11/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.77 sys-fs/ntfs3g/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/ntfs3g/ChangeLog?rev=1.77&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/ntfs3g/ChangeLog?rev=1.77&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/ntfs3g/ChangeLog?r1=1.76&r2=1.77
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-fs/ntfs3g/ChangeLog,v
19 retrieving revision 1.76
20 retrieving revision 1.77
21 diff -u -r1.76 -r1.77
22 --- ChangeLog 12 Feb 2009 16:21:24 -0000 1.76
23 +++ ChangeLog 30 Mar 2009 17:18:08 -0000 1.77
24 @@ -1,6 +1,11 @@
25 # ChangeLog for sys-fs/ntfs3g
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/ntfs3g/ChangeLog,v 1.76 2009/02/12 16:21:24 chutzpah Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/ntfs3g/ChangeLog,v 1.77 2009/03/30 17:18:08 chutzpah Exp $
29 +
30 +*ntfs3g-2009.3.8 (30 Mar 2009)
31 +
32 + 30 Mar 2009; Patrick McLean <chutzpah@g.o> +ntfs3g-2009.3.8.ebuild:
33 + Version bump.
34
35 *ntfs3g-2009.2.1 (12 Feb 2009)
36
37
38
39
40 1.1 sys-fs/ntfs3g/ntfs3g-2009.3.8.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/ntfs3g/ntfs3g-2009.3.8.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/ntfs3g/ntfs3g-2009.3.8.ebuild?rev=1.1&content-type=text/plain
44
45 Index: ntfs3g-2009.3.8.ebuild
46 ===================================================================
47 # Copyright 1999-2009 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/sys-fs/ntfs3g/ntfs3g-2009.3.8.ebuild,v 1.1 2009/03/30 17:18:08 chutzpah Exp $
50
51 MY_PN="${PN/3g/-3g}"
52 MY_P="${MY_PN}-${PV}"
53
54 DESCRIPTION="Open source read-write NTFS driver that runs under FUSE"
55 HOMEPAGE="http://www.ntfs-3g.org"
56 SRC_URI="http://www.ntfs-3g.org/${MY_P}.tgz"
57
58 LICENSE="GPL-2"
59 SLOT="0"
60 KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
61 IUSE="debug hal suid"
62
63 RDEPEND="hal? ( sys-apps/hal )"
64 DEPEND="${RDEPEND}"
65
66 S="${WORKDIR}/${MY_P}"
67
68 src_compile() {
69 econf \
70 --docdir="/usr/share/doc/${PF}" \
71 --enable-ldscript \
72 --disable-ldconfig \
73 $(use_enable debug)
74 emake || die "emake failed"
75 }
76
77 src_install() {
78 emake DESTDIR="${D}" install || die "install failed"
79
80 prepalldocs
81 dodoc AUTHORS ChangeLog CREDITS
82
83 use suid && fperms u+s "/bin/${MY_PN}"
84
85 if use hal; then
86 insinto /etc/hal/fdi/policy/
87 newins "${FILESDIR}/10-ntfs3g.fdi.2009" "10-ntfs3g.fdi"
88 fi
89 }
90
91 pkg_postinst() {
92 if use suid; then
93 ewarn
94 ewarn "You have chosen to install ${PN} with the binary setuid root. This"
95 ewarn "means that if there any undetected vulnerabilities in the binary,"
96 ewarn "then local users may be able to gain root access on your machine."
97 ewarn
98 fi
99 }