[gentoo-commits] repo/gentoo:master commit in: net-libs/libkvkontakte/

2017-04-09 Thread Andreas Sturmlechner
commit: d10789744c3654ceddb6faa7941b107df6c11fdd
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Apr  9 18:48:36 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Apr  9 18:49:01 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1078974

net-libs/libkvkontakte: Drop unused DEPEND

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 net-libs/libkvkontakte/libkvkontakte-5.0.0_pre20170128.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/net-libs/libkvkontakte/libkvkontakte-5.0.0_pre20170128.ebuild 
b/net-libs/libkvkontakte/libkvkontakte-5.0.0_pre20170128.ebuild
index a2188b0ae8d..7171acb1489 100644
--- a/net-libs/libkvkontakte/libkvkontakte-5.0.0_pre20170128.ebuild
+++ b/net-libs/libkvkontakte/libkvkontakte-5.0.0_pre20170128.ebuild
@@ -25,7 +25,6 @@ DEPEND="
$(add_qt_dep qtnetwork)
$(add_qt_dep qtwebkit)
$(add_qt_dep qtwidgets)
-   >=dev-libs/qjson-0.7.0
 "
 RDEPEND="${DEPEND}"
 



[gentoo-commits] repo/gentoo:master commit in: net-libs/libkvkontakte/

2016-12-23 Thread Johannes Huber
commit: 1a8295ea55a7ffce1cc31b01ec46e17741fd5020
Author: Johannes Huber  gentoo  org>
AuthorDate: Fri Dec 23 09:56:26 2016 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Fri Dec 23 10:11:31 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a8295ea

net-libs/libkvkontakte: Drop CMAKE_MIN_VERSION

Covered by cmake-utils eclass now.

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 net-libs/libkvkontakte/libkvkontakte-4.4.0.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/net-libs/libkvkontakte/libkvkontakte-4.4.0.ebuild 
b/net-libs/libkvkontakte/libkvkontakte-4.4.0.ebuild
index 9fca4c2..a7b8804 100644
--- a/net-libs/libkvkontakte/libkvkontakte-4.4.0.ebuild
+++ b/net-libs/libkvkontakte/libkvkontakte-4.4.0.ebuild
@@ -6,7 +6,6 @@ EAPI=5
 
 KDE_LINGUAS=""
 KDE_MINIMAL="4.10"
-CMAKE_MIN_VERSION=2.8
 WEBKIT_REQUIRED="always"
 inherit kde4-base
 



[gentoo-commits] repo/gentoo:master commit in: net-libs/libkvkontakte/, net-libs/libkvkontakte/files/

2015-12-30 Thread Michael Palimaka
commit: 07abe915900c7a3d352261354f96cd5800e0c42e
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Tue Dec 29 20:54:59 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Wed Dec 30 12:18:06 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07abe915

net-libs/libkvkontakte: Fix configure, bug 558512

Solution taken from Slackware.

Package-Manager: portage-2.2.24

 net-libs/libkvkontakte/files/libkvkontakte-4.12.0-cmake.patch | 9 +
 net-libs/libkvkontakte/libkvkontakte-4.12.0.ebuild| 2 ++
 2 files changed, 11 insertions(+)

diff --git a/net-libs/libkvkontakte/files/libkvkontakte-4.12.0-cmake.patch 
b/net-libs/libkvkontakte/files/libkvkontakte-4.12.0-cmake.patch
new file mode 100644
index 000..c11108d
--- /dev/null
+++ b/net-libs/libkvkontakte/files/libkvkontakte-4.12.0-cmake.patch
@@ -0,0 +1,9 @@
+--- a/CMakeLists.txt   2015-06-28 16:54:32.0 +0200
 b/CMakeLists.txt   2015-12-29 21:47:15.485256424 +0100
+@@ -1,4 +1,6 @@
+ cmake_minimum_required(VERSION 2.8.12)
++cmake_policy(SET CMP0022 OLD)
++cmake_policy(SET CMP0059 OLD)
+ project(kvkontakte)
+ 
+ # the version number, needed for

diff --git a/net-libs/libkvkontakte/libkvkontakte-4.12.0.ebuild 
b/net-libs/libkvkontakte/libkvkontakte-4.12.0.ebuild
index b7c8a0a..a6e891b 100644
--- a/net-libs/libkvkontakte/libkvkontakte-4.12.0.ebuild
+++ b/net-libs/libkvkontakte/libkvkontakte-4.12.0.ebuild
@@ -22,3 +22,5 @@ RDEPEND="${DEPEND}"
 
 # accessing network
 RESTRICT="test"
+
+PATCHES=( "${FILESDIR}/${P}-cmake.patch" )