diff options
Diffstat (limited to 'app-text/libspectre/libspectre-0.2.6.ebuild')
-rw-r--r-- | app-text/libspectre/libspectre-0.2.6.ebuild | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/app-text/libspectre/libspectre-0.2.6.ebuild b/app-text/libspectre/libspectre-0.2.6.ebuild new file mode 100644 index 000000000000..2e3d5c4af78b --- /dev/null +++ b/app-text/libspectre/libspectre-0.2.6.ebuild @@ -0,0 +1,55 @@ +# 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.6.ebuild,v 1.1 2010/06/18 09:34:56 scarabeus Exp $ + +EAPI=3 + +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 ~arm ~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_prepare() { + epatch "${FILESDIR}"/${PN}-0.2.0-interix.patch + eautoreconf # need new libtool for interix +} + +src_configure() { + econf \ + --disable-dependency-tracking \ + $(use_enable debug asserts) \ + $(use_enable debug checks) \ + $(use_enable test) +} + +src_compile() { + emake || die "emake failed" + + if use doc; then + doxygen || die "doxygen failed" + fi +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + + dodoc NEWS README TODO || die "installing docs failed" + if use doc; then + dohtml -r "${S}"/doc/html/* || die "dohtml failed" + fi +} |