diff options
Diffstat (limited to 'dev-libs/log4cxx')
-rw-r--r-- | dev-libs/log4cxx/Manifest | 2 | ||||
-rw-r--r-- | dev-libs/log4cxx/log4cxx-1.0.0.ebuild | 56 |
2 files changed, 0 insertions, 58 deletions
diff --git a/dev-libs/log4cxx/Manifest b/dev-libs/log4cxx/Manifest index f19f63f8b282..99c8dfa3f580 100644 --- a/dev-libs/log4cxx/Manifest +++ b/dev-libs/log4cxx/Manifest @@ -1,5 +1,3 @@ -DIST apache-log4cxx-1.0.0.tar.gz 554344 BLAKE2B 2664cdcb84c298cd9be49e98ee767f16665614435ad44e79fa4d10219f42373ba8bb3f6cfe698bd65c0565ba120b6f6e1ab7a8de8ce9a1f43e977dde80596c3a SHA512 a6b928d7b5b4fb60a67504be082f436a6d1a750b752a89df51d0660670b6c008e7376cf56c1749fd5fc17777ae8a2d957f72879c9a89487ecb0f179999dc1283 DIST apache-log4cxx-1.2.0.tar.gz 652992 BLAKE2B b20211dfc0fc722e5b34adea9b4f6009f827f5fae467d8e0ec097c9b8915b8413494232704eb49e062b7c18f53fc9240b244c093a3d54c1964a7f7b4ba41fe00 SHA512 377234407c5f1128fbff6e5d2fcda3f53aae275962cd9207257674fa016095f4bc4ac0c318c1ba2a75f3252402cce0776c1211ffa917a60f8a89a12f01d45efb -EBUILD log4cxx-1.0.0.ebuild 1327 BLAKE2B 68d6d114acd6682c0f4031289d3f2b14750f2f9a909ce10e5c3b98f49956ffcfaf7284403f8ae181cee581cffe3cb245b9bf057c4538cc10f727e96c0b0728af SHA512 8398d9c6cb251d9a9195ce5ea000b73466103f0ac1e49d2222b5630810d1db6200227f130c21e5c0051e23f205c3974f334cd8d93673b8490c7adf9d32887460 EBUILD log4cxx-1.2.0.ebuild 932 BLAKE2B 9dee03d42e521cfd69a15a14bb0e0a84e0fc52590f3bfba60b326a840a9bd24ddba17878ff7409d7f416cd484daa862e5d4ca69dc6570e6d696209e4522fddd1 SHA512 e5d2821774f86e06bd25b07dc49d20cdad8e395d1812537ae8ebcbe81e61b6e7dd623c89c7a04e2c393f7613ed50bdf689fc132b932b8d2bed20feb60209a51a MISC metadata.xml 349 BLAKE2B 16623880a591924cd9c0fb6371a9d99fe9b3e520e84e84517f1588d74dcc4e2e0d2d4d296c585a381e3000d991e790d2005d62cb262276a0a6175f216fe97552 SHA512 08113b1261b2a74088e8d1dcf2351707adab4b30868b57bf9c478e7f26a1015196191fcb9d938ca446a7f63e6fd79771a4a88706a7fceeac9c2dfc4f56099b50 diff --git a/dev-libs/log4cxx/log4cxx-1.0.0.ebuild b/dev-libs/log4cxx/log4cxx-1.0.0.ebuild deleted file mode 100644 index 58b07746bc0c..000000000000 --- a/dev-libs/log4cxx/log4cxx-1.0.0.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit cmake - -MY_P=apache-${P} -DESCRIPTION="Library of C++ classes for logging to files, syslog and other destinations" -HOMEPAGE="https://logging.apache.org/log4cxx/" -SRC_URI="mirror://apache/logging/${PN}/${PV}/${MY_P}.tar.gz" -S="${WORKDIR}/${MY_P}" - -LICENSE="Apache-2.0" -SLOT="0/15" -KEYWORDS="~alpha amd64 ~arm ~hppa ~ppc ~ppc64 ~x86" -IUSE="odbc smtp test" -RESTRICT="!test? ( test )" - -RDEPEND=" - dev-libs/apr:1= - dev-libs/apr-util:1= - dev-libs/libfmt:= - odbc? ( dev-db/unixODBC ) - smtp? ( net-libs/libesmtp ) -" -DEPEND="${RDEPEND}" -BDEPEND=" - app-arch/zip - test? ( - app-alternatives/gzip - app-arch/zip - ) -" - -src_prepare() { - # https://github.com/apache/logging-log4cxx/issues/189 - if ! use odbc ; then - sed -i -e 's:pkg_check_modules( odbc QUIET odbc ):pkg_check_modules( odbc QUIET odbcDoNotFindMe ):' src/main/include/CMakeLists.txt || die - fi - - if ! use smtp ; then - sed -i -e 's:CHECK_LIBRARY_EXISTS(esmtp smtp_create_session "" HAS_LIBESMTP):CHECK_LIBRARY_EXISTS(esmtpDoNotFindMe smtp_create_session "" HAS_LIBESMTP):' src/main/include/CMakeLists.txt || die - fi - - cmake_src_prepare -} - -src_configure() { - local mycmakeargs=( - -DENABLE_FMT_LAYOUT=ON - -DLOG4CXX_QT_SUPPORT=OFF - ) - - cmake_src_configure -} |