summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2016-07-09 13:45:46 +0200
committerPacho Ramos <pacho@gentoo.org>2016-07-09 15:39:52 +0200
commita3b242936e8550f29bbd235732b8ded5bb352177 (patch)
tree0ad855ea9c28aea4373157c915fbddaafa1dfd96 /app-text/libspectre
parentapp-crypt/acme: Version bump (diff)
downloadgentoo-a3b242936e8550f29bbd235732b8ded5bb352177.tar.gz
gentoo-a3b242936e8550f29bbd235732b8ded5bb352177.tar.bz2
gentoo-a3b242936e8550f29bbd235732b8ded5bb352177.zip
app-text/libspectre: Drop old
Package-Manager: portage-2.3.0
Diffstat (limited to 'app-text/libspectre')
-rw-r--r--app-text/libspectre/Manifest1
-rw-r--r--app-text/libspectre/libspectre-0.2.6.ebuild51
2 files changed, 0 insertions, 52 deletions
diff --git a/app-text/libspectre/Manifest b/app-text/libspectre/Manifest
index df02906932b3..e7a3d5aba094 100644
--- a/app-text/libspectre/Manifest
+++ b/app-text/libspectre/Manifest
@@ -1,2 +1 @@
-DIST libspectre-0.2.6.tar.gz 358088 SHA256 2f637c62322c8040514284c00f63a5c310a28801e7dcfbe2ba2791be4fac0dd3 SHA512 4f99afe68293e188f70a5043f0c5199123d6ab0936f196b198f1c66eff980d54a6fba093be39839180dcef82db5fd9780a9d50887e453352d7b90b986829dfb6 WHIRLPOOL 0335575a7a5a5fa5724b35456105badcb845202b0d48b03a03f292aab10959e1a4ba9d94189c935667114878f20f7a5b8cbb892bf52533b4846a5afebb1eecb7
DIST libspectre-0.2.7.tar.gz 387947 SHA256 e81b822a106beed14cf0fec70f1b890c690c2ffa150fa2eee41dc26518a6c3ec SHA512 2e60905f7eeed9ac6ec3b5f8b47a7dad85178c8c35a63ba097ef6088dd334f7fde5797ecb05cf67532b759d07a65006427914d2cd6b09107ecc90620c9541794 WHIRLPOOL b59a1fea4ebd0cac13d4b5c7e76247de214761929bd71cf7879832acc4779786d764ddf2d38c5dea070f6e05c41f0d8460b8a8b11a51c35492827228740fb604
diff --git a/app-text/libspectre/libspectre-0.2.6.ebuild b/app-text/libspectre/libspectre-0.2.6.ebuild
deleted file mode 100644
index b2cc854fd4c2..000000000000
--- a/app-text/libspectre/libspectre-0.2.6.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=4
-inherit autotools eutils
-
-DESCRIPTION="A library for rendering Postscript documents"
-HOMEPAGE="https://www.freedesktop.org/wiki/Software/libspectre"
-SRC_URI="https://libspectre.freedesktop.org/releases/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 arm ia64 ~mips ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~x64-solaris"
-IUSE="debug doc static-libs"
-
-RDEPEND=">=app-text/ghostscript-gpl-8.62"
-DEPEND="${RDEPEND}
- virtual/pkgconfig
- doc? ( app-doc/doxygen )"
-
-# does not actually test anything, see bug 362557
-RESTRICT="test"
-
-DOCS="NEWS README TODO"
-
-src_prepare() {
- epatch "${FILESDIR}"/${PN}-0.2.0-interix.patch
- eautoreconf # need new libtool for interix
-}
-
-src_configure() {
- econf \
- $(use_enable debug asserts) \
- $(use_enable debug checks) \
- $(use_enable static-libs static) \
- --disable-test
-}
-
-src_compile() {
- emake
- if use doc; then
- doxygen || die
- fi
-}
-
-src_install() {
- default
- use doc && dohtml -r doc/html/*
- find "${ED}" -name '*.la' -exec rm -f {} +
-}