Files
@ a1377a397d21
Branch filter:
Location: ohnobinki_overlay/app-text/libspectre/libspectre-0.2.0.ebuild - annotation
a1377a397d21
1.1 KiB
application/vnd.gentoo.ebuild
updated povray-3.7.0_beta28.ebuild with official Gentoo povray-3.7.0_beta29.ebuild
ignored syncing stuff specific to POVRay's expiration code: my repo has a patch which disables the pointless expiration - I mean, if ur running Gentoo, ur going to try to upgrade your POVRay b4 filing bugs :-)
ignored syncing stuff specific to POVRay's expiration code: my repo has a patch which disables the pointless expiration - I mean, if ur running Gentoo, ur going to try to upgrade your POVRay b4 filing bugs :-)
5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 | # Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/libspectre/libspectre-0.2.0.ebuild,v 1.7 2008/05/17 19:00:58 aballier Exp $
inherit libtool
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 ~ppc64 ~sparc ~x86 ~x86-fbsd"
SLOT="0"
IUSE="debug doc test"
RDEPEND=">=app-text/ghostscript-gpl-8.61-r1"
DEPEND="doc? ( app-doc/doxygen )
test? ( x11-libs/cairo
dev-util/pkgconfig )"
src_unpack() {
unpack ${A}
elibtoolize
}
src_compile() {
econf \
--disable-dependency-tracking \
$(use_enable debug asserts) \
$(use_enable debug checks) \
$(use_enable test testing) \
|| 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
}
|