Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/opensp/
Date: Mon, 22 Nov 2021 16:37:12
Message-Id: 1637598927.b2bd65caf4605b62210049b00265cb92853602d9.asturm@gentoo
1 commit: b2bd65caf4605b62210049b00265cb92853602d9
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Mon Nov 22 16:31:11 2021 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Mon Nov 22 16:35:27 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2bd65ca
7
8 app-text/opensp: Drop 1.5.2-r3
9
10 Bug: https://bugs.gentoo.org/822195
11 Package-Manager: Portage-3.0.28, Repoman-3.0.3
12 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
13
14 app-text/opensp/opensp-1.5.2-r3.ebuild | 79 ----------------------------------
15 1 file changed, 79 deletions(-)
16
17 diff --git a/app-text/opensp/opensp-1.5.2-r3.ebuild b/app-text/opensp/opensp-1.5.2-r3.ebuild
18 deleted file mode 100644
19 index 805de75745c2..000000000000
20 --- a/app-text/opensp/opensp-1.5.2-r3.ebuild
21 +++ /dev/null
22 @@ -1,79 +0,0 @@
23 -# Copyright 1999-2021 Gentoo Authors
24 -# Distributed under the terms of the GNU General Public License v2
25 -
26 -EAPI=5
27 -inherit epatch flag-o-matic
28 -
29 -MY_P=${P/opensp/OpenSP}
30 -
31 -DESCRIPTION="A free, object-oriented toolkit for SGML parsing and entity management"
32 -HOMEPAGE="http://openjade.sourceforge.net/"
33 -SRC_URI="mirror://sourceforge/openjade/${MY_P}.tar.gz"
34 -
35 -LICENSE="MIT"
36 -SLOT="0"
37 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
38 -IUSE="doc nls static-libs test"
39 -RESTRICT="!test? ( test )"
40 -
41 -DEPEND="net-libs/libnsl:0=
42 - nls? ( sys-devel/gettext )
43 - doc? (
44 - app-text/xmlto
45 - app-text/docbook-xml-dtd:4.1.2
46 - )
47 - test? (
48 - app-text/docbook-xml-dtd:4.5
49 - app-text/openjade
50 - app-text/sgml-common
51 - )"
52 -RDEPEND="net-libs/libnsl:0="
53 -
54 -S=${WORKDIR}/${MY_P}
55 -
56 -src_prepare() {
57 - epatch \
58 - "${FILESDIR}"/${PN}-1.5-gcc34.patch \
59 - "${FILESDIR}"/${P}-fix-segfault.patch
60 -}
61 -
62 -src_configure() {
63 - export CONFIG_SHELL=${BASH} # configure needs bash
64 -
65 - # The following filters are taken from openjade's ebuild. See bug #100828.
66 - # Please note! Opts are disabled. If you know what you're doing
67 - # feel free to remove this line. It may cause problems with
68 - # docbook-sgml-utils among other things.
69 - #ALLOWED_FLAGS="-O -O1 -O2 -pipe -g -march"
70 - strip-flags
71 -
72 - econf \
73 - --enable-http \
74 - --enable-default-catalog="${EPREFIX}"/etc/sgml/catalog \
75 - --enable-default-search-path="${EPREFIX}"/usr/share/sgml \
76 - --datadir="${EPREFIX}"/usr/share/sgml/${P} \
77 - $(use_enable nls) \
78 - $(use_enable doc doc-build) \
79 - $(use_enable static-libs static)
80 -}
81 -
82 -src_compile() {
83 - emake pkgdocdir="${EPREFIX}"/usr/share/doc/${PF}
84 -}
85 -
86 -src_test() {
87 - # Skipping tests known not to work
88 - emake SHOWSTOPPERS= check
89 - SANDBOX_PREDICT="${SANDBOX_PREDICT%:/}"
90 -}
91 -
92 -src_install() {
93 - emake \
94 - DESTDIR="${D}" \
95 - pkgdocdir="${EPREFIX}"/usr/share/doc/${PF} \
96 - install
97 -
98 - find "${ED}" -name '*.la' -delete || die
99 -
100 - dodoc AUTHORS BUGS ChangeLog NEWS README
101 -}