diff options
-rw-r--r-- | dev-util/byacc/ChangeLog | 7 | ||||
-rw-r--r-- | dev-util/byacc/byacc-20130925.ebuild | 19 |
2 files changed, 25 insertions, 1 deletions
diff --git a/dev-util/byacc/ChangeLog b/dev-util/byacc/ChangeLog index 5e22943d3b4d..76b19dc52e28 100644 --- a/dev-util/byacc/ChangeLog +++ b/dev-util/byacc/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-util/byacc # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/byacc/ChangeLog,v 1.72 2013/06/02 08:44:33 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/byacc/ChangeLog,v 1.73 2013/09/26 01:57:31 radhermit Exp $ + +*byacc-20130925 (26 Sep 2013) + + 26 Sep 2013; Tim Harder <radhermit@gentoo.org> +byacc-20130925.ebuild: + Version bump. 02 Jun 2013; Agostino Sarubbo <ago@gentoo.org> byacc-20130304.ebuild: Stable for sh, wrt bug #470482 diff --git a/dev-util/byacc/byacc-20130925.ebuild b/dev-util/byacc/byacc-20130925.ebuild new file mode 100644 index 000000000000..90a77fed951b --- /dev/null +++ b/dev-util/byacc/byacc-20130925.ebuild @@ -0,0 +1,19 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/byacc/byacc-20130925.ebuild,v 1.1 2013/09/26 01:57:31 radhermit Exp $ + +EAPI=5 + +DESCRIPTION="the best variant of the Yacc parser generator" +HOMEPAGE="http://invisible-island.net/byacc/byacc.html" +SRC_URI="ftp://invisible-island.net/byacc/${P}.tgz" + +LICENSE="public-domain" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" + +DOCS=( ACKNOWLEDGEMENTS AUTHORS CHANGES NEW_FEATURES NOTES README ) + +src_configure() { + econf --program-prefix=b +} |