diff options
author | Marcelo Góes <vanquirius@gentoo.org> | 2005-11-20 22:57:48 +0000 |
---|---|---|
committer | Marcelo Góes <vanquirius@gentoo.org> | 2005-11-20 22:57:48 +0000 |
commit | 805778d993acd2b1e77c70e121596b131f84ad4f (patch) | |
tree | ce20541cabdf461c7e62878445177503f90535e9 /app-text/ots | |
parent | Marked ppc stable for bug #112482. (diff) | |
download | gentoo-2-805778d993acd2b1e77c70e121596b131f84ad4f.tar.gz gentoo-2-805778d993acd2b1e77c70e121596b131f84ad4f.tar.bz2 gentoo-2-805778d993acd2b1e77c70e121596b131f84ad4f.zip |
Adding -j1 to emake since parallel make fails. Fixes bug 112932
(Portage version: 2.0.53_rc7)
Diffstat (limited to 'app-text/ots')
-rw-r--r-- | app-text/ots/ChangeLog | 7 | ||||
-rw-r--r-- | app-text/ots/Manifest | 4 | ||||
-rw-r--r-- | app-text/ots/ots-0.4.1.ebuild | 5 | ||||
-rw-r--r-- | app-text/ots/ots-0.4.2.ebuild | 5 |
4 files changed, 14 insertions, 7 deletions
diff --git a/app-text/ots/ChangeLog b/app-text/ots/ChangeLog index ae82cdd57d06..a6462d52995e 100644 --- a/app-text/ots/ChangeLog +++ b/app-text/ots/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-text/ots # Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/ots/ChangeLog,v 1.13 2005/10/12 19:26:49 hansmi Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/ots/ChangeLog,v 1.14 2005/11/20 22:57:48 vanquirius Exp $ + + 20 Nov 2005; Marcelo Goes <vanquirius@gentoo.org> ots-0.4.1.ebuild, + ots-0.4.2.ebuild: + Adding -j1 to emake since parallel make fails. Fixes bug 112932. Many thanks + to Juergen Rose <rose at rz dot uni-potsdam dot de> for reporting. 12 Oct 2005; Michael Hanselmann <hansmi@gentoo.org> ots-0.4.2.ebuild: Stable on hppa, ppc. diff --git a/app-text/ots/Manifest b/app-text/ots/Manifest index 17843acccdc9..98db285f5d40 100644 --- a/app-text/ots/Manifest +++ b/app-text/ots/Manifest @@ -3,5 +3,5 @@ MD5 4fb352a699bbaed36ab4cd3ae199aca5 files/digest-ots-0.4.1 61 MD5 90b8180610e12a5b5f83f128256082ea files/digest-ots-0.4.2 61 MD5 77ea1e5c9421e55a38bc2f9bebcb17ed files/ots-0.4.2-gcc4.diff 677 MD5 5c0cf8693a8e3f46bbd06854f4d8a6f7 metadata.xml 258 -MD5 1167e8a27c583ee55ba8845845d70373 ots-0.4.1.ebuild 842 -MD5 d570b734519b5b1f97b8b5259a5b85cb ots-0.4.2.ebuild 951 +MD5 efb6af4233bfc4fb13a0381528250e75 ots-0.4.1.ebuild 881 +MD5 fb7d0d5d4622cdbb3eafdcbef0f47b92 ots-0.4.2.ebuild 990 diff --git a/app-text/ots/ots-0.4.1.ebuild b/app-text/ots/ots-0.4.1.ebuild index 3967c316cf1a..d590ae06c9fd 100644 --- a/app-text/ots/ots-0.4.1.ebuild +++ b/app-text/ots/ots-0.4.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/ots/ots-0.4.1.ebuild,v 1.10 2005/09/29 01:29:51 vanquirius Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/ots/ots-0.4.1.ebuild,v 1.11 2005/11/20 22:57:48 vanquirius Exp $ DESCRIPTION="Open source Text Summarizer, as used in newer releases of abiword and kword." HOMEPAGE="http://libots.sourceforge.net/" @@ -21,7 +21,8 @@ DEPEND="${RDEPEND} src_compile() { # bug 97448 econf --disable-gtk-doc || die - emake || die + # parallel make fails, bug 112932 + emake -j1 || die } src_install() { diff --git a/app-text/ots/ots-0.4.2.ebuild b/app-text/ots/ots-0.4.2.ebuild index 11ae51fb2df6..9191ff23a636 100644 --- a/app-text/ots/ots-0.4.2.ebuild +++ b/app-text/ots/ots-0.4.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/ots/ots-0.4.2.ebuild,v 1.4 2005/10/12 19:26:49 hansmi Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/ots/ots-0.4.2.ebuild,v 1.5 2005/11/20 22:57:48 vanquirius Exp $ inherit eutils @@ -28,7 +28,8 @@ src_unpack() { src_compile() { # bug 97448 econf --disable-gtk-doc || die - emake || die + # parallel make fails, bug 112932 + emake -j1 || die } src_install() { |