summaryrefslogtreecommitdiff
path: root/dev-libs/grantlee/grantlee-0.1.0.ebuild
diff options
context:
space:
mode:
Diffstat (limited to 'dev-libs/grantlee/grantlee-0.1.0.ebuild')
-rw-r--r--dev-libs/grantlee/grantlee-0.1.0.ebuild62
1 files changed, 62 insertions, 0 deletions
diff --git a/dev-libs/grantlee/grantlee-0.1.0.ebuild b/dev-libs/grantlee/grantlee-0.1.0.ebuild
new file mode 100644
index 00000000000..5092d897667
--- /dev/null
+++ b/dev-libs/grantlee/grantlee-0.1.0.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2010 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI="2"
+
+inherit cmake-utils
+
+MY_P="${PN}-v${PV}"
+
+DESCRIPTION="C++ string template engine based on the Django template system"
+HOMEPAGE="http://www.gitorious.org/grantlee/pages/Home"
+SRC_URI="http://downloads.grantlee.org/${MY_P}.tar.gz"
+
+LICENSE="LGPL-2.1"
+KEYWORDS="~amd64 ~x86"
+SLOT="0"
+IUSE="debug doc"
+
+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"
+
+S="${WORKDIR}/${MY_P}"
+
+src_configure() {
+ mycmakeargs=(
+ -DBUILD_TESTS=OFF
+ )
+
+ 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}"/apidocs/html/
+
+ cmake-utils_src_install
+}
+
+src_test() {
+ mycmakeargs+=(
+ -DBUILD_TESTS=ON
+ )
+
+ cmake-utils_src_configure
+ cmake-utils_src_compile
+ cmake-utils_src_test
+}