diff options
author | Sergey Popov <pinkbyte@gentoo.org> | 2013-04-25 18:41:11 +0000 |
---|---|---|
committer | Sergey Popov <pinkbyte@gentoo.org> | 2013-04-25 18:41:11 +0000 |
commit | 780a0a4b29098a63479929e547838350fe8a062e (patch) | |
tree | a1fd9fc9c5dc89835cbdc639b6df30c02e5a0ccf /app-misc/worker/worker-2.19.6.ebuild | |
parent | epatch: handle aliased `patch` commands in a way that works with <=bash-3.2 #... (diff) | |
download | historical-780a0a4b29098a63479929e547838350fe8a062e.tar.gz historical-780a0a4b29098a63479929e547838350fe8a062e.tar.bz2 historical-780a0a4b29098a63479929e547838350fe8a062e.zip |
Respect AR, wrt bug #467222. Thanks to Agostino Sarubbo for discovering this issue. Drop old version
Package-Manager: portage-2.2.0_alpha173/cvs/Linux x86_64
Manifest-Sign-Key: 0x1F357D42
Diffstat (limited to 'app-misc/worker/worker-2.19.6.ebuild')
-rw-r--r-- | app-misc/worker/worker-2.19.6.ebuild | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/app-misc/worker/worker-2.19.6.ebuild b/app-misc/worker/worker-2.19.6.ebuild index b829c1363995..27d14f35382c 100644 --- a/app-misc/worker/worker-2.19.6.ebuild +++ b/app-misc/worker/worker-2.19.6.ebuild @@ -1,10 +1,10 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/worker/worker-2.19.6.ebuild,v 1.5 2013/04/15 19:03:07 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/worker/worker-2.19.6.ebuild,v 1.6 2013/04/25 18:41:10 pinkbyte Exp $ EAPI=5 -inherit eutils +inherit eutils toolchain-funcs DESCRIPTION="Worker Filemanager: Amiga Directory Opus 4 clone" HOMEPAGE="http://www.boomerangsworld.de/cms/worker/" @@ -27,6 +27,9 @@ DEPEND="${RDEPEND}" DOCS=( AUTHORS ChangeLog INSTALL NEWS README README_LARGEFILES THANKS ) src_prepare() { + # respect AR, bug #466014 + sed -i -e "/AR/s/ar/$(tc-getAR)/" src/aguix/Makefile.in || die 'sed on Makefile.in failed' + epatch_user } |