summaryrefslogtreecommitdiff
path: root/dev-libs/log4cpp/log4cpp-1.1.3-r1.ebuild
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2022-09-09 10:40:04 +0100
committerV3n3RiX <venerix@koprulu.sector>2022-09-09 10:40:04 +0100
commitb426a5cef3f0ebe3389686a1c145a834d3a1e120 (patch)
treeeee77f741af6979f620416c573e5203eab81c9c3 /dev-libs/log4cpp/log4cpp-1.1.3-r1.ebuild
parent97b176c73aa78bd33234884388e3978f520161c3 (diff)
gentoo auto-resync : 09:09:2022 - 10:40:04
Diffstat (limited to 'dev-libs/log4cpp/log4cpp-1.1.3-r1.ebuild')
-rw-r--r--dev-libs/log4cpp/log4cpp-1.1.3-r1.ebuild63
1 files changed, 0 insertions, 63 deletions
diff --git a/dev-libs/log4cpp/log4cpp-1.1.3-r1.ebuild b/dev-libs/log4cpp/log4cpp-1.1.3-r1.ebuild
deleted file mode 100644
index 286862cfccee..000000000000
--- a/dev-libs/log4cpp/log4cpp-1.1.3-r1.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools multilib-minimal
-
-DESCRIPTION="C++ classes for flexible logging to files, syslog and other destinations"
-HOMEPAGE="http://log4cpp.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-S="${WORKDIR}/${PN}"
-
-LICENSE="LGPL-2.1"
-SLOT="0/5"
-KEYWORDS="amd64 ~arm ppc ~riscv ~s390 x86"
-IUSE="doc static-libs test"
-RESTRICT="!test? ( test )"
-
-BDEPEND="doc? ( app-doc/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
-)
-
-MULTILIB_CHOST_TOOLS=(
- /usr/bin/log4cpp-config
-)
-
-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
-}
-
-multilib_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_SOURCE="${S}" econf \
- --without-idsa \
- $(multilib_native_use_enable doc doxygen) \
- $(use_enable static-libs static)
-}
-
-multilib_src_install_all() {
- einstalldocs
-
- # Package installs .pc files
- find "${D}" -name '*.la' -delete || die
-}