diff options
author | 2011-09-07 10:47:09 +0000 | |
---|---|---|
committer | 2011-09-07 10:47:09 +0000 | |
commit | b68bd57baf25f3682c8b13a244fdfa31b07f1589 (patch) | |
tree | 7d5e38276c9982c54489165077d87d03ad63e052 /net-fs/nfs4-acl-tools/nfs4-acl-tools-0.3.3.ebuild | |
parent | Marked stable on AMD64 based on arch testing by Elijah "Armageddon" El Lazkan... (diff) | |
download | gentoo-2-b68bd57baf25f3682c8b13a244fdfa31b07f1589.tar.gz gentoo-2-b68bd57baf25f3682c8b13a244fdfa31b07f1589.tar.bz2 gentoo-2-b68bd57baf25f3682c8b13a244fdfa31b07f1589.zip |
Cleanup the ebuild to eapi4, fix jobserver-not-avail warning, drop overshadowed old version.
(Portage version: 2.2.0_alpha54/cvs/Linux x86_64)
Diffstat (limited to 'net-fs/nfs4-acl-tools/nfs4-acl-tools-0.3.3.ebuild')
-rw-r--r-- | net-fs/nfs4-acl-tools/nfs4-acl-tools-0.3.3.ebuild | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/net-fs/nfs4-acl-tools/nfs4-acl-tools-0.3.3.ebuild b/net-fs/nfs4-acl-tools/nfs4-acl-tools-0.3.3.ebuild index ded42649dadc..8a10e33279a6 100644 --- a/net-fs/nfs4-acl-tools/nfs4-acl-tools-0.3.3.ebuild +++ b/net-fs/nfs4-acl-tools/nfs4-acl-tools-0.3.3.ebuild @@ -1,6 +1,8 @@ -# Copyright 1999-2009 Gentoo Foundation +# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-fs/nfs4-acl-tools/nfs4-acl-tools-0.3.3.ebuild,v 1.1 2009/02/15 20:55:31 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-fs/nfs4-acl-tools/nfs4-acl-tools-0.3.3.ebuild,v 1.2 2011/09/07 10:47:08 scarabeus Exp $ + +EAPI=4 DESCRIPTION="Commandline and GUI tools that deal directly with NFSv4 ACLs" HOMEPAGE="http://www.citi.umich.edu/projects/nfsv4/linux/" @@ -13,7 +15,12 @@ IUSE="" DEPEND="sys-apps/attr" +src_compile() { + # not gnumakefile :/ + make || die +} + src_install() { - emake DESTDIR="${D}" install || die "make install failed" - dodoc CHANGELOG INSTALL README TODO + make DESTDIR="${D}" install || die + dodoc README TODO } |