From: Frank Brehm Date: Sun, 6 May 2007 07:04:17 +0000 (+0000) Subject: Neu dazu X-Git-Url: https://git.uhu-banane.net/?a=commitdiff_plain;h=e95f271daec6922384cb1bad765872c006ecd069;p=portage.git Neu dazu git-svn-id: http://svn.brehm-online.com/svn/portage@10 18afd0d2-9f2f-0410-a0ac-b8d70fd81a6b --- diff --git a/net-nds/gq/ChangeLog b/net-nds/gq/ChangeLog new file mode 100644 index 0000000..1dc74c2 --- /dev/null +++ b/net-nds/gq/ChangeLog @@ -0,0 +1,11 @@ +# 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 gq-0.6.0.ebuild: + Added ~sparc to keywords. + + 07 Dec 2002; L. Boshell ChangeLog, + gq-0.6.0.ebuild : Initial import. diff --git a/net-nds/gq/files/digest-gq-0.6.0 b/net-nds/gq/files/digest-gq-0.6.0 new file mode 100644 index 0000000..df829b0 --- /dev/null +++ b/net-nds/gq/files/digest-gq-0.6.0 @@ -0,0 +1 @@ +MD5 8b77859a42d220e689f7c81f58afe94b gq-0.6.0.tar.gz 296812 diff --git a/net-nds/gq/gq-0.6.0.ebuild b/net-nds/gq/gq-0.6.0.ebuild new file mode 100644 index 0000000..c219db6 --- /dev/null +++ b/net-nds/gq/gq-0.6.0.ebuild @@ -0,0 +1,41 @@ +# 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 +}