blob: cce0abab5e30be0d83284df2b6487ff4c39979c2 (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/cppunit/cppunit-1.12.1.ebuild,v 1.2 2008/07/27 20:18:05 carlo Exp $
EAPI=1
#WANT_AUTOCONF=latest
#WANT_AUTOMAKE=1.9
inherit eutils autotools qt3
DESCRIPTION="C++ port of the famous JUnit framework for unit testing"
HOMEPAGE="http://cppunit.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE="doc examples qt3"
RDEPEND="qt3? ( x11-libs/qt:3 )"
DEPEND="${RDEPEND}
doc? ( app-doc/doxygen
media-gfx/graphviz )"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${PN}-1.10.2-asneeded.patch"
sed -i \
-e 's|-L\($${CPPUNIT_LIB_DIR}\)|\1|' \
-e 's|\(../../lib\)|-L\1 -L../../src/cppunit/.libs|' \
examples/qt/qt_example.pro || die "sed failed"
AT_M4DIR="${S}/config"
eautomake
elibtoolize
}
src_compile() {
# Anything else than -O0 breaks on alpha
use alpha && replace-flags "-O?" -O0
econf \
$(use_enable doc doxygen) \
$(use_enable doc dot) \
--htmldir=/usr/share/doc/${PF}/html \
|| die "econf failed"
emake || die "emake failed"
if use qt3 ; then
cd src/qttestrunner
eqmake3 qttestrunnerlib.pro || die "qmake failed"
emake || die "emake failed"
fi
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc AUTHORS ChangeLog BUGS NEWS README THANKS TODO doc/FAQ
if use qt3 ; then
dolib lib/*
fi
if use examples ; then
find examples -iname "*.o" -delete
insinto /usr/share/${PN}
doins -r examples
fi
}
|