diff options
author | Sebastian Pipping <sebastian@pipping.org> | 2011-03-17 16:04:38 +0100 |
---|---|---|
committer | Sebastian Pipping <sebastian@pipping.org> | 2011-03-17 16:04:38 +0100 |
commit | 209cc6285760c72ddb41bae57ac592bb5a559869 (patch) | |
tree | d5c183e3370709b8543ac9bc35b6a3739758ab5e /dev-libs | |
parent | dev-db/mongodb: version bump to 1.8.0 (diff) | |
download | betagarden-209cc6285760c72ddb41bae57ac592bb5a559869.tar.gz betagarden-209cc6285760c72ddb41bae57ac592bb5a559869.tar.bz2 betagarden-209cc6285760c72ddb41bae57ac592bb5a559869.zip |
dev-libs/libpcre: Remove, newer version in Gentoo
Diffstat (limited to 'dev-libs')
-rw-r--r-- | dev-libs/libpcre/Manifest | 2 | ||||
-rw-r--r-- | dev-libs/libpcre/libpcre-8.10.ebuild | 64 |
2 files changed, 0 insertions, 66 deletions
diff --git a/dev-libs/libpcre/Manifest b/dev-libs/libpcre/Manifest deleted file mode 100644 index 8f4dbbc..0000000 --- a/dev-libs/libpcre/Manifest +++ /dev/null @@ -1,2 +0,0 @@ -DIST pcre-8.10.tar.bz2 964349 RMD160 2d54068777d5c7119871b3afdeaf64cfb37d8df2 SHA1 8b345da0f835b2caabff071b0b5bab40564652be SHA256 7ac4e016f6bad8c7d990e6de9bce58c04ff5dd8838be0c5ada0afad1d6a07480 -EBUILD libpcre-8.10.ebuild 2103 RMD160 3692a8725652c829ade5f04d7f860ebeec2c5588 SHA1 b0ffd7c71de835622be1cf9a09f51481408d4640 SHA256 5fc2bfdaeb05170b23af03c6295fe518136c8964d18461c11555571d4daddf3a diff --git a/dev-libs/libpcre/libpcre-8.10.ebuild b/dev-libs/libpcre/libpcre-8.10.ebuild deleted file mode 100644 index bffc22f..0000000 --- a/dev-libs/libpcre/libpcre-8.10.ebuild +++ /dev/null @@ -1,64 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libpcre/libpcre-8.02.ebuild,v 1.1 2010/05/03 20:15:39 patrick Exp $ - -EAPI=2 - -inherit libtool eutils toolchain-funcs - -DESCRIPTION="Perl-compatible regular expression library" -HOMEPAGE="http://www.pcre.org/" -if [[ ${PV} == ${PV/_rc} ]] -then - MY_P="pcre-${PV}" - SRC_URI="ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/${MY_P}.tar.bz2" -else - MY_P="pcre-${PV/_rc/-RC}" - SRC_URI="ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/Testing/${MY_P}.tar.bz2" -fi -LICENSE="BSD" -SLOT="3" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd" -IUSE="bzip2 +cxx +recursion-limit unicode zlib static-libs" - -RDEPEND="bzip2? ( app-arch/bzip2 ) - zlib? ( sys-libs/zlib )" -DEPEND="${RDEPEND} - dev-util/pkgconfig - userland_GNU? ( >=sys-apps/findutils-4.4.0 )" - -S=${WORKDIR}/${MY_P} - -src_prepare() { - sed -i -e "s:libdir=@libdir@:libdir=/$(get_libdir):" libpcre.pc.in || die "Fixing libpcre pkgconfig files failed" - sed -i -e "s:-lpcre ::" libpcrecpp.pc.in || die "Fixing libpcrecpp pkgconfig files failed" -} - -src_configure() { - local my_conf= - use recursion-limit && my_conf="${my_conf} --with-match-limit-recursion=8192" - - econf ${my_conf} \ - $(use_enable unicode utf8) $(use_enable unicode unicode-properties) \ - $(use_enable cxx cpp) \ - $(use_enable zlib pcregrep-libz) \ - $(use_enable bzip2 pcregrep-libbz2) \ - $(use_enable static-libs static) \ - --enable-shared \ - --htmldir=/usr/share/doc/${PF}/html \ - --docdir=/usr/share/doc/${PF} \ - || die "econf failed" -} - -src_install() { - emake DESTDIR="${D}" install || die "make install failed" - gen_usr_ldscript -a pcre - find "${D}" -type f -name '*.la' -exec rm -rf '{}' '+' || die "la removal failed" -} - -pkg_postinst() { - elog "This version of ${PN} has stopped installing .la files. This may" - elog "cause compilation failures in other packages. To fix this problem," - elog "install dev-util/lafilefixer and run:" - elog "lafilefixer --justfixit" -} |