blob: c7dc14d0351a6cabdea983a9f11a43a7f780b5b3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit kde4-base
DESCRIPTION="Qt/C++ wrapper around LibFace to perform face recognition and detection"
HOMEPAGE="https://projects.kde.org/projects/kde/kdegraphics/libs/libkface"
LICENSE="GPL-2"
SLOT="4/3"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND=">=media-libs/opencv-3.0.0[contrib]"
RDEPEND="${DEPEND}"
PATCHES=( "${FILESDIR}/${PN}-15.08.2-opencv3.patch" )
src_configure() {
local mycmakeargs=(
-DENABLE_OPENCV3=ON
)
kde4-base_src_configure
}
|