Gentoo Archives: gentoo-commits

From: Ionen Wolkens <ionen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/sdl-net/
Date: Mon, 04 Oct 2021 21:00:07
Message-Id: 1633381147.2c770cfa8c68b65118a380ce3116ac8c5ebb535a.ionen@gentoo
1 commit: 2c770cfa8c68b65118a380ce3116ac8c5ebb535a
2 Author: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
3 AuthorDate: Mon Oct 4 19:23:11 2021 +0000
4 Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
5 CommitDate: Mon Oct 4 20:59:07 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c770cfa
7
8 media-libs/sdl-net: drop 1.2.8-r1
9
10 Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
11
12 media-libs/sdl-net/sdl-net-1.2.8-r1.ebuild | 39 ------------------------------
13 1 file changed, 39 deletions(-)
14
15 diff --git a/media-libs/sdl-net/sdl-net-1.2.8-r1.ebuild b/media-libs/sdl-net/sdl-net-1.2.8-r1.ebuild
16 deleted file mode 100644
17 index 62739e45cf2..00000000000
18 --- a/media-libs/sdl-net/sdl-net-1.2.8-r1.ebuild
19 +++ /dev/null
20 @@ -1,39 +0,0 @@
21 -# Copyright 1999-2021 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=5
25 -inherit multilib-minimal
26 -
27 -MY_P=${P/sdl-/SDL_}
28 -DESCRIPTION="Simple Direct Media Layer Network Support Library"
29 -HOMEPAGE="http://www.libsdl.org/projects/SDL_net/index.html"
30 -SRC_URI="http://www.libsdl.org/projects/SDL_net/release/${MY_P}.tar.gz"
31 -
32 -LICENSE="ZLIB"
33 -SLOT="0"
34 -KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris"
35 -IUSE="static-libs"
36 -
37 -RDEPEND="
38 - >=media-libs/libsdl-1.2.15-r4[${MULTILIB_USEDEP}]"
39 -DEPEND="${RDEPEND}"
40 -
41 -S=${WORKDIR}/${MY_P}
42 -
43 -multilib_src_configure() {
44 - ECONF_SOURCE="${S}" econf \
45 - --disable-gui \
46 - $(use_enable static-libs static)
47 -}
48 -
49 -multilib_src_install() {
50 - emake DESTDIR="${D}" install
51 -}
52 -
53 -multilib_src_install_all() {
54 - dodoc CHANGES README
55 - if ! use static-libs ; then
56 - find "${D}" -type f -name '*.la' -exec rm {} + \
57 - || die "la removal failed"
58 - fi
59 -}