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 4F81C1382C5 for ; Sun, 22 Apr 2018 19:40:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6352CE0883; Sun, 22 Apr 2018 19:40:35 +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 3FF54E0894 for ; Sun, 22 Apr 2018 19:40:35 +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 531B6335C75 for ; Sun, 22 Apr 2018 19:40:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4A6172A6 for ; Sun, 22 Apr 2018 19:40:31 +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: <1524425988.07b0993c87a8f36f923e23f998b91c867edc3cad.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-arcade/missile/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-arcade/missile/missile-1.0.1.ebuild X-VCS-Directories: games-arcade/missile/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: 07b0993c87a8f36f923e23f998b91c867edc3cad X-VCS-Branch: master Date: Sun, 22 Apr 2018 19:40:31 +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: 6cac3bce-1d9f-47bd-88ba-54714999fe83 X-Archives-Hash: 158e1634f89042950c97a9aa2737e177 commit: 07b0993c87a8f36f923e23f998b91c867edc3cad Author: Pacho Ramos gentoo org> AuthorDate: Sun Apr 22 19:11:28 2018 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Sun Apr 22 19:39:48 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07b0993c games-arcade/missile: Drop old Package-Manager: Portage-2.3.31, Repoman-2.3.9 games-arcade/missile/missile-1.0.1.ebuild | 53 ------------------------------- 1 file changed, 53 deletions(-) diff --git a/games-arcade/missile/missile-1.0.1.ebuild b/games-arcade/missile/missile-1.0.1.ebuild deleted file mode 100644 index 1b7653b64b3..00000000000 --- a/games-arcade/missile/missile-1.0.1.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 eutils gnome2-utils games - -DESCRIPTION="The game Missile Command for Linux" -HOMEPAGE="http://missile.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~x86" -IUSE="" - -DEPEND="media-libs/libsdl[sound,video] - media-libs/sdl-image[png] - media-libs/sdl-mixer" -RDEPEND=${DEPEND} - -src_prepare() { - epatch "${FILESDIR}"/${P}-ldflags.patch - sed -i \ - -e '/^CC/d' \ - -e "s:\$(game_prefix)/\$(game_data):${GAMES_DATADIR}/${PN}:" \ - -e "s/-O2/${CFLAGS}/" \ - -e 's/-lSDL_image $(SND_LIBS)/-lSDL_image -lm $(SND_LIBS)/g' \ - Makefile || die -} - -src_install() { - dogamesbin ${PN} - insinto "${GAMES_DATADIR}"/${PN} - doins -r data/* - newicon -s 48 icons/${PN}_icon_black.png ${PN}.png - make_desktop_entry ${PN} "Missile Command" - dodoc README - prepgamesdirs -} - -pkg_preinst() { - games_pkg_preinst - gnome2_icon_savelist -} - -pkg_postinst() { - games_pkg_postinst - gnome2_icon_cache_update -} - -pkg_postrm() { - gnome2_icon_cache_update -}