diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-03-13 01:44:56 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-03-13 01:44:56 +0000 |
commit | d1104f685cf8df7960f0256ac1a7b429d347dfb3 (patch) | |
tree | 7ea1510d3b939d94026a33fc0244b2ea64fdd793 /dev-util/yacc | |
parent | add yacc to DEPEND (diff) | |
download | gentoo-2-d1104f685cf8df7960f0256ac1a7b429d347dfb3.tar.gz gentoo-2-d1104f685cf8df7960f0256ac1a7b429d347dfb3.tar.bz2 gentoo-2-d1104f685cf8df7960f0256ac1a7b429d347dfb3.zip |
touchups
Diffstat (limited to 'dev-util/yacc')
-rw-r--r-- | dev-util/yacc/yacc-1.9.1-r1.ebuild | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/dev-util/yacc/yacc-1.9.1-r1.ebuild b/dev-util/yacc/yacc-1.9.1-r1.ebuild index 8d3c4ac89a72..d45e0df82fc6 100644 --- a/dev-util/yacc/yacc-1.9.1-r1.ebuild +++ b/dev-util/yacc/yacc-1.9.1-r1.ebuild @@ -1,15 +1,14 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/yacc/yacc-1.9.1-r1.ebuild,v 1.23 2004/03/05 14:18:14 tgall Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/yacc/yacc-1.9.1-r1.ebuild,v 1.24 2004/03/13 01:44:56 vapier Exp $ -S=${WORKDIR}/${P} DESCRIPTION="Yacc" -SRC_URI="ftp://metalab.unc.edu/pub/Linux/devel/compiler-tools/${P}.tar.Z" HOMEPAGE="http://dinosaur.compilertools.net/#yacc" +SRC_URI="ftp://metalab.unc.edu/pub/Linux/devel/compiler-tools/${P}.tar.Z" -SLOT="0" LICENSE="as-is" -KEYWORDS="x86 ppc sparc hppa alpha mips amd64 ia64 s390 ppc64" +SLOT="0" +KEYWORDS="x86 ppc ppc64 sparc alpha mips hppa amd64 ia64 s390" DEPEND="virtual/glibc" @@ -19,14 +18,14 @@ src_unpack () { cp Makefile Makefile.orig sed -e "s:-O:${CFLAGS}:" Makefile.orig > Makefile } + src_compile() { make clean || die make || die } src_install() { - into /usr - dobin yacc + dobin yacc || die doman yacc.1 dodoc 00README* ACKNOWLEDGEMENTS NEW_FEATURES NO_WARRANTY NOTES README* } |