--- /dev/null
+# ChangeLog for net-nds/gq
+# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
+# $Header: /home/cvsroot/gentoo-x86/net-nds/gq/ChangeLog,v 1.3 2003/04/02 12:28:28 weeve Exp $
+
+*gq-0.6.0 (07 Dec 2002)
+
+ 02 Apr 2003; Jason Wever <weeve@gentoo.org> gq-0.6.0.ebuild:
+ Added ~sparc to keywords.
+
+ 07 Dec 2002; L. Boshell <leonardop@gentoo.org> ChangeLog,
+ gq-0.6.0.ebuild : Initial import.
--- /dev/null
+# Copyright 1999-2003 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /home/cvsroot/gentoo-x86/net-nds/gq/gq-0.6.0.ebuild,v 1.4 2003/06/06 23:58:22 rphillips Exp $
+# $ID: $
+# $URL$
+
+S=${WORKDIR}/${P}
+DESCRIPTION="GTK-based LDAP client"
+SRC_URI="mirror://sourceforge/gqclient/${P}.tar.gz"
+HOMEPAGE="http://www.biot.com/gq/"
+IUSE="kerberos jpeg nls ssl"
+
+SLOT="0"
+LICENSE="GPL-2"
+KEYWORDS="x86 ~sparc"
+
+DEPEND="=x11-libs/gtk+-1.2*
+ >=net-nds/openldap-2
+ kerberos? ( app-crypt/mit-krb5 )
+ jpeg? ( media-libs/gdk-pixbuf )
+ ssl? ( dev-libs/openssl )"
+
+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() {
+ einstall || die "Installation failed"
+
+ dodoc ABOUT-NLS AUTHORS ChangeLog COPYING NEWS README* TODO
+}