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 8E4321382C5 for ; Tue, 17 Apr 2018 21:01:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AD13DE0A96; Tue, 17 Apr 2018 21:01:08 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 85EE2E0A96 for ; Tue, 17 Apr 2018 21:01:08 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 88D26335C2C for ; Tue, 17 Apr 2018 21:01:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 530DC291 for ; Tue, 17 Apr 2018 21:01:04 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1523998849.4aa5b15bf4eab33a863b1f35e22d36ed2a7d4205.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-arcade/jumpnbump/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-arcade/jumpnbump/jumpnbump-1.50-r1.ebuild X-VCS-Directories: games-arcade/jumpnbump/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: 4aa5b15bf4eab33a863b1f35e22d36ed2a7d4205 X-VCS-Branch: master Date: Tue, 17 Apr 2018 21:01:04 +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-Archives-Salt: f6b0bb6a-6a44-4b29-ade3-62dc4f88d750 X-Archives-Hash: 55dd2c893f81d8a8851bc5a722e5e8d9 commit: 4aa5b15bf4eab33a863b1f35e22d36ed2a7d4205 Author: Pacho Ramos gentoo org> AuthorDate: Tue Apr 17 20:50:45 2018 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Tue Apr 17 21:00:49 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4aa5b15b games-arcade/jumpnbump: Drop old Package-Manager: Portage-2.3.28, Repoman-2.3.9 games-arcade/jumpnbump/jumpnbump-1.50-r1.ebuild | 53 ------------------------- 1 file changed, 53 deletions(-) diff --git a/games-arcade/jumpnbump/jumpnbump-1.50-r1.ebuild b/games-arcade/jumpnbump/jumpnbump-1.50-r1.ebuild deleted file mode 100644 index e6ee225519b..00000000000 --- a/games-arcade/jumpnbump/jumpnbump-1.50-r1.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit autotools eutils games - -DESCRIPTION="a funny multiplayer game about cute little fluffy bunnies" -HOMEPAGE="http://www.jumpbump.mine.nu/" -SRC_URI=" - http://www.jumpbump.mine.nu/port/${P}.tar.gz - mirror://gentoo/${P}-autotool.patch.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="X fbcon kde svga tk +music" - -DEPEND=" - media-libs/sdl-mixer - media-libs/libsdl[sound,joystick,video] - media-libs/sdl-net - X? ( x11-libs/libXext ) - kde? ( kde-apps/kdialog ) - music? ( media-libs/sdl-mixer[mod] ) -" -RDEPEND="${DEPEND} - tk? ( - dev-lang/tcl:0= - dev-lang/tk:0= - )" - -src_prepare() { - epatch ../${P}-autotool.patch - rm -f configure - eautoreconf - sed -i \ - -e "/PREFIX/ s:PREFIX.*:\"${GAMES_DATADIR}/${PN}/jumpbump.dat\":" \ - globals.h \ - || die "sed failed" -} - -src_install() { - emake DESTDIR="${D}" install - # clean up a bit. It leaves a dep on Xdialog but ignore that. - use fbcon || rm -f "${D}${GAMES_BINDIR}/jumpnbump.fbcon" - use kde || rm -f "${D}${GAMES_BINDIR}/jumpnbump-kdialog" - use svga || rm -f "${D}${GAMES_BINDIR}/jumpnbump.svgalib" - use tk || rm -f "${D}${GAMES_BINDIR}/jnbmenu.tcl" - newicon sdl/jumpnbump64.xpm ${PN}.xpm - make_desktop_entry ${PN} "Jump n Bump" - prepgamesdirs -}