# Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Daniel Robbins # $Header: /var/cvsroot/gentoo-x86/sys-apps/textutils/textutils-2.0.10.ebuild,v 1.2 2000/12/13 15:13:59 achim Exp $ A=${P}.tar.gz S=${WORKDIR}/${P} DESCRIPTION="Standard GNU text utilities" SRC_URI="ftp://alpha.gnu.org/gnu/fetish/${A}" DEPEND=">=sys-libs/glibc-2.1.3" src_compile() { echo $S $WORKDIR `pwd` try ./configure --prefix=/usr --host=${CHOST} --build=${CHOST} \ --without-included-regex try make ${MAKEOPTS} } src_unpack() { unpack ${A} cd ${S}/src # mv tr.c tr.c.orig # sed -e "234d" tr.c.orig > tr.c # cp sys2.h sys2.h.orig # sed -e "s:^char \*strndup://:" sys2.h.orig > sys2.h } src_install() { cd ${S} try make prefix=${D}/usr install dodoc AUTHORS COPYING ChangeLog NEWS README* THANKS TODO dodir /bin dosym /usr/bin/cat /bin/cat rmdir ${D}/usr/lib }