blob: d02524423da2fba511b8f95c4c4646bebb0b422a (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-office/krita/krita-2.3.3.ebuild,v 1.1 2011/02/24 12:00:56 dilfridge Exp $
EAPI=3
KMNAME="koffice"
KMMODULE="${PN}"
OPENGL_REQUIRED="optional"
inherit kde4-meta
DESCRIPTION="KOffice image manipulation program."
KEYWORDS="~amd64 ~x86"
IUSE="gmm +kdcraw openexr +pdf +tiff"
DEPEND="
>=app-office/koffice-libs-${PV}:${SLOT}[openexr=]
>=dev-cpp/eigen-2.0.3:2
>=media-libs/qimageblitz-0.0.4
>=media-gfx/exiv2-0.16
sci-libs/fftw:3.0
sys-devel/gcc[openmp]
gmm? ( sci-mathematics/gmm )
kdcraw? ( $(add_kdebase_dep libkdcraw) )
opengl? ( media-libs/glew )
pdf? ( >=app-text/poppler-0.12.3-r3[qt4] )
"
RDEPEND="${DEPEND}"
KMEXTRACTONLY="
KoConfig.h.cmake
libs/
"
KMLOADLIBS="koffice-libs"
src_configure() {
mycmakeargs=(
-DWITH_Eigen2=ON
-DWITH_Exiv2=ON
-DWITH_FFTW3=ON
-DWITH_JPEG=ON
$(cmake-utils_use_with openexr OpenEXR)
$(cmake-utils_use_with gmm)
$(cmake-utils_use_with tiff)
$(cmake-utils_use_with kdcraw)
$(cmake-utils_use_with pdf Poppler)
$(cmake-utils_use_with opengl OpenGL)
$(cmake-utils_use_with opengl GLEW)
)
kde4-meta_src_configure
}
src_install() {
kde4-meta_src_install
# this is already installed by koffice-data
rm -f "${D}/usr/include/config-opengl.h"
rm -f "${D}/usr/include/KoConfig.h"
}
|