summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Palimaka <kensington@gentoo.org>2015-02-23 13:54:45 +0000
committerMichael Palimaka <kensington@gentoo.org>2015-02-23 13:54:45 +0000
commit0c6447f5331891f516cadcc1e2649884e0a919aa (patch)
treef0424b64e27b457731c28a1ff34c670a4dcd0c25
parentAdd 3.6 rc ebuild for testers (diff)
downloadgentoo-2-0c6447f5331891f516cadcc1e2649884e0a919aa.tar.gz
gentoo-2-0c6447f5331891f516cadcc1e2649884e0a919aa.tar.bz2
gentoo-2-0c6447f5331891f516cadcc1e2649884e0a919aa.zip
Remove old.
(Portage version: 2.2.17/cvs/Linux x86_64, signed Manifest commit with key 0x06B1F38DCA45A1EC!)
-rw-r--r--dev-libs/grantlee/ChangeLog5
-rw-r--r--dev-libs/grantlee/grantlee-0.3.0.ebuild58
2 files changed, 4 insertions, 59 deletions
diff --git a/dev-libs/grantlee/ChangeLog b/dev-libs/grantlee/ChangeLog
index 86f94b2b2e3a..5dfb7213c8fa 100644
--- a/dev-libs/grantlee/ChangeLog
+++ b/dev-libs/grantlee/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-libs/grantlee
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/grantlee/ChangeLog,v 1.33 2015/02/23 11:02:47 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/grantlee/ChangeLog,v 1.34 2015/02/23 13:54:45 kensington Exp $
+
+ 23 Feb 2015; Michael Palimaka <kensington@gentoo.org> -grantlee-0.3.0.ebuild:
+ Remove old.
23 Feb 2015; Agostino Sarubbo <ago@gentoo.org> grantlee-0.4.0.ebuild:
Stable for ppc64, wrt bug #535108
diff --git a/dev-libs/grantlee/grantlee-0.3.0.ebuild b/dev-libs/grantlee/grantlee-0.3.0.ebuild
deleted file mode 100644
index 54cea6b2534d..000000000000
--- a/dev-libs/grantlee/grantlee-0.3.0.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/grantlee/grantlee-0.3.0.ebuild,v 1.7 2013/04/02 20:56:08 ago Exp $
-
-EAPI=4
-
-QT_MINIMAL="4.5.0"
-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://downloads.grantlee.org/${P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-KEYWORDS="amd64 ~arm ppc ppc64 x86"
-SLOT="0"
-IUSE="debug doc test"
-
-COMMON_DEPEND="
- >=dev-qt/qtcore-${QT_MINIMAL}:4
- >=dev-qt/qtgui-${QT_MINIMAL}:4
- >=dev-qt/qtscript-${QT_MINIMAL}:4
-"
-DEPEND="${COMMON_DEPEND}
- doc? ( || ( <app-doc/doxygen-1.7.6.1[-nodot] >=app-doc/doxygen-1.7.6.1[dot] ) )
- test? ( >=dev-qt/qttest-${QT_MINIMAL}:4 )
-"
-RDEPEND="${COMMON_DEPEND}"
-
-DOCS=(AUTHORS CHANGELOG GOALS README)
-
-# Some tests fail
-RESTRICT="test"
-
-PATCHES=(
- "${FILESDIR}/${PN}-0.1.9-qt-test-optional.patch"
- "${FILESDIR}/${PN}-0.3.0-nonfatal-warnings.patch"
-)
-
-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
-}