# Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: $ DESCRIPTION="Liquid War is a unique multiplayer wargame" HOMEPAGE="http://www.ufoot.org/liquidwar" SRC_URI="http://freesoftware.fsf.org/download/liquidwar/${P}.tar.gz" LICENSE="GPL" SLOT="0" KEYWORDS="x86" DEPEND=">media-libs/allegro-4.0" # Run-time dependencies, same as DEPEND if RDEPEND isn't defined: #RDEPEND="" # Source directory; the dir where the sources can be found (automatically # unpacked) inside ${WORKDIR}. S will get a default setting of ${WORKDIR}/${P} # if you omit this line. S=${WORKDIR}/${P} src_compile() { ./configure \ --host=${CHOST} \ --prefix=/usr \ --infodir=/usr/share/info \ --mandir=/usr/share/man || die "./configure failed" emake || die } src_install () { make DESTDIR=${D} install || die }