diff options
author | Mike Frysinger <vapier@gentoo.org> | 2010-12-12 19:02:14 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2010-12-12 19:02:14 +0000 |
commit | e78038d91b8cdbbb857073cf70c951802048600d (patch) | |
tree | 9c90018e996445e19dc3cd79077194c9d27c0a44 /sys-devel/bison/bison-2.4.3.ebuild | |
parent | Install a /usr/include/CL symlink for the NVIDIA OpenCL headers. (diff) | |
download | historical-e78038d91b8cdbbb857073cf70c951802048600d.tar.gz historical-e78038d91b8cdbbb857073cf70c951802048600d.tar.bz2 historical-e78038d91b8cdbbb857073cf70c951802048600d.zip |
Add fix from upstream gnulib for uClibc.
Package-Manager: portage-2.2.0_alpha5/cvs/Linux x86_64
Diffstat (limited to 'sys-devel/bison/bison-2.4.3.ebuild')
-rw-r--r-- | sys-devel/bison/bison-2.4.3.ebuild | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/sys-devel/bison/bison-2.4.3.ebuild b/sys-devel/bison/bison-2.4.3.ebuild index 158635029677..71b6e642b0c5 100644 --- a/sys-devel/bison/bison-2.4.3.ebuild +++ b/sys-devel/bison/bison-2.4.3.ebuild @@ -1,10 +1,10 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/bison-2.4.3.ebuild,v 1.1 2010/08/07 22:37:15 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/bison-2.4.3.ebuild,v 1.2 2010/12/12 19:02:14 vapier Exp $ EAPI="2" -inherit flag-o-matic +inherit flag-o-matic eutils DESCRIPTION="A yacc-compatible parser generator" HOMEPAGE="http://www.gnu.org/software/bison/bison.html" @@ -18,6 +18,10 @@ IUSE="nls static" DEPEND="nls? ( sys-devel/gettext )" RDEPEND="sys-devel/m4" +src_prepare() { + epatch "${FILESDIR}"/${P}-uclibc-sched_param-def.patch +} + src_configure() { use static && append-ldflags -static econf $(use_enable nls) |