#Copyright 2002 Gentoo Technologies, Inc. #Distributed under the terms of the GNU General Public License, v2 or later #Author John Stalker A=${P}.tar.gz S=${WORKDIR}/${P} DESCRIPTION="Circus Linux! is a clone of the Atari 2600 game \"Circus Atari,\"" SRC_URI="ftp://ftp.sonic.net/pub/users/nbs/unix/x/circus-linux/${P}.tar.gz" HOMEPAGE="http://www.newbreedsoftware.com/circus-linux/" DEPEND="media-libs/libsdl media-libs/sdl-image media-libs/sdl-mixer" RDEPEND=$DEPEND src_unpack() { unpack ${P}.tar.gz cd ${S} } src_compile() { ./configure \ --prefix=/usr \ --infodir=/usr/share/info \ --mandir=/usr/share/man \ || die "./configure failed" emake || die } src_install () { make DESTDIR=${D} install || die }