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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2E4AF15800A for ; Sun, 27 Aug 2023 10:10:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 644B42BC02B; Sun, 27 Aug 2023 10:10:00 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 46CEE2BC02B for ; Sun, 27 Aug 2023 10:10:00 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 20F59340DD4 for ; Sun, 27 Aug 2023 10:09:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5D0A3FC9 for ; Sun, 27 Aug 2023 10:09:57 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1693130971.0646b153aa1b6aca9afa789068a5ac7d2c3e5d43.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/sdl2-gfx/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/sdl2-gfx/sdl2-gfx-1.0.4.ebuild X-VCS-Directories: media-libs/sdl2-gfx/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 0646b153aa1b6aca9afa789068a5ac7d2c3e5d43 X-VCS-Branch: master Date: Sun, 27 Aug 2023 10:09:57 +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: 8aa96c13-7298-4aeb-bd7a-ebecb4e5c2ed X-Archives-Hash: 04ae19787861caef4014c1ad1986a585 commit: 0646b153aa1b6aca9afa789068a5ac7d2c3e5d43 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Aug 27 10:04:35 2023 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Aug 27 10:09:31 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0646b153 media-libs/sdl2-gfx: drop 1.0.4 Closes: https://bugs.gentoo.org/913077 Signed-off-by: Andreas Sturmlechner gentoo.org> media-libs/sdl2-gfx/sdl2-gfx-1.0.4.ebuild | 55 ------------------------------- 1 file changed, 55 deletions(-) diff --git a/media-libs/sdl2-gfx/sdl2-gfx-1.0.4.ebuild b/media-libs/sdl2-gfx/sdl2-gfx-1.0.4.ebuild deleted file mode 100644 index 915f8fbfe5b5..000000000000 --- a/media-libs/sdl2-gfx/sdl2-gfx-1.0.4.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit autotools multilib-minimal - -MY_P="${P/sdl2-/SDL2_}" -DESCRIPTION="Graphics drawing primitives library for SDL2" -HOMEPAGE="http://www.ferzkopp.net/joomla/content/view/19/14/" -SRC_URI="http://www.ferzkopp.net/Software/SDL2_gfx/${MY_P}.tar.gz" -S="${WORKDIR}"/${MY_P} - -LICENSE="ZLIB" -SLOT="0" -KEYWORDS="amd64 ~ppc ~ppc64 x86" -IUSE="doc cpu_flags_x86_mmx" - -DEPEND=">=media-libs/libsdl2-2.0.1-r1[video,${MULTILIB_USEDEP}]" -RDEPEND="${DEPEND}" - -DOCS=( AUTHORS ChangeLog README ) - -PATCHES=( - "${FILESDIR}"/${PN}-1.0.4-slibtool.patch -) - -src_prepare() { - default - mv configure.in configure.ac || die - sed -i \ - -e 's/ -O / /' \ - configure.ac || die - eautoreconf -} - -multilib_src_configure() { - local myeconfargs=( - $(use_enable cpu_flags_x86_mmx mmx) - --disable-static - ) - - ECONF_SOURCE="${S}" econf "${myeconfargs[@]}" -} - -multilib_src_install_all() { - einstalldocs - - if use doc ; then - docinto html - dodoc -r Docs/html/* - fi - - find "${ED}" \( -name "*.a" -o -name "*.la" \) -delete || die -}