diff options
author | Timo Gurr <tgurr@gentoo.org> | 2010-03-10 23:05:14 +0000 |
---|---|---|
committer | Timo Gurr <tgurr@gentoo.org> | 2010-03-10 23:05:14 +0000 |
commit | b62345a54a5a15215681b4cc0c4258fc1d9a7518 (patch) | |
tree | 9c50c85d9a1f8ec2b774cfc34a897486fc96780e /app-text | |
parent | Clean up old revisions. (diff) | |
download | gentoo-2-b62345a54a5a15215681b4cc0c4258fc1d9a7518.tar.gz gentoo-2-b62345a54a5a15215681b4cc0c4258fc1d9a7518.tar.bz2 gentoo-2-b62345a54a5a15215681b4cc0c4258fc1d9a7518.zip |
Version bump.
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'app-text')
-rw-r--r-- | app-text/libspectre/ChangeLog | 7 | ||||
-rw-r--r-- | app-text/libspectre/libspectre-0.2.4.ebuild | 54 |
2 files changed, 60 insertions, 1 deletions
diff --git a/app-text/libspectre/ChangeLog b/app-text/libspectre/ChangeLog index 33b77be83715..2458bfa1cc22 100644 --- a/app-text/libspectre/ChangeLog +++ b/app-text/libspectre/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-text/libspectre # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/libspectre/ChangeLog,v 1.32 2010/01/08 02:26:01 abcd Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/libspectre/ChangeLog,v 1.33 2010/03/10 23:05:14 tgurr Exp $ + +*libspectre-0.2.4 (10 Mar 2010) + + 10 Mar 2010; Timo Gurr <tgurr@gentoo.org> +libspectre-0.2.4.ebuild: + Version bump. 08 Jan 2010; Jonathan Callen <abcd@gentoo.org> +files/libspectre-0.2.0-interix.patch, libspectre-0.2.3.ebuild: diff --git a/app-text/libspectre/libspectre-0.2.4.ebuild b/app-text/libspectre/libspectre-0.2.4.ebuild new file mode 100644 index 000000000000..27d48eec5070 --- /dev/null +++ b/app-text/libspectre/libspectre-0.2.4.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/libspectre/libspectre-0.2.4.ebuild,v 1.1 2010/03/10 23:05:14 tgurr Exp $ + +inherit autotools eutils + +DESCRIPTION="Library to render Postscript documents." +HOMEPAGE="http://libspectre.freedesktop.org/wiki/" +SRC_URI="http://libspectre.freedesktop.org/releases/${P}.tar.gz" + +LICENSE="GPL-2" + +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~x64-solaris" +SLOT="0" +IUSE="debug doc test" + +RDEPEND=">=app-text/ghostscript-gpl-8.62" +DEPEND="${RDEPEND} + doc? ( app-doc/doxygen ) + test? ( x11-libs/cairo + dev-util/pkgconfig )" + +src_unpack() { + unpack ${A} + cd "${S}" + + epatch "${FILESDIR}"/${PN}-0.2.0-interix.patch + + eautoreconf # need new libtool for interix +} + +src_compile() { + econf \ + --disable-dependency-tracking \ + $(use_enable debug asserts) \ + $(use_enable debug checks) \ + $(use_enable test) \ + || die "econf failed" + + emake || die "emake failed" + + if use doc; then + doxygen || die "doxygen failed" + fi +} + +src_install() { + emake DESTDIR="${D}" install + + dodoc NEWS README TODO || die "installing docs failed" + if use doc; then + dohtml -r "${S}"/doc/html/* + fi +} |