Gentoo Archives: gentoo-commits

From: "Sven Vermeulen (swift)" <swift@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-plugins/gimp-lensfun: gimp-lensfun-0.2.3.ebuild ChangeLog
Date: Fri, 30 May 2014 13:15:06
Message-Id: 20140530131503.76EEC2004E@flycatcher.gentoo.org
1 swift 14/05/30 13:15:03
2
3 Modified: ChangeLog
4 Added: gimp-lensfun-0.2.3.ebuild
5 Log:
6 New version of GIMP Lensfun (0.2.3), thanks to Mario Kicherer (bug #468788)
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0x2EDD52403B68AF47)
9
10 Revision Changes Path
11 1.6 media-plugins/gimp-lensfun/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/gimp-lensfun/ChangeLog?rev=1.6&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/gimp-lensfun/ChangeLog?rev=1.6&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/gimp-lensfun/ChangeLog?r1=1.5&r2=1.6
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-plugins/gimp-lensfun/ChangeLog,v
20 retrieving revision 1.5
21 retrieving revision 1.6
22 diff -u -r1.5 -r1.6
23 --- ChangeLog 15 Aug 2013 03:35:02 -0000 1.5
24 +++ ChangeLog 30 May 2014 13:15:03 -0000 1.6
25 @@ -1,6 +1,11 @@
26 # ChangeLog for media-plugins/gimp-lensfun
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-plugins/gimp-lensfun/ChangeLog,v 1.5 2013/08/15 03:35:02 patrick Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/media-plugins/gimp-lensfun/ChangeLog,v 1.6 2014/05/30 13:15:03 swift Exp $
31 +
32 +*gimp-lensfun-0.2.3 (30 May 2014)
33 +
34 + 30 May 2014; Sven Vermeulen <swift@g.o> +gimp-lensfun-0.2.3.ebuild:
35 + New version of GIMP Lensfun (0.2.3), thanks to Mario Kicherer (bug #468788)
36
37 15 Aug 2013; Patrick Lauer <patrick@g.o> gimp-lensfun-0.2.2-r2.ebuild:
38 Whitespace
39
40
41
42 1.1 media-plugins/gimp-lensfun/gimp-lensfun-0.2.3.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/gimp-lensfun/gimp-lensfun-0.2.3.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/gimp-lensfun/gimp-lensfun-0.2.3.ebuild?rev=1.1&content-type=text/plain
46
47 Index: gimp-lensfun-0.2.3.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/media-plugins/gimp-lensfun/gimp-lensfun-0.2.3.ebuild,v 1.1 2014/05/30 13:15:03 swift Exp $
52
53 EAPI="5"
54
55 inherit eutils toolchain-funcs
56
57 MY_PN="GIMP-Lensfun"
58
59 DESCRIPTION="Lensfun plugin for GIMP"
60 HOMEPAGE="http://seebk.github.io/GIMP-Lensfun/"
61 SRC_URI="https://github.com/seebk/GIMP-Lensfun/archive/${PV}.tar.gz -> ${P}.tar.gz"
62
63 LICENSE="GPL-3"
64 SLOT="0"
65 KEYWORDS="~amd64 ~x86"
66 IUSE="openmp"
67
68 RDEPEND="media-gfx/gimp
69 media-gfx/exiv2
70 media-libs/lensfun"
71 DEPEND="${RDEPEND}
72 virtual/pkgconfig"
73
74 S=${WORKDIR}/${MY_PN}-${PV}
75
76 pkg_setup() {
77 if use openmp ; then
78 tc-has-openmp || die "Please switch to an openmp compatible compiler"
79 fi
80 }
81
82 src_prepare() {
83 if ! use openmp; then
84 sed -i "s/-fopenmp//g" Makefile
85 fi
86
87 tc-export CXX
88 }
89
90 src_install() {
91 exeinto $(gimptool-2.0 --gimpplugindir)/plug-ins
92 doexe ${PN}
93 }