blob: 7ebc7842713efd82a5af7bcc864f0b40a2c32a7a (
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/kipi-plugins/kipi-plugins-1.6.0.ebuild,v 1.1 2010/11/25 21:08:54 dilfridge Exp $
EAPI="2"
OPENGL_REQUIRED="optional"
KDE_LINGUAS="ar ast be ca ca@valencia cs da de el en_GB eo es et eu fi fr ga gl hi hne hr is it ja km
lt lv mai ms nb nds nl nn pa pl pt pt_BR ro ru se sv tr uk zh_CN zh_TW"
KMNAME="extragear/graphics"
KDE_MINIMAL="4.5"
inherit flag-o-matic kde4-base
DESCRIPTION="Plugins for the KDE Image Plugin Interface"
HOMEPAGE="http://www.kipi-plugins.org"
[[ ${PV} != *9999* ]] && SRC_URI="mirror://sourceforge/kipi/${P}.tar.bz2
handbook? ( mirror://gentoo/${PN}-doc-1.5.0.tar.bz2 )"
LICENSE="GPL-2
handbook? ( FDL-1.2 )"
KEYWORDS="~amd64 ~x86"
SLOT="4"
IUSE="cdr calendar crypt debug expoblending handbook +imagemagick ipod mjpeg redeyes scanner"
DEPEND="
>=dev-libs/expat-2.0.1
>=dev-libs/libxml2-2.7
>=dev-libs/libxslt-1.1
>=kde-base/libkdcraw-${KDE_MINIMAL}
>=kde-base/libkexiv2-${KDE_MINIMAL}
>=kde-base/libkipi-${KDE_MINIMAL}
virtual/jpeg
>=media-libs/libpng-1.2
>=media-libs/tiff-3.6
calendar? ( >=kde-base/kdepimlibs-${KDE_MINIMAL} )
crypt? ( app-crypt/qca:2 )
ipod? (
>=media-libs/libgpod-0.7
x11-libs/gtk+:2
)
redeyes? ( media-libs/opencv )
scanner? (
>=kde-base/libksane-${KDE_MINIMAL}
media-gfx/sane-backends
)
"
RDEPEND="${DEPEND}
cdr? ( app-cdr/k3b )
expoblending? ( media-gfx/hugin )
imagemagick? ( media-gfx/imagemagick )
mjpeg? ( media-video/mjpegtools )
"
PATCHES=( "${FILESDIR}/${PN}-1.3.0-expoblending.patch" )
src_prepare() {
if use handbook; then
mv "${WORKDIR}/${PN}"-1.5.0/* "${S}/" || die
echo "add_subdirectory( doc )" >> CMakeLists.txt
else
mkdir doc || die
echo >> doc/CMakeLists.txt || die
fi
kde4-base_src_prepare
}
src_configure() {
# Remove flags -floop-block -floop-interchange
# -floop-strip-mine due to bug #305443.
filter-flags -floop-block
filter-flags -floop-interchange
filter-flags -floop-strip-mine
mycmakeargs+=(
$(cmake-utils_use_with ipod GLIB2)
$(cmake-utils_use_with ipod GObject)
$(cmake-utils_use_with ipod Gdk)
$(cmake-utils_use_with ipod Gpod)
$(cmake-utils_use_with calendar KdepimLibs)
$(cmake-utils_use_with redeyes OpenCV)
$(cmake-utils_use_with opengl OpenGL)
$(cmake-utils_use_with crypt QCA2)
$(cmake-utils_use_with scanner Sane)
$(cmake-utils_use_enable expoblending)
)
kde4-base_src_configure
}
src_install() {
kde4-base_src_install
if use handbook; then
dodoc readme-handbook.txt || die
fi
}
|