summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app-dicts/vdict/ChangeLog8
-rw-r--r--app-dicts/vdict/vdict-1.97-r1.ebuild11
2 files changed, 12 insertions, 7 deletions
diff --git a/app-dicts/vdict/ChangeLog b/app-dicts/vdict/ChangeLog
index 44ae3debcc10..3764d38fc88e 100644
--- a/app-dicts/vdict/ChangeLog
+++ b/app-dicts/vdict/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for app-dicts/vdict
-# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-dicts/vdict/ChangeLog,v 1.7 2008/08/16 16:50:20 tove Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-dicts/vdict/ChangeLog,v 1.8 2009/07/27 15:36:08 flameeyes Exp $
+
+ 27 Jul 2009; Diego E. Pettenò <flameeyes@gentoo.org>
+ vdict-1.97-r1.ebuild:
+ Use -j1 for build (bug #279334), add die statements to install calls.
16 Aug 2008; Torsten Veller <tove@gentoo.org> metadata.xml:
Remove pclouds from metadata.xml (#49680)
diff --git a/app-dicts/vdict/vdict-1.97-r1.ebuild b/app-dicts/vdict/vdict-1.97-r1.ebuild
index f6bd4eb71f01..3d42117f68fa 100644
--- a/app-dicts/vdict/vdict-1.97-r1.ebuild
+++ b/app-dicts/vdict/vdict-1.97-r1.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2008 Gentoo Foundation
+# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-dicts/vdict/vdict-1.97-r1.ebuild,v 1.2 2008/07/27 19:15:32 carlo Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-dicts/vdict/vdict-1.97-r1.ebuild,v 1.3 2009/07/27 15:36:08 flameeyes Exp $
EAPI=1
@@ -26,13 +26,14 @@ src_unpack() {
}
src_compile() {
- emake CC="$(tc-getCC)" CPP="$(tc-getCC) -E" CXX="$(tc-getCXX)" CXXPP="$(tc-getCC) -E" || die
+ # bug #279334
+ emake -j1 CC="$(tc-getCC)" CPP="$(tc-getCC) -E" CXX="$(tc-getCXX)" CXXPP="$(tc-getCC) -E" || die
}
src_install() {
- dobin fd/fd vd/vd utils/wd2vd
+ dobin fd/fd vd/vd utils/wd2vd || die
- dodoc AUTHORS BUGS ChangeLog README TODO
+ dodoc AUTHORS BUGS ChangeLog README TODO || die
}
pkg_postinst() {