blob: f489c88e085775a9645a2b5d9d3162c1c61ff229 (
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-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-nds/luma/luma-2.2.1.ebuild,v 1.2 2005/10/18 17:32:54 sekretarz Exp $
inherit eutils 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="~ppc ~sparc ~x86 ~amd64"
IUSE="samba"
RDEPEND="$(qt_min_version 3.2)
>=dev-lang/python-2.3
>=dev-python/PyQt-3.10
>=dev-python/python-ldap-2.0.1
samba? ( >=dev-python/py-smbpasswd-1.0 )"
DEPEND="$(qt_min_version 3.2)
>=dev-lang/python-2.3
>=dev-python/PyQt-3.10
>=dev-python/python-ldap-2.0.1
samba? ( >=dev-python/py-smbpasswd-1.0 )"
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 install.py --prefix=${D}/usr
make_desktop_entry "luma" Luma "/usr/share/luma/icons/luma-128.png" "System;Qt"
}
|