blob: c258651b175facb99efdebcf427cc274dd28e3cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/rawtherapee/rawtherapee-4.0.6.ebuild,v 1.1 2011/12/07 03:49:27 radhermit Exp $
EAPI="4"
inherit cmake-utils toolchain-funcs
DESCRIPTION="Digital photo editing tool focused on RAW image file manipulation and conversion"
HOMEPAGE="http://www.rawtherapee.com/"
SRC_URI="http://dev.gentoo.org/~radhermit/distfiles/${P}.tar.xz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="bzip2 doc openmp"
RDEPEND="bzip2? ( app-arch/bzip2 )
>=dev-cpp/gtkmm-2.12:2.4
>=dev-cpp/glibmm-2.16:2
dev-libs/libsigc++:2
media-libs/tiff
media-libs/libpng
media-libs/libiptcdata
media-libs/lcms:2
sys-libs/zlib
virtual/jpeg"
DEPEND="${RDEPEND}
app-arch/xz-utils
dev-util/pkgconfig"
PATCHES=( "${FILESDIR}"/${PN}-4.0.4-nohg.patch )
pkg_setup() {
if use openmp ; then
tc-has-openmp || die "Please switch to an openmp compatible compiler"
fi
mycmakeargs=(
$(cmake-utils_use openmp OPTION_OMP)
$(cmake-utils_use_with bzip2 BZIP)
-DCREDITSDIR=/usr/share/doc/${PF}
)
}
src_install() {
cmake-utils_src_install
use doc && dodoc doc/built/pdf/en/RawTherapeeManual_4.0.pdf
}
|