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 2B32C1382C5 for ; Wed, 2 May 2018 19:28:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0E30EE0ABE; Wed, 2 May 2018 19:28:35 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 E05C8E0ABE for ; Wed, 2 May 2018 19:28:34 +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 E8714335C77 for ; Wed, 2 May 2018 19:28:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7B37435 for ; Wed, 2 May 2018 19:28: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: <1525289284.a0b3922d1286d2b37a30d9e6b6283436e85f8c70.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-strategy/naev/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-strategy/naev/naev-0.6.1.ebuild X-VCS-Directories: games-strategy/naev/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: a0b3922d1286d2b37a30d9e6b6283436e85f8c70 X-VCS-Branch: master Date: Wed, 2 May 2018 19:28: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: 00c7830e-5059-4aba-baef-0d64d36b33c7 X-Archives-Hash: b469824151c5b7dd270e0b5be5b5c223 commit: a0b3922d1286d2b37a30d9e6b6283436e85f8c70 Author: Pacho Ramos gentoo org> AuthorDate: Wed May 2 18:40:32 2018 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Wed May 2 19:28:04 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0b3922d games-strategy/naev: Drop old Package-Manager: Portage-2.3.31, Repoman-2.3.9 games-strategy/naev/naev-0.6.1.ebuild | 81 ----------------------------------- 1 file changed, 81 deletions(-) diff --git a/games-strategy/naev/naev-0.6.1.ebuild b/games-strategy/naev/naev-0.6.1.ebuild deleted file mode 100644 index 35e6898d296..00000000000 --- a/games-strategy/naev/naev-0.6.1.ebuild +++ /dev/null @@ -1,81 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -inherit flag-o-matic gnome2-utils games - -DESCRIPTION="A 2D space trading and combat game, in a similar vein to Escape Velocity" -HOMEPAGE="http://blog.naev.org/" -SRC_URI="mirror://sourceforge/naev/${P}.tar.bz2 - mirror://sourceforge/naev/ndata-${PV}.zip" - -LICENSE="GPL-2 GPL-3 public-domain CC-BY-3.0 CC-BY-SA-3.0" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="debug +mixer +openal" - -RDEPEND="media-libs/libsdl2[X,sound,video] - dev-libs/libzip - dev-libs/libxml2 - >=media-libs/freetype-2 - >=media-libs/libvorbis-1.2.1 - >=media-libs/libpng-1.2:0 - virtual/glu - virtual/opengl - dev-lang/lua:0 - mixer? ( media-libs/sdl2-mixer ) - openal? ( media-libs/openal )" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -src_unpack() { - unpack ${P}.tar.bz2 -} - -src_configure() { - egamesconf \ - --docdir=/usr/share/doc/${PF} \ - --enable-lua=shared \ - $(use_enable debug) \ - $(use_with openal) \ - $(use_with mixer sdlmixer) -} - -src_compile() { - emake V=1 -} - -src_install() { - emake \ - DESTDIR="${D}" \ - appicondir=/usr/share/pixmaps \ - appdatadir=/usr/share/appdata \ - Graphicsdir=/usr/share/applications \ - install - - insinto "${GAMES_DATADIR}"/${PN} - newins "${DISTDIR}"/ndata-${PV}.zip ndata - - local res - for res in 16 32 64 128; do - newicon -s ${res} extras/logos/logo${res}.png naev.png - done - - rm -f "${D}"/usr/share/doc/${PF}/LICENSE - - prepgamesdirs -} - -pkg_preinst() { - games_pkg_preinst - gnome2_icon_savelist -} - -pkg_postinst() { - games_pkg_postinst - gnome2_icon_cache_update -} - -pkg_postrm() { - gnome2_icon_cache_update -}