diff options
author | 2010-11-14 09:05:32 +0000 | |
---|---|---|
committer | 2010-11-14 09:05:32 +0000 | |
commit | 7c95f5000e4be86abc1c3cd59c9d6d6d99d7f011 (patch) | |
tree | c45b0be2a52672bba4dd55aefdf37775309893c4 /sys-apps/fakechroot/fakechroot-2.12.ebuild | |
parent | Automated update of use.local.desc (diff) | |
download | gentoo-2-7c95f5000e4be86abc1c3cd59c9d6d6d99d7f011.tar.gz gentoo-2-7c95f5000e4be86abc1c3cd59c9d6d6d99d7f011.tar.bz2 gentoo-2-7c95f5000e4be86abc1c3cd59c9d6d6d99d7f011.zip |
Version bump.
(Portage version: 2.2.0_alpha4/cvs/Linux x86_64)
Diffstat (limited to 'sys-apps/fakechroot/fakechroot-2.12.ebuild')
-rw-r--r-- | sys-apps/fakechroot/fakechroot-2.12.ebuild | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/sys-apps/fakechroot/fakechroot-2.12.ebuild b/sys-apps/fakechroot/fakechroot-2.12.ebuild new file mode 100644 index 000000000000..48f559fcff74 --- /dev/null +++ b/sys-apps/fakechroot/fakechroot-2.12.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.12.ebuild,v 1.1 2010/11/14 09:05:32 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 '{}' + +} |