summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2008-12-02 21:54:50 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2008-12-02 21:54:50 +0000
commit3f9e5d7815b3330eaa6b27132194a47a2301e9e4 (patch)
tree7246001e81e466045cfdf3e63191ee361bf61a57 /games-action
parentfix up portaudio dep (diff)
downloadgentoo-2-3f9e5d7815b3330eaa6b27132194a47a2301e9e4.tar.gz
gentoo-2-3f9e5d7815b3330eaa6b27132194a47a2301e9e4.tar.bz2
gentoo-2-3f9e5d7815b3330eaa6b27132194a47a2301e9e4.zip
old
(Portage version: 2.1.4.5)
Diffstat (limited to 'games-action')
-rw-r--r--games-action/wordwarvi/wordwarvi-0.22.ebuild55
1 files changed, 0 insertions, 55 deletions
diff --git a/games-action/wordwarvi/wordwarvi-0.22.ebuild b/games-action/wordwarvi/wordwarvi-0.22.ebuild
deleted file mode 100644
index 6413f5e948e9..000000000000
--- a/games-action/wordwarvi/wordwarvi-0.22.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-action/wordwarvi/wordwarvi-0.22.ebuild,v 1.1 2008/08/04 03:28:15 mr_bones_ Exp $
-
-EAPI=1
-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 CCPL-Attribution-2.0 CCPL-Attribution-ShareAlike-3.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="vorbis"
-
-RDEPEND="x11-libs/gtk+:2
- vorbis? ( media-libs/libvorbis
- >=media-libs/portaudio-0.19 )"
-DEPEND="${RDEPEND}
- dev-util/pkgconfig"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- sed -i \
- -e '/^DATADIR/s/=/?=/' \
- -e '/^OPTIMIZE_FLAG/s/=.*/=$(CFLAGS)/' \
- Makefile \
- || die "sed failed"
-}
-
-src_compile() {
- emake \
- PREFIX="${GAMES_PREFIX}" \
- DATADIR="${GAMES_DATADIR}/${PN}" \
- MANDIR="/usr/share/man" \
- WITHAUDIO=$(use vorbis && echo yes || echo no) all \
- || die "emake failed"
-}
-
-src_install() {
- emake \
- DESTDIR="${D}" \
- PREFIX="${GAMES_PREFIX}" \
- DATADIR="${GAMES_DATADIR}/${PN}" \
- MANDIR="/usr/share/man" \
- WITHAUDIO=$(use vorbis && echo yes || echo no) all \
- install || die "emake install failed"
- use vorbis || rm -rf "${D}${GAMES_DATADIR}/${PN}"
- 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
-}