diff options
author | Bertrand Jacquin <beber@meleeweb.net> | 2010-06-16 14:11:52 +0200 |
---|---|---|
committer | Bertrand Jacquin <beber@meleeweb.net> | 2010-06-16 14:11:52 +0200 |
commit | f2c824f2a27e309d9a9becce8e5014044ae98289 (patch) | |
tree | 077ef17916647e5a680ebcf969fac29a0045fefe | |
parent | Merge branch 'master' of git+ssh://git.meleeweb.net/var/git/distros/gentoo/po... (diff) | |
download | portage-f2c824f2a27e309d9a9becce8e5014044ae98289.tar.xz |
Delete old grep release
-rw-r--r-- | sys-apps/grep/grep-2.5.1a-r1.ebuild | 72 | ||||
-rw-r--r-- | sys-apps/grep/grep-2.5.4-r1.ebuild | 44 |
2 files changed, 0 insertions, 116 deletions
diff --git a/sys-apps/grep/grep-2.5.1a-r1.ebuild b/sys-apps/grep/grep-2.5.1a-r1.ebuild deleted file mode 100644 index 4e521d27..00000000 --- a/sys-apps/grep/grep-2.5.1a-r1.ebuild +++ /dev/null @@ -1,72 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/grep/grep-2.5.1a-r1.ebuild,v 1.9 2009/04/09 16:09:35 loki_val Exp $ - -inherit flag-o-matic eutils autotools - -DESCRIPTION="GNU regular expression matcher" -HOMEPAGE="http://www.gnu.org/software/grep/grep.html" -SRC_URI="mirror://gnu/${PN}/${P}.tar.bz2 - mirror://gentoo/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 m68k mips ppc ppc64 s390 sh sparc ~sparc-fbsd x86 ~x86-fbsd" -IUSE="nls pcre static" - -RDEPEND="nls? ( virtual/libintl )" -DEPEND="${RDEPEND} - pcre? ( <=dev-libs/libpcre-7.8 ) - nls? ( sys-devel/gettext )" - -WANT_AUTOMAKE="1.5" - -src_unpack() { - unpack ${A} - cd "${S}" - - # work around a weird sparc32 compiler bug - echo "" >> src/dfa.h - - epatch "${FILESDIR}"/${PN}-2.5.1-manpage.patch - epatch "${FILESDIR}"/${PN}-2.5.1-fgrep.patch - epatch "${FILESDIR}"/${PN}-2.5.1-color.patch - epatch "${FILESDIR}"/${PN}-2.5.1-bracket.patch - epatch "${FILESDIR}"/${PN}-2.5.1-i18n.patch - epatch "${FILESDIR}"/${PN}-2.5.1-oi.patch - epatch "${FILESDIR}"/${PN}-2.5.1-restrict_arr.patch - epatch "${FILESDIR}"/2.5.1-utf8-case.patch - epatch "${FILESDIR}"/${PN}-2.5.1-perl-segv.patch #95495 - epatch "${FILESDIR}"/${PN}-2.5.1-fix-devices-skip.patch #113640 - epatch "${FILESDIR}"/${P}-nls.patch - epatch "${FILESDIR}"/${P}-BJA-pcre-pkgconfig.diff - - # retarded - sed -i 's:__mempcpy:mempcpy:g' lib/*.c || die - AT_M4DIR=m4 eautoreconf -} - -src_compile() { - use static && append-ldflags -static - - econf \ - --bindir=/bin \ - $(use_enable nls) \ - $(use_enable pcre perl-regexp) \ - || die "econf failed" - - use static || sed -i 's:-lpcre:-Wl,-Bstatic -lpcre -Wl,-Bdynamic:g' src/Makefile - - emake || die "emake failed" -} - -src_install() { - make DESTDIR="${D}" install || die "make install failed" - - # Override the default shell scripts... grep knows how to act - # based on how it's called - ln -sfn grep "${D}"/bin/egrep || die "ln egrep failed" - ln -sfn grep "${D}"/bin/fgrep || die "ln fgrep failed" - - dodoc AUTHORS ChangeLog NEWS README THANKS TODO -} diff --git a/sys-apps/grep/grep-2.5.4-r1.ebuild b/sys-apps/grep/grep-2.5.4-r1.ebuild deleted file mode 100644 index 88126474..00000000 --- a/sys-apps/grep/grep-2.5.4-r1.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/grep/grep-2.5.4-r1.ebuild,v 1.1 2009/04/09 16:09:35 loki_val Exp $ - -EAPI=2 - -inherit eutils autotools - -DESCRIPTION="GNU regular expression matcher" -HOMEPAGE="http://www.gnu.org/software/grep/" -SRC_URI="mirror://gnu/${PN}/${P}.tar.bz2 - mirror://gentoo/${P}.tar.bz2" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~amd64-fbsd ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd" -IUSE="nls pcre" - -RDEPEND="nls? ( virtual/libintl ) - pcre? ( >=dev-libs/libpcre-7.8-r1 )" -DEPEND="${RDEPEND} - nls? ( sys-devel/gettext )" - -src_prepare() { - epatch "${FILESDIR}"/${PN}-2.5.3-po-builddir-fix.patch - epatch "${FILESDIR}"/${PN}-2.5.3-nls.patch - epatch "${FILESDIR}"/${P}-BJA-pcre-pkgconfig.diff - - AT_M4DIR=m4 eautoreconf -} - -src_configure() { - econf \ - --bindir=/bin \ - $(use_enable nls) \ - $(use_enable pcre perl-regexp) \ - $(use elibc_FreeBSD || echo --without-included-regex) \ - || die "econf failed" -} - -src_install() { - emake DESTDIR="${D}" install || die "make install failed" - dodoc AUTHORS ChangeLog NEWS README THANKS TODO -} |