# Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sys-apps/sed/sed-3.02.80-r3.ebuild,v 1.11 2002/12/15 10:44:23 bjb Exp $ IUSE="nls static build" S=${WORKDIR}/${P} DESCRIPTION="Super-useful stream editor" SRC_URI="ftp://alpha.gnu.org/pub/gnu/sed/${P}.tar.gz" HOMEPAGE="http://www.gnu.org/software/sed/sed.html" KEYWORDS="x86 ppc sparc alpha" SLOT="0" LICENSE="GPL-2" DEPEND="virtual/glibc nls? ( sys-devel/gettext )" RDEPEND="virtual/glibc" src_compile() { local myconf [ -z "`use nls`" ] && myconf="--disable-nls" ./configure --prefix=/usr --host=${CHOST} ${myconf} || die if [ -z "`use static`" ] then emake || die else emake LDFLAGS=-static || die fi } src_install() { into / dobin sed/sed dodir /usr/bin dosym ../../bin/sed /usr/bin/sed if [ -z "`use build`" ] then into /usr doinfo doc/sed.info doman doc/sed.1 dodoc COPYING NEWS README* THANKS TODO AUTHORS BUGS ANNOUNCE else rm -rf ${D}/usr/share fi }