Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/sdl-gfx/
Date: Mon, 19 Apr 2021 20:54:45
Message-Id: 1618865638.5c95926a12d72c1bf170dc03ac609bdfeac3a49c.sam@gentoo
1 commit: 5c95926a12d72c1bf170dc03ac609bdfeac3a49c
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Mon Apr 19 20:18:24 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Mon Apr 19 20:53:58 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c95926a
7
8 media-libs/sdl-gfx: drop 2.0.26
9
10 Signed-off-by: Sam James <sam <AT> gentoo.org>
11
12 media-libs/sdl-gfx/sdl-gfx-2.0.26.ebuild | 50 --------------------------------
13 1 file changed, 50 deletions(-)
14
15 diff --git a/media-libs/sdl-gfx/sdl-gfx-2.0.26.ebuild b/media-libs/sdl-gfx/sdl-gfx-2.0.26.ebuild
16 deleted file mode 100644
17 index 92ec91ed3ea..00000000000
18 --- a/media-libs/sdl-gfx/sdl-gfx-2.0.26.ebuild
19 +++ /dev/null
20 @@ -1,50 +0,0 @@
21 -# Copyright 1999-2021 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=6
25 -
26 -inherit autotools multilib-minimal
27 -
28 -MY_P="${P/sdl-/SDL_}"
29 -DESCRIPTION="Graphics drawing primitives library for SDL"
30 -HOMEPAGE="http://www.ferzkopp.net/joomla/content/view/19/14/"
31 -SRC_URI="http://www.ferzkopp.net/Software/SDL_gfx-2.0/${MY_P}.tar.gz"
32 -S="${WORKDIR}/${MY_P}"
33 -
34 -LICENSE="ZLIB"
35 -SLOT="0"
36 -KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris"
37 -IUSE="doc cpu_flags_x86_mmx"
38 -
39 -RDEPEND=">=media-libs/libsdl-1.2.15-r4[video,${MULTILIB_USEDEP}]"
40 -DEPEND="${RDEPEND}"
41 -
42 -DOCS=( AUTHORS ChangeLog README )
43 -
44 -src_prepare() {
45 - default
46 - sed -i -e 's/-O //' configure.in || die
47 - mv configure.in configure.ac || die
48 - eautoreconf
49 -}
50 -
51 -multilib_src_configure() {
52 - ECONF_SOURCE="${S}" econf \
53 - $(use_enable cpu_flags_x86_mmx mmx) \
54 - --disable-static
55 -}
56 -
57 -#multilib_src_install() {
58 -# emake DESTDIR="${D}" install
59 -#}
60 -
61 -multilib_src_install_all() {
62 - einstalldocs
63 -
64 - if use doc ; then
65 - docinto html
66 - dodoc -r Docs/*
67 - fi
68 -
69 - find "${ED}" \( -name "*.a" -o -name "*.la" \) -delete || die
70 -}