# 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 DEPEND="" DESCRIPTION="gnubg - GNU BackGammon" HOMEPAGE="http://www.gnu.org/software/gnubg/gnubg.html" LICENSE="GPL-2" #Currently used .weights-file WPV="0.11" SRC_URI="ftp://alpha.gnu.org/gnu/${PN}/${P}.tar.gz ftp://alpha.gnu.org/gnu/${PN}/${PN}.weights-${WPV}.gz ftp://alpha.gnu.org/gnu/${PN}/${PN}.bd.gz" S=${WORKDIR}/${P} src_unpack() { unpack ${A} cd ${S} mv ../${PN}.weights-${WPV} ${S}/${PN}.weights mv ../${PN}.bd ${S} } src_compile() { econf || die "conf failed" emake || die "make failed" } src_install() { make DESTDIR=${D} install || die "install failed" cd ${S} insinto /usr/share/${PN} doins ${PN}.weights dodoc AUTHORS COPYING INSTALL README NEWS }