blob: 22e57268284869bb8f758b31aaaee23cd3695a8d (
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-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="4"
DESCRIPTION="A GTK+-based LDAP client"
HOMEPAGE="http://www.gq-project.org/"
SRC_URI="mirror://sourceforge/gqclient/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="kerberos"
RDEPEND="x11-libs/gtk+:2
net-nds/openldap
kerberos? ( virtual/krb5 )
dev-libs/openssl
dev-libs/libxml2
dev-libs/glib:2
x11-libs/pango
dev-libs/cyrus-sasl
gnome-base/gnome-keyring
gnome-base/libglade:2.0
dev-libs/libgcrypt"
DEPEND="${RDEPEND}
dev-util/pkgconfig
dev-util/intltool"
src_configure() {
local myconf="--enable-browser-dnd --enable-cache --disable-update-mimedb"
econf ${myconf} $(use_with kerberos kerberos-prefix /usr)
}
|