diff options
author | Rémi Cardona <remi@gentoo.org> | 2007-10-26 19:41:39 +0000 |
---|---|---|
committer | Rémi Cardona <remi@gentoo.org> | 2007-10-26 19:41:39 +0000 |
commit | c6e9c730b58ddf814524bba8d389548f74b4e277 (patch) | |
tree | e0e6bce8e7733e5e6b99a10983d8cf25910e6f64 /sci-calculators | |
parent | Keyword for ~amd64 --- Bug #195815 (diff) | |
download | gentoo-2-c6e9c730b58ddf814524bba8d389548f74b4e277.tar.gz gentoo-2-c6e9c730b58ddf814524bba8d389548f74b4e277.tar.bz2 gentoo-2-c6e9c730b58ddf814524bba8d389548f74b4e277.zip |
sci-calculators/galculator: bump to 1.3.1 (fixes bugs #191889 and #195306)
(Portage version: 2.1.3.16)
Diffstat (limited to 'sci-calculators')
-rw-r--r-- | sci-calculators/galculator/ChangeLog | 7 | ||||
-rw-r--r-- | sci-calculators/galculator/files/digest-galculator-1.3.1 | 3 | ||||
-rw-r--r-- | sci-calculators/galculator/galculator-1.3.1.ebuild | 28 |
3 files changed, 37 insertions, 1 deletions
diff --git a/sci-calculators/galculator/ChangeLog b/sci-calculators/galculator/ChangeLog index 6e645afe632d..8554cf3eacf2 100644 --- a/sci-calculators/galculator/ChangeLog +++ b/sci-calculators/galculator/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sci-calculators/galculator # Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-calculators/galculator/ChangeLog,v 1.17 2007/05/14 19:32:21 drac Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-calculators/galculator/ChangeLog,v 1.18 2007/10/26 19:41:38 remi Exp $ + +*galculator-1.3.1 (26 Oct 2007) + + 26 Oct 2007; Rémi Cardona <remi@gentoo.org> +galculator-1.3.1.ebuild: + bump to 1.3.1 (fixes bugs #191889 and #195306) *galculator-1.2.5.2-r1 (14 May 2007) diff --git a/sci-calculators/galculator/files/digest-galculator-1.3.1 b/sci-calculators/galculator/files/digest-galculator-1.3.1 new file mode 100644 index 000000000000..d0955cdf0504 --- /dev/null +++ b/sci-calculators/galculator/files/digest-galculator-1.3.1 @@ -0,0 +1,3 @@ +MD5 683a4f0c2cb3d1f56b4c5610fc495c5f galculator-1.3.1.tar.bz2 382382 +RMD160 3130c322cb68ddfc899b198a03f4c730c9f94c76 galculator-1.3.1.tar.bz2 382382 +SHA256 645e5555b7f060f374f2d411d1198313b3008315983a70453e4eb05874f8353f galculator-1.3.1.tar.bz2 382382 diff --git a/sci-calculators/galculator/galculator-1.3.1.ebuild b/sci-calculators/galculator/galculator-1.3.1.ebuild new file mode 100644 index 000000000000..91841aa05c92 --- /dev/null +++ b/sci-calculators/galculator/galculator-1.3.1.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-calculators/galculator/galculator-1.3.1.ebuild,v 1.1 2007/10/26 19:41:38 remi Exp $ + +DESCRIPTION="GTK+ based algebraic and RPN calculator." +HOMEPAGE="http://galculator.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" +LICENSE="GPL-2" +SLOT="0" + +KEYWORDS="~alpha ~amd64 ~ppc ~x86 ~x86-fbsd" +IUSE="gnome" + +RDEPEND=">=x11-libs/gtk+-2.6 + >=gnome-base/libglade-2 + gnome? ( gnome-base/gnome-desktop )" +DEPEND="${RDEPEND} + dev-util/pkgconfig" + +src_unpack() { + unpack ${A} + use gnome || sed -i -e 's:gnome-calc2.png:calc:' "${S}"/galculator.desktop.in +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed." + dodoc AUTHORS ChangeLog NEWS README THANKS TODO +} |