blob: db47e49041599afac719a1dc64389cbc784ad318 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/byacc/byacc-1.9-r1.ebuild,v 1.6 2004/07/14 22:36:57 agriffis Exp $
inherit eutils
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 ppc ia64 ~sparc alpha ~mips ~hppa s390 amd64"
IUSE=""
src_compile() {
epatch ${FILESDIR}/mkstemp.patch
# The following patch fixes yacc to run correctly on ia64 (and
# other 64-bit arches). See bug 46233
epatch ${FILESDIR}/byacc-1.9-ia64.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
}
|