# Copyright 1999-2005 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-r2.ebuild,v 1.5 2005/01/13 23:32:46 vapier Exp $ inherit eutils toolchain-funcs 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="alpha amd64 arm hppa ia64 mips ppc ppc64 s390 sparc x86" 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 emake -j1 CC="$(tc-getCC)" CFLAGS="${CFLAGS}" || die } src_install() { dobin yacc || die doman yacc.1 dodoc 00README* ACKNOWLEDGEMENTS NEW_FEATURES NO_WARRANTY NOTES README* }