summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas K. Hüttel <dilfridge@gentoo.org>2024-11-03 22:23:34 +0100
committerAndreas K. Hüttel <dilfridge@gentoo.org>2024-11-03 22:25:50 +0100
commit516bfe3aa30a5fe5afa2faee7bf2997a3b309d77 (patch)
tree7c1908f9b3933a6f1e449a48413a107c22849f47 /dev-libs
parentdev-libs/expat: drop 2.5.0, 2.6.0, 2.6.1, 2.6.2 (diff)
downloadgentoo-516bfe3aa30a5fe5afa2faee7bf2997a3b309d77.tar.gz
gentoo-516bfe3aa30a5fe5afa2faee7bf2997a3b309d77.tar.bz2
gentoo-516bfe3aa30a5fe5afa2faee7bf2997a3b309d77.zip
dev-libs/log4cpp: drop 1.1.3-r2
Bug: https://bugs.gentoo.org/906535 Signed-off-by: Andreas K. Hüttel <dilfridge@gentoo.org>
Diffstat (limited to 'dev-libs')
-rw-r--r--dev-libs/log4cpp/log4cpp-1.1.3-r2.ebuild58
1 files changed, 0 insertions, 58 deletions
diff --git a/dev-libs/log4cpp/log4cpp-1.1.3-r2.ebuild b/dev-libs/log4cpp/log4cpp-1.1.3-r2.ebuild
deleted file mode 100644
index e73fe69e5d42..000000000000
--- a/dev-libs/log4cpp/log4cpp-1.1.3-r2.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools
-
-DESCRIPTION="C++ classes for flexible logging to files, syslog and other destinations"
-HOMEPAGE="http://log4cpp.sourceforge.net/"
-SRC_URI="https://downloads.sourceforge.net/${PN}/${P}.tar.gz"
-S="${WORKDIR}/${PN}"
-
-LICENSE="LGPL-2.1"
-SLOT="0/5"
-KEYWORDS="amd64 ~arm ppc ~riscv ~s390 x86"
-IUSE="doc test"
-RESTRICT="!test? ( test )"
-
-BDEPEND="doc? ( app-text/doxygen )"
-
-PATCHES=(
- "${FILESDIR}"/1.0-doc_install_path.patch
- "${FILESDIR}"/1.0-gcc43.patch
- "${FILESDIR}"/1.0-asneeded.patch
- "${FILESDIR}"/${PN}-1.1-cmath-fix.patch
- "${FILESDIR}"/${PN}-1.1-automake-1.13.patch
- "${FILESDIR}"/${PN}-1.1-glibc-2.31.patch
- "${FILESDIR}"/${PN}-1.1.3-fix-version.patch
-)
-
-src_prepare() {
- default
-
- mv configure.{in,ac} || die
-
- # Build tests conditionally
- if ! use test; then
- sed -i -e '/^SUBDIRS/s/ tests//' Makefile.am || die
- fi
-
- eautoreconf
-}
-
-src_configure() {
- # Bashisms call configure tests to malfunction / config.h to be misgenerated
- # which then causes a build failure later on in the package (w/ GCC 12,
- # anyway).
- CONFIG_SHELL="${BROOT}"/bin/bash econf \
- --without-idsa \
- $(use_enable doc doxygen)
-}
-
-src_install() {
- default
-
- # Package installs .pc files
- find "${ED}" -name '*.la' -delete || die
-}