# Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: /home/cvsroot/gentoo-x86/app-crypt/mit-krb5/mit-krb5-1.3.1.ebuild,v 1.4 2004/01/03 15:16:20 aliz Exp $ inherit eutils DESCRIPTION="MIT Kerberos V" HOMEPAGE="http://web.mit.edu/kerberos/www/" MY_P=${PN/mit-}-${PV} S=${WORKDIR}/${MY_P/_/-}/src SRC_URI="http://www.crypto-publish.org/dist/mit-kerberos5/${MY_P/_/-}.tar.gz" IUSE="krb4 static" SLOT="0" LICENSE="as-is" KEYWORDS="~x86 ~sparc ~ppc ~alpha ~hppa ia64 amd64" PROVIDE="virtual/krb5" DEPEND="virtual/glibc" src_compile() { local myconf use krb4 && myconf="${myconf} --with-krb4 --enable-krb4" \ || myconf="${myconf} --without-krb4 --disable-krb4" use static && myconf="${myconf} --disable-shared --enable-static" \ || myconf="${myconf} --enable-shared --disable-static" CFLAGS=`echo ${CFLAGS} | xargs` CXXFLAGS=`echo ${CXXFLAGS} | xargs` LDFLAGS=`echo ${LDFLAGS} | xargs` cd ${S} if [ "${ARCH}" = "amd64" ] then EPATCH_SUFFIX="patch" && epatch ${FILESDIR}/0100* fi CFLAGS="${CFLAGS}" \ CXXFLAGS="${CXXFLAGS}" \ LDFLAGS="${LDFLAGS}" \ econf \ --mandir=/usr/share/man \ --localstatedir=/etc \ --host=${CHOST} \ --prefix=/usr \ --disable-dns \ --with-netlib=/usr/lib/libresolv.so \ ${myconf} || die if [ "${ARCH}" = "hppa" ] then einfo "Fixating Makefiles ..." for i in `find ${S} -name Makefile`; \ do cp $i $i.old; sed -e 's/LDCOMBINE=ld -shared -h lib/LDCOMBINE=gcc -shared -h lib/' $i.old > $i; done fi make || die } src_install () { make DESTDIR=${D} install || die cd .. dodoc README dohtml doc/*.html # Begin client rename and install for i in {telnetd,ftpd} do mv ${D}/usr/share/man/man8/${i}.8 ${D}/usr/share/man/man8/k${i}.8 mv ${D}/usr/sbin/${i} ${D}/usr/sbin/k${i} done for i in {rcp,rsh,telnet,ftp,rlogin} do mv ${D}/usr/share/man/man1/${i}.1 ${D}/usr/share/man/man1/k${i}.1 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 exeinto /etc/init.d newexe ${FILESDIR}/mit-krb5kadmind.initd mit-krb5kadmind newexe ${FILESDIR}/mit-krb5kdc.initd mit-krb5kdc } pkg_postinst() { einfo "See /usr/share/doc/${PF}/html/admin.html for documentation." echo "" einfo "The client apps are installed with the k prefix" einfo "(ie. kftp, kftpd, ktelnet, ktelnetd, etc...)" echo "" }