summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-util/yacc')
-rw-r--r--dev-util/yacc/files/digest-yacc-1.9.1-r11
-rw-r--r--dev-util/yacc/yacc-1.9.1-r1.ebuild43
2 files changed, 0 insertions, 44 deletions
diff --git a/dev-util/yacc/files/digest-yacc-1.9.1-r1 b/dev-util/yacc/files/digest-yacc-1.9.1-r1
deleted file mode 100644
index 108a2419a099..000000000000
--- a/dev-util/yacc/files/digest-yacc-1.9.1-r1
+++ /dev/null
@@ -1 +0,0 @@
-MD5 3bcf50bece4ef1d0fbaf479e25790437 yacc-1.9.1.tar.Z 64805
diff --git a/dev-util/yacc/yacc-1.9.1-r1.ebuild b/dev-util/yacc/yacc-1.9.1-r1.ebuild
deleted file mode 100644
index 88b85d986011..000000000000
--- a/dev-util/yacc/yacc-1.9.1-r1.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2004 Gentoo Foundation
-# 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.28 2004/07/15 00:15:31 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"
-IUSE=""
-
-RDEPEND="virtual/libc"
-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*
-}