Gentoo Archives: gentoo-commits

From: Mikle Kolyada <zlogene@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/m4/
Date: Mon, 25 Feb 2019 10:55:44
Message-Id: 1551092110.fe4050593fb2456dbaad86575a2ee5d807230b3a.zlogene@gentoo
1 commit: fe4050593fb2456dbaad86575a2ee5d807230b3a
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 25 10:54:23 2019 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 25 10:55:10 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe405059
7
8 sys-devel/m4: Drop old
9
10 Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
11 Package-Manager: Portage-2.3.51, Repoman-2.3.11
12
13 sys-devel/m4/m4-1.4.18.ebuild | 52 -------------------------------------------
14 1 file changed, 52 deletions(-)
15
16 diff --git a/sys-devel/m4/m4-1.4.18.ebuild b/sys-devel/m4/m4-1.4.18.ebuild
17 deleted file mode 100644
18 index 378946733ca..00000000000
19 --- a/sys-devel/m4/m4-1.4.18.ebuild
20 +++ /dev/null
21 @@ -1,52 +0,0 @@
22 -# Copyright 1999-2018 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI="5"
26 -
27 -inherit eutils
28 -
29 -DESCRIPTION="GNU macro processor"
30 -HOMEPAGE="https://www.gnu.org/software/m4/m4.html"
31 -SRC_URI="mirror://gnu/${PN}/${P}.tar.xz"
32 -
33 -LICENSE="GPL-3"
34 -SLOT="0"
35 -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
36 -IUSE="examples"
37 -
38 -# remember: cannot dep on autoconf since it needs us
39 -DEPEND="app-arch/xz-utils"
40 -RDEPEND=""
41 -
42 -src_prepare() {
43 - epatch "${FILESDIR}"/${P}-darwin17-printf-n.patch
44 - epatch "${FILESDIR}"/${P}-glibc228.patch #663924
45 - epatch_user
46 - default
47 -}
48 -
49 -src_configure() {
50 - # Disable automagic dependency over libsigsegv; see bug #278026
51 - export ac_cv_libsigsegv=no
52 -
53 - local myconf=""
54 - [[ ${USERLAND} != "GNU" ]] && myconf="--program-prefix=g"
55 - econf --enable-changeword ${myconf}
56 -}
57 -
58 -src_test() {
59 - [[ -d /none ]] && die "m4 tests will fail with /none/" #244396
60 - emake check
61 -}
62 -
63 -src_install() {
64 - default
65 - # autoconf-2.60 for instance, first checks gm4, then m4. If we don't have
66 - # gm4, it might find gm4 from outside the prefix on for instance Darwin
67 - use prefix && dosym /usr/bin/m4 /usr/bin/gm4
68 - if use examples ; then
69 - docinto examples
70 - dodoc examples/*
71 - rm -f "${ED}"/usr/share/doc/${PF}/examples/Makefile*
72 - fi
73 -}