diff options
author | Dan Armak <danarmak@gentoo.org> | 2001-08-01 18:51:03 +0000 |
---|---|---|
committer | Dan Armak <danarmak@gentoo.org> | 2001-08-01 18:51:03 +0000 |
commit | 6ecb9a5152d2adde458798501092b4df48f8b01d (patch) | |
tree | 74b23b63eb0702a94167b3eca6e074086e46ccb3 /app-text | |
parent | minor updates (diff) | |
download | gentoo-2-6ecb9a5152d2adde458798501092b4df48f8b01d.tar.gz gentoo-2-6ecb9a5152d2adde458798501092b4df48f8b01d.tar.bz2 gentoo-2-6ecb9a5152d2adde458798501092b4df48f8b01d.zip |
added creation of nawk -> gawk symlink, this is temporary at best
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 } |