Gentoo Archives: gentoo-commits

From: Johannes Huber <johu@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/kde:master commit in: dev-libs/grantlee/
Date: Wed, 01 Aug 2012 23:18:31
Message-Id: 1343848577.e16e10d46c39f041d9c16dcddbe48091d618fbae.johu@gentoo
1 commit: e16e10d46c39f041d9c16dcddbe48091d618fbae
2 Author: Johannes Huber <johu <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 1 19:16:17 2012 +0000
4 Commit: Johannes Huber <johu <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 1 19:16:17 2012 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=e16e10d4
7
8 [dev-libs/grantlee] Moved to tree.
9
10 (Portage version: 2.2.0_alpha120/git/Linux x86_64, unsigned Manifest commit)
11
12 ---
13 dev-libs/grantlee/grantlee-0.2.0.ebuild | 55 -------------------------------
14 1 files changed, 0 insertions(+), 55 deletions(-)
15
16 diff --git a/dev-libs/grantlee/grantlee-0.2.0.ebuild b/dev-libs/grantlee/grantlee-0.2.0.ebuild
17 deleted file mode 100644
18 index 8fc5cbb..0000000
19 --- a/dev-libs/grantlee/grantlee-0.2.0.ebuild
20 +++ /dev/null
21 @@ -1,55 +0,0 @@
22 -# Copyright 1999-2012 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -# $Header: $
25 -
26 -EAPI=4
27 -
28 -QT_MINIMAL="4.5.0"
29 -inherit cmake-utils
30 -
31 -DESCRIPTION="C++ string template engine based on the Django template system"
32 -HOMEPAGE="http://www.gitorious.org/grantlee/pages/Home"
33 -SRC_URI="http://www.loegria.net/grantlee/${P}.tar.gz"
34 -
35 -LICENSE="LGPL-2.1"
36 -KEYWORDS="~amd64 ~x86"
37 -SLOT="0"
38 -IUSE="debug doc test"
39 -
40 -COMMON_DEPEND="
41 - >=x11-libs/qt-core-${QT_MINIMAL}:4
42 - >=x11-libs/qt-gui-${QT_MINIMAL}:4
43 - >=x11-libs/qt-script-${QT_MINIMAL}:4
44 -"
45 -DEPEND="${COMMON_DEPEND}
46 - doc? ( || ( <app-doc/doxygen-1.7.6.1[-nodot] >=app-doc/doxygen-1.7.6.1[dot] ) )
47 - test? ( >=x11-libs/qt-test-${QT_MINIMAL}:4 )
48 -"
49 -RDEPEND="${COMMON_DEPEND}"
50 -
51 -DOCS=(AUTHORS CHANGELOG GOALS README)
52 -
53 -# Some tests fail
54 -RESTRICT="test"
55 -
56 -PATCHES=( "${FILESDIR}/${PN}-0.1.9-qt-test-optional.patch" )
57 -
58 -src_configure() {
59 - mycmakeargs=(
60 - $(cmake-utils_use_build test TESTS)
61 - )
62 -
63 - cmake-utils_src_configure
64 -}
65 -
66 -src_compile() {
67 - cmake-utils_src_compile
68 -
69 - use doc && cmake-utils_src_compile docs
70 -}
71 -
72 -src_install() {
73 - use doc && HTML_DOCS=("${CMAKE_BUILD_DIR}/apidox/")
74 -
75 - cmake-utils_src_install
76 -}