summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Olexa <darkside@gentoo.org>2011-05-31 15:37:21 +0000
committerJeremy Olexa <darkside@gentoo.org>2011-05-31 15:37:21 +0000
commitf1e8cdbc3509db769ebf2af0918d6d6afca9d5e3 (patch)
tree82fbd593d67fe6b31616bac97c1d1ed8ba38e068 /sys-devel/m4
parentx86 stable wrt bug #366973 (diff)
downloadgentoo-2-f1e8cdbc3509db769ebf2af0918d6d6afca9d5e3.tar.gz
gentoo-2-f1e8cdbc3509db769ebf2af0918d6d6afca9d5e3.tar.bz2
gentoo-2-f1e8cdbc3509db769ebf2af0918d6d6afca9d5e3.zip
Add Gentoo Prefix modifications since the ebuild was already EAPI3. Keywords, dosym, ED usage.
(Portage version: 2.1.9.49/cvs/Linux i686)
Diffstat (limited to 'sys-devel/m4')
-rw-r--r--sys-devel/m4/ChangeLog6
-rw-r--r--sys-devel/m4/m4-1.4.16.ebuild9
2 files changed, 11 insertions, 4 deletions
diff --git a/sys-devel/m4/ChangeLog b/sys-devel/m4/ChangeLog
index 3fa46735084d..7c842e2e9de8 100644
--- a/sys-devel/m4/ChangeLog
+++ b/sys-devel/m4/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for sys-devel/m4
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/m4/ChangeLog,v 1.151 2011/03/01 23:20:57 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/m4/ChangeLog,v 1.152 2011/05/31 15:37:21 darkside Exp $
+
+ 31 May 2011; Jeremy Olexa <darkside@gentoo.org> m4-1.4.16.ebuild:
+ Add Gentoo Prefix modifications since the ebuild was already EAPI3. Keywords,
+ dosym, ED usage.
*m4-1.4.16 (01 Mar 2011)
diff --git a/sys-devel/m4/m4-1.4.16.ebuild b/sys-devel/m4/m4-1.4.16.ebuild
index 01d1f719c4b8..826df369df55 100644
--- a/sys-devel/m4/m4-1.4.16.ebuild
+++ b/sys-devel/m4/m4-1.4.16.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/m4/m4-1.4.16.ebuild,v 1.1 2011/03/01 23:20:57 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/m4/m4-1.4.16.ebuild,v 1.2 2011/05/31 15:37:21 darkside Exp $
EAPI="3"
@@ -12,7 +12,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.xz"
LICENSE="GPL-3"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="examples"
# remember: cannot dep on autoconf since it needs us
@@ -35,10 +35,13 @@ src_test() {
src_install() {
emake install DESTDIR="${D}" || die
+ # autoconf-2.60 for instance, first checks gm4, then m4. If we don't have
+ # gm4, it might find gm4 from outside the prefix on for instance Darwin
+ use prefix && dosym /usr/bin/m4 /usr/bin/gm4
dodoc BACKLOG ChangeLog NEWS README* THANKS TODO
if use examples ; then
docinto examples
dodoc examples/*
- rm -f "${D}"/usr/share/doc/${PF}/examples/Makefile*
+ rm -f "${ED}"/usr/share/doc/${PF}/examples/Makefile*
fi
}