diff options
author | Tomas Chvatal <scarabeus@gentoo.org> | 2011-02-13 19:36:28 +0000 |
---|---|---|
committer | Tomas Chvatal <scarabeus@gentoo.org> | 2011-02-13 19:36:28 +0000 |
commit | 94d4a63b3fb98ee7fd99ae4ad7d5516d1852e2f2 (patch) | |
tree | 7e946a406f1a41d00dc1d1fb02625a63991aa84a /app-text | |
parent | Remove older. Update to eapi4 and use REQUIRED_USE (diff) | |
download | historical-94d4a63b3fb98ee7fd99ae4ad7d5516d1852e2f2.tar.gz historical-94d4a63b3fb98ee7fd99ae4ad7d5516d1852e2f2.tar.bz2 historical-94d4a63b3fb98ee7fd99ae4ad7d5516d1852e2f2.zip |
old
Package-Manager: portage-2.2.0_alpha23/cvs/Linux x86_64
Diffstat (limited to 'app-text')
-rw-r--r-- | app-text/libspectre/ChangeLog | 8 | ||||
-rw-r--r-- | app-text/libspectre/libspectre-0.2.2.ebuild | 50 | ||||
-rw-r--r-- | app-text/libspectre/libspectre-0.2.3.ebuild | 54 | ||||
-rw-r--r-- | app-text/libspectre/libspectre-0.2.4.ebuild | 54 |
4 files changed, 6 insertions, 160 deletions
diff --git a/app-text/libspectre/ChangeLog b/app-text/libspectre/ChangeLog index 941678ca4b07..6899599fcfac 100644 --- a/app-text/libspectre/ChangeLog +++ b/app-text/libspectre/ChangeLog @@ -1,6 +1,10 @@ # 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.43 2010/07/27 01:26:40 jer Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/libspectre/ChangeLog,v 1.44 2011/02/13 19:36:28 scarabeus Exp $ + + 13 Feb 2011; Tomáš Chvátal <scarabeus@gentoo.org> + -libspectre-0.2.2.ebuild, -libspectre-0.2.3.ebuild, -libspectre-0.2.4.ebuild: + old 27 Jul 2010; Jeroen Roovers <jer@gentoo.org> libspectre-0.2.2.ebuild, libspectre-0.2.3.ebuild, libspectre-0.2.4.ebuild, libspectre-0.2.5.ebuild, diff --git a/app-text/libspectre/libspectre-0.2.2.ebuild b/app-text/libspectre/libspectre-0.2.2.ebuild deleted file mode 100644 index e6092d685a90..000000000000 --- a/app-text/libspectre/libspectre-0.2.2.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# 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.2.ebuild,v 1.10 2010/07/27 01:26:40 jer 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 ~arm ia64 ppc ppc64 sparc x86 ~x86-fbsd" -SLOT="0" -IUSE="debug doc test" - -RDEPEND=">=app-text/ghostscript-gpl-8.61-r1" -DEPEND="${RDEPEND} - 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 -} diff --git a/app-text/libspectre/libspectre-0.2.3.ebuild b/app-text/libspectre/libspectre-0.2.3.ebuild deleted file mode 100644 index 96978e34fea0..000000000000 --- a/app-text/libspectre/libspectre-0.2.3.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# 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.3.ebuild,v 1.4 2010/07/27 01:26:40 jer 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 ~arm ~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 -} diff --git a/app-text/libspectre/libspectre-0.2.4.ebuild b/app-text/libspectre/libspectre-0.2.4.ebuild deleted file mode 100644 index 3416016d8f44..000000000000 --- a/app-text/libspectre/libspectre-0.2.4.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# 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.3 2010/07/27 01:26:40 jer 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 ~arm ~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 -} |