blob: 32ba44496a35ddc0a255f93ae97a479d453afe70 (
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
62
63
64
65
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-nds/gq/gq-1.0_beta1.ebuild,v 1.6 2004/11/26 08:07:53 dragonheart Exp $
S=${WORKDIR}/${PN}-${PV/_/}
DESCRIPTION="GTK-based LDAP client"
SRC_URI="mirror://sourceforge/gqclient/${PN}-${PV/_/}.tar.gz"
HOMEPAGE="http://www.biot.com/gq/"
IUSE="kerberos jpeg nls ssl"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86 ~sparc ~ppc ~amd64"
RDEPEND=">=x11-libs/gtk+-2
>=net-nds/openldap-2
kerberos? ( app-crypt/mit-krb5 )
jpeg? ( media-libs/gdk-pixbuf )
ssl? ( dev-libs/openssl )
dev-libs/libxml2
dev-libs/glib
sys-devel/gettext
=dev-libs/atk-1*
x11-libs/pango
dev-libs/cyrus-sasl
virtual/libc"
DEPEND="${RDEPEND}
dev-util/pkgconfig
sys-apps/gawk
sys-devel/bison
sys-devel/gcc"
src_unpack() {
unpack ${A} || die
cd ${S} || die
# Fix timestamp skews
touch aclocal.m4 configure `find . -name Makefile.in`
if use amd64 ; then
rm config.sub config.guess
automake --add-missing --copy
fi
}
src_compile() {
local myconf="--enable-browser-dnd --enable-cache"
use nls \
&& myconf="${myconf} --with-included-gettext" \
|| myconf="${myconf} --disable-nls"
use kerberos && myconf="${myconf} --with-kerberos-prefix=/usr"
econf $myconf || die "./configure failed"
emake || die "Compilation failed"
}
src_install() {
emake DESTDIR=${D} || die "Installation failed"
rm -f ${D}/usr/share/locale/locale.alias
dodoc ABOUT-NLS AUTHORS ChangeLog COPYING NEWS README* TODO
}
|