diff options
Diffstat (limited to 'app-text')
-rw-r--r-- | app-text/noweb/noweb-2.9.ebuild | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/app-text/noweb/noweb-2.9.ebuild b/app-text/noweb/noweb-2.9.ebuild index 1f858b38abd4..353d9b782a05 100644 --- a/app-text/noweb/noweb-2.9.ebuild +++ b/app-text/noweb/noweb-2.9.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2001 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Dan Armak <danarmak@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/app-text/noweb/noweb-2.9.ebuild,v 1.1 2001/08/01 17:53:17 danarmak Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/noweb/noweb-2.9.ebuild,v 1.2 2001/08/01 18:51:03 danarmak Exp $ S=${WORKDIR}/src SRC_URI="ftp://ftp.dante.de/tex-archive/web/noweb/src.tar.gz" @@ -11,7 +11,8 @@ DESCRIPTION="a literate programming tool, lighter than web" DEPEND="dev-lang/icon sys-devel/gcc - app-text/tetex" + app-text/tetex + sys-apps/gawk" src_unpack() { @@ -30,6 +31,8 @@ src_compile() { src_install () { try make DESTDIR=${D} install + + [ -x /usr/bin/nawk ] || dosym /usr/bin/gawk /usr/bin/nawk } |