diff options
author | Alexis Ballier <aballier@gentoo.org> | 2008-10-28 07:21:43 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2008-10-28 07:21:43 +0000 |
commit | e17e9110dc3ae54f81daa75846b3c305cbdf98bb (patch) | |
tree | aa8488cbfd9647e30539cb8d314c2f78401caf1a /net-misc/hsc | |
parent | add missing libxpm dep, bug #239689 (diff) | |
download | gentoo-2-e17e9110dc3ae54f81daa75846b3c305cbdf98bb.tar.gz gentoo-2-e17e9110dc3ae54f81daa75846b3c305cbdf98bb.tar.bz2 gentoo-2-e17e9110dc3ae54f81daa75846b3c305cbdf98bb.zip |
fix parallel make issue, bug #240936
(Portage version: 2.2_rc12/cvs/Linux 2.6.27.3 x86_64)
Diffstat (limited to 'net-misc/hsc')
-rw-r--r-- | net-misc/hsc/ChangeLog | 6 | ||||
-rw-r--r-- | net-misc/hsc/files/hsc-1.0b-parmake.patch | 13 | ||||
-rw-r--r-- | net-misc/hsc/hsc-1.0b.ebuild | 3 |
3 files changed, 20 insertions, 2 deletions
diff --git a/net-misc/hsc/ChangeLog b/net-misc/hsc/ChangeLog index cccb296bd9bf..8fabe27d77be 100644 --- a/net-misc/hsc/ChangeLog +++ b/net-misc/hsc/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-misc/hsc # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/hsc/ChangeLog,v 1.12 2008/01/27 16:46:21 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/hsc/ChangeLog,v 1.13 2008/10/28 07:21:43 aballier Exp $ + + 28 Oct 2008; Alexis Ballier <aballier@gentoo.org> + +files/hsc-1.0b-parmake.patch, hsc-1.0b.ebuild: + fix parallel make issue, bug #240936 *hsc-1.0b (27 Jan 2008) diff --git a/net-misc/hsc/files/hsc-1.0b-parmake.patch b/net-misc/hsc/files/hsc-1.0b-parmake.patch new file mode 100644 index 000000000000..8c93d32f4888 --- /dev/null +++ b/net-misc/hsc/files/hsc-1.0b-parmake.patch @@ -0,0 +1,13 @@ +Index: hsc-1.0/Makefile.in +=================================================================== +--- hsc-1.0.orig/Makefile.in ++++ hsc-1.0/Makefile.in +@@ -30,7 +30,7 @@ all: hsc docs + + hsc: + make -C src +-docs: ++docs: hsc + PATH="$(shell pwd)/src/hsc:$(PATH)" HSCEXTRAOPTS="IGNORE=21" make -C docs-source + + install: diff --git a/net-misc/hsc/hsc-1.0b.ebuild b/net-misc/hsc/hsc-1.0b.ebuild index 35b2799af8d9..08910a6451f0 100644 --- a/net-misc/hsc/hsc-1.0b.ebuild +++ b/net-misc/hsc/hsc-1.0b.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/hsc/hsc-1.0b.ebuild,v 1.1 2008/01/27 16:46:21 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/hsc/hsc-1.0b.ebuild,v 1.2 2008/10/28 07:21:43 aballier Exp $ inherit autotools eutils @@ -23,6 +23,7 @@ src_unpack() { cd "${S}" epatch "${FILESDIR}/${P}-cflags.patch" epatch "${FILESDIR}/${P}-nostrip.patch" + epatch "${FILESDIR}/${P}-parmake.patch" eautoreconf } |