blob: be5c2a80ffbfc0e5a4a7b6a1f7b587ee10fa5eec (
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=4
KDE_LINGUAS=""
#KDE_LINGUAS="be ca ca@valencia de el en_GB eo es et eu fi fr he hi hne hu is it km
# ko lt lv nds nn pa pl pt pt_BR ro se sl sv th tr vi zh_CN zh_TW"
KDE_HANDBOOK="optional"
CMAKE_MIN_VERSION=2.8
KDE_MINIMAL="4.6"
KDEGRAPHICS_MINIMAL="4.6.30"
# please leave the weird number here for the moment
inherit kde4-base
MY_P="${PN}-${PV/_/-}"
DESCRIPTION="A digital photo management application for KDE."
HOMEPAGE="http://www.digikam.org/"
[[ ${PV} != *9999* ]] && SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.bz2"
LICENSE="GPL-2
handbook? ( FDL-1.2 )"
KEYWORDS="~amd64 ~x86"
SLOT="4"
IUSE="addressbook debug doc gphoto2 semantic-desktop themedesigner +thumbnails video"
CDEPEND="
$(add_kdebase_dep kdelibs semantic-desktop)
$(add_kdebase_dep marble plasma)
$(add_kdebase_dep libkipi)
$(add_kdebase_dep libkexiv2)
>=kde-base/libkdcraw-${KDEGRAPHICS_MINIMAL}
>=media-libs/libkface-${PV}
>=media-libs/libkmap-${PV}
$(add_kdebase_dep solid)
media-libs/jasper
virtual/jpeg
media-libs/lcms:0
>=media-libs/lensfun-0.2.5
media-libs/liblqr
media-libs/libpng
media-libs/tiff
media-libs/libpgf
>=media-plugins/kipi-plugins-1.2.0-r1
|| ( >=sci-libs/clapack-3.2.1-r6 sci-libs/lapack-atlas )
virtual/mysql
x11-libs/qt-gui[qt3support]
|| ( x11-libs/qt-sql[mysql] x11-libs/qt-sql[sqlite] )
addressbook? ( $(add_kdebase_dep kdepimlibs) )
gphoto2? ( media-libs/libgphoto2 )
"
RDEPEND="${CDEPEND}
$(add_kdebase_dep kreadconfig)
video? (
|| (
$(add_kdebase_dep mplayerthumbs)
$(add_kdebase_dep ffmpegthumbs)
)
)
"
DEPEND="${CDEPEND}
sys-devel/gettext
doc? ( app-doc/doxygen )
"
S="${WORKDIR}/${MY_P}/core"
src_prepare() {
# just to make absolutely sure
rm -rf "${WORKDIR}/${MY_P}/extra" || die
mv "${WORKDIR}/${MY_P}/doc/${PN}" doc || die
echo "add_subdirectory( digikam )" > doc/CMakeLists.txt
echo "add_subdirectory( showfoto )" >> doc/CMakeLists.txt
kde4-base_src_prepare
if use handbook; then
echo "add_subdirectory( doc )" >> CMakeLists.txt
fi
}
src_configure() {
local backend
use semantic-desktop && backend="Nepomuk" || backend="None"
# LQR = only allows to choose between bundled/external
local mycmakeargs=(
-DFORCED_UNBUNDLE=ON
-DWITH_LQR=ON
-DWITH_LENSFUN=ON
-DGWENVIEW_SEMANTICINFO_BACKEND=${backend}
$(cmake-utils_use_with addressbook KdepimLibs)
-DWITH_MarbleWidget=ON
$(cmake-utils_use_enable gphoto2 GPHOTO2)
$(cmake-utils_use_with gphoto2)
$(cmake-utils_use_with semantic-desktop Soprano)
$(cmake-utils_use_enable themedesigner)
$(cmake-utils_use_enable thumbnails THUMBS_DB)
$(cmake-utils_use_enable debug DEBUG_MESSAGES)
)
kde4-base_src_configure
}
src_compile() {
local mytargets="all"
use doc && mytargets+=" doc"
kde4-base_src_compile ${mytargets}
}
src_install() {
kde4-base_src_install
if use doc; then
# install the api documentation
insinto /usr/share/doc/${PF}/html
doins -r ${CMAKE_BUILD_DIR}/api/html/*
fi
}
pkg_postinst() {
kde4-base_pkg_postinst
if use doc; then
elog "The digikam api documentation has been installed at /usr/share/doc/${PF}/html"
fi
}
|