diff options
author | Mike Frysinger <vapier@gentoo.org> | 2007-09-29 08:41:43 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2007-09-29 08:41:43 +0000 |
commit | 6c2121c3483d0a5500b37ea18c48b8fec8eef399 (patch) | |
tree | 21d4c711b43ce164521362fe6b75545145738b37 /sys-fs/ntfsprogs/ntfsprogs-2.0.0.ebuild | |
parent | pulled the (legacy) dev-lang/gnat, has been pending for a few month already (diff) | |
download | gentoo-2-6c2121c3483d0a5500b37ea18c48b8fec8eef399.tar.gz gentoo-2-6c2121c3483d0a5500b37ea18c48b8fec8eef399.tar.bz2 gentoo-2-6c2121c3483d0a5500b37ea18c48b8fec8eef399.zip |
Version bump.
(Portage version: 2.1.3.9)
Diffstat (limited to 'sys-fs/ntfsprogs/ntfsprogs-2.0.0.ebuild')
-rw-r--r-- | sys-fs/ntfsprogs/ntfsprogs-2.0.0.ebuild | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/sys-fs/ntfsprogs/ntfsprogs-2.0.0.ebuild b/sys-fs/ntfsprogs/ntfsprogs-2.0.0.ebuild new file mode 100644 index 000000000000..68fb4b67f58c --- /dev/null +++ b/sys-fs/ntfsprogs/ntfsprogs-2.0.0.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/ntfsprogs/ntfsprogs-2.0.0.ebuild,v 1.1 2007/09/29 08:41:42 vapier Exp $ + +inherit 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 ~ppc ~ppc64 ~sparc ~x86" +IUSE="crypt debug fuse gnome" + +RDEPEND="dev-libs/libconfig + 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}" + sed -i \ + -e '/CFLAGS/s:-ggdb3\>::' \ + -e '/CFLAGS/s:-O0\>::' \ + configure || die +} + +src_compile() { + econf \ + $(use_enable crypt crypto) \ + $(use_enable debug) \ + $(use_enable fuse fuse-module) \ + $(use_enable gnome gnome-vfs) \ + || die "Configure failed" + emake || die "Make failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "Install failed" + dodoc AUTHORS CREDITS ChangeLog NEWS README TODO.* \ + doc/attribute_definitions doc/*.txt doc/tunable_settings +} |