# Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # author Jouko Maksimainen # /space/gentoo/cvsroot/gentoo-x86/x11-misc/xbill-2.1.ebuild,v 1.0 2002/06/21 01:54:49 sandymac Exp DESCRIPTION="A game about evil hacker called Bill!" HOMEPAGE="http://www.xbill.org" #I have no idea about license thing, xbill's readme doesn't tell anything about it :P LICENSE="" DEPEND=">=gtk+-1.0" SRC_URI="http://www.xbill.org/download/${P}.tar.gz" S=${WORKDIR}/${P} src_unpack() { unpack ${A} } src_compile() { ./configure \ --host=${CHOST} \ --prefix=/usr \ --infodir=/usr/share/info \ --mandir=/usr/share/man || die "./configure failed" make || die } src_install () { make DESTDIR=${D} install || die }