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