blob: a32bff0ed53799471f0e3cad4af27d394746ed4a (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="2"
KMNAME="kdegraphics"
KMMODULE="libs/${PN}"
inherit kde4-meta
DESCRIPTION="SANE Library interface for KDE"
HOMEPAGE="http://www.kipi-plugins.org"
KEYWORDS=""
IUSE="debug"
LICENSE="LGPL-2"
DEPEND="
kde-base/qimageblitz
media-gfx/sane-backends
"
RDEPEND="${DEPEND}"
src_prepare() {
kde4-meta_src_prepare
# Remove compile-time dep on LibKNotificationItem
sed -i -e '/LibKNotificationItem-1/s/^/#DONOTNEED /' CMakeLists.txt
}
src_install() {
insinto "${KDEDIR}"/share/apps/cmake/modules
doins "${S}"/cmake/modules/FindKSane.cmake
kde4-meta_src_install
}
|