summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Callen <abcd@gentoo.org>2010-01-24 21:24:57 +0000
committerJonathan Callen <abcd@gentoo.org>2010-01-24 21:24:57 +0000
commitba44a888ef832f03684e4d85979a6632c16c3474 (patch)
tree447bc78e2566814e7dd67fd5e4cef8b60581408f /sys-devel
parentAdd support by Maksim Melnikau for USE=static #301993. (diff)
downloadgentoo-2-ba44a888ef832f03684e4d85979a6632c16c3474.tar.gz
gentoo-2-ba44a888ef832f03684e4d85979a6632c16c3474.tar.bz2
gentoo-2-ba44a888ef832f03684e4d85979a6632c16c3474.zip
Remove old, unused build-dep on flex; cleanup (no patches => no need to clean up after them)
(Portage version: -svn/cvs/Linux i686)
Diffstat (limited to 'sys-devel')
-rw-r--r--sys-devel/bison/ChangeLog8
-rw-r--r--sys-devel/bison/bison-2.4.1.ebuild17
2 files changed, 10 insertions, 15 deletions
diff --git a/sys-devel/bison/ChangeLog b/sys-devel/bison/ChangeLog
index 5b9548df84b6..9f535202174f 100644
--- a/sys-devel/bison/ChangeLog
+++ b/sys-devel/bison/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for sys-devel/bison
-# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/ChangeLog,v 1.77 2008/12/22 05:48:26 vapier Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/ChangeLog,v 1.78 2010/01/24 21:24:57 abcd Exp $
+
+ 24 Jan 2010; Jonathan Callen <abcd@gentoo.org> bison-2.4.1.ebuild:
+ Remove old, unused build-dep on flex; cleanup (no patches => no need to
+ clean up after them)
*bison-2.4.1 (22 Dec 2008)
diff --git a/sys-devel/bison/bison-2.4.1.ebuild b/sys-devel/bison/bison-2.4.1.ebuild
index dcf1d0f2ae53..13a7cee6943f 100644
--- a/sys-devel/bison/bison-2.4.1.ebuild
+++ b/sys-devel/bison/bison-2.4.1.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2008 Gentoo Foundation
+# 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.1.ebuild,v 1.1 2008/12/22 05:48:26 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/bison-2.4.1.ebuild,v 1.2 2010/01/24 21:24:57 abcd Exp $
inherit toolchain-funcs flag-o-matic
@@ -13,21 +13,12 @@ SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
IUSE="nls static"
-# need flex since we patch scan-code.l in ${P}-compat.patch
-DEPEND="nls? ( sys-devel/gettext )
- sys-devel/flex"
+DEPEND="nls? ( sys-devel/gettext )"
RDEPEND="sys-devel/m4"
-src_unpack() {
- unpack ${A}
- cd "${S}"
- # since we patch sources, update mtimes on docs so we dont regen
- touch doc/bison.1 doc/bison.info doc/cross-options.texi
-}
-
src_compile() {
use static && append-ldflags -static
- econf $(use_enable nls) || die
+ econf $(use_enable nls)
emake || die
}