diff options
author | Eray Aslan <eras@gentoo.org> | 2019-06-13 13:36:33 +0300 |
---|---|---|
committer | Eray Aslan <eras@gentoo.org> | 2019-06-13 13:36:33 +0300 |
commit | f1ae53b50984a15c6b138ee34ce230585316bc83 (patch) | |
tree | d3a5d410620b6b2d937190ea6c1efed841bd4bfe | |
parent | dev-perl/Crypt-Curve25519: Fix fmul conflicting types build breakage. (diff) | |
download | gentoo-f1ae53b50984a15c6b138ee34ce230585316bc83.tar.gz gentoo-f1ae53b50984a15c6b138ee34ce230585316bc83.tar.bz2 gentoo-f1ae53b50984a15c6b138ee34ce230585316bc83.zip |
app-crypt/heimdal: fix build failure
make pkinit mandatory. bin_PROGRAMS and noinst_PROGRAMS in lib/krb5
require symbols from pkinit.c
Closes: https://bugs.gentoo.org/687060
Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Eray Aslan <eras@gentoo.org>
-rw-r--r-- | app-crypt/heimdal/heimdal-7.6.0.ebuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app-crypt/heimdal/heimdal-7.6.0.ebuild b/app-crypt/heimdal/heimdal-7.6.0.ebuild index c3ee68bd68e4..9e6de52ac1f2 100644 --- a/app-crypt/heimdal/heimdal-7.6.0.ebuild +++ b/app-crypt/heimdal/heimdal-7.6.0.ebuild @@ -16,7 +16,7 @@ SRC_URI="https://github.com/${PN}/${PN}/releases/download/${P}/${P}.tar.gz" LICENSE="BSD" SLOT="0" KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ~ppc ~ppc64 s390 ~sh ~sparc x86 ~amd64-fbsd" -IUSE="afs +berkdb caps gdbm hdb-ldap ipv6 libressl +lmdb otp +pkinit selinux ssl static-libs test X" +IUSE="afs +berkdb caps gdbm hdb-ldap ipv6 libressl +lmdb otp selinux ssl static-libs test X" CDEPEND=" ssl? ( @@ -96,12 +96,12 @@ multilib_src_configure() { --with-sqlite3="${EPREFIX}"/usr --libexecdir="${EPREFIX}"/usr/sbin --enable-pthread-support + --enable-kx509 + --enable-pk-init $(use_enable afs afs-support) $(use_enable gdbm ndbm-db) $(use_enable lmdb mdb-db) $(use_enable otp) - $(use_enable pkinit kx509) - $(use_enable pkinit pk-init) $(use_enable static-libs static) $(multilib_native_use_with caps capng) $(multilib_native_use_with hdb-ldap openldap "${EPREFIX}"/usr) |