diff options
author | Dominik Stadler <centic@gentoo.org> | 2005-08-19 17:58:12 +0000 |
---|---|---|
committer | Dominik Stadler <centic@gentoo.org> | 2005-08-19 17:58:12 +0000 |
commit | 0c83376f974a282c7615f2a94801dffbbd4af78f (patch) | |
tree | 6c7a63e44b7caf197271eef30a667572850a7970 /sci-calculators/abakus/abakus-0.90.ebuild | |
parent | punt --enable-version-specific-runtime-libs option #100679 (diff) | |
download | historical-0c83376f974a282c7615f2a94801dffbbd4af78f.tar.gz historical-0c83376f974a282c7615f2a94801dffbbd4af78f.tar.bz2 historical-0c83376f974a282c7615f2a94801dffbbd4af78f.zip |
Add new Version 0.90
Package-Manager: portage-2.0.51.22-r2
Diffstat (limited to 'sci-calculators/abakus/abakus-0.90.ebuild')
-rw-r--r-- | sci-calculators/abakus/abakus-0.90.ebuild | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/sci-calculators/abakus/abakus-0.90.ebuild b/sci-calculators/abakus/abakus-0.90.ebuild new file mode 100644 index 000000000000..bf3b08e34e30 --- /dev/null +++ b/sci-calculators/abakus/abakus-0.90.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-calculators/abakus/abakus-0.90.ebuild,v 1.1 2005/08/19 17:58:12 centic Exp $ + +inherit kde + +DESCRIPTION="Abakus is a simple calculator for kde, similar to bc with a nice gui." +HOMEPAGE="http://grammarian.homelinux.net/abakus/" +#SRC_URI="http://grammarian.homelinux.net/abakus/${P}.tar.bz2" +SRC_URI="http://www.kde-apps.org/content/files/16751-abakus-0.90.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" +# leave gmp out for now, does not work for me +IUSE="debug" # gmp + +DEPEND=">=dev-util/scons-0.96.1" +# gmp? ( >=dev-libs/gmp-4.1 )" +#RDEPEND="" + +need-kde 3.3 + +src_compile() { + local myconf="kdeincludes=$(kde-config --prefix)/include prefix=/usr" + use amd64 && myconf="${myconf} libsuffix=64" + use debug && myconf="${myconf} debug=full" + +# use gmp && myconf="${myconf} mpfr=yes" +# use gmp || myconf="${myconf} mpfr=no" + + einfo "Calling configure with: ${myconf}" + + scons configure ${myconf} || die "configure failed" + scons ${MAKEOPTS} || die "scons failed" +} + +src_install() { + DESTDIR="${D}/usr" scons install + dodoc AUTHORS COPYING README +} + |