diff options
author | Tom Martin <slarti@gentoo.org> | 2005-01-20 18:20:39 +0000 |
---|---|---|
committer | Tom Martin <slarti@gentoo.org> | 2005-01-20 18:20:39 +0000 |
commit | 6d5dae3c293ee4deaa0eedba8198c19ca3dfc895 (patch) | |
tree | c16c964e85676a65d40bd64fdcb30792a4345a00 /sys-apps/supersed/supersed-3.58-r2.ebuild | |
parent | Multilib fixes. (diff) | |
download | gentoo-2-6d5dae3c293ee4deaa0eedba8198c19ca3dfc895.tar.gz gentoo-2-6d5dae3c293ee4deaa0eedba8198c19ca3dfc895.tar.bz2 gentoo-2-6d5dae3c293ee4deaa0eedba8198c19ca3dfc895.zip |
Removing sys-apps/supersed for Seemant.
Diffstat (limited to 'sys-apps/supersed/supersed-3.58-r2.ebuild')
-rw-r--r-- | sys-apps/supersed/supersed-3.58-r2.ebuild | 84 |
1 files changed, 0 insertions, 84 deletions
diff --git a/sys-apps/supersed/supersed-3.58-r2.ebuild b/sys-apps/supersed/supersed-3.58-r2.ebuild deleted file mode 100644 index 64732f22144a..000000000000 --- a/sys-apps/supersed/supersed-3.58-r2.ebuild +++ /dev/null @@ -1,84 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/supersed/supersed-3.58-r2.ebuild,v 1.16 2005/01/02 23:53:09 ciaranm Exp $ - -MY_P=sed-${PV} -S=${WORKDIR}/${MY_P} -DESCRIPTION="An enhanced version of sed which sports greater speed and the use of perl regular expressions than GNU sed." -HOMEPAGE="http://sed.sourceforge.net/grabbag/ssed/" -SRC_URI="http://sed.sourceforge.net/grabbag/ssed/${MY_P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="x86 ppc sparc alpha amd64" -IUSE="nls static build" - -DEPEND="dev-libs/libpcre - nls? ( sys-devel/gettext )" - -src_unpack() { - unpack ${A} - cd ${S}/doc - mv sed-in.texi sed-in.texi.orig - sed -e "s:sed:ssed:g" \ - -e "s:sss:ss:g" \ - sed-in.texi.orig > sed-in.texi - - rm *.info* -} - -src_compile() { - local myconf - use nls || myconf="--disable-nls" - use static \ - && myconf="${myconf} --disable-html" \ - || myconf="${myconf} --enable-html" - - if [ -f /bin/sed ] - then - echo "simple conf" - econf ${myconf} || die - else - echo "bootstrap" - ./bootstrap.sh - econf ${myconf} || die - fi - - rm -f ${S}/doc/sed.info* - - if ! use static - then - emake || die - else - emake LDFLAGS=-static || die - fi -} - -src_install() { - # choose any name, but sed for now. If supersed is chosen to replace - # good ol' sed, that will work too. - newname="ssed" - - into / - newbin sed/sed ${newname} - - dodir /usr/bin - dosym ../../bin/${newname} /usr/bin/${newname} - - if ! use build - then - localsed="${D}/bin/${newname}" - - cd doc - # this could be more elaborate, but for little point (the infos will - # still refer to 'sed') This hack just makes the info work at all. - - doinfo ${newname}.info* - - dodir /usr/share/man/man1 - dosym sed.1.gz /usr/share/man/man1/ssed.1.gz - - cd ${S} - dodoc COPYING NEWS README* THANKS TODO AUTHORS BUGS - fi -} |