diff options
author | Marcelo Góes <vanquirius@gentoo.org> | 2009-12-12 15:14:53 +0000 |
---|---|---|
committer | Marcelo Góes <vanquirius@gentoo.org> | 2009-12-12 15:14:53 +0000 |
commit | 6aeaadcb033dfd7a64edf8a867e7366454ac0cee (patch) | |
tree | 614b6196317c0c5bedde6a5873ca649a9202e2a1 /app-arch/tardy | |
parent | Block net-misc/asterisk-chan_unistim as this channel driver is built into thi... (diff) | |
download | gentoo-2-6aeaadcb033dfd7a64edf8a867e7366454ac0cee.tar.gz gentoo-2-6aeaadcb033dfd7a64edf8a867e7366454ac0cee.tar.bz2 gentoo-2-6aeaadcb033dfd7a64edf8a867e7366454ac0cee.zip |
Apply Kevin Pyle's patch for bug 239921 to fix parallel build make issue. Thanks to Diego Petteno <flameeyes
at gentoo dot org> for reporting.
(Portage version: 2.1.6.13/cvs/Linux i686)
Diffstat (limited to 'app-arch/tardy')
-rw-r--r-- | app-arch/tardy/ChangeLog | 6 | ||||
-rw-r--r-- | app-arch/tardy/tardy-1.17.ebuild | 10 |
2 files changed, 13 insertions, 3 deletions
diff --git a/app-arch/tardy/ChangeLog b/app-arch/tardy/ChangeLog index c9866a0dc755..19be7c014037 100644 --- a/app-arch/tardy/ChangeLog +++ b/app-arch/tardy/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-arch/tardy # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/tardy/ChangeLog,v 1.10 2009/08/09 16:47:07 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/tardy/ChangeLog,v 1.11 2009/12/12 15:14:53 vanquirius Exp $ + + 12 Dec 2009; Marcelo Goes <vanquirius@gentoo.org> tardy-1.17.ebuild: + Apply Kevin Pyle's patch for bug 239921 to fix parallel build make issue. + Thanks to Diego Petteno <flameeyes at gentoo dot org> for reporting. 09 Aug 2009; Samuli Suominen <ssuominen@gentoo.org> tardy-1.17.ebuild, +files/tardy-1.17-glibc-2.10.patch: diff --git a/app-arch/tardy/tardy-1.17.ebuild b/app-arch/tardy/tardy-1.17.ebuild index c269c5b07cec..a6a7a510cba8 100644 --- a/app-arch/tardy/tardy-1.17.ebuild +++ b/app-arch/tardy/tardy-1.17.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/tardy/tardy-1.17.ebuild,v 1.2 2009/08/09 16:47:07 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/tardy/tardy-1.17.ebuild,v 1.3 2009/12/12 15:14:53 vanquirius Exp $ inherit eutils @@ -16,7 +16,13 @@ IUSE="" src_unpack() { unpack ${A} cd "${S}" - sed -i '/^CFLAGS/d' Makefile.in + sed -i + -e '/^CFLAGS/d' \ + -e '/^LDFLAGS =/d' \ + -e 's/$(CXX) $(CFLAGS)/$(CXX) $(CXXFLAGS) -o $@/' \ + -e '/mv \(.*\)\.o \(.*\)\/\1\.o/d' \ + -e '/@sleep 1/d' \ + Makefile.in epatch "${FILESDIR}"/${P}-glibc-2.10.patch } |