diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2012-06-07 09:10:50 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2012-06-07 09:10:50 +0000 |
commit | 8b2d50c79c17e1f5bc69d154f2e8c7cf5157c5aa (patch) | |
tree | 3b37cd5842176388e5df9744aa04a87aaa765204 /sys-apps/fakeroot | |
parent | Version bump. (diff) | |
download | gentoo-2-8b2d50c79c17e1f5bc69d154f2e8c7cf5157c5aa.tar.gz gentoo-2-8b2d50c79c17e1f5bc69d154f2e8c7cf5157c5aa.tar.bz2 gentoo-2-8b2d50c79c17e1f5bc69d154f2e8c7cf5157c5aa.zip |
Version bump. Fix automagic sys-apps/acl dependency.
(Portage version: 2.2.0_alpha110/cvs/Linux x86_64)
Diffstat (limited to 'sys-apps/fakeroot')
-rw-r--r-- | sys-apps/fakeroot/ChangeLog | 7 | ||||
-rw-r--r-- | sys-apps/fakeroot/fakeroot-1.18.4.ebuild | 34 |
2 files changed, 40 insertions, 1 deletions
diff --git a/sys-apps/fakeroot/ChangeLog b/sys-apps/fakeroot/ChangeLog index a5bdfa454362..0fb9a4bbf28d 100644 --- a/sys-apps/fakeroot/ChangeLog +++ b/sys-apps/fakeroot/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-apps/fakeroot # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/fakeroot/ChangeLog,v 1.85 2012/05/12 17:01:29 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/fakeroot/ChangeLog,v 1.86 2012/06/07 09:10:50 ssuominen Exp $ + +*fakeroot-1.18.4 (07 Jun 2012) + + 07 Jun 2012; Samuli Suominen <ssuominen@gentoo.org> +fakeroot-1.18.4.ebuild: + Version bump. Fix automagic sys-apps/acl dependency. *fakeroot-1.18.3 (12 May 2012) diff --git a/sys-apps/fakeroot/fakeroot-1.18.4.ebuild b/sys-apps/fakeroot/fakeroot-1.18.4.ebuild new file mode 100644 index 000000000000..61718791cedd --- /dev/null +++ b/sys-apps/fakeroot/fakeroot-1.18.4.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/fakeroot/fakeroot-1.18.4.ebuild,v 1.1 2012/06/07 09:10:50 ssuominen Exp $ + +EAPI=4 +inherit eutils + +DESCRIPTION="A fake root environment by means of LD_PRELOAD and SysV IPC (or TCP) trickery" +HOMEPAGE="http://packages.qa.debian.org/f/fakeroot.html" +SRC_URI="mirror://debian/pool/main/${PN:0:1}/${PN}/${P/-/_}.orig.tar.bz2" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux" +IUSE="acl static-libs test" + +RDEPEND="" +DEPEND="${RDEPEND} + acl? ( sys-apps/acl ) + test? ( app-arch/sharutils )" + +DOCS="AUTHORS BUGS DEBUG README doc/README.saving" + +src_configure() { + export ac_cv_header_sys_acl_h=$(usex acl) + + econf \ + $(use_enable static-libs static) +} + +src_install() { + default + use static-libs || find "${ED}" -name '*.la' -exec rm -f {} + +} |