Gentoo Archives: gentoo-commits

From: "Andreas Hüttel" <dilfridge@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/kde:master commit in: media-libs/libkface/
Date: Sat, 02 Jul 2011 17:32:54
Message-Id: 3a46432d95fb37b6779934d49da21d2a9856f00f.dilfridge@gentoo
1 commit: 3a46432d95fb37b6779934d49da21d2a9856f00f
2 Author: Andreas K. Huettel (dilfridge) <dilfridge <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jul 2 17:28:09 2011 +0000
4 Commit: Andreas Hüttel <dilfridge <AT> gentoo <DOT> org>
5 CommitDate: Sat Jul 2 17:28:09 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=3a46432d
7
8 Version bump
9
10 (Portage version: 2.1.10.3/git/Linux x86_64, unsigned Manifest commit)
11
12 ---
13 media-libs/libkface/libkface-2.0.0_rc.ebuild | 36 ++++++++++++++++++++++++++
14 1 files changed, 36 insertions(+), 0 deletions(-)
15
16 diff --git a/media-libs/libkface/libkface-2.0.0_rc.ebuild b/media-libs/libkface/libkface-2.0.0_rc.ebuild
17 new file mode 100644
18 index 0000000..96fceaa
19 --- /dev/null
20 +++ b/media-libs/libkface/libkface-2.0.0_rc.ebuild
21 @@ -0,0 +1,36 @@
22 +# Copyright 1999-2011 Gentoo Foundation
23 +# Distributed under the terms of the GNU General Public License v2
24 +# $Header: $
25 +
26 +EAPI=4
27 +
28 +DIGIKAMPN=digikam
29 +
30 +KDE_LINGUAS=""
31 +
32 +CMAKE_MIN_VERSION=2.8
33 +
34 +inherit kde4-base
35 +
36 +MY_P="${DIGIKAMPN}-${PV/_/-}"
37 +
38 +DESCRIPTION="Qt/C++ wrapper around LibFace to perform face recognition and detection"
39 +HOMEPAGE="http://www.digikam.org/"
40 +SRC_URI="mirror://sourceforge/${DIGIKAMPN}/${MY_P}.tar.bz2"
41 +
42 +LICENSE="GPL-2"
43 +KEYWORDS="~amd64 ~x86"
44 +IUSE=""
45 +SLOT=4
46 +
47 +DEPEND=">=media-libs/opencv-2.1"
48 +RDEPEND=${DEPEND}
49 +
50 +S=${WORKDIR}/${MY_P}/extra/${PN}
51 +
52 +src_configure() {
53 + mycmakeargs=(
54 + -DFORCED_UNBUNDLE=ON
55 + )
56 + kde4-base_src_configure
57 +}