summaryrefslogtreecommitdiff
path: root/dev-libs/pcre++/pcre++-0.9.5-r1.ebuild
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:57:42 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:57:42 +0100
commit1798c4aeca70ac8d0a243684d6a798fbc65735f8 (patch)
treee48e19cb6fa03de18e1c63e1a93371b7ebc4eb56 /dev-libs/pcre++/pcre++-0.9.5-r1.ebuild
parentd87262dd706fec50cd150aab3e93883b6337466d (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'dev-libs/pcre++/pcre++-0.9.5-r1.ebuild')
-rw-r--r--dev-libs/pcre++/pcre++-0.9.5-r1.ebuild50
1 files changed, 0 insertions, 50 deletions
diff --git a/dev-libs/pcre++/pcre++-0.9.5-r1.ebuild b/dev-libs/pcre++/pcre++-0.9.5-r1.ebuild
deleted file mode 100644
index c6ee554bcc22..000000000000
--- a/dev-libs/pcre++/pcre++-0.9.5-r1.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-inherit eutils autotools
-
-DESCRIPTION="A C++ support library for libpcre"
-HOMEPAGE="http://www.daemon.de/PCRE"
-SRC_URI="http://www.daemon.de/files/mirror/ftp.daemon.de/scip/Apps/${PN}/${P}.tar.gz
- mirror://gentoo/${P}-patches.tar.bz2"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 s390 sh sparc x86"
-IUSE="static-libs"
-
-DEPEND="dev-libs/libpcre"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
- EPATCH_SUFFIX="patch" \
- EPATCH_SOURCE="${WORKDIR}/${P}-patches" \
- EPATCH_FORCE="yes" \
- epatch
-
- sed -i 's:AM_CONFIG_HEADER:AC_CONFIG_HEADERS:' configure.in || die #467670
-
- # Upstream is kind of dead, so handle the rename ourselves.
- mv configure.{in,ac} || die
-
- # Disable examples which we never run/install.
- echo > examples/Makefile.am || die
-
- eautoreconf
-}
-
-src_configure() {
- econf $(use_enable static-libs static)
-}
-
-src_install() {
- default
- use static-libs || find "${ED}"/usr -name 'lib*.la' -delete
-
- dohtml -r doc/html/.
- doman doc/man/man3/Pcre.3
-
- rm -rf "${ED}/usr/doc"
-}