blob: 42a92b21ae44c6694898c3f74c43a66c93a54cc6 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-nds/luma/luma-1.4.ebuild,v 1.3 2004/11/03 14:42:59 sejo Exp $
inherit eutils
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}-r1.tar.bz2"
S=${WORKDIR}/${P}-r1
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ppc"
IUSE="samba"
RDEPEND=">=x11-libs/qt-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=">=x11-libs/qt-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_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/winpopup-error.patch
}
src_install() {
dodir /usr
python install.py --prefix=${D}/usr
}
|