summaryrefslogtreecommitdiff
path: root/dev-cpp/commoncpp2/commoncpp2-1.8.1-r4.ebuild
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2022-07-11 03:15:01 +0100
committerSam James <sam@gentoo.org>2022-07-11 03:15:10 +0100
commit4df49a0fdab4180b9438ff7eff7d4aeabcaa881d (patch)
tree806ea3e87194cac2c1d9694fd7eacb4fc2de88d6 /dev-cpp/commoncpp2/commoncpp2-1.8.1-r4.ebuild
parent6ef86ad77ac20061ad417f415498bd98573fa5ec (diff)
downloadgentoo-4df49a0fdab4180b9438ff7eff7d4aeabcaa881d.tar.gz
gentoo-4df49a0fdab4180b9438ff7eff7d4aeabcaa881d.tar.bz2
gentoo-4df49a0fdab4180b9438ff7eff7d4aeabcaa881d.zip
dev-cpp/commoncpp2: treeclean
Closes: https://bugs.gentoo.org/850958 Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-cpp/commoncpp2/commoncpp2-1.8.1-r4.ebuild')
-rw-r--r--dev-cpp/commoncpp2/commoncpp2-1.8.1-r4.ebuild75
1 files changed, 0 insertions, 75 deletions
diff --git a/dev-cpp/commoncpp2/commoncpp2-1.8.1-r4.ebuild b/dev-cpp/commoncpp2/commoncpp2-1.8.1-r4.ebuild
deleted file mode 100644
index 399a2c7ed176..000000000000
--- a/dev-cpp/commoncpp2/commoncpp2-1.8.1-r4.ebuild
+++ /dev/null
@@ -1,75 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools
-
-DESCRIPTION="C++ library offering portable support for system-related services"
-HOMEPAGE="https://www.gnu.org/software/commoncpp/"
-SRC_URI="
- mirror://gnu/commoncpp/${P}.tar.gz
- https://dev.gentoo.org/~soap/distfiles/${P}-patches-r1.txz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc ppc64 x86"
-IUSE="debug doc examples gnutls ipv6 ssl"
-
-RDEPEND="
- sys-libs/zlib:=
- ssl? (
- gnutls? (
- dev-libs/libgcrypt:0=
- net-libs/gnutls:=
- )
- !gnutls? (
- dev-libs/openssl:0=
- )
- )"
-DEPEND="${RDEPEND}"
-BDEPEND="doc? ( >=app-doc/doxygen-1.3.6 )"
-
-PATCHES=(
- "${WORKDIR}"/patches/1.8.1-configure_detect_netfilter.patch
- "${WORKDIR}"/patches/1.8.1-glibc212.patch
- "${WORKDIR}"/patches/1.8.1-autoconf-update.patch
- "${WORKDIR}"/patches/1.8.1-fix-buffer-overflow.patch
- "${WORKDIR}"/patches/1.8.1-parallel-build.patch
- "${WORKDIR}"/patches/1.8.1-libgcrypt.patch
- "${WORKDIR}"/patches/1.8.1-fix-c++14.patch
- "${WORKDIR}"/patches/1.8.1-gnutls-3.4.patch
- "${WORKDIR}"/patches/1.8.1-fix-gcc9.patch
- "${WORKDIR}"/patches/1.8.1-c++17.patch
- "${WORKDIR}"/patches/1.8.1-openssl-1.1.patch
-)
-
-src_prepare() {
- default
- eautoreconf
-}
-
-src_configure() {
- econf \
- --disable-static \
- $(use_enable debug) \
- $(use_with ipv6) \
- $(use_with ssl $(usex gnutls gnutls openssl)) \
- $(use_with doc doxygen)
-}
-
-src_install() {
- use doc && HTML_DOCS=( doc/html/. )
- default
-
- # package provides .pc files
- find "${ED}" -name '*.la' -delete || die
-
- dodoc COPYING.addendum
-
- if use examples; then
- docinto examples
- dodoc demo/{*.cpp,*.h,*.xml,README}
- docompress -x /usr/share/doc/${PF}/examples
- fi
-}