# Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: /cvsroot/rc-oz/portage/robocup-base/spades/spades-1.04.ebuild,v 1.2 2005/05/01 06:39:27 ozkubo Exp $ DESCRIPTION="SPADES is a middleware system. It is designed to handle some of the tricky parts of running a distributed simulation for the aritficial intelligence community without being tied to any one particular simulation." SRC_URI="mirror://sourceforge/spades-sim/${P}.tar.gz" HOMEPAGE="http://spades-sim.sourceforge.net/" IUSE="static" SLOT="" RDEPEND="" DEPEND="${RDEPEND} >=virtual/jdk-1.4 >=dev-libs/expat-1.95.7 " LICENSE="LGPL-2.1" #PREFIX="/opt/robocup" PREFIX="/usr" KEYWORDS="~amd64 x86 ~ppc ~sparc ~alpha" PROVIDE="virtual/spades" src_compile() { ./configure \ --prefix=${PREFIX} \ `use_enable static` emake } src_install() { emake DESTDIR=${D} install || die "make install failed" }