Gentoo Archives: gentoo-commits

From: "Chris Reffett (creffett)" <creffett@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-gfx/kphotoalbum: kphotoalbum-4.4.ebuild ChangeLog
Date: Fri, 01 Mar 2013 21:11:57
Message-Id: 20130301211141.D09B02171D@flycatcher.gentoo.org
1 creffett 13/03/01 21:11:41
2
3 Modified: ChangeLog
4 Added: kphotoalbum-4.4.ebuild
5 Log:
6 Version bump to 4.4, fixes bug 456276
7
8 (Portage version: 2.2.0_alpha163/cvs/Linux x86_64, signed Manifest commit with key 42618354)
9
10 Revision Changes Path
11 1.57 media-gfx/kphotoalbum/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/kphotoalbum/ChangeLog?rev=1.57&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/kphotoalbum/ChangeLog?rev=1.57&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/kphotoalbum/ChangeLog?r1=1.56&r2=1.57
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-gfx/kphotoalbum/ChangeLog,v
20 retrieving revision 1.56
21 retrieving revision 1.57
22 diff -u -r1.56 -r1.57
23 --- ChangeLog 9 Feb 2013 23:42:18 -0000 1.56
24 +++ ChangeLog 1 Mar 2013 21:11:41 -0000 1.57
25 @@ -1,6 +1,11 @@
26 # ChangeLog for media-gfx/kphotoalbum
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/kphotoalbum/ChangeLog,v 1.56 2013/02/09 23:42:18 dilfridge Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/kphotoalbum/ChangeLog,v 1.57 2013/03/01 21:11:41 creffett Exp $
30 +
31 +*kphotoalbum-4.4 (01 Mar 2013)
32 +
33 + 01 Mar 2013; Chris Reffett <creffett@g.o> +kphotoalbum-4.4.ebuild:
34 + Version bump to 4.4, fixes bug 456276
35
36 09 Feb 2013; Andreas K. Huettel <dilfridge@g.o>
37 kphotoalbum-4.2.ebuild:
38
39
40
41 1.1 media-gfx/kphotoalbum/kphotoalbum-4.4.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/kphotoalbum/kphotoalbum-4.4.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/kphotoalbum/kphotoalbum-4.4.ebuild?rev=1.1&content-type=text/plain
45
46 Index: kphotoalbum-4.4.ebuild
47 ===================================================================
48 # Copyright 1999-2013 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/media-gfx/kphotoalbum/kphotoalbum-4.4.ebuild,v 1.1 2013/03/01 21:11:41 creffett Exp $
51
52 EAPI=4
53
54 KDE_LINGUAS="ar be bg bs ca ca@valencia cs da de el en_GB eo es et eu fi fr ga gl
55 hi hne hr hu is it ja km lt mai nb nds nl nn pa pl pt pt_BR ro ru se sk sv tr ug uk
56 vi zh_CN zh_TW"
57 inherit kde4-base
58
59 DESCRIPTION="KDE Photo Album is a tool for indexing, searching, and viewing images."
60 HOMEPAGE="http://www.kphotoalbum.org/"
61 SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${P}.tar.bz2"
62
63 LICENSE="GPL-2 FDL-1.2"
64 KEYWORDS="~amd64 ~x86"
65 SLOT="4"
66 IUSE="debug +exif +geolocation +kipi +raw +semantic-desktop"
67
68 DEPEND="
69 $(add_kdebase_dep kdelibs 'semantic-desktop=')
70 >=x11-libs/qt-sql-4.4:4[sqlite]
71 virtual/jpeg
72 exif? ( >=media-gfx/exiv2-0.17 )
73 geolocation? ( $(add_kdebase_dep marble) )
74 kipi? ( $(add_kdebase_dep libkipi '' 4.9.58) )
75 raw? ( $(add_kdebase_dep libkdcraw '' 4.9.58) )
76 "
77 RDEPEND="${DEPEND}
78 semantic-desktop? ( $(add_kdebase_dep nepomuk) )
79 "
80
81 DOCS=( ChangeLog README TODO )
82
83 src_configure() {
84 mycmakeargs=(
85 $(cmake-utils_use_with exif Exiv2)
86 $(cmake-utils_use_with geolocation Marble)
87 $(cmake-utils_use_with kipi)
88 $(cmake-utils_use_with raw Kdcraw)
89 $(cmake-utils_use_with semantic-desktop Nepomuk)
90 $(cmake-utils_use_with semantic-desktop Soprano)
91 )
92
93 kde4-base_src_configure
94 }