diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2009-12-22 23:11:40 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2009-12-22 23:11:40 +0000 |
commit | 8cfd79fd7c441a2990aac131b8478c8fab336781 (patch) | |
tree | ee633291ddd01fc436127a0019c9d0d5b976cff5 /sci-electronics | |
parent | Pull in changes from overlay (diff) | |
download | gentoo-2-8cfd79fd7c441a2990aac131b8478c8fab336781.tar.gz gentoo-2-8cfd79fd7c441a2990aac131b8478c8fab336781.tar.bz2 gentoo-2-8cfd79fd7c441a2990aac131b8478c8fab336781.zip |
Fix dependencies and avoid forkbomb in test phase (hopefully). Thanks to Thomas Beierlein and Rafael G. Martins in bug #296654.
(Portage version: 2.2_rc60/cvs/Linux x86_64)
Diffstat (limited to 'sci-electronics')
-rw-r--r-- | sci-electronics/geda/ChangeLog | 7 | ||||
-rw-r--r-- | sci-electronics/geda/geda-1.6.0-r1.ebuild | 8 |
2 files changed, 12 insertions, 3 deletions
diff --git a/sci-electronics/geda/ChangeLog b/sci-electronics/geda/ChangeLog index 98ec061c611e..98a159416b1e 100644 --- a/sci-electronics/geda/ChangeLog +++ b/sci-electronics/geda/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sci-electronics/geda # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-electronics/geda/ChangeLog,v 1.55 2009/11/23 20:56:28 calchan Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-electronics/geda/ChangeLog,v 1.56 2009/12/22 23:11:40 flameeyes Exp $ + + 22 Dec 2009; Diego E. Pettenò <flameeyes@gentoo.org> + geda-1.6.0-r1.ebuild: + Fix dependencies and avoid forkbomb in test phase (hopefully). Thanks to + Thomas Beierlein and Rafael G. Martins in bug #296654. 23 Nov 2009; Denis Dupeyron <calchan@gentoo.org> geda-1.6.0-r1.ebuild: Fixed blockers, bug #294291. diff --git a/sci-electronics/geda/geda-1.6.0-r1.ebuild b/sci-electronics/geda/geda-1.6.0-r1.ebuild index ef0ab6e4ce11..b87c52296f11 100644 --- a/sci-electronics/geda/geda-1.6.0-r1.ebuild +++ b/sci-electronics/geda/geda-1.6.0-r1.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/sci-electronics/geda/geda-1.6.0-r1.ebuild,v 1.3 2009/11/23 20:56:28 calchan Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-electronics/geda/geda-1.6.0-r1.ebuild,v 1.4 2009/12/22 23:11:40 flameeyes Exp $ EAPI="2" @@ -40,7 +40,7 @@ DEPEND="${CDEPEND} >=dev-util/pkgconfig-0.15.0 nls? ( >=sys-devel/gettext-0.16 )" -RDEPEND="${RDEPEND} +RDEPEND="${CDEPEND} sci-electronics/electronics-menu" S="${WORKDIR}/${MY_P}" @@ -72,6 +72,10 @@ src_install() { dodoc AUTHORS NEWS README } +src_test() { + emake -j1 check || die "test failed" +} + pkg_preinst() { gnome2_icon_savelist } |