Gentoo Archives: gentoo-commits

From: Ionen Wolkens <ionen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-games/t4k-common/
Date: Sun, 13 Jun 2021 12:55:34
Message-Id: 1623588761.28137c7c6970f69c1cecd1ef3f0874f2f8fd836f.ionen@gentoo
1 commit: 28137c7c6970f69c1cecd1ef3f0874f2f8fd836f
2 Author: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jun 13 12:00:18 2021 +0000
4 Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
5 CommitDate: Sun Jun 13 12:52:41 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28137c7c
7
8 dev-games/t4k-common: drop last stable 0.1.1
9
10 Broken and its only rdep currently depends on ~arch 0.1.1-r1, no
11 sense in keeping stable keywords for this.
12
13 Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
14
15 dev-games/t4k-common/t4k-common-0.1.1.ebuild | 59 ----------------------------
16 1 file changed, 59 deletions(-)
17
18 diff --git a/dev-games/t4k-common/t4k-common-0.1.1.ebuild b/dev-games/t4k-common/t4k-common-0.1.1.ebuild
19 deleted file mode 100644
20 index e0a6d5009ab..00000000000
21 --- a/dev-games/t4k-common/t4k-common-0.1.1.ebuild
22 +++ /dev/null
23 @@ -1,59 +0,0 @@
24 -# Copyright 1999-2020 Gentoo Authors
25 -# Distributed under the terms of the GNU General Public License v2
26 -
27 -EAPI=7
28 -
29 -inherit autotools
30 -
31 -DESCRIPTION="A library of code shared between tuxmath and tuxtype"
32 -HOMEPAGE="https://github.com/tux4kids/t4kcommon"
33 -SRC_URI="https://github.com/tux4kids/t4kcommon/archive/upstream/${PV}.tar.gz -> ${P}.tar.gz"
34 -
35 -LICENSE="GPL-3"
36 -SLOT="0"
37 -KEYWORDS="amd64 x86"
38 -IUSE="svg"
39 -
40 -RDEPEND="
41 - dev-libs/libxml2:2
42 - media-libs/libsdl
43 - media-libs/sdl-image
44 - media-libs/sdl-mixer
45 - media-libs/sdl-net
46 - media-libs/sdl-ttf
47 - media-libs/sdl-pango
48 - svg? (
49 - gnome-base/librsvg:2
50 - media-libs/libpng:0
51 - x11-libs/cairo
52 - )"
53 -DEPEND="${RDEPEND}"
54 -# need sys-devel/gettext for AM_ICONV in iconv.m4
55 -BDEPEND="
56 - sys-devel/gettext
57 - virtual/pkgconfig"
58 -
59 -S="${WORKDIR}/t4kcommon-upstream-${PV}"
60 -
61 -PATCHES=(
62 - "${FILESDIR}"/${P}-libpng.patch
63 - "${FILESDIR}"/${P}-fno-common.patch
64 - "${FILESDIR}"/${P}-ICONV_CONST.patch
65 -)
66 -
67 -src_prepare() {
68 - default
69 - rm m4/iconv.m4 || die
70 - eautoreconf
71 -}
72 -
73 -src_configure() {
74 - econf \
75 - --disable-static \
76 - $(usex svg "" --without-rsvg)
77 -}
78 -
79 -src_install() {
80 - default
81 - find "${ED}" -name '*.la' -delete || die
82 -}