# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/app-portage/euses/euses-2.3.ebuild,v 1.1 2005/10/15 20:20:54 chainsaw Exp $ inherit toolchain-funcs DESCRIPTION="A small utility in C that quickly displays use flag descriptions" HOMEPAGE="http://www.xs4all.nl/~rooversj/gentoo" SRC_URI="http://www.xs4all.nl/~rooversj/gentoo/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86 ~hppa" IUSE="" DEPEND="sys-devel/autoconf sys-devel/autoconf-wrapper" S="${WORKDIR}" src_compile() { ebegin "Building configure script" autoreconf &> /dev/null eend $? econf || die emake || die } src_install() { dobin ${PN} || die doman ${PN}.1 || die dodoc Changelog ${PN}.php || die }