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 52B1E13835A for ; Tue, 2 Jun 2020 18:09:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 57EFDE0882; Tue, 2 Jun 2020 18:09:46 +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 3FB58E0882 for ; Tue, 2 Jun 2020 18:09:46 +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 8DB6634EF3C for ; Tue, 2 Jun 2020 18:09:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 26DD8276 for ; Tue, 2 Jun 2020 18:09:42 +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: <1591121367.6ab035e5162d8b0216906c4cdfa5aa8abaa3375a.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-board/gtkboard/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-board/gtkboard/gtkboard-0.11_pre0-r1.ebuild X-VCS-Directories: games-board/gtkboard/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 6ab035e5162d8b0216906c4cdfa5aa8abaa3375a X-VCS-Branch: master Date: Tue, 2 Jun 2020 18:09:42 +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: 375c1c60-3d8a-4838-aa20-dcc1473e28ac X-Archives-Hash: 214e836c151a017e04cbfe78cec2c83f commit: 6ab035e5162d8b0216906c4cdfa5aa8abaa3375a Author: Andreas Sturmlechner gentoo org> AuthorDate: Tue Jun 2 18:09:02 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Tue Jun 2 18:09:27 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ab035e5 games-board/gtkboard: Drop 0.11_pre0-r1 Package-Manager: Portage-2.3.100, Repoman-2.3.22 Signed-off-by: Andreas Sturmlechner gentoo.org> games-board/gtkboard/gtkboard-0.11_pre0-r1.ebuild | 50 ----------------------- 1 file changed, 50 deletions(-) diff --git a/games-board/gtkboard/gtkboard-0.11_pre0-r1.ebuild b/games-board/gtkboard/gtkboard-0.11_pre0-r1.ebuild deleted file mode 100644 index b7ae827bf8d..00000000000 --- a/games-board/gtkboard/gtkboard-0.11_pre0-r1.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -inherit eutils - -MY_P=${P/_} -DESCRIPTION="Board games system" -HOMEPAGE="http://gtkboard.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="gnome" - -RDEPEND="x11-libs/gtk+:2 - media-libs/libsdl:0[sound] - media-libs/sdl-mixer[vorbis] - gnome? ( gnome-base/libgnomeui )" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -S=${WORKDIR}/${MY_P} - -PATCHES=( - "${FILESDIR}"/${P}-gcc41.patch - "${FILESDIR}"/${P}-gcc45.patch -) - -src_prepare() { - default - - sed -i -e "/^LIBS/s:@LIBS@:@LIBS@ -lgmodule-2.0 -lm:" \ - src/Makefile.in -} - -src_configure() { - econf \ - --enable-gtk2 \ - --enable-sdl \ - $(use_enable gnome) -} - -src_install() { - emake DESTDIR="${D}" install - doicon pixmaps/${PN}.png - make_desktop_entry ${PN} Gtkboard - dodoc AUTHORS ChangeLog TODO doc/index.html -}