diff options
Diffstat (limited to 'games-strategy/liquidwar/liquidwar-5.6.3.ebuild')
-rw-r--r-- | games-strategy/liquidwar/liquidwar-5.6.3.ebuild | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/games-strategy/liquidwar/liquidwar-5.6.3.ebuild b/games-strategy/liquidwar/liquidwar-5.6.3.ebuild new file mode 100644 index 000000000000..28d984a3fcd0 --- /dev/null +++ b/games-strategy/liquidwar/liquidwar-5.6.3.ebuild @@ -0,0 +1,55 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-strategy/liquidwar/liquidwar-5.6.3.ebuild,v 1.1 2005/12/01 04:32:19 mr_bones_ Exp $ + +inherit flag-o-matic games + +DESCRIPTION="unique multiplayer wargame" +HOMEPAGE="http://www.ufoot.org/liquidwar/" +SRC_URI="http://savannah.nongnu.org/download/liquidwar/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ppc x86" +IUSE="nls" + +DEPEND=">media-libs/allegro-4.0" + +src_unpack() { + unpack ${A} + cd "${S}" + sed -i \ + -e 's:/games::' \ + -e '/^MANDIR/ s:=.*:= $(mandir)/man6:' \ + -e '/^PIXDIR/ s:=.*:= /usr/share/pixmaps:' \ + -e '/^DESKTOPDIR/ s:=.*:= /usr/share/applnk/Games/:' \ + -e '/^INFODIR/ s/=.*/= $(infodir)/' \ + -e '/^GAMEDIR/ s/exec_prefix/bindir/' \ + -e 's:$(DOCDIR)/txt:$(DOCDIR):g' \ + -e 's:$(GMAKE):$(MAKE):' \ + -e '/^DOCDIR/ s:=.*:= /usr/share/doc/$(PF):' Makefile.in \ + || die 'sed Makefile.in failed' + sed -i \ + -e '/^GAMEDIR/ s/$(exec_prefix)/@bindir@/' \ + -e 's:/games::' src/Makefile.in \ + || die "sed src/Makefile.in failed" +} + +src_compile() { + # Fixes build problem with gcc3 and -march=pentium4 + replace-cpu-flags pentium4 pentium3 + egamesconf \ + --disable-doc-ps \ + --disable-doc-pdf \ + --disable-target-opt \ + || die + emake || die "emake failed" +} + +src_install() { + make DESTDIR="${D}" install_nolink || die "make install failed" + rm -f "${D}"/usr/share/doc/${PF}/COPYING + use nls || rm -f "${D}"/usr/share/doc/${PF}/README.* + prepalldocs + prepgamesdirs +} |