Gentoo Archives: gentoo-commits

From: "Michael Palimaka (kensington)" <kensington@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/grantlee: grantlee-0.4.0.ebuild ChangeLog
Date: Wed, 05 Feb 2014 17:16:50
Message-Id: 20140205171643.CED292004C@flycatcher.gentoo.org
1 kensington 14/02/05 17:16:43
2
3 Modified: ChangeLog
4 Added: grantlee-0.4.0.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0x06B1F38DCA45A1EC!)
9
10 Revision Changes Path
11 1.27 dev-libs/grantlee/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/grantlee/ChangeLog?rev=1.27&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/grantlee/ChangeLog?rev=1.27&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/grantlee/ChangeLog?r1=1.26&r2=1.27
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/grantlee/ChangeLog,v
20 retrieving revision 1.26
21 retrieving revision 1.27
22 diff -u -r1.26 -r1.27
23 --- ChangeLog 2 Apr 2013 20:56:08 -0000 1.26
24 +++ ChangeLog 5 Feb 2014 17:16:43 -0000 1.27
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-libs/grantlee
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/grantlee/ChangeLog,v 1.26 2013/04/02 20:56:08 ago Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/grantlee/ChangeLog,v 1.27 2014/02/05 17:16:43 kensington Exp $
31 +
32 +*grantlee-0.4.0 (05 Feb 2014)
33 +
34 + 05 Feb 2014; Michael Palimaka <kensington@g.o> +grantlee-0.4.0.ebuild:
35 + Version bump.
36
37 02 Apr 2013; Agostino Sarubbo <ago@g.o> grantlee-0.3.0.ebuild:
38 Stable for ppc64, wrt bug #462890
39
40
41
42 1.1 dev-libs/grantlee/grantlee-0.4.0.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/grantlee/grantlee-0.4.0.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/grantlee/grantlee-0.4.0.ebuild?rev=1.1&content-type=text/plain
46
47 Index: grantlee-0.4.0.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-libs/grantlee/grantlee-0.4.0.ebuild,v 1.1 2014/02/05 17:16:43 kensington Exp $
52
53 EAPI=5
54
55 inherit cmake-utils
56
57 DESCRIPTION="C++ string template engine based on the Django template system"
58 HOMEPAGE="http://www.gitorious.org/grantlee/pages/Home"
59 SRC_URI="http://downloads.grantlee.org/${P}.tar.gz"
60
61 LICENSE="LGPL-2.1"
62 SLOT="0"
63 KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
64 IUSE="debug doc test"
65
66 RDEPEND="
67 dev-qt/qtcore:4
68 dev-qt/qtgui:4
69 dev-qt/qtscript:4
70 "
71 DEPEND="${RDEPEND}
72 doc? ( || ( <app-doc/doxygen-1.7.6.1[-nodot] >=app-doc/doxygen-1.7.6.1[dot] ) )
73 test? ( dev-qt/qttest:4 )
74 "
75
76 # Some tests fail
77 RESTRICT="test"
78
79 DOCS=( AUTHORS CHANGELOG GOALS README )
80 PATCHES=(
81 "${FILESDIR}/${PN}-0.3.0-nonfatal-warnings.patch"
82 )
83
84 src_configure() {
85 local mycmakeargs=(
86 $(cmake-utils_use_build test TESTS)
87 )
88
89 cmake-utils_src_configure
90 }
91
92 src_compile() {
93 cmake-utils_src_compile
94
95 use doc && cmake-utils_src_compile docs
96 }
97
98 src_install() {
99 use doc && HTML_DOCS=( "${BUILD_DIR}/apidox/" )
100
101 cmake-utils_src_install
102 }