summaryrefslogtreecommitdiff
path: root/dev-libs/log4cpp/log4cpp-1.1.4.ebuild
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
commita3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch)
tree0c52bbae1c242fbc296bd650fcd1167685f81492 /dev-libs/log4cpp/log4cpp-1.1.4.ebuild
parentbfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff)
downloadbaldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip
Adding metadata
Diffstat (limited to 'dev-libs/log4cpp/log4cpp-1.1.4.ebuild')
-rw-r--r--dev-libs/log4cpp/log4cpp-1.1.4.ebuild59
1 files changed, 0 insertions, 59 deletions
diff --git a/dev-libs/log4cpp/log4cpp-1.1.4.ebuild b/dev-libs/log4cpp/log4cpp-1.1.4.ebuild
deleted file mode 100644
index 02cc5ca94e05..000000000000
--- a/dev-libs/log4cpp/log4cpp-1.1.4.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools flag-o-matic
-
-DESCRIPTION="C++ classes for flexible logging to files, syslog and other destinations"
-HOMEPAGE="https://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-asneeded.patch
- "${FILESDIR}"/${PN}-1.1-cmath-fix.patch
- "${FILESDIR}"/${PN}-1.1-automake-1.13.patch
- "${FILESDIR}"/${PN}-1.1.3-fix-version.patch
- "${FILESDIR}"/${PN}-1.1.4-fix-implicit-func-in-configure.patch
- "${FILESDIR}"/${PN}-1.1.4-gcc43.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() {
- append-cxxflags -Wno-register # https://bugs.gentoo.org/895054
- # 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
-}