commit: 9583375284b9f978a8068c0544bafc8b8524cadc Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at> AuthorDate: Sat Jul 24 19:21:23 2021 +0000 Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org> CommitDate: Wed Jul 28 21:22:24 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95833752
media-libs/sdl-net: EAPI8 bump, minor ebuild improvements Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/21772 Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org> media-libs/sdl-net/sdl-net-1.2.8-r2.ebuild | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) 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 new file mode 100644 index 00000000000..c84784f7165 --- /dev/null +++ b/media-libs/sdl-net/sdl-net-1.2.8-r2.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit multilib-minimal + +MY_P="${P/sdl-/SDL_}" + +DESCRIPTION="Simple Direct Media Layer Network Support Library" +HOMEPAGE="https://www.libsdl.org/projects/SDL_net/" +SRC_URI="https://www.libsdl.org/projects/SDL_net/release/${MY_P}.tar.gz" +S="${WORKDIR}/${MY_P}" + +LICENSE="ZLIB" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris" + +RDEPEND="media-libs/libsdl[${MULTILIB_USEDEP}]" +DEPEND="${RDEPEND}" + +multilib_src_configure() { + ECONF_SOURCE="${S}" econf --disable-gui +} + +multilib_src_install_all() { + einstalldocs + find "${ED}" -name '*.la' -delete || die +}
