diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2022-08-29 10:02:00 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2022-08-29 10:36:22 +0200 |
commit | e5e473018bc9f7581278a7bac10fd0cbd74c15ba (patch) | |
tree | 0168c629142bd86b45183e96ebb7c05776497552 | |
parent | x11-wm/windowlab: drop 1.40-r1, EAPI-6-- (diff) | |
download | gentoo-e5e473018bc9f7581278a7bac10fd0cbd74c15ba.tar.gz gentoo-e5e473018bc9f7581278a7bac10fd0cbd74c15ba.tar.bz2 gentoo-e5e473018bc9f7581278a7bac10fd0cbd74c15ba.zip |
dev-libs/log4cpp: drop 1.1.3, EAPI-6--
Closes: https://bugs.gentoo.org/867115
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
-rw-r--r-- | dev-libs/log4cpp/log4cpp-1.1.3.ebuild | 61 |
1 files changed, 0 insertions, 61 deletions
diff --git a/dev-libs/log4cpp/log4cpp-1.1.3.ebuild b/dev-libs/log4cpp/log4cpp-1.1.3.ebuild deleted file mode 100644 index a8a7106a7709..000000000000 --- a/dev-libs/log4cpp/log4cpp-1.1.3.ebuild +++ /dev/null @@ -1,61 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -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" - -LICENSE="LGPL-2.1" -SLOT="0/5" -KEYWORDS="amd64 ~arm ppc ~riscv ~s390 x86" -IUSE="doc static-libs test" -RESTRICT="!test? ( test )" - -DEPEND="doc? ( app-doc/doxygen )" -RDEPEND="" - -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 -) - -S="${WORKDIR}/${PN}" - -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() { - ECONF_SOURCE=${S} econf \ - --without-idsa \ - $(use_enable doc doxygen) \ - $(use_enable static-libs static) -} - -multilib_src_install_all() { - einstalldocs - - # package installs .pc files - find "${D}" -name '*.la' -delete || die -} |