Gentoo Archives: gentoo-commits

From: "Diego Petteno (flameeyes)" <flameeyes@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-fs/ntfsprogs: ChangeLog ntfsprogs-2.0.0-r3.ebuild ntfsprogs-2.0.0-r2.ebuild
Date: Wed, 30 Mar 2011 14:41:52
Message-Id: 20110330144143.2E4CF20057@flycatcher.gentoo.org
1 flameeyes 11/03/30 14:41:43
2
3 Modified: ChangeLog
4 Added: ntfsprogs-2.0.0-r3.ebuild
5 Removed: ntfsprogs-2.0.0-r2.ebuild
6 Log:
7 Revision bump: fix building with net-libs/gnutls[nettle] (bug #361307); avoid playing with configure to remove cflags mangling on USE=debug; only depend on libconfig when USE=crypt is enabled.
8
9 (Portage version: 2.2.0_alpha29/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.73 sys-fs/ntfsprogs/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/ntfsprogs/ChangeLog?rev=1.73&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/ntfsprogs/ChangeLog?rev=1.73&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/ntfsprogs/ChangeLog?r1=1.72&r2=1.73
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/sys-fs/ntfsprogs/ChangeLog,v
21 retrieving revision 1.72
22 retrieving revision 1.73
23 diff -u -r1.72 -r1.73
24 --- ChangeLog 13 Dec 2010 08:49:59 -0000 1.72
25 +++ ChangeLog 30 Mar 2011 14:41:43 -0000 1.73
26 @@ -1,6 +1,15 @@
27 # ChangeLog for sys-fs/ntfsprogs
28 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/ntfsprogs/ChangeLog,v 1.72 2010/12/13 08:49:59 xmw Exp $
30 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/ntfsprogs/ChangeLog,v 1.73 2011/03/30 14:41:43 flameeyes Exp $
32 +
33 +*ntfsprogs-2.0.0-r3 (30 Mar 2011)
34 +
35 + 30 Mar 2011; Diego E. Pettenò <flameeyes@g.o>
36 + -ntfsprogs-2.0.0-r2.ebuild, +ntfsprogs-2.0.0-r3.ebuild,
37 + +files/ntfsprogs-2.0.0-cryptolink.patch:
38 + Revision bump: fix building with net-libs/gnutls[nettle] (bug #361307); avoid
39 + playing with configure to remove cflags mangling on USE=debug; only depend on
40 + libconfig when USE=crypt is enabled.
41
42 13 Dec 2010; Michael Weber <xmw@g.o> ntfsprogs-2.0.0-r1.ebuild:
43 sparc stable (bug 275704)
44
45
46
47 1.1 sys-fs/ntfsprogs/ntfsprogs-2.0.0-r3.ebuild
48
49 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/ntfsprogs/ntfsprogs-2.0.0-r3.ebuild?rev=1.1&view=markup
50 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/ntfsprogs/ntfsprogs-2.0.0-r3.ebuild?rev=1.1&content-type=text/plain
51
52 Index: ntfsprogs-2.0.0-r3.ebuild
53 ===================================================================
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-fs/ntfsprogs/ntfsprogs-2.0.0-r3.ebuild,v 1.1 2011/03/30 14:41:43 flameeyes Exp $
57
58 inherit eutils flag-o-matic autotools
59
60 DESCRIPTION="User tools for NTFS filesystems"
61 HOMEPAGE="http://www.linux-ntfs.org/"
62 SRC_URI="mirror://sourceforge/linux-ntfs/${P}.tar.gz"
63
64 LICENSE="GPL-2"
65 SLOT="0"
66 KEYWORDS="~amd64 ~mips ~ppc ~ppc64 ~sparc ~x86"
67 IUSE="crypt debug fuse gnome minimal"
68
69 RDEPEND="
70 fuse? ( >=sys-fs/fuse-2.7.0 )
71 crypt? (
72 >=dev-libs/libgcrypt-1.2.0
73 >=net-libs/gnutls-1.2.8
74 >=dev-libs/libconfig-1.0.1
75 )
76 gnome? (
77 >=dev-libs/glib-2.0
78 >=gnome-base/gnome-vfs-2.0
79 )"
80 DEPEND="${RDEPEND}
81 !=sys-fs/ntfs3g-0.1_beta20070714
82 dev-util/pkgconfig"
83
84 src_unpack() {
85 unpack ${A}
86 cd "${S}"
87 #epatch "${FILESDIR}"/${P}-extras.patch #218601
88 epatch "${FILESDIR}"/${P}-erange.patch #329445
89 epatch "${FILESDIR}"/${P}-cryptolink.patch #361307
90
91 use minimal || sed -i 's:^EXTRA_PROGRAMS.*+\?=:bin_PROGRAMS +=:' ntfsprogs/Makefile.am #218601
92
93 eautoreconf
94 }
95
96 src_compile() {
97 # Avoid --enable-debug as that will set -O0 -ggdb3
98 use debug && append-flags -DDEBUG
99
100 econf \
101 $(use_enable crypt crypto) \
102 $(use_enable fuse ntfsmount) \
103 $(use_enable gnome gnome-vfs) \
104 || die "Configure failed"
105
106 emake || die "Make failed"
107 }
108
109 src_install() {
110 emake DESTDIR="${D}" install || die "Install failed"
111 mv "${D}"/sbin/mkfs.ntfs "${D}"/usr/sbin/ || die
112 if ! use minimal ; then
113 mv "${D}"/usr/bin/ntfsck "${D}"/sbin/ || die
114 dosym ntfsck /sbin/fsck.ntfs
115 fi
116 if use fuse ; then
117 mv "${D}"/sbin/mount.{fuse.ntfs,ntfs-fuse} "${D}"/usr/bin/ || die
118 fi
119
120 dodoc AUTHORS CREDITS ChangeLog NEWS README TODO.* \
121 doc/attribute_definitions doc/*.txt doc/tunable_settings
122 }