# Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: $ DESCRIPTION="Portable building infrastructure for any kind of program" HOMEPAGE="http://buildtool.sourceforge.net" SRC_URI="mirror://sourceforge/buildtool/${P}.tar.gz" LICENSE="BSD" SLOT="0" KEYWORDS="x86" src_compile() { local myconf="" use doc || myconf="${myconf} -n doc" ./configure -p /usr/ \ -c /etc/buildtool \ -i /usr/share/info \ -m /usr/lib/buildtool-0 \ -M /usr/share/man \ ${myconf} || die } src_install() { emake || die make install DESTDIR=${D} || die doinfo doc/buildtool.info }