# Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # /space/gentoo/cvsroot/gentoo-x86/skel.ebuild,v 1.8 2002/05/30 01:54:49 sandymac Exp DESCRIPTION="8ball,9ball,snooker and carambol game" HOMEPAGE="http://foobillard.sunsite.dk" LICENSE="GPL-2" DEPEND="virtual/x11 virtual/opengl virtual/glu virtual/glut >=media-libs/freetype-2.0.9 >=media-libs/libpng-1.2.1 sdl? ( media-libs/libsdl )" SRC_URI="http://foobillard.sunsite.dk/dnl/${P}.tar.gz" S=${WORKDIR}/${P} src_compile() { local myconf use sdl && myconf="--enable-SDL" ./configure \ --host=${CHOST} \ --prefix=/usr \ --infodir=/usr/share/info \ --mandir=/usr/share/man \ ${myconf} || die "./configure failed" emake || die } src_install () { make DESTDIR=${D} install || die dodoc README README.FONTS AUTHORS NEWS ChangeLog }