diff options
author | Sergey Popov <pinkbyte@gentoo.org> | 2013-03-15 10:38:47 +0000 |
---|---|---|
committer | Sergey Popov <pinkbyte@gentoo.org> | 2013-03-15 10:38:47 +0000 |
commit | 3b0fb54dce0eb78d7b394e34a7ca5c9a1d573c11 (patch) | |
tree | 6514af68113e67756ff8c44bfcf5c7a3ee8b4f4f | |
parent | remove old (diff) | |
download | gentoo-2-3b0fb54dce0eb78d7b394e34a7ca5c9a1d573c11.tar.gz gentoo-2-3b0fb54dce0eb78d7b394e34a7ca5c9a1d573c11.tar.bz2 gentoo-2-3b0fb54dce0eb78d7b394e34a7ca5c9a1d573c11.zip |
Respect AR and RANLIB, wrt bug #461256. Thanks to Agostino Sarubbo for discovering this issue
(Portage version: 2.2.0_alpha166/cvs/Linux x86_64, signed Manifest commit with key 0x1F357D42)
-rw-r--r-- | app-editors/ted/ChangeLog | 6 | ||||
-rw-r--r-- | app-editors/ted/ted-2.22.ebuild | 7 |
2 files changed, 10 insertions, 3 deletions
diff --git a/app-editors/ted/ChangeLog b/app-editors/ted/ChangeLog index 16d589ecca73..437cf068a550 100644 --- a/app-editors/ted/ChangeLog +++ b/app-editors/ted/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-editors/ted # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/ted/ChangeLog,v 1.54 2013/03/14 13:51:31 kensington Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/ted/ChangeLog,v 1.55 2013/03/15 10:38:47 pinkbyte Exp $ + + 15 Mar 2013; Sergey Popov <pinkbyte@gentoo.org> ted-2.22.ebuild: + Respect AR and RANLIB, wrt bug #461256. Thanks to Agostino Sarubbo for + discovering this issue 14 Mar 2013; Michael Palimaka <kensington@gentoo.org> -files/ted-2.21-libpng15.patch, -ted-2.21.ebuild: diff --git a/app-editors/ted/ted-2.22.ebuild b/app-editors/ted/ted-2.22.ebuild index b12b1a82681d..7c4a7b4940c5 100644 --- a/app-editors/ted/ted-2.22.ebuild +++ b/app-editors/ted/ted-2.22.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/ted/ted-2.22.ebuild,v 1.5 2013/03/14 12:42:23 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/ted/ted-2.22.ebuild,v 1.6 2013/03/15 10:38:47 pinkbyte Exp $ EAPI=4 inherit eutils toolchain-funcs @@ -31,11 +31,14 @@ src_prepare() { "${S}"/appFrame/appFrameConfig.h.in \ "${S}"/Ted/tedConfig.h.in || die + # bug #461256 + find . -name makefile.in -exec sed -i -e '/ar r/s/ar/$(AR)/' {} \; || die + mkdir lib || die } src_configure() { - tc-export CC + tc-export AR CC RANLIB local dir for dir in appFrame appUtil bitmap docBuf ind Ted tedPackage; do |