blob: b2e566e80a77857120be4f22f00a5b82b3beaeca (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-fs/ntfsprogs/ntfsprogs-1.12.1.ebuild,v 1.7 2006/03/09 22:29:16 hansmi Exp $
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 ppc ~sparc x86"
IUSE="gnome fuse debug"
RDEPEND="fuse? ( >=sys-fs/fuse-2.3.0 )
gnome? (
>=dev-libs/glib-2.0
>=gnome-base/gnome-vfs-2.0
)"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
src_compile() {
sed -i -e 's:-ggdb3::' configure
econf \
$(use_enable gnome gnome-vfs) \
$(use_enable debug) \
$(use_enable fuse fuse-module) \
|| die "Configure failed"
emake || die "Make failed"
}
src_install() {
make DESTDIR="${D}" install || die "Install failed"
dodoc AUTHORS CREDITS ChangeLog NEWS README TODO.* \
doc/attribute_definitions doc/*.txt doc/tunable_settings
}
|