diff options
author | 2010-01-14 21:42:29 +0000 | |
---|---|---|
committer | 2010-01-14 21:42:29 +0000 | |
commit | 515fac0e3688c7a8fe767aaaf7576a2a13484987 (patch) | |
tree | ebf04f0a1572f82a5058a1519854d656a507511f /sci-libs/libqalculate | |
parent | Transfer Prefix keywords (diff) | |
download | gentoo-2-515fac0e3688c7a8fe767aaaf7576a2a13484987.tar.gz gentoo-2-515fac0e3688c7a8fe767aaaf7576a2a13484987.tar.bz2 gentoo-2-515fac0e3688c7a8fe767aaaf7576a2a13484987.zip |
Version bump.
(Portage version: 2.2_rc61/cvs/Linux x86_64)
Diffstat (limited to 'sci-libs/libqalculate')
-rw-r--r-- | sci-libs/libqalculate/ChangeLog | 10 | ||||
-rw-r--r-- | sci-libs/libqalculate/libqalculate-0.9.7.ebuild | 52 |
2 files changed, 60 insertions, 2 deletions
diff --git a/sci-libs/libqalculate/ChangeLog b/sci-libs/libqalculate/ChangeLog index 16528221eedb..c26c5ed4787d 100644 --- a/sci-libs/libqalculate/ChangeLog +++ b/sci-libs/libqalculate/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for sci-libs/libqalculate -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/libqalculate/ChangeLog,v 1.36 2009/12/27 12:43:19 armin76 Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/libqalculate/ChangeLog,v 1.37 2010/01/14 21:42:29 ssuominen Exp $ + +*libqalculate-0.9.7 (14 Jan 2010) + + 14 Jan 2010; Samuli Suominen <ssuominen@gentoo.org> + +libqalculate-0.9.7.ebuild: + Version bump. 27 Dec 2009; Raúl Porcel <armin76@gentoo.org> libqalculate-0.9.6-r1.ebuild: diff --git a/sci-libs/libqalculate/libqalculate-0.9.7.ebuild b/sci-libs/libqalculate/libqalculate-0.9.7.ebuild new file mode 100644 index 000000000000..f6c112c19e2c --- /dev/null +++ b/sci-libs/libqalculate/libqalculate-0.9.7.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/libqalculate/libqalculate-0.9.7.ebuild,v 1.1 2010/01/14 21:42:29 ssuominen Exp $ + +EAPI=2 + +DESCRIPTION="A modern multi-purpose calculator library" +HOMEPAGE="http://qalculate.sourceforge.net/" +SRC_URI="mirror://sourceforge/qalculate/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="readline" + +COMMON_DEPEND=">=sci-libs/cln-1.2 + dev-libs/libxml2 + dev-libs/glib:2 + sys-libs/zlib + readline? ( sys-libs/readline )" +DEPEND="${COMMON_DEPEND} + dev-util/pkgconfig + dev-util/intltool + sys-devel/gettext" +RDEPEND="${COMMON_DEPEND} + >=sci-visualization/gnuplot-3.7 + net-misc/wget" + +src_prepare() { + cat >po/POTFILES.skip <<-EOF + # Required by make check + data/currencies.xml.in + data/datasets.xml.in + data/elements.xml.in + data/functions.xml.in + data/planets.xml.in + data/units.xml.in + data/variables.xml.in + src/defs2doc.cc + EOF +} + +src_configure() { + econf \ + --disable-dependency-tracking \ + $(use_with readline) +} + +src_install() { + emake DESTDIR="${D}" install || die + dodoc AUTHORS ChangeLog NEWS README* TODO +} |