Gentoo Archives: gentoo-commits

From: Lars Wendler <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/mandoc/
Date: Sun, 10 Mar 2019 17:52:43
Message-Id: 1552240351.b99dae4ce50d9112a6e3e5edad0bebbe34a46948.polynomial-c@gentoo
1 commit: b99dae4ce50d9112a6e3e5edad0bebbe34a46948
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Sun Mar 10 17:52:31 2019 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 10 17:52:31 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b99dae4c
7
8 app-text/mandoc: Removed old.
9
10 Package-Manager: Portage-2.3.62, Repoman-2.3.12
11 Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
12
13 app-text/mandoc/Manifest | 1 -
14 app-text/mandoc/mandoc-1.14.3.ebuild | 60 ------------------------------------
15 2 files changed, 61 deletions(-)
16
17 diff --git a/app-text/mandoc/Manifest b/app-text/mandoc/Manifest
18 index b9bd73840b8..5245af49812 100644
19 --- a/app-text/mandoc/Manifest
20 +++ b/app-text/mandoc/Manifest
21 @@ -1,3 +1,2 @@
22 -DIST mandoc-1.14.3.tar.gz 617202 BLAKE2B f534c200d450ad526946afe3ffd0a6c21831080312220452aba400f97d11a01ec2e7e31ae64cd9f4e40c00487769b2ad4a9fe132adbe1419b96e7a5995ef746b SHA512 cd638fbacb068fcd6191f2a4e941effc010e3ebf06a3e32847b892c2e561771d03d5bca8fbdf8434d6491f4b68df3f443e2568b79193b7342044fba476fcd30b
23 DIST mandoc-1.14.4.tar.gz 627229 BLAKE2B 43a561d4254e8bcd090891937582d7ee40cda70dcafbbe456f24c539f17f452081f324a90eae69f1025dab3760581d564fef3365e82204350d535f4809c36283 SHA512 c68390711a739284ad9a61364f3fea76c0c48c02b4830d6326b07c4188d099e3720ae3b91fc3b083269381b417b7e3f3647d13a54ed2548f8c2f94122f8a7d97
24 DIST mandoc-1.14.5.tar.gz 651846 BLAKE2B 27aaf97e7226e989b33861d2a255304bb64a7cd43ca026568f4b044035241c3315a0d73673b023d9ca5b80575b8c584889832bbd86b80aaa49bb785b37559367 SHA512 848f290847f3095757f25647e6d73eb7044018b145bf6f9dc8b5db164b1421911efdc5b3b9022ec3a2c5af9687a84d5acedee810f2bd2f7caaa9242dadb2cc52
25
26 diff --git a/app-text/mandoc/mandoc-1.14.3.ebuild b/app-text/mandoc/mandoc-1.14.3.ebuild
27 deleted file mode 100644
28 index 927d26c15a0..00000000000
29 --- a/app-text/mandoc/mandoc-1.14.3.ebuild
30 +++ /dev/null
31 @@ -1,60 +0,0 @@
32 -# Copyright 1999-2017 Gentoo Foundation
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI="6"
36 -
37 -inherit multilib toolchain-funcs
38 -
39 -DESCRIPTION="Suite of tools compiling mdoc and man"
40 -HOMEPAGE="http://mdocml.bsd.lv/"
41 -SRC_URI="http://mdocml.bsd.lv/snapshots/${P}.tar.gz"
42 -
43 -LICENSE="ISC"
44 -SLOT="0"
45 -KEYWORDS="~amd64 ~x86"
46 -IUSE="static"
47 -
48 -LIB_DEPEND="sys-libs/zlib[static-libs(+)]"
49 -RDEPEND="!static? ( ${LIB_DEPEND//\[static-libs(+)]} )"
50 -DEPEND="${RDEPEND}
51 - static? ( ${LIB_DEPEND} )"
52 -
53 -src_prepare() {
54 - default
55 -
56 - # The db-install change is to support parallel installs.
57 - sed -i \
58 - -e '/ar rs/s:ar:$(AR):' \
59 - -e '/^db-install:/s:$: base-install:' \
60 - Makefile || die
61 -
62 - cat <<-EOF > "configure.local"
63 - PREFIX="${EPREFIX}/usr"
64 - BINDIR="${EPREFIX}/usr/bin"
65 - SBINDIR="${EPREFIX}/usr/sbin"
66 - LIBDIR="${EPREFIX}/usr/$(get_libdir)"
67 - MANDIR="${EPREFIX}/usr/share/man"
68 - INCLUDEDIR="${EPREFIX}/usr/include/mandoc"
69 - EXAMPLEDIR="${EPREFIX}/usr/share/examples/mandoc"
70 - MANPATH_DEFAULT="${EPREFIX}/usr/man:${EPREFIX}/usr/share/man:${EPREFIX}/usr/local/man:${EPREFIX}/usr/local/share/man"
71 -
72 - BINM_MAN=mman
73 - BINM_SOELIM=msoelim
74 - BINM_APROPOS=mapropos
75 - BINM_WHATIS=mwhatis
76 - BINM_MAKEWHATIS=mmakewhatis
77 - MANM_MAN=mandoc_man
78 - MANM_MDOC=mandoc_mdoc
79 - MANM_ROFF=mandoc_roff
80 - MANM_EQN=mandoc_eqn
81 - MANM_TBL=mandoc_tbl
82 - MANM_MANCONF=mman.conf
83 -
84 - CFLAGS="${CFLAGS} ${CPPFLAGS}"
85 - LDFLAGS="${LDFLAGS} $(usex static -static '')"
86 - AR="$(tc-getAR)"
87 - CC="$(tc-getCC)"
88 - # The STATIC variable is only used by man.cgi.
89 - STATIC=
90 - EOF
91 -}