diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2018-01-14 13:34:45 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2018-01-14 13:35:14 +0100 |
commit | 53bbdd85232484ac303f6c034b7d0fa91cb97c5f (patch) | |
tree | 8e16e1bf6e7ce4e83934c153bbde90a2d8e949ee /dev-libs/log4cplus | |
parent | app-misc/mc: stable 4.8.20-r1 for ppc/ppc64 #644450 (diff) | |
download | gentoo-53bbdd85232484ac303f6c034b7d0fa91cb97c5f.tar.gz gentoo-53bbdd85232484ac303f6c034b7d0fa91cb97c5f.tar.bz2 gentoo-53bbdd85232484ac303f6c034b7d0fa91cb97c5f.zip |
dev-libs/log4cplus: Drop old
Package-Manager: Portage-2.3.19, Repoman-2.3.6
Diffstat (limited to 'dev-libs/log4cplus')
-rw-r--r-- | dev-libs/log4cplus/Manifest | 1 | ||||
-rw-r--r-- | dev-libs/log4cplus/log4cplus-1.1.3_rc7.ebuild | 77 |
2 files changed, 0 insertions, 78 deletions
diff --git a/dev-libs/log4cplus/Manifest b/dev-libs/log4cplus/Manifest index a37d128dad5a..3384710de4a5 100644 --- a/dev-libs/log4cplus/Manifest +++ b/dev-libs/log4cplus/Manifest @@ -1,2 +1 @@ -DIST log4cplus-1.1.3-rc7.tar.bz2 562969 BLAKE2B c67365a3e12b037014b9ec876b5725d74cd3856fa92aacb084dc3fad8557eb1b5c49a77fb5abf0833ee99bdcd646fea1f09bbd14fc7aa8b574ff396424195cfc SHA512 6854a966dfd5a2b807778e34957ea33c43a340b8be71a1a989941ec6c6fdc22d181dc2f0bb0e87910c77417a9f5c4f07d4fbd8f13eadffe82adef10a1e00ef02 DIST log4cplus-1.2.0.tar.bz2 629119 BLAKE2B f1b4629f7b6184b3f34f9d702c17487e113548cba46f5a25bb0f4972d7f3ce207310b25c94abea8cc1360591f7d0ac3d466075e584f25ce1968fee9d5b5c543a SHA512 2c3f16645051a230f9ec9a6ac689421efc4b51d5f40cb772e552bd199d2ad13c39d7e577cc63d51617555941412da166a6cda8861ee219154a953d9926aae626 diff --git a/dev-libs/log4cplus/log4cplus-1.1.3_rc7.ebuild b/dev-libs/log4cplus/log4cplus-1.1.3_rc7.ebuild deleted file mode 100644 index 3f533325b5ea..000000000000 --- a/dev-libs/log4cplus/log4cplus-1.1.3_rc7.ebuild +++ /dev/null @@ -1,77 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -MY_P="${P/_/-}" - -DESCRIPTION="C++ port of the Log for Java (log4j) logging library" -HOMEPAGE="http://log4cplus.sourceforge.net/" -SRC_URI="mirror://sourceforge/project/${PN}/${PN}-stable/${PV%_*}/${MY_P}.tar.bz2" - -LICENSE="|| ( Apache-2.0 BSD-2 )" -SLOT="0/1.1-9" -KEYWORDS="~amd64 ~x86" -IUSE="iconv test threads working-locale working-c-locale qt4" -REQUIRED_USE="?? ( iconv working-locale working-c-locale )" - -RDEPEND="iconv? ( virtual/libiconv ) - qt4? ( dev-qt/qtcore:4 )" -DEPEND="virtual/pkgconfig - ${RDEPEND}" - -S="${WORKDIR}/${MY_P}" - -src_prepare() { - default - - if ! use test; then - sed -i -e 's:tests::' Makefile.in || die - fi -} - -src_configure() { - econf \ - --disable-static \ - $(use_enable threads) \ - $(use_with iconv) \ - $(use_with working-locale) \ - $(use_with working-c-locale) \ - $(use_with qt4 qt) -} - -src_compile() { - default - use test && emake -C tests -} - -src_test() { - cd tests/ || die - - local t - for t in appender customloglevel fileappender filter \ - hierarchy loglog ndc ostream patternlayout performance priority \ - propertyconfig timeformat; do - einfo "Running test \"${t}_test\"" - pushd "${t}_test/" >/dev/null || die - ./${t}_test || die "Running ${t}_test failed!" - popd >/dev/null || die - done - - if use threads; then - for t in configandwatch thread; do - einfo "Running test \"${t}_test\"" - pushd "${t}_test/" >/dev/null || die - ./${t}_test || die "Running ${t}_test failed!" - popd >/dev/null || die - done - fi -} - -src_install() { - default - dodoc docs/unicode.txt - - # package provides .pc files - find "${D}" -name '*.la' -delete || die -} |