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: Wed, 28 Jul 2021 21:23:20
Message-Id: 1627507344.9583375284b9f978a8068c0544bafc8b8524cadc.ionen@gentoo
1 commit: 9583375284b9f978a8068c0544bafc8b8524cadc
2 Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
3 AuthorDate: Sat Jul 24 19:21:23 2021 +0000
4 Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
5 CommitDate: Wed Jul 28 21:22:24 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95833752
7
8 media-libs/sdl-net: EAPI8 bump, minor ebuild improvements
9
10 Package-Manager: Portage-3.0.20, Repoman-3.0.3
11 Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
12 Closes: https://github.com/gentoo/gentoo/pull/21772
13 Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
14
15 media-libs/sdl-net/sdl-net-1.2.8-r2.ebuild | 29 +++++++++++++++++++++++++++++
16 1 file changed, 29 insertions(+)
17
18 diff --git a/media-libs/sdl-net/sdl-net-1.2.8-r2.ebuild b/media-libs/sdl-net/sdl-net-1.2.8-r2.ebuild
19 new file mode 100644
20 index 00000000000..c84784f7165
21 --- /dev/null
22 +++ b/media-libs/sdl-net/sdl-net-1.2.8-r2.ebuild
23 @@ -0,0 +1,29 @@
24 +# Copyright 1999-2021 Gentoo Authors
25 +# Distributed under the terms of the GNU General Public License v2
26 +
27 +EAPI=8
28 +
29 +inherit multilib-minimal
30 +
31 +MY_P="${P/sdl-/SDL_}"
32 +
33 +DESCRIPTION="Simple Direct Media Layer Network Support Library"
34 +HOMEPAGE="https://www.libsdl.org/projects/SDL_net/"
35 +SRC_URI="https://www.libsdl.org/projects/SDL_net/release/${MY_P}.tar.gz"
36 +S="${WORKDIR}/${MY_P}"
37 +
38 +LICENSE="ZLIB"
39 +SLOT="0"
40 +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris"
41 +
42 +RDEPEND="media-libs/libsdl[${MULTILIB_USEDEP}]"
43 +DEPEND="${RDEPEND}"
44 +
45 +multilib_src_configure() {
46 + ECONF_SOURCE="${S}" econf --disable-gui
47 +}
48 +
49 +multilib_src_install_all() {
50 + einstalldocs
51 + find "${ED}" -name '*.la' -delete || die
52 +}