summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Delaney <idell5@iinet.com.au>2012-02-17 10:56:06 +0800
committerIan Delaney <idell5@iinet.com.au>2012-02-17 10:56:06 +0800
commit14d2ff38bb2ede029290b91ce1be0dbf4693c9e1 (patch)
treea08fdb178a0f403399179ff2cafb10c47f4e1da4
parent47126603f7e794e2edf3ded628d59bb91dd4065b (diff)
downloadkde-14d2ff38bb2ede029290b91ce1be0dbf4693c9e1.tar.gz
kde-14d2ff38bb2ede029290b91ce1be0dbf4693c9e1.tar.bz2
kde-14d2ff38bb2ede029290b91ce1be0dbf4693c9e1.zip
[dev-util/kdevplatform] adpated live & beta ebuilds
-rw-r--r--dev-util/kdevplatform/Manifest1
-rw-r--r--dev-util/kdevplatform/kdevplatform-1.2.81.ebuild76
-rw-r--r--dev-util/kdevplatform/kdevplatform-1.2.82.ebuild23
-rw-r--r--dev-util/kdevplatform/kdevplatform-9999.ebuild10
4 files changed, 100 insertions, 10 deletions
diff --git a/dev-util/kdevplatform/Manifest b/dev-util/kdevplatform/Manifest
index 45d66a46237..31f594508e7 100644
--- a/dev-util/kdevplatform/Manifest
+++ b/dev-util/kdevplatform/Manifest
@@ -1 +1,2 @@
+DIST kdevplatform-1.2.81.tar.bz2 1971569 SHA256 32e09c7ab871d4c851856442d3ad3ad16b0a2a7214866ac5e7a76533f28ffcf1 SHA512 62bd087c3dd952d86e13013df1ab958c13860e4f413f76d36e06e7ae93dd9bf0c8728e55f7c1042489cb1e5ea406b6818d245babd0cb358429c78b922b620720 WHIRLPOOL 4aecd361e5c2b3aed93098c2e4769b07752d23517dfe63458b517b4be326dde46b755b1c59260063cde7ce371476b2f21032666ec965d309561cb9af64346ae2
DIST kdevplatform-1.2.82.tar.bz2 1982144 SHA256 e54401082581baf96aa06e8007e9a3a5550ed3b1dc58c93b924e3030d6063db8 SHA512 b770e7f751a6b3a6a4350b157ba4b63a2c60e778cf17a87c2a0726df59851e753bd62a483e5d34270761b79ee9ea6e73e482b1fef881aa804a4007ccb29720c2 WHIRLPOOL 5d460484111d4fb99a44c7bd31d0fbbdc47e6e5fc8d5dc33af2199bdba8be3a822f6d0dc9f1e0bab1f0b6dcaca1df3540c83e2ecb704145e54cb82187c5da283
diff --git a/dev-util/kdevplatform/kdevplatform-1.2.81.ebuild b/dev-util/kdevplatform/kdevplatform-1.2.81.ebuild
new file mode 100644
index 00000000000..05fab93fde0
--- /dev/null
+++ b/dev-util/kdevplatform/kdevplatform-1.2.81.ebuild
@@ -0,0 +1,76 @@
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/dev-util/kdevplatform/kdevplatform-1.2.81.ebuild,v 1.1 2012/02/11 15:04:07
+
+EAPI=4
+
+KMNAME="kdevelop"
+KDE_SCM="git"
+EGIT_REPONAME="${PN}"
+KDE_MINIMAL="4.7"
+VIRTUALX_REQUIRED=test
+KDE_LINGUAS="ca ca@valencia da de en_GB es et fr it nb nds nl pt pt_BR ru sl sv th uk zh_CN zh_TW"
+
+if [[ $PV == *9999 ]]; then
+ KEYWORDS=""
+else
+ KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+fi
+
+inherit kde4-base
+
+DESCRIPTION="KDE development support libraries and apps"
+
+# Moved to playground for now
+# bazaar kompare mercurial
+LICENSE="GPL-2 LGPL-2"
+IUSE="cvs debug git reviewboard subversion"
+
+# Moved to playground for now
+# bazaar? ( dev-vcs/bzr )
+# kompare? ( $(add_kdebase_dep kompare) )
+# mercurial? ( dev-vcs/mercurial )
+# block - some plugins moved to kdevplatform from kdevelop
+DEPEND="
+ dev-libs/boost
+ reviewboard? ( dev-libs/qjson )
+ subversion? ( dev-vcs/subversion )
+"
+RDEPEND="${DEPEND}
+ !<dev-util/kdevelop-${KDEVELOP_VERSION}:4
+ $(add_kdebase_dep konsole)
+ cvs? ( dev-vcs/cvs )
+ git? ( dev-vcs/git )
+"
+#!dev-util/kdevelop-git
+# Quite few fails and upstream is aware
+RESTRICT="test"
+
+PATCHES=(
+ "${FILESDIR}/${P}"-svn17-[12].patch
+)
+
+src_prepare() {
+ kde4-base_src_prepare
+
+ # FindKDevPlatform.cmake is installed by kdelibs
+ sed -i \
+ -e '/cmakeFiles/s/^/#DONOTINSTALL/' \
+ cmake/modules/CMakeLists.txt || die
+}
+
+# Moved to playground for now
+# $(cmake-utils_use_build bazaar)
+# $(cmake-utils_use_with kompare)
+# $(cmake-utils_use_build mercurial)
+src_configure() {
+ mycmakeargs=(
+ $(cmake-utils_use_build cvs)
+ $(cmake-utils_use_build git)
+ $(cmake-utils_use_with reviewboard QJSON)
+ $(cmake-utils_use_build subversion)
+ $(cmake-utils_use_with subversion SubversionLibrary)
+ )
+
+ kde4-base_src_configure
+}
diff --git a/dev-util/kdevplatform/kdevplatform-1.2.82.ebuild b/dev-util/kdevplatform/kdevplatform-1.2.82.ebuild
index 17d4d809542..1efd9264be9 100644
--- a/dev-util/kdevplatform/kdevplatform-1.2.82.ebuild
+++ b/dev-util/kdevplatform/kdevplatform-1.2.82.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/kdevplatform/kdevplatform-1.2.82.ebuild,v 1.1 2012/02/11 15:04:07
EAPI=4
@@ -9,14 +9,18 @@ KDE_SCM="git"
EGIT_REPONAME="${PN}"
KDE_MINIMAL="4.7"
VIRTUALX_REQUIRED=test
-KDE_LINGUAS="bs ca ca@valencia da de el en_GB es et fi fr it nb nds nl pl pt
-pt_BR ru sl sv th uk zh_CN zh_TW"
+KDE_LINGUAS="ca ca@valencia da de en_GB es et fr it nb nds nl pt pt_BR ru sl sv th uk zh_CN zh_TW"
+
+if [[ $PV == *9999 ]]; then
+ KEYWORDS=""
+else
+ KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+fi
+
inherit kde4-base
DESCRIPTION="KDE development support libraries and apps"
-SRC_URI="mirror://kde/unstable/kdevelop/${KDEVELOP_VERSION}/src/${P}.tar.bz2"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
# Moved to playground for now
# bazaar kompare mercurial
LICENSE="GPL-2 LGPL-2"
@@ -34,15 +38,18 @@ DEPEND="
"
RDEPEND="${DEPEND}
!<dev-util/kdevelop-${KDEVELOP_VERSION}:4
- !dev-util/kdevelop-git
$(add_kdebase_dep konsole)
cvs? ( dev-vcs/cvs )
git? ( dev-vcs/git )
"
-
+#!dev-util/kdevelop-git
# Quite few fails and upstream is aware
RESTRICT="test"
+PATCHES=(
+ "${FILESDIR}/${P}"-svn17-[12].patch
+)
+
src_prepare() {
kde4-base_src_prepare
diff --git a/dev-util/kdevplatform/kdevplatform-9999.ebuild b/dev-util/kdevplatform/kdevplatform-9999.ebuild
index 0ba51a57a1c..80a3a7b4e8f 100644
--- a/dev-util/kdevplatform/kdevplatform-9999.ebuild
+++ b/dev-util/kdevplatform/kdevplatform-9999.ebuild
@@ -11,11 +11,17 @@ KDE_MINIMAL="4.7"
VIRTUALX_REQUIRED=test
KDE_LINGUAS="bs ca ca@valencia da de el en_GB es et fi fr it nb nds nl pl pt
pt_BR ru sl sv th uk zh_CN zh_TW"
+
+if [[ $PV == *9999 ]]; then
+ KEYWORDS=""
+else
+ KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+fi
+
inherit kde4-base
DESCRIPTION="KDE development support libraries and apps"
-KEYWORDS=""
# Moved to playground for now
# bazaar kompare mercurial
LICENSE="GPL-2 LGPL-2"
@@ -33,11 +39,11 @@ DEPEND="
"
RDEPEND="${DEPEND}
!<dev-util/kdevelop-${KDEVELOP_VERSION}:4
- !dev-util/kdevelop-git
$(add_kdebase_dep konsole)
cvs? ( dev-vcs/cvs )
git? ( dev-vcs/git )
"
+#!dev-util/kdevelop-git
# Quite few fails and upstream is aware
RESTRICT="test"