diff options
author | 2014-05-30 13:35:56 +0000 | |
---|---|---|
committer | 2014-05-30 13:35:56 +0000 | |
commit | 29a2214c5b4c2832293c784e409208d700f0e7bf (patch) | |
tree | aa2b171b4d2fcbcd994a71ede6d2195eb00c4cd4 /sys-apps/fakechroot | |
parent | New version of GIMP Lensfun (0.2.3), thanks to Mario Kicherer (bug #468788) (diff) | |
download | gentoo-2-29a2214c5b4c2832293c784e409208d700f0e7bf.tar.gz gentoo-2-29a2214c5b4c2832293c784e409208d700f0e7bf.tar.bz2 gentoo-2-29a2214c5b4c2832293c784e409208d700f0e7bf.zip |
Bump fakechroot to 2.17.2, thanks to Anthoine Bourgeois (bug #506118)
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0x2EDD52403B68AF47)
Diffstat (limited to 'sys-apps/fakechroot')
-rw-r--r-- | sys-apps/fakechroot/ChangeLog | 9 | ||||
-rw-r--r-- | sys-apps/fakechroot/fakechroot-2.17.2.ebuild | 27 |
2 files changed, 34 insertions, 2 deletions
diff --git a/sys-apps/fakechroot/ChangeLog b/sys-apps/fakechroot/ChangeLog index f53bb5deaf99..675817dd2c1b 100644 --- a/sys-apps/fakechroot/ChangeLog +++ b/sys-apps/fakechroot/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-apps/fakechroot -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/fakechroot/ChangeLog,v 1.21 2013/06/02 11:01:31 pacho Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/fakechroot/ChangeLog,v 1.22 2014/05/30 13:35:56 swift Exp $ + +*fakechroot-2.17.2 (30 May 2014) + + 30 May 2014; Sven Vermeulen <swift@gentoo.org> +fakechroot-2.17.2.ebuild: + Bump fakechroot to 2.17.2, thanks to Anthoine Bourgeois (bug #506118) 02 Jun 2013; Pacho Ramos <pacho@gentoo.org> metadata.xml: Cleanup due bug #328951 diff --git a/sys-apps/fakechroot/fakechroot-2.17.2.ebuild b/sys-apps/fakechroot/fakechroot-2.17.2.ebuild new file mode 100644 index 000000000000..ad8082f5da80 --- /dev/null +++ b/sys-apps/fakechroot/fakechroot-2.17.2.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/fakechroot/fakechroot-2.17.2.ebuild,v 1.1 2014/05/30 13:35:56 swift Exp $ + +EAPI=5 +inherit eutils + +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 +} + +src_install() { + emake DESTDIR="${D}" install + dodoc NEWS.md README.md THANKS + find "${D}" -name '*.la' -exec rm -f '{}' + +} |