Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/sdl-gfx/
Date: Wed, 02 Dec 2020 00:32:06
Message-Id: 1606869107.68f04769826cc9f3245f0d6590160114b38e3ff0.bman@gentoo
1 commit: 68f04769826cc9f3245f0d6590160114b38e3ff0
2 Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
3 AuthorDate: Tue Dec 1 23:42:25 2020 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Wed Dec 2 00:31:47 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68f04769
7
8 media-libs/sdl-gfx: drop old
9
10 Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
11
12 media-libs/sdl-gfx/Manifest | 1 -
13 media-libs/sdl-gfx/sdl-gfx-2.0.25.ebuild | 42 --------------------------------
14 2 files changed, 43 deletions(-)
15
16 diff --git a/media-libs/sdl-gfx/Manifest b/media-libs/sdl-gfx/Manifest
17 index 54c785152cb..4530a0cc536 100644
18 --- a/media-libs/sdl-gfx/Manifest
19 +++ b/media-libs/sdl-gfx/Manifest
20 @@ -1,2 +1 @@
21 -DIST SDL_gfx-2.0.25.tar.gz 1760656 BLAKE2B f0779c725529d52b675312a3f6fffac7581f2e3a6f609c433e0c1fc636a3f73660727ce8996764578dcb486252ceaf6064a6710a6b60a82fc3cc106097d2e7ab SHA512 42a5d78fe1a9b644d329fb688ed6c98558f8dd0aa029a1a0d99b1c59f94859269e0aef8f9e420b8018b687d8eae151652890be3994775644e1d3a80ba7b6fe8c
22 DIST SDL_gfx-2.0.26.tar.gz 1771164 BLAKE2B 09556762bd9f3e19989d9db4117ec63deff466c015fe0d7b40595b8d3d0f2e7f17d142d101a1463a71144b6ee7700370513057f4f4753a4b4c605308cd42bc64 SHA512 e571caa0d7575683efd4cf8f0a41ab10f4acf913f9ece216ac823af11da22c8734fc2c0ea049009a3e1a53715e49622f5bfcfdbdafb95e5151990d0a4eb69c01
23
24 diff --git a/media-libs/sdl-gfx/sdl-gfx-2.0.25.ebuild b/media-libs/sdl-gfx/sdl-gfx-2.0.25.ebuild
25 deleted file mode 100644
26 index 3baf22df87e..00000000000
27 --- a/media-libs/sdl-gfx/sdl-gfx-2.0.25.ebuild
28 +++ /dev/null
29 @@ -1,42 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=5
34 -inherit autotools eutils ltprune multilib-minimal
35 -
36 -MY_P="${P/sdl-/SDL_}"
37 -DESCRIPTION="Graphics drawing primitives library for SDL"
38 -HOMEPAGE="http://www.ferzkopp.net/joomla/content/view/19/14/"
39 -SRC_URI="http://www.ferzkopp.net/Software/SDL_gfx-2.0/${MY_P}.tar.gz"
40 -
41 -LICENSE="ZLIB"
42 -SLOT="0"
43 -KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
44 -IUSE="doc cpu_flags_x86_mmx static-libs"
45 -
46 -RDEPEND=">=media-libs/libsdl-1.2.15-r4[video,${MULTILIB_USEDEP}]"
47 -DEPEND="${RDEPEND}"
48 -
49 -S=${WORKDIR}/${MY_P}
50 -
51 -src_prepare() {
52 - sed -i -e 's/-O //' configure.in || die
53 - mv configure.in configure.ac || die
54 - eautoreconf
55 -}
56 -
57 -multilib_src_configure() {
58 - ECONF_SOURCE="${S}" econf \
59 - $(use_enable cpu_flags_x86_mmx mmx) \
60 - $(use_enable static-libs static)
61 -}
62 -
63 -multilib_src_install() {
64 - emake DESTDIR="${D}" install
65 -}
66 -
67 -multilib_src_install_all() {
68 - dodoc AUTHORS ChangeLog README
69 - use doc && dohtml -r Docs/*
70 - prune_libtool_files
71 -}