From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 612611580EB for ; Fri, 23 May 2025 00:23:23 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id D38433430F5 for ; Fri, 23 May 2025 00:23:22 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id CD3471103DE; Fri, 23 May 2025 00:23:21 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id C175D1103DE for ; Fri, 23 May 2025 00:23:21 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 658A93433E2 for ; Fri, 23 May 2025 00:23:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0AB1623F5 for ; Fri, 23 May 2025 00:23:20 +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: <1747959768.d70964c875c776d212e9b4468fbaf7e9579ecc08.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-games/guichan/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-games/guichan/guichan-0.8.2.ebuild X-VCS-Directories: dev-games/guichan/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: d70964c875c776d212e9b4468fbaf7e9579ecc08 X-VCS-Branch: master Date: Fri, 23 May 2025 00:23:20 +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: 97e098b0-32c9-4451-b956-067d7eec06f6 X-Archives-Hash: c4f3e0d7bbd4968d9d7836989cf74038 commit: d70964c875c776d212e9b4468fbaf7e9579ecc08 Author: Andreas Sturmlechner gentoo org> AuthorDate: Thu May 22 22:49:33 2025 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Fri May 23 00:22:48 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d70964c8 dev-games/guichan: drop 0.8.2 Signed-off-by: Andreas Sturmlechner gentoo.org> dev-games/guichan/guichan-0.8.2.ebuild | 52 ---------------------------------- 1 file changed, 52 deletions(-) diff --git a/dev-games/guichan/guichan-0.8.2.ebuild b/dev-games/guichan/guichan-0.8.2.ebuild deleted file mode 100644 index 647b6c9477ef..000000000000 --- a/dev-games/guichan/guichan-0.8.2.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools - -DESCRIPTION="A portable C++ GUI library designed for games using Allegro, SDL and/or OpenGL" -HOMEPAGE="https://guichan.sourceforge.net/oldsite/about.shtml" -SRC_URI="https://guichan.googlecode.com/files/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="allegro opengl sdl" - -DEPEND=" - allegro? ( media-libs/allegro:0 ) - opengl? ( virtual/opengl ) - sdl? ( - media-libs/libsdl - media-libs/sdl-image - )" -RDEPEND="${DEPEND}" - -PATCHES=( - "${FILESDIR}"/${P}-as-needed.patch - "${FILESDIR}"/${P}-automake-1.13.patch - "${FILESDIR}"/${P}-slibtool-undefined-references.patch -) - -src_prepare() { - default - - mv configure.in configure.ac || die - eautoreconf -} - -src_configure() { - econf \ - $(use_enable allegro) \ - $(use_enable opengl) \ - $(use_enable sdl) \ - $(use_enable sdl sdlimage) \ - --disable-static -} - -src_install() { - default - - find "${ED}" -name '*.la' -delete || die -}