From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3EDF4139337 for ; Wed, 28 Jul 2021 21:23:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 90D9CE091B; Wed, 28 Jul 2021 21:23:19 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7178EE0909 for ; Wed, 28 Jul 2021 21:23:19 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 161FF33BE1A for ; Wed, 28 Jul 2021 21:23:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A7C777AF for ; Wed, 28 Jul 2021 21:23:16 +0000 (UTC) From: "Ionen Wolkens" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ionen Wolkens" Message-ID: <1627507344.9583375284b9f978a8068c0544bafc8b8524cadc.ionen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/sdl-net/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/sdl-net/sdl-net-1.2.8-r2.ebuild X-VCS-Directories: media-libs/sdl-net/ X-VCS-Committer: ionen X-VCS-Committer-Name: Ionen Wolkens X-VCS-Revision: 9583375284b9f978a8068c0544bafc8b8524cadc X-VCS-Branch: master Date: Wed, 28 Jul 2021 21:23:16 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: f7e96f16-9956-4a0e-aeb0-c8571184c4ed X-Archives-Hash: fbb9d1aa2d86108b24410d8465cab6e8 commit: 9583375284b9f978a8068c0544bafc8b8524cadc Author: Michael Mair-Keimberger levelnine at> AuthorDate: Sat Jul 24 19:21:23 2021 +0000 Commit: Ionen Wolkens gentoo 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 levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/21772 Signed-off-by: Ionen Wolkens 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 +}