diff options
author | Arthur Zamarin <arthurzam@gentoo.org> | 2024-02-23 20:33:14 +0200 |
---|---|---|
committer | Arthur Zamarin <arthurzam@gentoo.org> | 2024-02-23 20:33:14 +0200 |
commit | aef0ef66bf7cce12aeea00a3efd0e745def7e095 (patch) | |
tree | 1d721631e7b483c61d7ea9667fdabc7b7ec8e584 /dev-libs/log4cpp/log4cpp-1.1.4.ebuild | |
parent | app-editors/vscodium: add 1.86.2.24054 (diff) | |
download | gentoo-aef0ef66bf7cce12aeea00a3efd0e745def7e095.tar.gz gentoo-aef0ef66bf7cce12aeea00a3efd0e745def7e095.tar.bz2 gentoo-aef0ef66bf7cce12aeea00a3efd0e745def7e095.zip |
dev-libs/log4cpp: add 1.1.4
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'dev-libs/log4cpp/log4cpp-1.1.4.ebuild')
-rw-r--r-- | dev-libs/log4cpp/log4cpp-1.1.4.ebuild | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/dev-libs/log4cpp/log4cpp-1.1.4.ebuild b/dev-libs/log4cpp/log4cpp-1.1.4.ebuild new file mode 100644 index 000000000000..3b679658a0e5 --- /dev/null +++ b/dev-libs/log4cpp/log4cpp-1.1.4.ebuild @@ -0,0 +1,59 @@ +# 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="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 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 +} |