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