Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-gfx/rawtherapee: ChangeLog rawtherapee-4.0.12.ebuild
Date: Fri, 24 Jan 2014 08:34:07
Message-Id: 20140124083402.4C66E2004C@flycatcher.gentoo.org
1 radhermit 14/01/24 08:34:02
2
3 Modified: ChangeLog
4 Added: rawtherapee-4.0.12.ebuild
5 Log:
6 Version bump (bug #498244 by DrSlony).
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
9
10 Revision Changes Path
11 1.15 media-gfx/rawtherapee/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/rawtherapee/ChangeLog?rev=1.15&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/rawtherapee/ChangeLog?rev=1.15&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/rawtherapee/ChangeLog?r1=1.14&r2=1.15
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-gfx/rawtherapee/ChangeLog,v
20 retrieving revision 1.14
21 retrieving revision 1.15
22 diff -u -r1.14 -r1.15
23 --- ChangeLog 5 Jun 2013 09:12:19 -0000 1.14
24 +++ ChangeLog 24 Jan 2014 08:34:02 -0000 1.15
25 @@ -1,6 +1,11 @@
26 # ChangeLog for media-gfx/rawtherapee
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/rawtherapee/ChangeLog,v 1.14 2013/06/05 09:12:19 radhermit Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/rawtherapee/ChangeLog,v 1.15 2014/01/24 08:34:02 radhermit Exp $
31 +
32 +*rawtherapee-4.0.12 (24 Jan 2014)
33 +
34 + 24 Jan 2014; Tim Harder <radhermit@g.o> +rawtherapee-4.0.12.ebuild:
35 + Version bump (bug #498244 by DrSlony).
36
37 *rawtherapee-4.0.11 (05 Jun 2013)
38
39
40
41
42 1.1 media-gfx/rawtherapee/rawtherapee-4.0.12.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/rawtherapee/rawtherapee-4.0.12.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/rawtherapee/rawtherapee-4.0.12.ebuild?rev=1.1&content-type=text/plain
46
47 Index: rawtherapee-4.0.12.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-gfx/rawtherapee/rawtherapee-4.0.12.ebuild,v 1.1 2014/01/24 08:34:02 radhermit Exp $
52
53 EAPI=5
54
55 inherit cmake-utils toolchain-funcs
56
57 DESCRIPTION="A powerful cross-platform raw image processing program"
58 HOMEPAGE="http://www.rawtherapee.com/"
59 SRC_URI="http://rawtherapee.com/shared/source/${P}.tar.xz"
60
61 LICENSE="GPL-3"
62 SLOT="0"
63 KEYWORDS="~amd64 ~x86"
64 IUSE="bzip2 openmp"
65
66 RDEPEND="bzip2? ( app-arch/bzip2 )
67 >=dev-cpp/gtkmm-2.12:2.4
68 >=dev-cpp/glibmm-2.16:2
69 dev-libs/expat
70 dev-libs/libsigc++:2
71 media-libs/libcanberra[gtk]
72 media-libs/tiff
73 media-libs/libpng
74 media-libs/libiptcdata
75 media-libs/lcms:2
76 sci-libs/fftw:3.0
77 sys-libs/zlib
78 virtual/jpeg"
79 DEPEND="${RDEPEND}
80 app-arch/xz-utils
81 virtual/pkgconfig"
82
83 pkg_pretend() {
84 if use openmp ; then
85 tc-has-openmp || die "Please switch to an openmp compatible compiler"
86 fi
87 }
88
89 src_configure() {
90 local mycmakeargs=(
91 $(cmake-utils_use openmp OPTION_OMP)
92 $(cmake-utils_use_with bzip2 BZIP)
93 -DDOCDIR=/usr/share/doc/${PF}
94 -DCREDITSDIR=/usr/share/${PN}
95 -DLICENCEDIR=/usr/share/${PN}
96 )
97 cmake-utils_src_configure
98 }