diff options
author | Mike Kelly <pioto@gentoo.org> | 2007-01-15 03:29:44 +0000 |
---|---|---|
committer | Mike Kelly <pioto@gentoo.org> | 2007-01-15 03:29:44 +0000 |
commit | 2b94d8ed0cb2dbf42badbfca13661df8c9b23abc (patch) | |
tree | 2aca89c6af4047472101399bb4c56fc86eeaf100 /app-admin | |
parent | Remove debug expression now that beagle uses a different way and its more sta... (diff) | |
download | gentoo-2-2b94d8ed0cb2dbf42badbfca13661df8c9b23abc.tar.gz gentoo-2-2b94d8ed0cb2dbf42badbfca13661df8c9b23abc.tar.bz2 gentoo-2-2b94d8ed0cb2dbf42badbfca13661df8c9b23abc.zip |
Add a patch to really really fix Bug #162008.
(Portage version: 2.1.2_rc4-r8)
Diffstat (limited to 'app-admin')
-rw-r--r-- | app-admin/eselect/ChangeLog | 6 | ||||
-rw-r--r-- | app-admin/eselect/eselect-1.0.8.ebuild | 12 | ||||
-rw-r--r-- | app-admin/eselect/files/eselect-1.0.8-fix-parallel-install.patch | 13 |
3 files changed, 29 insertions, 2 deletions
diff --git a/app-admin/eselect/ChangeLog b/app-admin/eselect/ChangeLog index 0b894bdf84ea..82aed0894675 100644 --- a/app-admin/eselect/ChangeLog +++ b/app-admin/eselect/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-admin/eselect # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/eselect/ChangeLog,v 1.51 2007/01/14 21:15:14 pioto Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/eselect/ChangeLog,v 1.52 2007/01/15 03:29:44 pioto Exp $ + + 15 Jan 2007; Mike Kelly <pioto@gentoo.org> + +files/eselect-1.0.8-fix-parallel-install.patch, eselect-1.0.8.ebuild: + Add a patch to really really fix Bug #162008. *eselect-1.0.8 (14 Jan 2007) diff --git a/app-admin/eselect/eselect-1.0.8.ebuild b/app-admin/eselect/eselect-1.0.8.ebuild index f32e165260fc..67cd332a75a4 100644 --- a/app-admin/eselect/eselect-1.0.8.ebuild +++ b/app-admin/eselect/eselect-1.0.8.ebuild @@ -1,6 +1,8 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/eselect/eselect-1.0.8.ebuild,v 1.1 2007/01/14 21:15:14 pioto Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/eselect/eselect-1.0.8.ebuild,v 1.2 2007/01/15 03:29:44 pioto Exp $ + +inherit eutils autotools DESCRIPTION="Modular -config replacement utility" HOMEPAGE="http://www.gentoo.org/proj/en/eselect/" @@ -21,6 +23,14 @@ DEPEND="sys-apps/sed RDEPEND="sys-apps/sed sys-apps/file" +src_unpack() { + unpack ${A} + cd "${S}" + + epatch "${FILESDIR}/${P}-fix-parallel-install.patch" + eautoreconf +} + src_compile() { econf || die "econf failed" emake || die "emake failed" diff --git a/app-admin/eselect/files/eselect-1.0.8-fix-parallel-install.patch b/app-admin/eselect/files/eselect-1.0.8-fix-parallel-install.patch new file mode 100644 index 000000000000..2bd8b1ab8f25 --- /dev/null +++ b/app-admin/eselect/files/eselect-1.0.8-fix-parallel-install.patch @@ -0,0 +1,13 @@ +Index: bin/Makefile.am +=================================================================== +--- bin/Makefile.am (revision 352) ++++ bin/Makefile.am (working copy) +@@ -15,7 +15,7 @@ + + install-data-local : $(foreach f, $(symlinks), install-symlink-$(f)) + +-install-symlink-% : ++install-symlink-% : install-binSCRIPTS + ln -snf $(DESTDIR)$(bindir)/eselect \ + $(DESTDIR)$(bindir)/$* + |