diff options
author | 2021-06-13 08:00:18 -0400 | |
---|---|---|
committer | 2021-06-13 08:52:41 -0400 | |
commit | 28137c7c6970f69c1cecd1ef3f0874f2f8fd836f (patch) | |
tree | ecdfb3e1dfad11cf6b1a92cc6bbb6e807cd35f58 /dev-games/t4k-common | |
parent | net-news/newsboat: clean old (diff) | |
download | gentoo-28137c7c6970f69c1cecd1ef3f0874f2f8fd836f.tar.gz gentoo-28137c7c6970f69c1cecd1ef3f0874f2f8fd836f.tar.bz2 gentoo-28137c7c6970f69c1cecd1ef3f0874f2f8fd836f.zip |
dev-games/t4k-common: drop last stable 0.1.1
Broken and its only rdep currently depends on ~arch 0.1.1-r1, no
sense in keeping stable keywords for this.
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
Diffstat (limited to 'dev-games/t4k-common')
-rw-r--r-- | dev-games/t4k-common/t4k-common-0.1.1.ebuild | 59 |
1 files changed, 0 insertions, 59 deletions
diff --git a/dev-games/t4k-common/t4k-common-0.1.1.ebuild b/dev-games/t4k-common/t4k-common-0.1.1.ebuild deleted file mode 100644 index e0a6d5009ab5..000000000000 --- a/dev-games/t4k-common/t4k-common-0.1.1.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools - -DESCRIPTION="A library of code shared between tuxmath and tuxtype" -HOMEPAGE="https://github.com/tux4kids/t4kcommon" -SRC_URI="https://github.com/tux4kids/t4kcommon/archive/upstream/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="svg" - -RDEPEND=" - dev-libs/libxml2:2 - media-libs/libsdl - media-libs/sdl-image - media-libs/sdl-mixer - media-libs/sdl-net - media-libs/sdl-ttf - media-libs/sdl-pango - svg? ( - gnome-base/librsvg:2 - media-libs/libpng:0 - x11-libs/cairo - )" -DEPEND="${RDEPEND}" -# need sys-devel/gettext for AM_ICONV in iconv.m4 -BDEPEND=" - sys-devel/gettext - virtual/pkgconfig" - -S="${WORKDIR}/t4kcommon-upstream-${PV}" - -PATCHES=( - "${FILESDIR}"/${P}-libpng.patch - "${FILESDIR}"/${P}-fno-common.patch - "${FILESDIR}"/${P}-ICONV_CONST.patch -) - -src_prepare() { - default - rm m4/iconv.m4 || die - eautoreconf -} - -src_configure() { - econf \ - --disable-static \ - $(usex svg "" --without-rsvg) -} - -src_install() { - default - find "${ED}" -name '*.la' -delete || die -} |