summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis Ballier <aballier@gentoo.org>2013-01-28 14:34:28 +0000
committerAlexis Ballier <aballier@gentoo.org>2013-01-28 14:34:28 +0000
commit96053fb5f938f83e8e780e6f78446e34555fea39 (patch)
tree5f4d949b55c20f2d8cf19bcc2246028690457521 /sys-devel
parentVersion bump (diff)
downloadgentoo-2-96053fb5f938f83e8e780e6f78446e34555fea39.tar.gz
gentoo-2-96053fb5f938f83e8e780e6f78446e34555fea39.tar.bz2
gentoo-2-96053fb5f938f83e8e780e6f78446e34555fea39.zip
Use GNU awk and GNU m4 on userland_BSD, bug #453798 by Yuta SATOH
(Portage version: 2.2.0_alpha161/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Diffstat (limited to 'sys-devel')
-rw-r--r--sys-devel/autoconf/ChangeLog5
-rw-r--r--sys-devel/autoconf/autoconf-2.13.ebuild12
2 files changed, 11 insertions, 6 deletions
diff --git a/sys-devel/autoconf/ChangeLog b/sys-devel/autoconf/ChangeLog
index 46acbf75846f..a444b4a9eb8f 100644
--- a/sys-devel/autoconf/ChangeLog
+++ b/sys-devel/autoconf/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for sys-devel/autoconf
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/autoconf/ChangeLog,v 1.181 2013/01/01 19:14:07 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/autoconf/ChangeLog,v 1.182 2013/01/28 14:34:28 aballier Exp $
+
+ 28 Jan 2013; Alexis Ballier <aballier@gentoo.org> autoconf-2.13.ebuild:
+ Use GNU awk and GNU m4 on userland_BSD, bug #453798 by Yuta SATOH
01 Jan 2013; Raúl Porcel <armin76@gentoo.org> autoconf-2.69.ebuild:
m68k/s390/sh stable wrt #447756
diff --git a/sys-devel/autoconf/autoconf-2.13.ebuild b/sys-devel/autoconf/autoconf-2.13.ebuild
index c95339e63a9e..c5265c75dc8c 100644
--- a/sys-devel/autoconf/autoconf-2.13.ebuild
+++ b/sys-devel/autoconf/autoconf-2.13.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/autoconf/autoconf-2.13.ebuild,v 1.21 2012/09/26 05:06:03 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/autoconf/autoconf-2.13.ebuild,v 1.22 2013/01/28 14:34:28 aballier Exp $
inherit eutils
@@ -11,7 +11,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="${PV:0:3}"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
-IUSE=""
+IUSE="userland_BSD"
DEPEND=">=sys-apps/texinfo-4.3
sys-devel/autoconf-wrapper
@@ -45,8 +45,10 @@ src_compile() {
# force to `awk` so that we don't encode another awk that
# happens to currently be installed, but might later be
# uninstalled (like mawk). same for m4.
- ac_cv_path_M4=m4 \
- ac_cv_prog_AWK=awk \
+ local prepend=""
+ use userland_BSD && prepend="g"
+ ac_cv_path_M4="${prepend}m4" \
+ ac_cv_prog_AWK="${prepend}awk" \
LC_ALL=C \
econf \
--exec-prefix=/usr \