diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2015-05-28 19:08:26 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2015-05-28 19:08:26 +0000 |
commit | f9c51fad55c8e505678fddf3e7971652d4b2de89 (patch) | |
tree | 9b9a2b298b2c709d1d7d3546ba84241303052815 /games-strategy/naev | |
parent | Replace internal-jsoncpp USE flag with system-jsoncpp to ensure that an initi... (diff) | |
download | gentoo-2-f9c51fad55c8e505678fddf3e7971652d4b2de89.tar.gz gentoo-2-f9c51fad55c8e505678fddf3e7971652d4b2de89.tar.bz2 gentoo-2-f9c51fad55c8e505678fddf3e7971652d4b2de89.zip |
old
(Portage version: 2.2.18/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'games-strategy/naev')
-rw-r--r-- | games-strategy/naev/ChangeLog | 5 | ||||
-rw-r--r-- | games-strategy/naev/naev-0.5.3.ebuild | 80 |
2 files changed, 4 insertions, 81 deletions
diff --git a/games-strategy/naev/ChangeLog b/games-strategy/naev/ChangeLog index 7df580b1a4a1..e9fecac7c73d 100644 --- a/games-strategy/naev/ChangeLog +++ b/games-strategy/naev/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-strategy/naev # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-strategy/naev/ChangeLog,v 1.24 2015/05/27 11:13:20 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-strategy/naev/ChangeLog,v 1.25 2015/05/28 19:08:26 mr_bones_ Exp $ + + 28 May 2015; Michael Sterrett <mr_bones_@gentoo.org> -naev-0.5.3.ebuild: + old 27 May 2015; Agostino Sarubbo <ago@gentoo.org> naev-0.6.0.ebuild: Stable for x86, wrt bug #549526 diff --git a/games-strategy/naev/naev-0.5.3.ebuild b/games-strategy/naev/naev-0.5.3.ebuild deleted file mode 100644 index 712670d97daa..000000000000 --- a/games-strategy/naev/naev-0.5.3.ebuild +++ /dev/null @@ -1,80 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-strategy/naev/naev-0.5.3.ebuild,v 1.9 2014/06/07 04:02:33 mr_bones_ Exp $ - -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://code.google.com/p/naev/" -SRC_URI="mirror://sourceforge/naev/${P}.tar.bz2 - mirror://sourceforge/naev/ndata-${PV}" - -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/libsdl[X,sound,video] - dev-libs/libxml2 - >=media-libs/freetype-2 - >=media-libs/libvorbis-1.2.1 - >=media-libs/libpng-1.2:0 - media-libs/sdl-image[png] - virtual/glu - virtual/opengl - mixer? ( media-libs/sdl-mixer ) - openal? ( media-libs/openal )" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -src_unpack() { - unpack ${P}.tar.bz2 -} - -src_configure() { - append-libs -lm -lvorbis - egamesconf \ - --docdir=/usr/share/doc/${PF} \ - $(use_enable debug) \ - $(use_with openal) \ - $(use_with mixer sdlmixer) -} - -src_compile() { - emake V=1 -} - -src_install() { - emake \ - DESTDIR="${D}" \ - appicondir=/usr/share/pixmaps \ - Graphicsdir=/usr/share/applications \ - install - - insinto "${GAMES_DATADIR}"/${PN} - newins "${DISTDIR}"/ndata-${PV} 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 -} |