diff options
author | Ryan Phillips <rphillips@gentoo.org> | 2002-12-27 19:10:20 +0000 |
---|---|---|
committer | Ryan Phillips <rphillips@gentoo.org> | 2002-12-27 19:10:20 +0000 |
commit | 795800645a7069f47b7740cebae300aaeae0618a (patch) | |
tree | 142fa2a8886d40df976308635a3ec1fa8808fbd9 /app-crypt/mit-krb5/mit-krb5-1.2.6-r2.ebuild | |
parent | Unmask now glibc-2.3.1 is default (diff) | |
download | gentoo-2-795800645a7069f47b7740cebae300aaeae0618a.tar.gz gentoo-2-795800645a7069f47b7740cebae300aaeae0618a.tar.bz2 gentoo-2-795800645a7069f47b7740cebae300aaeae0618a.zip |
new package. x86 mask. Fixes #3480
Diffstat (limited to 'app-crypt/mit-krb5/mit-krb5-1.2.6-r2.ebuild')
-rw-r--r-- | app-crypt/mit-krb5/mit-krb5-1.2.6-r2.ebuild | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/app-crypt/mit-krb5/mit-krb5-1.2.6-r2.ebuild b/app-crypt/mit-krb5/mit-krb5-1.2.6-r2.ebuild new file mode 100644 index 000000000000..01dda59a35ea --- /dev/null +++ b/app-crypt/mit-krb5/mit-krb5-1.2.6-r2.ebuild @@ -0,0 +1,74 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-crypt/mit-krb5/mit-krb5-1.2.6-r2.ebuild,v 1.1 2002/12/27 19:10:18 rphillips Exp $ + +S=${WORKDIR}/krb5-${PV}/src +SRC_URI="http://www.crypto-publish.org/dist/mit-kerberos5/krb5-${PV}.tar.gz" +DESCRIPTION="MIT Kerberos V" +HOMEPAGE="http://web.mit.edu/kerberos/www/" +IUSE="krb4" +SLOT="0" +LICENSE="as-is" +KEYWORDS="~x86" +PROVIDE="virtual/krb5" +DEPEND="virtual/glibc" + +src_unpack() { + unpack ${A} + cd ${S}/kadmin/v4server/ + epatch ${FILESDIR}/${P}-gentoo.diff + cd ${S} + epatch ${FILESDIR}/${PN}-1.2.2-gentoo.diff +} + +src_compile() { + + local myconf + + use krb4 && myconf="${myconf} --with-krb4 --enable-krb4" \ + || myconf="${myconf} --without-krb4 --disable-krb4" + + econf \ + --mandir=/usr/share/man \ + --localstatedir=/etc \ + --enable-shared \ + --host=${CHOST} \ + --prefix=/usr \ + --enable-dns \ + ${myconf} || die + + make || die +} + +src_install () { + make DESTDIR=${D} install || die + cd .. + dodoc README + + # Begin client rename and install + for i in {telnetd,ftpd} + do + mv ${D}/usr/share/man/man8/${i}.8.gz ${D}/usr/share/man/man8/k${i}.8.gz + mv ${D}/usr/sbin/${i} ${D}/usr/sbin/k${i} + done + for i in {rcp,rsh,telnet,v4rcp,ftp,rlogin} + do + mv ${D}/usr/share/man/man1/${i}.1.gz ${D}/usr/share/man/man1/k${i}.1.gz + mv ${D}/usr/bin/${i} ${D}/usr/bin/k${i} + done + + insinto /etc + newins ${FILESDIR}/krb5.conf krb5.conf + insinto /etc/krb5kdc + newins ${FILESDIR}/kdc.conf kdc.conf + insinto /etc/conf.d + newins ${FILESDIR}/krb5.confd krb5 + exeinto /etc/init.d + newexe ${FILESDIR}/krb5.initd krb5 +} + +pkg_postinst() { + einfo "Configuration files are now under /etc." + einfo "The client apps are now installed with the k prefix" + eindo "(ie. kftp, kftpd, ktelnet, ktelnetd, etc...)" +} |