diff options
author | Johannes Huber <johu@gentoo.org> | 2012-01-12 16:32:56 +0000 |
---|---|---|
committer | Johannes Huber <johu@gentoo.org> | 2012-01-12 16:32:56 +0000 |
commit | 615e57bf79d512669eac3368bc57d68022f3e4ab (patch) | |
tree | 0fe3618832773354e4bed5d13eeb19a44f1e66ed /dev-libs/grantlee | |
parent | add back original patch for #397953. (diff) | |
download | gentoo-2-615e57bf79d512669eac3368bc57d68022f3e4ab.tar.gz gentoo-2-615e57bf79d512669eac3368bc57d68022f3e4ab.tar.bz2 gentoo-2-615e57bf79d512669eac3368bc57d68022f3e4ab.zip |
Version bump.
(Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
Diffstat (limited to 'dev-libs/grantlee')
-rw-r--r-- | dev-libs/grantlee/ChangeLog | 7 | ||||
-rw-r--r-- | dev-libs/grantlee/grantlee-0.1.9.ebuild | 51 |
2 files changed, 57 insertions, 1 deletions
diff --git a/dev-libs/grantlee/ChangeLog b/dev-libs/grantlee/ChangeLog index 49b7d3012f6d..50ecf5dd8177 100644 --- a/dev-libs/grantlee/ChangeLog +++ b/dev-libs/grantlee/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-libs/grantlee # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/grantlee/ChangeLog,v 1.7 2012/01/10 20:40:04 ranger Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/grantlee/ChangeLog,v 1.8 2012/01/12 16:32:56 johu Exp $ + +*grantlee-0.1.9 (12 Jan 2012) + + 12 Jan 2012; Johannes Huber <johu@gentoo.org> +grantlee-0.1.9.ebuild: + Version bump. 10 Jan 2012; Brent Baude <ranger@gentoo.org> grantlee-0.1.8.ebuild: Marking grantlee-0.1.8 ppc for bug 396359 diff --git a/dev-libs/grantlee/grantlee-0.1.9.ebuild b/dev-libs/grantlee/grantlee-0.1.9.ebuild new file mode 100644 index 000000000000..be86a3a39ea6 --- /dev/null +++ b/dev-libs/grantlee/grantlee-0.1.9.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/grantlee/grantlee-0.1.9.ebuild,v 1.1 2012/01/12 16:32:56 johu Exp $ + +EAPI=4 + +inherit cmake-utils + +DESCRIPTION="C++ string template engine based on the Django template system" +HOMEPAGE="http://www.gitorious.org/grantlee/pages/Home" +SRC_URI="http://www.loegria.net/grantlee/${P}.tar.gz" + +LICENSE="LGPL-2.1" +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86" +SLOT="0" +IUSE="debug doc test" + +COMMON_DEPEND=" + >=x11-libs/qt-core-4.5.0:4 + >=x11-libs/qt-gui-4.5.0:4 + >=x11-libs/qt-script-4.5.0:4 +" +DEPEND="${COMMON_DEPEND} + doc? ( app-doc/doxygen[-nodot] ) +" +RDEPEND="${COMMON_DEPEND}" + +DOCS=(AUTHORS CHANGELOG GOALS README) + +# Some tests fail +RESTRICT="test" + +src_configure() { + mycmakeargs=( + $(cmake-utils_use_build test TESTS) + ) + + cmake-utils_src_configure +} + +src_compile() { + cmake-utils_src_compile + + use doc && cmake-utils_src_compile docs +} + +src_install() { + use doc && HTML_DOCS=("${CMAKE_BUILD_DIR}/apidox/") + + cmake-utils_src_install +} |