diff options
-rw-r--r-- | dev-util/kdevplatform/ChangeLog | 7 | ||||
-rw-r--r-- | dev-util/kdevplatform/kdevplatform-1.5.2.ebuild | 51 |
2 files changed, 57 insertions, 1 deletions
diff --git a/dev-util/kdevplatform/ChangeLog b/dev-util/kdevplatform/ChangeLog index 5ffc12a71e7a..fa1d86a36021 100644 --- a/dev-util/kdevplatform/ChangeLog +++ b/dev-util/kdevplatform/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-util/kdevplatform # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/kdevplatform/ChangeLog,v 1.83 2013/08/21 07:52:56 kensington Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/kdevplatform/ChangeLog,v 1.84 2013/10/31 17:20:48 johu Exp $ + +*kdevplatform-1.5.2 (31 Oct 2013) + + 31 Oct 2013; Johannes Huber <johu@gentoo.org> +kdevplatform-1.5.2.ebuild: + Version bump. 21 Aug 2013; Michael Palimaka <kensington@gentoo.org> -kdevplatform-1.4.1.ebuild: diff --git a/dev-util/kdevplatform/kdevplatform-1.5.2.ebuild b/dev-util/kdevplatform/kdevplatform-1.5.2.ebuild new file mode 100644 index 000000000000..f53b9dd1003b --- /dev/null +++ b/dev-util/kdevplatform/kdevplatform-1.5.2.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/kdevplatform/kdevplatform-1.5.2.ebuild,v 1.1 2013/10/31 17:20:48 johu Exp $ + +EAPI=5 + +KMNAME="kdevelop" +KDE_MINIMAL="4.7" +KDE_LINGUAS="bs ca ca@valencia da de el en_GB es et fi fr gl it kk nb nds nl pl +pt pt_BR ru sk sl sv th uk zh_CN zh_TW" +VIRTUALDBUS_TEST="true" +VIRTUALX_REQUIRED="test" +EGIT_REPONAME="${PN}" +inherit kde4-base + +DESCRIPTION="KDE development support libraries and apps" +LICENSE="GPL-2 LGPL-2" +IUSE="cvs debug reviewboard subversion" +SRC_URI="mirror://kde/stable/kdevelop/${KDEVELOP_VERSION}/src/${P}.tar.xz" + +if [[ $PV == *9999 ]]; then + KEYWORDS="" +else + KEYWORDS="~amd64 ~ppc ~x86" +fi + +DEPEND=" + dev-libs/boost:= + dev-libs/grantlee + reviewboard? ( dev-libs/qjson ) + subversion? ( + dev-libs/apr + dev-libs/apr-util + dev-vcs/subversion + ) +" +RDEPEND="${DEPEND} + !<dev-util/kdevelop-${KDEVELOP_VERSION}:4 + $(add_kdebase_dep konsole) + cvs? ( dev-vcs/cvs ) +" + +src_configure() { + mycmakeargs=( + $(cmake-utils_use_build cvs) + $(cmake-utils_use_find_package reviewboard QJSON) + $(cmake-utils_use_build subversion) + ) + + kde4-base_src_configure +} |