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.1120.ebuild ntfs3g-1.913.ebuild
Date: Mon, 26 Nov 2007 17:17:49
Message-Id: E1IwhaY-0006td-Tg@stork.gentoo.org
1 chutzpah 07/11/26 17:17:42
2
3 Modified: ChangeLog
4 Added: ntfs3g-1.1120.ebuild
5 Removed: ntfs3g-1.913.ebuild
6 Log:
7 Version bump, add "debug" USE flag (bug #200278). Clean out older version 1.913.
8 (Portage version: 2.1.4_rc3)
9
10 Revision Changes Path
11 1.48 sys-fs/ntfs3g/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/ntfs3g/ChangeLog?rev=1.48&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/ntfs3g/ChangeLog?rev=1.48&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/ntfs3g/ChangeLog?r1=1.47&r2=1.48
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-fs/ntfs3g/ChangeLog,v
20 retrieving revision 1.47
21 retrieving revision 1.48
22 diff -u -r1.47 -r1.48
23 --- ChangeLog 5 Nov 2007 02:57:05 -0000 1.47
24 +++ ChangeLog 26 Nov 2007 17:17:42 -0000 1.48
25 @@ -1,6 +1,13 @@
26 # ChangeLog for sys-fs/ntfs3g
27 # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/ntfs3g/ChangeLog,v 1.47 2007/11/05 02:57:05 chutzpah Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/ntfs3g/ChangeLog,v 1.48 2007/11/26 17:17:42 chutzpah Exp $
30 +
31 +*ntfs3g-1.1120 (26 Nov 2007)
32 +
33 + 26 Nov 2007; Patrick McLean <chutzpah@g.o> -ntfs3g-1.913.ebuild,
34 + +ntfs3g-1.1120.ebuild:
35 + Version bump, add "debug" USE flag (bug #200278). Clean out older version
36 + 1.913.
37
38 *ntfs3g-1.1104 (05 Nov 2007)
39
40
41
42
43 1.1 sys-fs/ntfs3g/ntfs3g-1.1120.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/ntfs3g/ntfs3g-1.1120.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/ntfs3g/ntfs3g-1.1120.ebuild?rev=1.1&content-type=text/plain
47
48 Index: ntfs3g-1.1120.ebuild
49 ===================================================================
50 # Copyright 1999-2007 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.1120.ebuild,v 1.1 2007/11/26 17:17:42 chutzpah Exp $
53
54 inherit multilib toolchain-funcs
55
56 MY_PN="${PN/3g/-3g}"
57 MY_P="${MY_PN}-${PV}"
58
59 DESCRIPTION="Open source read-write NTFS driver that runs under FUSE"
60 HOMEPAGE="http://www.ntfs-3g.org"
61 SRC_URI="http://www.ntfs-3g.org/${MY_P}.tgz"
62
63 LICENSE="GPL-2"
64 SLOT="0"
65 KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
66 IUSE="debug suid"
67
68 RDEPEND=">=sys-fs/fuse-2.6.3"
69 DEPEND="${RDEPEND}
70 dev-util/pkgconfig"
71
72 S="${WORKDIR}/${MY_P}"
73
74 src_compile() {
75 econf \
76 --disable-ldconfig \
77 --libdir=/$(get_libdir) \
78 $(use_enable debug)
79
80 emake || die "emake failed"
81 }
82
83 src_install() {
84 emake DESTDIR="${D}" install || die "install failed"
85
86 dodir /usr/$(get_libdir)/
87 mv "${D}"/$(get_libdir)/*.{,l}a "${D}"/usr/$(get_libdir)/
88
89 dodoc AUTHORS ChangeLog CREDITS NEWS README
90
91 gen_usr_ldscript libntfs-3g.so
92
93 use suid && fperms u+s /bin/${MY_PN}
94 }
95
96 pkg_postinst() {
97 if use suid; then
98 ewarn
99 ewarn "You have chosen to install ${PN} with the binary setuid root. This"
100 ewarn "means that if there any undetected vulnerabilities in the binary,"
101 ewarn "then local users may be able to gain root access on your machine."
102 ewarn
103 fi
104 }
105
106
107
108 --
109 gentoo-commits@g.o mailing list