diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-07-25 15:31:25 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-07-25 15:31:25 +0000 |
commit | 75a4f10e807076790e201c5f969644e5a2f5c256 (patch) | |
tree | ee9d1bb093e6be51af347a9db499163e87b4d968 /app-crypt/kth-krb | |
parent | added ppc to keywords (diff) | |
download | gentoo-2-75a4f10e807076790e201c5f969644e5a2f5c256.tar.gz gentoo-2-75a4f10e807076790e201c5f969644e5a2f5c256.tar.bz2 gentoo-2-75a4f10e807076790e201c5f969644e5a2f5c256.zip |
repoman'd
Diffstat (limited to 'app-crypt/kth-krb')
-rw-r--r-- | app-crypt/kth-krb/kth-krb-1.1-r1.ebuild | 35 |
1 files changed, 15 insertions, 20 deletions
diff --git a/app-crypt/kth-krb/kth-krb-1.1-r1.ebuild b/app-crypt/kth-krb/kth-krb-1.1-r1.ebuild index 57d61ee4dfcb..fd05b463cc3d 100644 --- a/app-crypt/kth-krb/kth-krb-1.1-r1.ebuild +++ b/app-crypt/kth-krb/kth-krb-1.1-r1.ebuild @@ -1,33 +1,31 @@ -# Copyright 1999-2000 Gentoo Technologies, Inc. +# Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/app-crypt/kth-krb/kth-krb-1.1-r1.ebuild,v 1.2 2002/07/11 06:30:11 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/kth-krb/kth-krb-1.1-r1.ebuild,v 1.3 2002/07/25 15:31:25 seemant Exp $ S=${WORKDIR}/krb4-${PV} DESCRIPTION="Kerberos 4 implementation from KTH" SRC_URI="ftp://ftp.pdc.kth.se/pub/krb/src/krb4-${PV}.tar.gz" HOMEPAGE="http://www.pdc.kth.se/kth-krb/" -DEPEND="virtual/glibc - ssl? ( >=dev-libs/openssl-0.9.6b ) +SLOT="0" +LICENSE="as-is" +KEYWORDS="x86" + +DEPEND="ssl? ( >=dev-libs/openssl-0.9.6b ) afs? ( >=net-fs/openafs-1.2.2-r7 )" src_compile() { - local myconf - - myconf="" + local myconf="" - if [ "`use ssl`" ] ; then - myconf="${myconf} --with-openssl=/usr" - fi + use ssl && myconf="${myconf} --with-openssl=/usr" - if [ -z "`use afs`" ] ; then - myconf="${myconf} --without-afs-support" - fi + use afs || myconf="${myconf} --without-afs-support" - ./configure --host=${CHOST} \ - --prefix=/usr/athena \ - --sysconfdir=/etc \ - ${myconf} || die + ./configure \ + --host=${CHOST} \ + --prefix=/usr/athena \ + --sysconfdir=/etc \ + ${myconf} || die emake || die } @@ -52,6 +50,3 @@ src_install () { dodoc COPYRIGHT ChangeLog README NEWS PROBLEMS TODO } - - - |