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: rawtherapee-4.0.8.ebuild ChangeLog
Date: Tue, 01 May 2012 14:11:47
Message-Id: 20120501141136.0BE632004B@flycatcher.gentoo.org
1 radhermit 12/05/01 14:11:36
2
3 Modified: ChangeLog
4 Added: rawtherapee-4.0.8.ebuild
5 Log:
6 Version bump (bug #401683).
7
8 (Portage version: 2.2.0_alpha101/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.5 media-gfx/rawtherapee/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/rawtherapee/ChangeLog?rev=1.5&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/rawtherapee/ChangeLog?rev=1.5&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/rawtherapee/ChangeLog?r1=1.4&r2=1.5
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-gfx/rawtherapee/ChangeLog,v
20 retrieving revision 1.4
21 retrieving revision 1.5
22 diff -u -r1.4 -r1.5
23 --- ChangeLog 7 Dec 2011 03:49:27 -0000 1.4
24 +++ ChangeLog 1 May 2012 14:11:35 -0000 1.5
25 @@ -1,6 +1,12 @@
26 # ChangeLog for media-gfx/rawtherapee
27 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/rawtherapee/ChangeLog,v 1.4 2011/12/07 03:49:27 radhermit Exp $
29 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/rawtherapee/ChangeLog,v 1.5 2012/05/01 14:11:35 radhermit Exp $
31 +
32 +*rawtherapee-4.0.8 (01 May 2012)
33 +
34 + 01 May 2012; Tim Harder <radhermit@g.o> +rawtherapee-4.0.8.ebuild,
35 + +files/rawtherapee-4.0.8-nohg.patch:
36 + Version bump (bug #401683).
37
38 *rawtherapee-4.0.6 (07 Dec 2011)
39
40
41
42
43 1.1 media-gfx/rawtherapee/rawtherapee-4.0.8.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/rawtherapee/rawtherapee-4.0.8.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/rawtherapee/rawtherapee-4.0.8.ebuild?rev=1.1&content-type=text/plain
47
48 Index: rawtherapee-4.0.8.ebuild
49 ===================================================================
50 # Copyright 1999-2012 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/media-gfx/rawtherapee/rawtherapee-4.0.8.ebuild,v 1.1 2012/05/01 14:11:35 radhermit Exp $
53
54 EAPI="4"
55
56 inherit cmake-utils toolchain-funcs
57
58 DESCRIPTION="A powerful cross-platform raw image processing program"
59 HOMEPAGE="http://www.rawtherapee.com/"
60 SRC_URI="http://rawtherapee.googlecode.com/files/${P}.tar.xz"
61
62 LICENSE="GPL-3"
63 SLOT="0"
64 KEYWORDS="~amd64 ~x86"
65 IUSE="bzip2 doc openmp"
66
67 RDEPEND="bzip2? ( app-arch/bzip2 )
68 >=dev-cpp/gtkmm-2.12:2.4
69 >=dev-cpp/glibmm-2.16:2
70 dev-libs/libsigc++:2
71 media-libs/tiff
72 media-libs/libpng
73 media-libs/libiptcdata
74 media-libs/lcms:2
75 sys-libs/zlib
76 virtual/jpeg"
77 DEPEND="${RDEPEND}
78 app-arch/xz-utils
79 dev-util/pkgconfig"
80
81 PATCHES=( "${FILESDIR}"/${P}-nohg.patch )
82
83 pkg_setup() {
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
98 cmake-utils_src_configure
99 }
100
101 src_install() {
102 cmake-utils_src_install
103 use doc && dodoc doc/built/pdf/en/RawTherapeeManual_${PV}.pdf
104 }