diff options
-rw-r--r-- | sci-mathematics/singular/ChangeLog | 7 | ||||
-rw-r--r-- | sci-mathematics/singular/Manifest | 12 | ||||
-rw-r--r-- | sci-mathematics/singular/singular-3.0.1.2.ebuild | 4 |
3 files changed, 14 insertions, 9 deletions
diff --git a/sci-mathematics/singular/ChangeLog b/sci-mathematics/singular/ChangeLog index 7ce5bf811078..e6056c767d65 100644 --- a/sci-mathematics/singular/ChangeLog +++ b/sci-mathematics/singular/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sci-mathematics/singular # Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/singular/ChangeLog,v 1.8 2006/02/14 15:12:14 markusle Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/singular/ChangeLog,v 1.9 2006/03/06 11:41:44 markusle Exp $ + + 06 Mar 2006; Markus Dittrich <markusle@gentoo.org> + singular-3.0.1.2.ebuild: + Force -j1 in emake, otherwise the build fails. This fixes + bug #116508. 14 Feb 2006; Markus Dittrich <markusle@gentoo.org> singular-3.0.1.2.ebuild: diff --git a/sci-mathematics/singular/Manifest b/sci-mathematics/singular/Manifest index ff28e8d95d44..76e372ede7ec 100644 --- a/sci-mathematics/singular/Manifest +++ b/sci-mathematics/singular/Manifest @@ -1,6 +1,6 @@ -MD5 238de0335eae75c2fac4b5e5b148b75b ChangeLog 4176 -RMD160 6e8cedef21c36e874983283cd1ea361cf2ec6a2b ChangeLog 4176 -SHA256 badf7a9005a009ee6e257080b8ef04ed31979505f0971299bb98b2677013e9b2 ChangeLog 4176 +MD5 9ad17a9dcf35a53a425860174a1135e4 ChangeLog 4333 +RMD160 fc0b17b769b840a5086f76ebbb03362c643c9e82 ChangeLog 4333 +SHA256 e6df9b42667bd2f2ef64bd9c11100786a53d5e7a6b0cd245652cc4337a024cb3 ChangeLog 4333 MD5 673cd925126b07ea0e78cf91269b7d66 files/digest-singular-2.0.5-r4 859 RMD160 e8e8f57f50a91e84a4af63e3222011e9a696636f files/digest-singular-2.0.5-r4 859 SHA256 643ada8e366c859a02d6dec1bf58cc0510a3462c833a347fa4ab95cf5b6e91c1 files/digest-singular-2.0.5-r4 859 @@ -28,6 +28,6 @@ SHA256 8bde53cf79771c990cc0114f85720a769c5c585502136960284f948c396395bb singular MD5 cd39e5ab8e6b0bb7d73746b86607dfb4 singular-3.0.1.1.ebuild 2869 RMD160 39e95e631ac2328bfde4cba8ab2b696ad73169ed singular-3.0.1.1.ebuild 2869 SHA256 28779526fa856c762b921896bc49fd89c2f06e57fc29390dd4121d980d0024cc singular-3.0.1.1.ebuild 2869 -MD5 0cc00fbfb8e44484f55f0f1523ea3633 singular-3.0.1.2.ebuild 2885 -RMD160 26572c21997012141a6a05bf9f9db2620309355f singular-3.0.1.2.ebuild 2885 -SHA256 e155918178a2eb383588cde551dd7c8ece19dcc85ee19911125cd7c41b2965f8 singular-3.0.1.2.ebuild 2885 +MD5 9a58fce40032e1e880723e701f35a0fd singular-3.0.1.2.ebuild 2889 +RMD160 694155ac686a7fb459ff723fc1e1086b741384f2 singular-3.0.1.2.ebuild 2889 +SHA256 367fc09170b55cf153dd4b0d9b2fcf9981a725cd34f16f0ecde81c5818c2ac79 singular-3.0.1.2.ebuild 2889 diff --git a/sci-mathematics/singular/singular-3.0.1.2.ebuild b/sci-mathematics/singular/singular-3.0.1.2.ebuild index e9339c050e13..4ea353649161 100644 --- a/sci-mathematics/singular/singular-3.0.1.2.ebuild +++ b/sci-mathematics/singular/singular-3.0.1.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/singular/singular-3.0.1.2.ebuild,v 1.2 2006/02/14 15:12:14 markusle Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/singular/singular-3.0.1.2.ebuild,v 1.3 2006/03/06 11:41:44 markusle Exp $ inherit eutils @@ -38,7 +38,7 @@ src_compile() { local myconf="${myconf} --disable-doc --without-MP --with-factory --with-libfac --prefix=${S}" econf $(use_enable emacs) \ ${myconf} || die "econf failed" - emake || die "make failed" + emake -j1 || die "make failed" } src_install () { |