diff options
Diffstat (limited to 'app-misc/glimpse/glimpse-4.18.5.ebuild')
-rw-r--r-- | app-misc/glimpse/glimpse-4.18.5.ebuild | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/app-misc/glimpse/glimpse-4.18.5.ebuild b/app-misc/glimpse/glimpse-4.18.5.ebuild deleted file mode 100644 index e22d6d2..0000000 --- a/app-misc/glimpse/glimpse-4.18.5.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/glimpse/glimpse-4.18.5.ebuild,v 1.13 2010/01/01 21:17:05 fauli Exp $ - -inherit flag-o-matic eutils - -DESCRIPTION="A index/query system to search a large set of files quickly" -HOMEPAGE="http://webglimpse.net/" -SRC_URI="http://webglimpse.net/trial/${P}.tar.gz" - -LICENSE="glimpse" -SLOT="0" -KEYWORDS="alpha amd64 ia64 ~mips ppc ~ppc64 sparc x86 ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" -IUSE="static" - -RDEPEND="!dev-libs/tre - !app-text/agrep" - -src_unpack() { - unpack ${A} - cd "${S}" - sed -i \ - -e "s:CC=.*:CC=$(tc-getCC):" \ - -e 's:-O3 -fomit-frame-pointer:$(OPTIMIZEFLAGS):' \ - dynfilters/Makefile.in \ - || die "removing -O3 failed" - sed -i \ - -e '/^CFLAGS/s:$: $(OPTIMIZEFLAGS):' \ - {agrep,compress,index}/Makefile.in \ - libtemplate/{template,util}/Makefile.in \ - || die "inserting OPTIMIZEFLAGS failed" - sed -i \ - -e 's:$(mandir):&/man1/:' \ - agrep/Makefile.in \ - || die "adding man1 to man install dir failed" - - sed -i \ - -e '/^LDFLAGS/d' \ - {agrep,compress,index}/Makefile.in \ - || die "LDFLAGS sed failed" - - epatch "${FILESDIR}"/${P}-makefile.patch -} - -src_compile() { - use static && append-ldflags -static - - econf || die - emake OPTIMIZEFLAGS="${CFLAGS}" || die -} - -src_install() { - einstall || die -} |