Gentoo Archives: gentoo-commits

From: "Ben de Groot (yngwin)" <yngwin@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-gfx/photoqt: photoqt-1.3.ebuild ChangeLog
Date: Wed, 29 Jul 2015 13:02:23
Message-Id: 20150729130213.D22A2110@oystercatcher.gentoo.org
1 yngwin 15/07/29 13:02:13
2
3 Modified: ChangeLog
4 Added: photoqt-1.3.ebuild
5 Log:
6 version bump
7
8 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 0x4FDF9CFD2FAC514E!)
9
10 Revision Changes Path
11 1.6 media-gfx/photoqt/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/photoqt/ChangeLog?rev=1.6&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/photoqt/ChangeLog?rev=1.6&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/photoqt/ChangeLog?r1=1.5&r2=1.6
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-gfx/photoqt/ChangeLog,v
20 retrieving revision 1.5
21 retrieving revision 1.6
22 diff -u -r1.5 -r1.6
23 --- ChangeLog 17 Mar 2015 14:59:34 -0000 1.5
24 +++ ChangeLog 29 Jul 2015 13:02:13 -0000 1.6
25 @@ -1,6 +1,11 @@
26 # ChangeLog for media-gfx/photoqt
27 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/photoqt/ChangeLog,v 1.5 2015/03/17 14:59:34 kensington Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/photoqt/ChangeLog,v 1.6 2015/07/29 13:02:13 yngwin Exp $
30 +
31 +*photoqt-1.3 (29 Jul 2015)
32 +
33 + 29 Jul 2015; Ben de Groot <yngwin@g.o> +photoqt-1.3.ebuild:
34 + version bump
35
36 17 Mar 2015; Michael Palimaka <kensington@g.o> photoqt-1.2.ebuild:
37 Add missing dependencies wrt bug #543610.
38
39
40
41 1.1 media-gfx/photoqt/photoqt-1.3.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/photoqt/photoqt-1.3.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/photoqt/photoqt-1.3.ebuild?rev=1.1&content-type=text/plain
45
46 Index: photoqt-1.3.ebuild
47 ===================================================================
48 # Copyright 1999-2015 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/media-gfx/photoqt/photoqt-1.3.ebuild,v 1.1 2015/07/29 13:02:13 yngwin Exp $
51
52 EAPI=5
53 inherit cmake-utils
54
55 DESCRIPTION="Simple but powerful Qt-based image viewer"
56 HOMEPAGE="http://photoqt.org/"
57 SRC_URI="http://photoqt.org/pkgs/${P}.tar.gz"
58
59 LICENSE="GPL-2"
60 SLOT="0"
61 KEYWORDS="~amd64 ~x86"
62 IUSE="graphicsmagick exiv2"
63
64 RDEPEND="dev-qt/qtcore:5
65 dev-qt/qtgui:5
66 dev-qt/qtimageformats:5
67 dev-qt/qtmultimedia:5
68 dev-qt/qtnetwork:5
69 dev-qt/qtquickcontrols:5
70 dev-qt/qtsql:5
71 dev-qt/qtsvg:5
72 dev-qt/qtwidgets:5
73 exiv2? ( media-gfx/exiv2:= )
74 graphicsmagick? ( media-gfx/graphicsmagick )"
75 DEPEND="${RDEPEND}
76 dev-qt/linguist-tools:5"
77
78 src_configure() {
79 local mycmakeargs=(
80 $(cmake-utils_use graphicsmagick GM)
81 $(cmake-utils_use exiv2 EXIV2)
82 )
83 cmake-utils_src_configure
84 }
85
86 src_compile() {
87 MAKEOPTS+=" -j1" cmake-utils_src_compile
88 }