# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-util/cunit/cunit-2.0.ebuild,v 1.5 2007/04/24 19:48:11 gustavoz Exp $ inherit eutils autotools DESCRIPTION="CUnit - C Unit Test Framework" SRC_URI="mirror://sourceforge/cunit/${P}-1.tar.gz" HOMEPAGE="http://cunit.sourceforge.net" DEPEND="virtual/libc" SLOT="0" LICENSE="LGPL-2" KEYWORDS="~amd64 ~ppc sparc ~x86" IUSE="" S=${WORKDIR}/CUnit-${PV}-1 src_compile() { eautoreconf econf || die "configure failed" emake || die "make failed" } src_install() { einstall || die "make install failed" dodoc AUTHORS COPYING INSTALL NEWS README ChangeLog }