diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2014-07-16 01:54:53 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2014-07-16 01:54:53 +0000 |
commit | 23addd2f69bf830727cee68810e4b1495a2a0533 (patch) | |
tree | e2ce9e9f6fe8de306bd8c6bca5b88ff13b629dc0 /games-arcade | |
parent | old (diff) | |
download | gentoo-2-23addd2f69bf830727cee68810e4b1495a2a0533.tar.gz gentoo-2-23addd2f69bf830727cee68810e4b1495a2a0533.tar.bz2 gentoo-2-23addd2f69bf830727cee68810e4b1495a2a0533.zip |
old
(Portage version: 2.2.8-r1/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'games-arcade')
-rw-r--r-- | games-arcade/vor/ChangeLog | 6 | ||||
-rw-r--r-- | games-arcade/vor/files/vor-0.5.4-underlink.patch | 20 | ||||
-rw-r--r-- | games-arcade/vor/vor-0.5.4.ebuild | 39 |
3 files changed, 5 insertions, 60 deletions
diff --git a/games-arcade/vor/ChangeLog b/games-arcade/vor/ChangeLog index a8771984caa7..9cd4f49187dc 100644 --- a/games-arcade/vor/ChangeLog +++ b/games-arcade/vor/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for games-arcade/vor # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-arcade/vor/ChangeLog,v 1.14 2014/05/15 16:34:07 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-arcade/vor/ChangeLog,v 1.15 2014/07/16 01:54:53 mr_bones_ Exp $ + + 16 Jul 2014; Michael Sterrett <mr_bones_@gentoo.org> + -files/vor-0.5.4-underlink.patch, -vor-0.5.4.ebuild: + old 15 May 2014; Ulrich Müller <ulm@gentoo.org> vor-0.5.5.ebuild: Fix USE dependency on media-libs/libsdl, "audio" USE flag was renamed to diff --git a/games-arcade/vor/files/vor-0.5.4-underlink.patch b/games-arcade/vor/files/vor-0.5.4-underlink.patch deleted file mode 100644 index 0d2745218e1c..000000000000 --- a/games-arcade/vor/files/vor-0.5.4-underlink.patch +++ /dev/null @@ -1,20 +0,0 @@ ---- Makefile.old 2011-05-19 09:48:26.698819456 +0200 -+++ Makefile 2011-05-19 16:40:54.526390959 +0200 -@@ -29,7 +29,7 @@ - sdl-cflags := $(shell sdl-config --cflags) - sdl-ldflags := $(shell sdl-config --libs) - --ldflags := $(sdl-ldflags) -lSDL_image -lSDL_mixer $(LDFLAGS) -+LDLIBS := $(sdl-ldflags) -lSDL_image -lSDL_mixer -lm - cflags := $(sdl-cflags) $(paths) $(CFLAGS) - - my_objects := args.o dust.o file.o mt.o rocks.o score.o sprite.o sound.o autopilot.o -@@ -89,7 +89,7 @@ - sprite.o: sprite.h common.h - - vor: $(objects) -- $(CC) $^ $(ldflags) -o $@ -+ $(LINK.c) $^ $(LOADLIBES) $(LDLIBS) -o $@ - - include gfx.mk - diff --git a/games-arcade/vor/vor-0.5.4.ebuild b/games-arcade/vor/vor-0.5.4.ebuild deleted file mode 100644 index f1f1ee2a9e60..000000000000 --- a/games-arcade/vor/vor-0.5.4.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-arcade/vor/vor-0.5.4.ebuild,v 1.5 2012/08/24 07:49:43 mr_bones_ Exp $ - -EAPI=2 -inherit eutils games - -DESCRIPTION="Variations on Rockdodger: Dodge the rocks until you die" -HOMEPAGE="http://jasonwoof.org/vor" -SRC_URI="http://qualdan.com/vor/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ppc x86" -IUSE="" - -DEPEND="media-libs/libsdl - media-libs/sdl-image[png] - media-libs/sdl-mixer[mod]" - -PATCHES=( "${FILESDIR}"/${P}-underlink.patch ) - -src_compile() { - emake \ - CFLAGS="${CFLAGS}" \ - LDFLAGS="${LDFLAGS}" \ - pkgdatadir="${GAMES_DATADIR}"/${PN} \ - || die "emake failed" -} - -src_install() { - dogamesbin ${PN} || die "dogamesbin failed" - insinto "${GAMES_DATADIR}"/${PN} - doins data/* || die "doins failed" - newicon data/icon.png ${PN}.png - make_desktop_entry ${PN} VoR - dodoc README todo - prepgamesdirs -} |