summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Seifert <soap@gentoo.org>2017-12-20 22:30:11 +0100
committerDavid Seifert <soap@gentoo.org>2017-12-21 02:33:11 +0100
commit2d296074dc178fc3fd22523737696db2bc422ef4 (patch)
tree638448fb1ed787b59c1a556ded6f1ffc6f1e74ff /games-action
parentgames-action/tuxkart: Remove old (diff)
downloadgentoo-2d296074dc178fc3fd22523737696db2bc422ef4.tar.gz
gentoo-2d296074dc178fc3fd22523737696db2bc422ef4.tar.bz2
gentoo-2d296074dc178fc3fd22523737696db2bc422ef4.zip
games-action/wordwarvi: Remove old
Package-Manager: Portage-2.3.16, Repoman-2.3.6
Diffstat (limited to 'games-action')
-rw-r--r--games-action/wordwarvi/wordwarvi-1.00.ebuild51
1 files changed, 0 insertions, 51 deletions
diff --git a/games-action/wordwarvi/wordwarvi-1.00.ebuild b/games-action/wordwarvi/wordwarvi-1.00.ebuild
deleted file mode 100644
index 8711293cd392..000000000000
--- a/games-action/wordwarvi/wordwarvi-1.00.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit eutils games
-
-DESCRIPTION="A retro side-scrolling shoot'em up based on the editor war story"
-HOMEPAGE="http://wordwarvi.sourceforge.net"
-SRC_URI="mirror://sourceforge/wordwarvi/${P}.tar.gz"
-
-LICENSE="GPL-2 CC-BY-2.0 CC-BY-SA-3.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="portaudio"
-
-RDEPEND="x11-libs/gtk+:2
- portaudio? ( media-libs/libvorbis
- >=media-libs/portaudio-19_pre1 )"
-DEPEND="${RDEPEND}
- virtual/pkgconfig"
-
-src_prepare() {
- epatch "${FILESDIR}"/${P}-sound.patch
- sed -i \
- -e "/^WITHAUDIO/s/yes/$(use portaudio && echo yes || echo no)/" \
- Makefile || die
- sed -i \
- -e "s:GENTOO_DATADIR:${GAMES_DATADIR}/${PN}:" \
- wwviaudio.c || die
-}
-
-src_compile() {
- emake \
- PREFIX="${GAMES_PREFIX}" \
- DATADIR="${GAMES_DATADIR}/${PN}" \
- MANDIR="/usr/share/man"
-}
-
-src_install() {
- emake \
- DESTDIR="${D}" \
- PREFIX="${GAMES_PREFIX}" \
- DATADIR="${GAMES_DATADIR}/${PN}" \
- MANDIR="/usr/share/man" \
- install
- use portaudio || rm -rf "${D}${GAMES_DATADIR}"
- dodoc README AUTHORS changelog.txt AAA_HOW_TO_MAKE_NEW_LEVELS.txt
- newicon icons/wordwarvi_icon_128x128.png ${PN}.png
- make_desktop_entry ${PN} "Word War vi"
- prepgamesdirs
-}