Gentoo Archives: gentoo-commits

From: Sergei Trofimovich <slyfox@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/autogen/
Date: Sun, 29 Mar 2020 08:50:37
Message-Id: 1585471823.4684303cb94984b593e36fe178a18359daf91368.slyfox@gentoo
1 commit: 4684303cb94984b593e36fe178a18359daf91368
2 Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
3 AuthorDate: Sun Mar 29 08:50:23 2020 +0000
4 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 29 08:50:23 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4684303c
7
8 sys-devel/autogen: drop old
9
10 Package-Manager: Portage-2.3.96, Repoman-2.3.22
11 Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
12
13 sys-devel/autogen/autogen-5.18.16.ebuild | 55 --------------------------------
14 1 file changed, 55 deletions(-)
15
16 diff --git a/sys-devel/autogen/autogen-5.18.16.ebuild b/sys-devel/autogen/autogen-5.18.16.ebuild
17 deleted file mode 100644
18 index 535b6d44f90..00000000000
19 --- a/sys-devel/autogen/autogen-5.18.16.ebuild
20 +++ /dev/null
21 @@ -1,55 +0,0 @@
22 -# Copyright 1999-2020 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=7
26 -
27 -inherit toolchain-funcs
28 -
29 -DESCRIPTION="Program and text file generation"
30 -HOMEPAGE="https://www.gnu.org/software/autogen/"
31 -SRC_URI="mirror://gnu/${PN}/rel${PV}/${P}.tar.xz
32 - https://git.savannah.gnu.org/gitweb/?p=gnulib.git;a=blob_plain;f=lib/verify.h;h=3b57ddee0acffd23cc51bc8910a15cf879f90619;hb=537a5511ab0b1326e69b32f87593a50aedb8a589 -> ${P}-gnulib-3b57ddee0acffd23cc51bc8910a15cf879f90619-lib-verify.h"
33 -
34 -LICENSE="GPL-2"
35 -SLOT="0"
36 -KEYWORDS="~alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 sparc x86 ~ppc-aix ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
37 -IUSE="libopts static-libs"
38 -
39 -RDEPEND=">=dev-scheme/guile-2.0:=
40 - dev-libs/libxml2"
41 -DEPEND="${RDEPEND}"
42 -
43 -PATCHES=(
44 - "${FILESDIR}"/${PN}-5.18.16-no-werror.patch
45 -)
46 -
47 -src_prepare() {
48 - # no-werror.patch fixes both configure{.ac,}
49 - # avoid configure echeck
50 - touch -r configure.ac orig.configure.ac || die
51 - touch -r configure orig.configure || die
52 -
53 - default
54 -
55 - touch -r orig.configure.ac configure.ac || die
56 - touch -r orig.configure configure || die
57 -
58 - # missing tarball file
59 - cp "${DISTDIR}"/${P}-gnulib-3b57ddee0acffd23cc51bc8910a15cf879f90619-lib-verify.h autoopts/verify.h || die
60 -}
61 -
62 -src_configure() {
63 - # suppress possibly incorrect -R flag
64 - export ag_cv_test_ldflags=
65 -
66 - econf $(use_enable static-libs static)
67 -}
68 -
69 -src_install() {
70 - default
71 - find "${D}" -name '*.la' -delete || die
72 -
73 - if ! use libopts ; then
74 - rm "${ED}"/usr/share/autogen/libopts-*.tar.gz || die
75 - fi
76 -}