2010-03-13 05:14:39 +00:00
|
|
|
# Template file for 'mit-krb5'
|
|
|
|
pkgname=mit-krb5
|
2011-10-04 09:16:36 +00:00
|
|
|
version=1.9.1
|
2010-03-13 05:14:39 +00:00
|
|
|
wrksrc="krb5-${version}"
|
2011-10-04 09:16:36 +00:00
|
|
|
homepage="http://web.mit.edu/Kerberos"
|
|
|
|
distfiles="$homepage/dist/krb5/1.9/krb5-$version-signed.tar"
|
2011-10-24 12:14:47 +00:00
|
|
|
build_style=gnu-configure
|
2010-03-13 05:14:39 +00:00
|
|
|
configure_script="./src/configure"
|
|
|
|
configure_args="--disable-rpath --enable-kdc-replay-cache --with-system-et
|
2010-10-28 04:09:20 +00:00
|
|
|
--with-system-ss --with-system-db --enable-shared CFLAGS=-I/usr/include/et"
|
2011-11-12 05:01:02 +00:00
|
|
|
revision=1
|
2010-03-13 05:14:39 +00:00
|
|
|
short_desc="MIT Kerberos 5 implementation"
|
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
2011-10-04 09:16:36 +00:00
|
|
|
license="MIT"
|
|
|
|
checksum=525e258aa7401427a5a9edee0051f83b6151bf96a979ca526393932c90484c8e
|
2010-03-13 05:14:39 +00:00
|
|
|
long_desc="
|
|
|
|
Kerberos is a network authentication protocol. It is designed to provide
|
|
|
|
strong authentication for client/server applications by using secret-key
|
|
|
|
cryptography. A free implementation of this protocol is available from the
|
|
|
|
Massachusetts Institute of Technology. Kerberos is available in many
|
|
|
|
commercial products as well."
|
|
|
|
|
|
|
|
noextract=yes
|
|
|
|
subpackages="$pkgname-devel $pkgname-libs $pkgname-client"
|
2010-05-09 08:54:06 +00:00
|
|
|
conflicts="heimdal>=0"
|
2010-03-13 05:14:39 +00:00
|
|
|
|
|
|
|
Add_dependency run mit-krb5-client
|
|
|
|
|
2011-07-02 23:45:05 +00:00
|
|
|
Add_dependency build perl ">=0"
|
2010-03-13 05:14:39 +00:00
|
|
|
Add_dependency build flex
|
|
|
|
Add_dependency build db-devel
|
|
|
|
Add_dependency build e2fsprogs-devel
|
|
|
|
Add_dependency build openssl-devel
|
|
|
|
|
|
|
|
pre_configure()
|
|
|
|
{
|
|
|
|
# We have to do this dance because the real distfile is
|
|
|
|
# included in the .tar archive.
|
|
|
|
tar xf ${XBPS_SRCDISTDIR}/$(basename ${distfiles}) \
|
2010-12-25 01:14:41 +00:00
|
|
|
-C ${wrksrc}
|
2010-03-13 05:14:39 +00:00
|
|
|
tar xfz ${wrksrc}/krb5-${version}.tar.gz \
|
2010-12-25 01:14:41 +00:00
|
|
|
-C ${XBPS_BUILDDIR}
|
2010-03-13 05:14:39 +00:00
|
|
|
|
|
|
|
# Fix db plugin.
|
|
|
|
sed -i -e "s|<db.h>|<db_185.h>|" ${wrksrc}/src/plugins/kdb/db2/*.[ch]
|
|
|
|
}
|