blob: 91b90e519a55eb8412c0dfe2b6f278b9d526ce05 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Copyright 1999-2004 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.1 2004/10/30 10:21:56 dholm Exp $
inherit eutils gnuconfig
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="~x86 ~sparc ~ppc"
IUSE=""
S=${WORKDIR}/CUnit-${PV}-1
src_compile() {
aclocal
econf || die "configure failed"
emake || die "make failed"
}
src_install() {
einstall || die "make install failed"
dodoc AUTHORS COPYING INSTALL NEWS README ChangeLog
}
|