Gentoo Archives: gentoo-commits

From: "Jeroen Roovers (jer)" <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/cunit: ChangeLog cunit-2.1_p2.ebuild
Date: Tue, 21 May 2013 17:22:40
Message-Id: 20130521172234.A02AF2171D@flycatcher.gentoo.org
1 jer 13/05/21 17:22:34
2
3 Modified: ChangeLog
4 Added: cunit-2.1_p2.ebuild
5 Log:
6 Version bump. Add ncurses support (bug #336901 by Tom Hendrikx). Add IUSE=static-libs (bug #460794).
7
8 (Portage version: 2.2.0_alpha176/cvs/Linux x86_64, signed Manifest commit with key A792A613)
9
10 Revision Changes Path
11 1.34 dev-util/cunit/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cunit/ChangeLog?rev=1.34&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cunit/ChangeLog?rev=1.34&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cunit/ChangeLog?r1=1.33&r2=1.34
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-util/cunit/ChangeLog,v
20 retrieving revision 1.33
21 retrieving revision 1.34
22 diff -u -r1.33 -r1.34
23 --- ChangeLog 2 May 2013 03:52:26 -0000 1.33
24 +++ ChangeLog 21 May 2013 17:22:34 -0000 1.34
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-util/cunit
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-util/cunit/ChangeLog,v 1.33 2013/05/02 03:52:26 patrick Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-util/cunit/ChangeLog,v 1.34 2013/05/21 17:22:34 jer Exp $
30 +
31 +*cunit-2.1_p2 (21 May 2013)
32 +
33 + 21 May 2013; Jeroen Roovers <jer@g.o> +cunit-2.1_p2.ebuild:
34 + Version bump. Add ncurses support (bug #336901 by Tom Hendrikx). Add
35 + IUSE=static-libs (bug #460794).
36
37 02 May 2013; Patrick Lauer <patrick@g.o> cunit-2.1-r1.ebuild:
38 Automake 1.13 fix
39
40
41
42 1.1 dev-util/cunit/cunit-2.1_p2.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cunit/cunit-2.1_p2.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cunit/cunit-2.1_p2.ebuild?rev=1.1&content-type=text/plain
46
47 Index: cunit-2.1_p2.ebuild
48 ===================================================================
49 # Copyright 1999-2013 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-util/cunit/cunit-2.1_p2.ebuild,v 1.1 2013/05/21 17:22:34 jer Exp $
52
53 EAPI=5
54 inherit autotools eutils flag-o-matic
55
56 MY_PN='CUnit'
57 MY_PV="${PV/_p*}-2"
58 MY_P="${MY_PN}-${MY_PV}"
59
60 DESCRIPTION="CUnit - C Unit Test Framework"
61 SRC_URI="mirror://sourceforge/cunit/${MY_P}-src.tar.bz2"
62 HOMEPAGE="http://cunit.sourceforge.net"
63
64 SLOT="0"
65 LICENSE="LGPL-2"
66 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
67 IUSE="ncurses static-libs"
68
69 DEPEND="ncurses? ( sys-libs/ncurses )"
70 RDEPEND="${DEPEND}"
71
72 S=${WORKDIR}/${MY_P}
73
74 DOCS=( AUTHORS NEWS README ChangeLog )
75
76 src_prepare() {
77 sed -e "/^docdir/d" -i doc/Makefile.am || die
78 sed -e '/^dochdrdir/{s:$(prefix)/doc/@PACKAGE@:$(docdir):}' \
79 -i doc/headers/Makefile.am || die
80 sed -e "s/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/" -i configure.in || die
81 eautoreconf
82 append-cppflags -D_BSD_SOURCE
83 }
84
85 src_configure() {
86 econf \
87 $(use_enable ncurses curses) \
88 $(use_enable static-libs static) \
89 --disable-debug \
90 --docdir="${EPREFIX}"/usr/share/doc/${PF}
91 }