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-1.2918.ebuild
Date: Mon, 06 Oct 2008 14:57:39
Message-Id: E1KmrWi-0005aI-Ii@stork.gentoo.org
1 chutzpah 08/10/06 14:57:36
2
3 Modified: ChangeLog
4 Added: ntfs3g-1.2918.ebuild
5 Log:
6 Version bump (bug #239306)
7 (Portage version: 2.2_rc11/cvs/Linux 2.6.27-rc8-00084-gfec6ed1 x86_64)
8
9 Revision Changes Path
10 1.73 sys-fs/ntfs3g/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/ntfs3g/ChangeLog?rev=1.73&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/ntfs3g/ChangeLog?rev=1.73&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/ntfs3g/ChangeLog?r1=1.72&r2=1.73
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-fs/ntfs3g/ChangeLog,v
19 retrieving revision 1.72
20 retrieving revision 1.73
21 diff -u -r1.72 -r1.73
22 --- ChangeLog 20 Aug 2008 19:17:01 -0000 1.72
23 +++ ChangeLog 6 Oct 2008 14:57:36 -0000 1.73
24 @@ -1,6 +1,11 @@
25 # ChangeLog for sys-fs/ntfs3g
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/ntfs3g/ChangeLog,v 1.72 2008/08/20 19:17:01 chutzpah Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/ntfs3g/ChangeLog,v 1.73 2008/10/06 14:57:36 chutzpah Exp $
29 +
30 +*ntfs3g-1.2918 (06 Oct 2008)
31 +
32 + 06 Oct 2008; Patrick McLean <chutzpah@g.o> +ntfs3g-1.2918.ebuild:
33 + Version bump (bug #239306)
34
35 *ntfs3g-1.2812 (20 Aug 2008)
36
37
38
39
40 1.1 sys-fs/ntfs3g/ntfs3g-1.2918.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/ntfs3g/ntfs3g-1.2918.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/ntfs3g/ntfs3g-1.2918.ebuild?rev=1.1&content-type=text/plain
44
45 Index: ntfs3g-1.2918.ebuild
46 ===================================================================
47 # Copyright 1999-2008 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/sys-fs/ntfs3g/ntfs3g-1.2918.ebuild,v 1.1 2008/10/06 14:57:36 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 doins "${FILESDIR}/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 }