diff options
author | 2004-04-05 04:14:03 +0000 | |
---|---|---|
committer | 2004-04-05 04:14:03 +0000 | |
commit | 76c115c46e2ac3c2e9802379976784f2d332acf4 (patch) | |
tree | 0679047aa032364acd24767e30d00f3d8955c704 /dev-util/yacc | |
parent | Propogate CFLAGS to Makefile in a sed-safe way. Use 64-bit patch from bug 462... (diff) | |
download | gentoo-2-76c115c46e2ac3c2e9802379976784f2d332acf4.tar.gz gentoo-2-76c115c46e2ac3c2e9802379976784f2d332acf4.tar.bz2 gentoo-2-76c115c46e2ac3c2e9802379976784f2d332acf4.zip |
I should have bumped the rev for the previous change... doing it now.
Diffstat (limited to 'dev-util/yacc')
-rw-r--r-- | dev-util/yacc/ChangeLog | 7 | ||||
-rw-r--r-- | dev-util/yacc/Manifest | 4 | ||||
-rw-r--r-- | dev-util/yacc/files/digest-yacc-1.9.1-r2 | 1 | ||||
-rw-r--r-- | dev-util/yacc/yacc-1.9.1-r2.ebuild | 42 |
4 files changed, 52 insertions, 2 deletions
diff --git a/dev-util/yacc/ChangeLog b/dev-util/yacc/ChangeLog index ca43f824e027..5265d9d8bbd1 100644 --- a/dev-util/yacc/ChangeLog +++ b/dev-util/yacc/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-util/yacc # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/yacc/ChangeLog,v 1.11 2004/04/05 04:03:23 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/yacc/ChangeLog,v 1.12 2004/04/05 04:09:12 agriffis Exp $ + +*yacc-1.9.1-r2 (05 Apr 2004) + + 05 Apr 2004; Aron Griffis <agriffis@gentoo.org> yacc-1.9.1-r2.ebuild: + I should have bumped the rev for the previous change... doing it now. 05 Apr 2004; Aron Griffis <agriffis@gentoo.org> yacc-1.9.1-r1.ebuild, files/mkstemp.patch, files/yacc-1.9.1-ia64.patch: diff --git a/dev-util/yacc/Manifest b/dev-util/yacc/Manifest index d3fc55ef8ec6..66f1e732fc3d 100644 --- a/dev-util/yacc/Manifest +++ b/dev-util/yacc/Manifest @@ -1,5 +1,7 @@ -MD5 7751ed920f8a33e1805f84fcee4be183 ChangeLog 1577 +MD5 2390602b443415a6c23e9d3ca2312256 ChangeLog 1752 MD5 85c9b31b808057d03362e15c2daf7935 yacc-1.9.1-r1.ebuild 1074 +MD5 85c9b31b808057d03362e15c2daf7935 yacc-1.9.1-r2.ebuild 1074 MD5 afeab71394d9c421389458f63b2cb173 files/digest-yacc-1.9.1-r1 60 MD5 c5a221a78a10f6156ea9ddb2ade30598 files/yacc-1.9.1-ia64.patch 504 MD5 df645d0e6382050201af35e3002dfc5b files/mkstemp.patch 413 +MD5 afeab71394d9c421389458f63b2cb173 files/digest-yacc-1.9.1-r2 60 diff --git a/dev-util/yacc/files/digest-yacc-1.9.1-r2 b/dev-util/yacc/files/digest-yacc-1.9.1-r2 new file mode 100644 index 000000000000..108a2419a099 --- /dev/null +++ b/dev-util/yacc/files/digest-yacc-1.9.1-r2 @@ -0,0 +1 @@ +MD5 3bcf50bece4ef1d0fbaf479e25790437 yacc-1.9.1.tar.Z 64805 diff --git a/dev-util/yacc/yacc-1.9.1-r2.ebuild b/dev-util/yacc/yacc-1.9.1-r2.ebuild new file mode 100644 index 000000000000..4d96e9066401 --- /dev/null +++ b/dev-util/yacc/yacc-1.9.1-r2.ebuild @@ -0,0 +1,42 @@ +# 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-r2.ebuild,v 1.1 2004/04/05 04:09:12 agriffis Exp $ + +inherit eutils + +DESCRIPTION="Yacc" +HOMEPAGE="http://dinosaur.compilertools.net/#yacc" +SRC_URI="ftp://metalab.unc.edu/pub/Linux/devel/compiler-tools/${P}.tar.Z" + +LICENSE="as-is" +SLOT="0" +KEYWORDS="x86 ppc ppc64 sparc alpha mips hppa amd64 ia64 s390" + +RDEPEND="virtual/glibc" +DEPEND="${RDEPEND} >=sys-apps/sed-4" + +src_unpack () { + unpack ${A} + cd ${S} + + # Use our CFLAGS + sed -i -e 's: -O : $(CFLAGS) :' Makefile || die 'sed failed' + + # mkstemp patch from byacc ebuild + epatch ${FILESDIR}/mkstemp.patch + + # The following patch fixes yacc to run correctly on ia64 (and + # other 64-bit arches). See bug 46233 + epatch ${FILESDIR}/yacc-1.9.1-ia64.patch +} + +src_compile() { + make clean || die + make CFLAGS="${CFLAGS}" || die +} + +src_install() { + dobin yacc || die + doman yacc.1 + dodoc 00README* ACKNOWLEDGEMENTS NEW_FEATURES NO_WARRANTY NOTES README* +} |