Gentoo Archives: gentoo-commits

From: "Tomas Chvatal (scarabeus)" <scarabeus@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/grantlee: ChangeLog grantlee-0.1.8.ebuild
Date: Wed, 27 Apr 2011 16:45:49
Message-Id: 20110427164534.D8ACF20054@flycatcher.gentoo.org
1 scarabeus 11/04/27 16:45:34
2
3 Modified: ChangeLog
4 Added: grantlee-0.1.8.ebuild
5 Log:
6 Version bump to latest.
7
8 (Portage version: 2.2.0_alpha30/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.2 dev-libs/grantlee/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/grantlee/ChangeLog?rev=1.2&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/grantlee/ChangeLog?rev=1.2&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/grantlee/ChangeLog?r1=1.1&r2=1.2
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/grantlee/ChangeLog,v
20 retrieving revision 1.1
21 retrieving revision 1.2
22 diff -u -r1.1 -r1.2
23 --- ChangeLog 25 Apr 2011 11:44:59 -0000 1.1
24 +++ ChangeLog 27 Apr 2011 16:45:34 -0000 1.2
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-libs/grantlee
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/grantlee/ChangeLog,v 1.1 2011/04/25 11:44:59 tampakrap Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/grantlee/ChangeLog,v 1.2 2011/04/27 16:45:34 scarabeus Exp $
30 +
31 +*grantlee-0.1.8 (27 Apr 2011)
32 +
33 + 27 Apr 2011; Tomáš Chvátal <scarabeus@g.o> +grantlee-0.1.8.ebuild:
34 + Version bump to latest.
35
36 *grantlee-0.1.7 (25 Apr 2011)
37
38
39
40
41 1.1 dev-libs/grantlee/grantlee-0.1.8.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/grantlee/grantlee-0.1.8.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/grantlee/grantlee-0.1.8.ebuild?rev=1.1&content-type=text/plain
45
46 Index: grantlee-0.1.8.ebuild
47 ===================================================================
48 # Copyright 1999-2011 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-libs/grantlee/grantlee-0.1.8.ebuild,v 1.1 2011/04/27 16:45:34 scarabeus Exp $
51
52 EAPI=4
53
54 inherit cmake-utils
55
56 DESCRIPTION="C++ string template engine based on the Django template system"
57 HOMEPAGE="http://www.gitorious.org/grantlee/pages/Home"
58 SRC_URI="http://www.loegria.net/grantlee/${P}.tar.gz"
59
60 LICENSE="LGPL-2.1"
61 KEYWORDS="~amd64 ~x86"
62 SLOT="0"
63 IUSE="debug doc test"
64
65 COMMON_DEPEND="
66 >=x11-libs/qt-core-4.5.0:4
67 >=x11-libs/qt-gui-4.5.0:4
68 >=x11-libs/qt-script-4.5.0:4
69 "
70 DEPEND="${COMMON_DEPEND}
71 doc? ( app-doc/doxygen[-nodot] )
72 "
73 RDEPEND="${COMMON_DEPEND}"
74
75 DOCS=(AUTHORS CHANGELOG GOALS README)
76
77 # Some tests fail
78 RESTRICT="test"
79
80 src_configure() {
81 mycmakeargs=(
82 $(cmake-utils_use_build test TESTS)
83 )
84
85 cmake-utils_src_configure
86 }
87
88 src_compile() {
89 cmake-utils_src_compile
90
91 use doc && cmake-utils_src_compile docs
92 }
93
94 src_install() {
95 use doc && HTML_DOCS=("${CMAKE_BUILD_DIR}/apidox/")
96
97 cmake-utils_src_install
98 }