# Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # $Header: /var/cvsroot/gentoo-x86/sys-apps/textutils/textutils-2.0.19.ebuild,v 1.4 2002/08/01 11:40:16 seemant Exp $ S=${WORKDIR}/${P} DESCRIPTION="Standard GNU text utilities" SRC_URI="http://fetish.sf.net/${P}.tar.gz" HOMEPAGE="http://www.gnu.org/software/textutils/" KEYWORDS="x86" 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 --mandir=/usr/share/man --infodir=/usr/share/info \ --host=${CHOST} --build=${CHOST} --without-included-regex ${myconf} || die if [ "`use static`" ] then emake LDFLAGS=-static || die else emake || die fi } src_install() { make prefix=${D}/usr mandir=${D}/usr/share/man infodir=${D}/usr/share/info install || die dodir /bin mv ${D}/usr/bin/cat ${D}/bin dosym /bin/cat /usr/bin/cat rmdir ${D}/usr/lib if [ -z "`use build`" ] then dodoc AUTHORS COPYING ChangeLog NEWS README* THANKS TODO else rm -rf ${D}/usr/share fi }