Gentoo Archives: gentoo-commits

From: Sergei Trofimovich <slyfox@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/aalib/
Date: Wed, 12 Feb 2020 20:33:03
Message-Id: 1581539570.8548546604a5dc0289879b2b5b3a384af6483269.slyfox@gentoo
1 commit: 8548546604a5dc0289879b2b5b3a384af6483269
2 Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
3 AuthorDate: Wed Feb 12 20:30:24 2020 +0000
4 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
5 CommitDate: Wed Feb 12 20:32:50 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85485466
7
8 media-libs/aalib: drop old
9
10 Package-Manager: Portage-2.3.88, Repoman-2.3.20
11 Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
12
13 media-libs/aalib/aalib-1.4_rc5-r8.ebuild | 70 --------------------------------
14 1 file changed, 70 deletions(-)
15
16 diff --git a/media-libs/aalib/aalib-1.4_rc5-r8.ebuild b/media-libs/aalib/aalib-1.4_rc5-r8.ebuild
17 deleted file mode 100644
18 index c88fa397f8e..00000000000
19 --- a/media-libs/aalib/aalib-1.4_rc5-r8.ebuild
20 +++ /dev/null
21 @@ -1,70 +0,0 @@
22 -# Copyright 1999-2020 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=5
26 -
27 -inherit autotools-multilib eutils toolchain-funcs
28 -
29 -MY_P="${P/_/}"
30 -S="${WORKDIR}/${PN}-1.4.0"
31 -
32 -DESCRIPTION="A ASCII-Graphics Library"
33 -HOMEPAGE="http://aa-project.sourceforge.net/aalib/"
34 -SRC_URI="mirror://sourceforge/aa-project/${MY_P}.tar.gz"
35 -
36 -LICENSE="GPL-2"
37 -SLOT="0"
38 -KEYWORDS="~alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris"
39 -IUSE="X slang gpm static-libs"
40 -
41 -RDEPEND="
42 - X? ( >=x11-libs/libX11-1.6.2[${MULTILIB_USEDEP}] )
43 - gpm? ( >=sys-libs/gpm-1.20.7-r2[${MULTILIB_USEDEP}] )
44 - slang? ( >=sys-libs/slang-2.2.4-r1[${MULTILIB_USEDEP}] )
45 - >=sys-libs/ncurses-5.9-r3:0=[${MULTILIB_USEDEP}]
46 -"
47 -DEPEND="${RDEPEND}
48 - virtual/pkgconfig
49 - X? ( x11-base/xorg-proto )
50 -"
51 -
52 -DOCS="ANNOUNCE AUTHORS ChangeLog NEWS README*"
53 -
54 -src_prepare() {
55 - epatch "${FILESDIR}"/${PN}-1.4_rc4-gentoo.patch
56 - epatch "${FILESDIR}"/${PN}-1.4_rc4-m4.patch
57 - epatch "${FILESDIR}"/${PN}-1.4_rc5-fix-protos.patch #224267
58 - epatch "${FILESDIR}"/${PN}-1.4_rc5-fix-aarender.patch #214142
59 - epatch "${FILESDIR}"/${PN}-1.4_rc5-tinfo.patch #468566
60 - epatch "${FILESDIR}"/${PN}-1.4_rc5-key-down-OOB.patch
61 - epatch "${FILESDIR}"/${PN}-1.4_rc5-more-protos.patch
62 -
63 - sed -i -e 's:#include <malloc.h>:#include <stdlib.h>:g' "${S}"/src/*.c
64 -
65 - # Fix bug #165617.
66 - use gpm || sed -i \
67 - 's/gpm_mousedriver_test=yes/gpm_mousedriver_test=no/' "${S}/configure.in"
68 -
69 - #467988 automake-1.13
70 - mv configure.{in,ac} || die
71 - sed -i 's/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/g' configure.ac || die
72 -
73 - epatch_user
74 - eautoreconf
75 -}
76 -
77 -src_configure() {
78 - local myeconfargs=(
79 - $(use_with slang slang-driver)
80 - $(use_with X x11-driver)
81 - $(use_enable static-libs static)
82 - )
83 -
84 - PKG_CONFIG=$(tc-getPKG_CONFIG) \
85 - autotools-multilib_src_configure
86 -}
87 -
88 -src_install() {
89 - autotools-multilib_src_install
90 - use static-libs || prune_libtool_files --all
91 -}