Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/libspectre/
Date: Sat, 09 Jul 2016 13:40:36
Message-Id: 1468071592.a3b242936e8550f29bbd235732b8ded5bb352177.pacho@gentoo
1 commit: a3b242936e8550f29bbd235732b8ded5bb352177
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jul 9 11:45:46 2016 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sat Jul 9 13:39:52 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a3b24293
7
8 app-text/libspectre: Drop old
9
10 Package-Manager: portage-2.3.0
11
12 app-text/libspectre/Manifest | 1 -
13 app-text/libspectre/libspectre-0.2.6.ebuild | 51 -----------------------------
14 2 files changed, 52 deletions(-)
15
16 diff --git a/app-text/libspectre/Manifest b/app-text/libspectre/Manifest
17 index df02906..e7a3d5a 100644
18 --- a/app-text/libspectre/Manifest
19 +++ b/app-text/libspectre/Manifest
20 @@ -1,2 +1 @@
21 -DIST libspectre-0.2.6.tar.gz 358088 SHA256 2f637c62322c8040514284c00f63a5c310a28801e7dcfbe2ba2791be4fac0dd3 SHA512 4f99afe68293e188f70a5043f0c5199123d6ab0936f196b198f1c66eff980d54a6fba093be39839180dcef82db5fd9780a9d50887e453352d7b90b986829dfb6 WHIRLPOOL 0335575a7a5a5fa5724b35456105badcb845202b0d48b03a03f292aab10959e1a4ba9d94189c935667114878f20f7a5b8cbb892bf52533b4846a5afebb1eecb7
22 DIST libspectre-0.2.7.tar.gz 387947 SHA256 e81b822a106beed14cf0fec70f1b890c690c2ffa150fa2eee41dc26518a6c3ec SHA512 2e60905f7eeed9ac6ec3b5f8b47a7dad85178c8c35a63ba097ef6088dd334f7fde5797ecb05cf67532b759d07a65006427914d2cd6b09107ecc90620c9541794 WHIRLPOOL b59a1fea4ebd0cac13d4b5c7e76247de214761929bd71cf7879832acc4779786d764ddf2d38c5dea070f6e05c41f0d8460b8a8b11a51c35492827228740fb604
23
24 diff --git a/app-text/libspectre/libspectre-0.2.6.ebuild b/app-text/libspectre/libspectre-0.2.6.ebuild
25 deleted file mode 100644
26 index b2cc854..0000000
27 --- a/app-text/libspectre/libspectre-0.2.6.ebuild
28 +++ /dev/null
29 @@ -1,51 +0,0 @@
30 -# Copyright 1999-2012 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -# $Id$
33 -
34 -EAPI=4
35 -inherit autotools eutils
36 -
37 -DESCRIPTION="A library for rendering Postscript documents"
38 -HOMEPAGE="https://www.freedesktop.org/wiki/Software/libspectre"
39 -SRC_URI="https://libspectre.freedesktop.org/releases/${P}.tar.gz"
40 -
41 -LICENSE="GPL-2"
42 -SLOT="0"
43 -KEYWORDS="alpha amd64 arm ia64 ~mips ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~x64-solaris"
44 -IUSE="debug doc static-libs"
45 -
46 -RDEPEND=">=app-text/ghostscript-gpl-8.62"
47 -DEPEND="${RDEPEND}
48 - virtual/pkgconfig
49 - doc? ( app-doc/doxygen )"
50 -
51 -# does not actually test anything, see bug 362557
52 -RESTRICT="test"
53 -
54 -DOCS="NEWS README TODO"
55 -
56 -src_prepare() {
57 - epatch "${FILESDIR}"/${PN}-0.2.0-interix.patch
58 - eautoreconf # need new libtool for interix
59 -}
60 -
61 -src_configure() {
62 - econf \
63 - $(use_enable debug asserts) \
64 - $(use_enable debug checks) \
65 - $(use_enable static-libs static) \
66 - --disable-test
67 -}
68 -
69 -src_compile() {
70 - emake
71 - if use doc; then
72 - doxygen || die
73 - fi
74 -}
75 -
76 -src_install() {
77 - default
78 - use doc && dohtml -r doc/html/*
79 - find "${ED}" -name '*.la' -exec rm -f {} +
80 -}