blob: 2a3496b6ecaf34884ce14172ae84805286d15db2 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-nds/luma/luma-2.3.ebuild,v 1.6 2008/05/29 17:46:17 hawking Exp $
NEED_PYTHON=2.3
inherit eutils python qt3
DESCRIPTION="Luma is a graphical utility for accessing and managing data stored on LDAP servers."
HOMEPAGE="http://luma.sourceforge.net/"
SRC_URI="mirror://sourceforge/luma/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ppc sparc x86"
IUSE="samba"
RDEPEND="$(qt_min_version 3.2)
>=dev-python/PyQt-3.10
>=dev-python/python-ldap-2.0.1
samba? ( >=dev-python/py-smbpasswd-1.0 )"
DEPEND="${RDEPEND}"
src_unpack() {
unpack ${A}
cd "${S}"
# We do the optimization seperately
sed -i \
-e '/^doCompile/d' \
install.py || "sed failed"
}
src_install() {
# if $QTDIR/etc/settings/qtrc file exists, the qt build tools try to create
[ -d "$QTDIR/etc/settings" ] && addwrite "$QTDIR/etc/settings"
addpredict "$QTDIR/etc/settings"
dodir /usr
python_version
${python} install.py --prefix="${D}/usr"
make_desktop_entry "luma" Luma "/usr/share/luma/icons/luma-128.png" "System;Qt"
}
# Maintainer-Info:
# Luma installs it's stuff to /usr/lib/luma, even on 64bit-systems.
pkg_postinst() {
python_mod_optimize /usr/lib/luma
}
pkg_postrm() {
python_mod_cleanup /usr/lib/luma
}
|