Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libdaemon/
Date: Sun, 15 Dec 2019 13:37:12
Message-Id: 1576417024.3531035fbcebbdafc93a574260a0d82d5529e8cd.mgorny@gentoo
1 commit: 3531035fbcebbdafc93a574260a0d82d5529e8cd
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Dec 15 13:20:38 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Dec 15 13:37:04 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3531035f
7
8 dev-libs/libdaemon: Drop old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-libs/libdaemon/libdaemon-0.14-r1.ebuild | 57 ------------------------
13 dev-libs/libdaemon/libdaemon-0.14-r2.ebuild | 68 -----------------------------
14 2 files changed, 125 deletions(-)
15
16 diff --git a/dev-libs/libdaemon/libdaemon-0.14-r1.ebuild b/dev-libs/libdaemon/libdaemon-0.14-r1.ebuild
17 deleted file mode 100644
18 index 62f84c239a8..00000000000
19 --- a/dev-libs/libdaemon/libdaemon-0.14-r1.ebuild
20 +++ /dev/null
21 @@ -1,57 +0,0 @@
22 -# Copyright 1999-2014 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=4
26 -
27 -inherit libtool eutils
28 -
29 -DESCRIPTION="Simple library for creating daemon processes in C"
30 -HOMEPAGE="http://0pointer.de/lennart/projects/libdaemon/"
31 -SRC_URI="http://0pointer.de/lennart/projects/${PN}/${P}.tar.gz"
32 -
33 -LICENSE="LGPL-2.1"
34 -SLOT="0"
35 -KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sh sparc x86"
36 -IUSE="doc examples static-libs"
37 -
38 -RDEPEND=""
39 -DEPEND="doc? ( app-doc/doxygen )"
40 -
41 -DOCS=( "README" )
42 -
43 -src_configure() {
44 - econf \
45 - --docdir="${EPREFIX}/usr/share/doc/${PF}" \
46 - --localstatedir=/var \
47 - --disable-examples \
48 - --disable-lynx \
49 - $(use_enable static-libs static)
50 -}
51 -
52 -src_compile() {
53 - emake
54 -
55 - if use doc ; then
56 - einfo "Building documentation"
57 - emake doxygen
58 - fi
59 -}
60 -
61 -src_install() {
62 - default
63 -
64 - find "${ED}" -name '*.la' -exec rm -f {} +
65 -
66 - if use doc; then
67 - ln -sf doc/reference/html reference
68 - dohtml -r doc/README.html doc/style.css reference
69 - doman doc/reference/man/man*/*
70 - fi
71 -
72 - if use examples; then
73 - docinto examples
74 - dodoc examples/testd.c
75 - fi
76 -
77 - rm -rf "${ED}"/usr/share/doc/${PF}/{README.html,style.css} || die "rm failed"
78 -}
79
80 diff --git a/dev-libs/libdaemon/libdaemon-0.14-r2.ebuild b/dev-libs/libdaemon/libdaemon-0.14-r2.ebuild
81 deleted file mode 100644
82 index 5b3e995289a..00000000000
83 --- a/dev-libs/libdaemon/libdaemon-0.14-r2.ebuild
84 +++ /dev/null
85 @@ -1,68 +0,0 @@
86 -# Copyright 1999-2014 Gentoo Foundation
87 -# Distributed under the terms of the GNU General Public License v2
88 -
89 -EAPI=5
90 -
91 -inherit libtool eutils multilib-minimal
92 -
93 -DESCRIPTION="Simple library for creating daemon processes in C"
94 -HOMEPAGE="http://0pointer.de/lennart/projects/libdaemon/"
95 -SRC_URI="http://0pointer.de/lennart/projects/${PN}/${P}.tar.gz"
96 -
97 -LICENSE="LGPL-2.1"
98 -SLOT="0"
99 -KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86"
100 -IUSE="doc examples static-libs"
101 -
102 -RDEPEND=""
103 -DEPEND="doc? ( app-doc/doxygen )"
104 -
105 -DOCS=( "README" )
106 -
107 -src_prepare() {
108 - epatch_user
109 -
110 - # doxygen is broken with out-of-source builds
111 - multilib_copy_sources
112 -}
113 -
114 -multilib_src_configure() {
115 - econf \
116 - --docdir="${EPREFIX}/usr/share/doc/${PF}" \
117 - --localstatedir=/var \
118 - --disable-examples \
119 - --disable-lynx \
120 - $(use_enable static-libs static)
121 -}
122 -
123 -multilib_src_compile() {
124 - emake
125 -
126 - if multilib_is_native_abi && use doc; then
127 - einfo "Building documentation"
128 - emake doxygen
129 - fi
130 -}
131 -
132 -multilib_src_install() {
133 - emake DESTDIR="${D}" install
134 -
135 - if multilib_is_native_abi && use doc; then
136 - ln -sf doc/reference/html reference
137 - dohtml -r doc/README.html doc/style.css reference
138 - doman doc/reference/man/man*/*
139 - fi
140 -
141 -}
142 -
143 -multilib_src_install_all() {
144 - einstalldocs
145 - prune_libtool_files --all
146 -
147 - if use examples; then
148 - docinto examples
149 - dodoc examples/testd.c
150 - fi
151 -
152 - rm "${ED}"/usr/share/doc/${PF}/{README.html,style.css} || die "rm failed"
153 -}