# Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: $ IUSE="" DESCRIPTION="The Autoconf Macro Archive" HOMEPAGE="http://ac-archive.sourceforge.net/" SRC_URI="mirror://sourceforge/ac-archive/${P}.tar.bz2" LICENSE="BSD | GPL" SLOT="0" #Should be good for all arches but only tested on x86 KEYWORDS="~x86" DEPEND=">=sys-devel/autoconf-2.49 sys-devel/automake dev-lang/perl" RDEPEND=">=sys-devel/autoconf-2.49" src_compile() { econf || die make DESTDIR=${S} pkgdocdir=/html \ install-index || die "make failed" } src_install () { insinto /usr/share/aclocal for i in `ls html/*/*.m4`; do doins ${i} done dodoc README TODO ChangeLog dodir /usr/share/doc/${PF}/html cp -r html/* ${D}/usr/share/doc/${PF}/html prepall }