blob: e491561f677ae365e363e7c7830a5b47e373db40 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-fs/ntfsprogs/ntfsprogs-1.13.1-r1.ebuild,v 1.9 2009/10/17 22:15:49 arfrever Exp $
inherit autotools eutils
DESCRIPTION="User tools for NTFS filesystems"
HOMEPAGE="http://www.linux-ntfs.org/"
SRC_URI="mirror://sourceforge/linux-ntfs/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~mips ppc ppc64 sparc x86"
IUSE="crypt debug fuse gnome"
RDEPEND="fuse? ( >=sys-fs/fuse-2.3.0 )
crypt? ( >=dev-libs/libgcrypt-1.2.0 >=net-libs/gnutls-1.2.8 )
gnome? (
>=dev-libs/glib-2.0
>=gnome-base/gnome-vfs-2.0
)"
DEPEND="${RDEPEND}
!=sys-fs/ntfs3g-0.1_beta20070714
dev-util/pkgconfig"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-resize-vista.patch
epatch "${FILESDIR}"/${P}-gnutls-2.8.patch
sed -i -e 's:-ggdb3::' configure.ac
eautoreconf
}
src_compile() {
econf \
$(use_enable crypt crypto) \
$(use_enable debug) \
$(use_enable fuse fuse-module) \
$(use_enable gnome gnome-vfs)
emake || die "emake failed"
emake extras || die "emake extras failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dobin ntfsprogs/.libs/{ntfsdump_logfile,ntfswipe,ntfstruncate,ntfsmove,ntfsmftalloc} || die "dobin failed"
if use crypt; then
dobin ntfsprogs/.libs/ntfsdecrypt || die "dobin failed"
fi
dodoc AUTHORS CREDITS ChangeLog NEWS README TODO.* \
doc/attribute_definitions doc/*.txt doc/tunable_settings
}
|