summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2008-12-22 00:47:40 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2008-12-22 00:47:40 +0000
commit68de6067518721649e5b619a7d1fca3533c21853 (patch)
treef71cebc979f6c12c1ac77b1c3066114eac68d800 /games-strategy
parentVersion bump (diff)
downloadhistorical-68de6067518721649e5b619a7d1fca3533c21853.tar.gz
historical-68de6067518721649e5b619a7d1fca3533c21853.tar.bz2
historical-68de6067518721649e5b619a7d1fca3533c21853.zip
old
Package-Manager: portage-2.1.4.5
Diffstat (limited to 'games-strategy')
-rw-r--r--games-strategy/wormux/wormux-0.8.1.ebuild70
1 files changed, 0 insertions, 70 deletions
diff --git a/games-strategy/wormux/wormux-0.8.1.ebuild b/games-strategy/wormux/wormux-0.8.1.ebuild
deleted file mode 100644
index 1862f4f3dc42..000000000000
--- a/games-strategy/wormux/wormux-0.8.1.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-strategy/wormux/wormux-0.8.1.ebuild,v 1.2 2008/10/09 06:03:40 nyhm Exp $
-
-inherit autotools eutils games
-
-DESCRIPTION="A free Worms clone"
-HOMEPAGE="http://www.wormux.org/"
-SRC_URI="http://download.gna.org/wormux/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE="debug nls unicode"
-
-RDEPEND="media-libs/libsdl
- media-libs/sdl-image
- media-libs/sdl-mixer
- media-libs/sdl-ttf
- media-libs/sdl-net
- media-libs/sdl-gfx
- media-libs/libpng
- net-misc/curl
- media-fonts/dejavu
- >=dev-cpp/libxmlpp-2.6
- nls? ( virtual/libintl )
- unicode? ( dev-libs/fribidi )"
-DEPEND="${RDEPEND}
- dev-util/pkgconfig
- nls? ( sys-devel/gettext )"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- sed -i \
- -e "/AX_CFLAGS_WARN_ALL/d" \
- configure.ac \
- || die "sed failed"
- sed -i \
- -e "s/-Werror//" \
- src/Makefile.am \
- || die "sed failed"
- sed -i \
- -e "/xdg/d" \
- -e "/pixmaps/d" \
- data/Makefile.am \
- || die "sed failed"
- eautoreconf
-}
-
-src_compile() {
- egamesconf \
- --disable-dependency-tracking \
- --with-localedir-name=/usr/share/locale \
- --with-datadir-name="${GAMES_DATADIR}/${PN}" \
- --with-font-path=/usr/share/fonts/dejavu/DejaVuSans.ttf \
- $(use_enable debug) \
- $(use_enable nls) \
- $(use_enable unicode fribidi) \
- || die "configuration failed"
- emake || die "emake failed"
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "emake install failed"
- dodoc AUTHORS ChangeLog README TODO
- newicon data/wormux.svg wormux.svg
- make_desktop_entry wormux Wormux
- prepgamesdirs
-}