diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2010-09-24 09:32:31 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2010-09-24 09:32:31 +0000 |
commit | ce3959600de91579c898b7ce54a14d3e0fa1ba81 (patch) | |
tree | 65f399a55ff00d16c71338813070ef02a835ecdc /sys-apps/fakechroot/fakechroot-2.11.ebuild | |
parent | Bug #331753 - Only pull in openssl-0.9.8* on x86 since it's provided by app-e... (diff) | |
download | gentoo-2-ce3959600de91579c898b7ce54a14d3e0fa1ba81.tar.gz gentoo-2-ce3959600de91579c898b7ce54a14d3e0fa1ba81.tar.bz2 gentoo-2-ce3959600de91579c898b7ce54a14d3e0fa1ba81.zip |
Version bump.
(Portage version: 2.2_rc86/cvs/Linux x86_64)
Diffstat (limited to 'sys-apps/fakechroot/fakechroot-2.11.ebuild')
-rw-r--r-- | sys-apps/fakechroot/fakechroot-2.11.ebuild | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/sys-apps/fakechroot/fakechroot-2.11.ebuild b/sys-apps/fakechroot/fakechroot-2.11.ebuild new file mode 100644 index 000000000000..6843b12ace89 --- /dev/null +++ b/sys-apps/fakechroot/fakechroot-2.11.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/fakechroot/fakechroot-2.11.ebuild,v 1.1 2010/09/24 09:32:31 ssuominen Exp $ + +EAPI=2 + +DESCRIPTION="Provide a faked chroot environment without requiring root privileges" +HOMEPAGE="http://fakechroot.alioth.debian.org/" +SRC_URI="mirror://debian/pool/main/f/${PN}/${PN}_${PV}.orig.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RESTRICT="test" + +src_configure() { + econf \ + --disable-static \ + --disable-dependency-tracking +} + +src_install() { + emake DESTDIR="${D}" install || die + dodoc NEWS README THANKS + find "${D}" -name '*.la' -exec rm -f '{}' + +} |