diff options
author | Mike Frysinger <vapier@gentoo.org> | 2002-12-17 19:33:32 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2002-12-17 19:33:32 +0000 |
commit | 53924f8d5202d492ea80374273505721a48f233a (patch) | |
tree | fd95f5b8b8ab5c96ee47b50af848d56215465311 /dev-util/byacc/byacc-1.9.ebuild | |
parent | fixed header (changed dev-perlURIChangeLog/ to dev-perl/URI) (diff) | |
download | historical-53924f8d5202d492ea80374273505721a48f233a.tar.gz historical-53924f8d5202d492ea80374273505721a48f233a.tar.bz2 historical-53924f8d5202d492ea80374273505721a48f233a.zip |
initial ebuild
Diffstat (limited to 'dev-util/byacc/byacc-1.9.ebuild')
-rw-r--r-- | dev-util/byacc/byacc-1.9.ebuild | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/dev-util/byacc/byacc-1.9.ebuild b/dev-util/byacc/byacc-1.9.ebuild new file mode 100644 index 000000000000..1cea1e07cdfd --- /dev/null +++ b/dev-util/byacc/byacc-1.9.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/byacc/byacc-1.9.ebuild,v 1.1 2002/12/17 19:33:32 vapier Exp $ + +DESCRIPTION="the best variant of the Yacc parser generator" +HOMEPAGE="http://dickey.his.com/byacc/byacc.html" +SRC_URI="http://sources.isc.org/devel/tools/${P}.tar.gz" + +LICENSE="public-domain" +SLOT="0" +KEYWORDS="x86" + +src_compile() { + patch -p0 < ${FILESDIR}/mkstemp.patch + make PROGRAM=byacc CFLAGS="${CFLAGS}" || die +} + +src_install() { + dobin byacc + mv yacc.1 byacc.1 + doman byacc.1 + dodoc ACKNOWLEDGEMENTS MANIFEST NEW_FEATURES NOTES README +} |