# Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit eutils IUSE="" S=${WORKDIR}/${P} DESCRIPTION="The Autotoolset package (former autotools package)" SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" HOMEPAGE="http://autotoolset.sourceforge.net/" SLOT="0" LICENSE="GPL-2" KEYWORDS="~x86" DEPEND="virtual/glibc sys-devel/autoconf sys-devel/automake sys-devel/libtool app-arch/sharutils app-arch/gzip dev-lang/perl" src_unpack() { unpack ${A} } src_compile() { econf ${myopts} || die "Configure failed" emake check || die "Check failed" emake || die "Compile failed" } src_install () { einstall || die "Installation failed" dodoc AUTHORS ChangeLog COPYING NEWS README THANKS TODO }