# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ 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="~hppa ~ppc-macos ~x86" IUSE="" DEPEND="virtual/libc sys-devel/autoconf" S="${WORKDIR}" src_compile() { autoconf || die econf || die emake || die } src_install() { dobin ${PN} || die doman ${PN}.1 || die dodoc ${PN}.c || die }