2017-03-07 00:49:37 +01:00
|
|
|
TERMUX_PKG_HOMEPAGE=https://web.mit.edu/kerberos
|
|
|
|
TERMUX_PKG_DESCRIPTION="The Kerberos network authentication system"
|
2018-05-13 02:18:50 +02:00
|
|
|
TERMUX_PKG_VERSION=1.16.1
|
2018-09-11 22:43:19 +02:00
|
|
|
TERMUX_PKG_REVISION=1
|
2018-05-13 02:18:50 +02:00
|
|
|
TERMUX_PKG_SHA256=214ffe394e3ad0c730564074ec44f1da119159d94281bbec541dc29168d21117
|
2018-07-02 12:02:19 +02:00
|
|
|
TERMUX_PKG_SRCURL=https://fossies.org/linux/misc/krb5-$TERMUX_PKG_VERSION.tar.gz
|
2017-10-14 22:40:17 +02:00
|
|
|
TERMUX_PKG_DEPENDS="libandroid-support, libandroid-glob, readline, openssl, libutil, libdb"
|
2017-03-07 00:49:37 +01:00
|
|
|
TERMUX_PKG_MAINTAINER="Vishal Biswas @vishalbiswas"
|
2017-04-03 17:35:03 +02:00
|
|
|
TERMUX_PKG_CONFFILES="etc/krb5.conf var/krb5kdc/kdc.conf"
|
2017-04-02 17:06:58 +02:00
|
|
|
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--with-readline
|
|
|
|
--without-system-verto
|
|
|
|
--with-netlib=-lc
|
|
|
|
--enable-dns-for-realm
|
|
|
|
--sbindir=$TERMUX_PREFIX/bin
|
|
|
|
--with-size-optimizations
|
|
|
|
--with-system-db
|
2017-04-03 17:35:03 +02:00
|
|
|
DEFCCNAME=$TERMUX_PREFIX/tmp/krb5cc_%{uid}
|
|
|
|
DEFKTNAME=$TERMUX_PREFIX/etc/krb5.keytab
|
|
|
|
DEFCKTNAME=$TERMUX_PREFIX/var/krb5/user/%{euid}/client.keytab
|
2017-04-02 17:06:58 +02:00
|
|
|
"
|
2017-02-08 00:13:27 +01:00
|
|
|
|
2017-09-20 00:48:04 +02:00
|
|
|
termux_step_post_extract_package() {
|
|
|
|
TERMUX_PKG_SRCDIR+="/src"
|
|
|
|
}
|
|
|
|
|
2017-02-08 00:13:27 +01:00
|
|
|
termux_step_pre_configure () {
|
2017-09-20 00:48:04 +02:00
|
|
|
# cannot test these when cross compiling
|
|
|
|
export krb5_cv_attr_constructor_destructor='yes,yes'
|
|
|
|
export ac_cv_func_regcomp='yes'
|
|
|
|
export ac_cv_printf_positional='yes'
|
2017-02-08 00:13:27 +01:00
|
|
|
|
2017-09-20 00:48:04 +02:00
|
|
|
# bionic doesn't have getpass
|
|
|
|
cp "$TERMUX_PKG_BUILDER_DIR/netbsd_getpass.c" "$TERMUX_PKG_SRCDIR/clients/kpasswd/"
|
2017-02-08 00:13:27 +01:00
|
|
|
|
2017-09-20 00:48:04 +02:00
|
|
|
CFLAGS="$CFLAGS -D_PASSWORD_LEN=PASS_MAX"
|
|
|
|
LDFLAGS="$LDFLAGS -landroid-glob -llog"
|
2017-02-08 00:13:27 +01:00
|
|
|
}
|
2017-04-02 17:06:58 +02:00
|
|
|
|
|
|
|
termux_step_post_make_install () {
|
2017-04-03 17:35:03 +02:00
|
|
|
# Enable logging to STDERR by default
|
|
|
|
echo -e "\tdefault = STDERR" >> $TERMUX_PKG_SRCDIR/config-files/krb5.conf
|
|
|
|
|
2017-04-02 17:06:58 +02:00
|
|
|
# Sample KDC config file
|
|
|
|
install -dm 700 $TERMUX_PREFIX/var/krb5kdc
|
|
|
|
install -pm 600 $TERMUX_PKG_SRCDIR/config-files/kdc.conf $TERMUX_PREFIX/var/krb5kdc/kdc.conf
|
|
|
|
|
|
|
|
# Default configuration file
|
|
|
|
install -pm 600 $TERMUX_PKG_SRCDIR/config-files/krb5.conf $TERMUX_PREFIX/etc/krb5.conf
|
|
|
|
|
|
|
|
install -dm 700 $TERMUX_PREFIX/share/aclocal
|
|
|
|
install -m 600 $TERMUX_PKG_SRCDIR/util/ac_check_krb5.m4 $TERMUX_PREFIX/share/aclocal
|
|
|
|
}
|