blob: fbc9fe63116aaa6fdaa81455f2ae5b01306c4b61 (
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
27
28
29
30
31
32
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/cunit/cunit-2.1.ebuild,v 1.6 2008/10/27 07:25:02 pva Exp $
inherit eutils autotools
MY_PN='CUnit'
MY_PV="${PV}-0"
MY_P="${MY_PN}-${MY_PV}"
DESCRIPTION="CUnit - C Unit Test Framework"
SRC_URI="mirror://sourceforge/cunit/${MY_P}-src.tar.gz"
HOMEPAGE="http://cunit.sourceforge.net"
DEPEND="virtual/libc"
SLOT="0"
LICENSE="LGPL-2"
KEYWORDS="~alpha ~amd64 ~ia64 ~mips ppc ~ppc64 sparc x86"
IUSE=""
S="${WORKDIR}/${MY_P}"
src_compile() {
eautoreconf
econf || die "configure failed"
emake || die "make failed"
}
src_install() {
einstall || die "make install failed"
dodoc AUTHORS INSTALL NEWS README ChangeLog
}
|