blob: 27ba900afe64692cff34935efbdf957051b5f02e (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/kphotoalbum/kphotoalbum-3.0.1.ebuild,v 1.2 2007/04/30 22:06:34 genone Exp $
inherit kde
DESCRIPTION="KDE Photo Album is a tool for indexing, searching, and viewing images."
HOMEPAGE="http://www.kphotoalbum.org/"
SRC_URI="http://www.kphotoalbum.org/download/${P}.tar.bz2"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE="arts exif"
# kde-base/unsermake
DEPEND="!media-gfx/kimdaba
exif? ( >=media-libs/libkexif-0.2.3
>=media-gfx/exiv2-0.9.1 )
>=media-libs/libkipi-0.1
|| ( kde-base/kdegraphics-kfile-plugins kde-base/kdegraphics )
arts? ( kde-base/arts )"
need-kde 3.2
pkg_setup()
{
setupok=1
if use exif ; then
if ! built_with_use =x11-libs/qt-3* sqlite ; then
elog "To enable KPhotoAlbum to search your images"
elog "using EXIF information you also need to have"
elog "Qt installed with SQLite support."
elog
elog "Make sure your Qt is installed with the sqlite USE flag."
setupok=0
fi
if [ $setupok != 0 ] ; then
slot_rebuild "media-libs/libkipi media-libs/libkexif"
setupok=$?
fi
else
slot_rebuild "media-libs/libkipi"
setupok=$?
fi
if [ $setupok == 0 ] ; then
die
fi
}
src_compile()
{
if ! use exif; then
elog "NOTICE: You have the exif USE flag disabled. ${CATEGORY}/${PN}"
elog "will be compiled without EXIF support unless you installed"
elog "media-gfx/exiv2 manually."
local myconf="--disable-exiv2"
fi
kde_src_compile
}
|