diff options
author | Samuli Suominen <drac@gentoo.org> | 2007-07-25 09:33:25 +0000 |
---|---|---|
committer | Samuli Suominen <drac@gentoo.org> | 2007-07-25 09:33:25 +0000 |
commit | dd8116971885e1559b732447e3cff03a8d63ab29 (patch) | |
tree | 7cde46880bcb6f06518a8d66e253768259122fa0 /sci-calculators | |
parent | keyworded ~x86, bug 186379; fixed detection of media-libs/plib (diff) | |
download | gentoo-2-dd8116971885e1559b732447e3cff03a8d63ab29.tar.gz gentoo-2-dd8116971885e1559b732447e3cff03a8d63ab29.tar.bz2 gentoo-2-dd8116971885e1559b732447e3cff03a8d63ab29.zip |
Fix invalid depend, requires GTK+-2.0 instead of GTK+-1.2.
(Portage version: 2.1.3_rc9)
Diffstat (limited to 'sci-calculators')
-rw-r--r-- | sci-calculators/calcoo/ChangeLog | 5 | ||||
-rw-r--r-- | sci-calculators/calcoo/calcoo-1.3.16.ebuild | 12 |
2 files changed, 10 insertions, 7 deletions
diff --git a/sci-calculators/calcoo/ChangeLog b/sci-calculators/calcoo/ChangeLog index 264ff0420715..9f0f03e0e225 100644 --- a/sci-calculators/calcoo/ChangeLog +++ b/sci-calculators/calcoo/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sci-calculators/calcoo # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-calculators/calcoo/ChangeLog,v 1.6 2007/02/22 01:23:47 jokey Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-calculators/calcoo/ChangeLog,v 1.7 2007/07/25 09:33:25 drac Exp $ + + 25 Jul 2007; Samuli Suominen <drac@gentoo.org> calcoo-1.3.16.ebuild: + Fix invalid depend, requires GTK+-2.0 instead of GTK+-1.2. 22 Feb 2007; Markus Ullmann <jokey@gentoo.org> ChangeLog: Redigest for Manifest2 diff --git a/sci-calculators/calcoo/calcoo-1.3.16.ebuild b/sci-calculators/calcoo/calcoo-1.3.16.ebuild index d6ceb4676fc8..fa6bcab56ba7 100644 --- a/sci-calculators/calcoo/calcoo-1.3.16.ebuild +++ b/sci-calculators/calcoo/calcoo-1.3.16.ebuild @@ -1,8 +1,6 @@ -# Copyright 1999-2006 Gentoo Foundation +# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-calculators/calcoo/calcoo-1.3.16.ebuild,v 1.1 2006/04/10 00:08:01 cryos Exp $ - -IUSE="" +# $Header: /var/cvsroot/gentoo-x86/sci-calculators/calcoo/calcoo-1.3.16.ebuild,v 1.2 2007/07/25 09:33:25 drac Exp $ DESCRIPTION="Scientific calculator designed to provide maximum usability" HOMEPAGE="http://calcoo.sourceforge.net/" @@ -11,8 +9,10 @@ SRC_URI="mirror://sourceforge/calcoo/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="" -DEPEND="=x11-libs/gtk+-1.2*" +RDEPEND=">=x11-libs/gtk+-2" +DEPEND="${RDEPEND}" src_compile() { econf --disable-gtktest || die "econf failed." @@ -20,6 +20,6 @@ src_compile() { } src_install() { - make DESTDIR=${D} install || die "make install failed." + make DESTDIR="${D}" install || die "make install failed." dodoc AUTHORS ChangeLog NEWS README TODO } |