Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/log4cpp/
Date: Mon, 29 Aug 2022 08:38:40
Message-Id: 1661762182.e5e473018bc9f7581278a7bac10fd0cbd74c15ba.asturm@gentoo
1 commit: e5e473018bc9f7581278a7bac10fd0cbd74c15ba
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Mon Aug 29 08:02:00 2022 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Mon Aug 29 08:36:22 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e5e47301
7
8 dev-libs/log4cpp: drop 1.1.3, EAPI-6--
9
10 Closes: https://bugs.gentoo.org/867115
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 dev-libs/log4cpp/log4cpp-1.1.3.ebuild | 61 -----------------------------------
14 1 file changed, 61 deletions(-)
15
16 diff --git a/dev-libs/log4cpp/log4cpp-1.1.3.ebuild b/dev-libs/log4cpp/log4cpp-1.1.3.ebuild
17 deleted file mode 100644
18 index a8a7106a7709..000000000000
19 --- a/dev-libs/log4cpp/log4cpp-1.1.3.ebuild
20 +++ /dev/null
21 @@ -1,61 +0,0 @@
22 -# Copyright 1999-2022 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=6
26 -
27 -inherit autotools multilib-minimal
28 -
29 -DESCRIPTION="C++ classes for flexible logging to files, syslog and other destinations"
30 -HOMEPAGE="http://log4cpp.sourceforge.net/"
31 -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
32 -
33 -LICENSE="LGPL-2.1"
34 -SLOT="0/5"
35 -KEYWORDS="amd64 ~arm ppc ~riscv ~s390 x86"
36 -IUSE="doc static-libs test"
37 -RESTRICT="!test? ( test )"
38 -
39 -DEPEND="doc? ( app-doc/doxygen )"
40 -RDEPEND=""
41 -
42 -PATCHES=(
43 - "${FILESDIR}"/1.0-doc_install_path.patch
44 - "${FILESDIR}"/1.0-gcc43.patch
45 - "${FILESDIR}"/1.0-asneeded.patch
46 - "${FILESDIR}"/${PN}-1.1-cmath-fix.patch
47 - "${FILESDIR}"/${PN}-1.1-automake-1.13.patch
48 - "${FILESDIR}"/${PN}-1.1-glibc-2.31.patch
49 -)
50 -
51 -S="${WORKDIR}/${PN}"
52 -
53 -MULTILIB_CHOST_TOOLS=(
54 - /usr/bin/log4cpp-config
55 -)
56 -
57 -src_prepare() {
58 - default
59 -
60 - mv configure.{in,ac} || die
61 -
62 - # Build tests conditionally
63 - if ! use test; then
64 - sed -i -e '/^SUBDIRS/s/ tests//' Makefile.am || die
65 - fi
66 -
67 - eautoreconf
68 -}
69 -
70 -multilib_src_configure() {
71 - ECONF_SOURCE=${S} econf \
72 - --without-idsa \
73 - $(use_enable doc doxygen) \
74 - $(use_enable static-libs static)
75 -}
76 -
77 -multilib_src_install_all() {
78 - einstalldocs
79 -
80 - # package installs .pc files
81 - find "${D}" -name '*.la' -delete || die
82 -}