Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!

Bug 633846

Summary: net-libs/gnutls enable a useflag for extra PKCS/PKI (certtool binary)
Product: Gentoo Linux Reporter: Manuel Rüger (RETIRED) <mrueg>
Component: Current packagesAssignee: Crypto team [DISABLED] <crypto+disabled>
Status: RESOLVED INVALID    
Severity: normal CC: alonbl
Priority: Normal    
Version: unspecified   
Hardware: All   
OS: Linux   
Whiteboard:
Package list:
Runtime testing required: ---

Description Manuel Rüger (RETIRED) gentoo-dev 2017-10-09 14:58:42 UTC
From lib/m4/hooks.m4:

  AC_MSG_CHECKING([whether to disable extra PKI stuff])
  AC_ARG_ENABLE(extra-pki,
    AS_HELP_STRING([--disable-extra-pki],
                   [only enable the basic PKI stuff]),
    enable_pki=$enableval, enable_pki=yes)
  if test "$enable_pki" != "yes"; then
   ac_full=0
   AC_MSG_RESULT(yes)
  else
   AC_MSG_RESULT(no)
   AC_DEFINE([ENABLE_PKI], 1, [whether to include all the PKCS/PKI stuff])
  fi
AM_CONDITIONAL(ENABLE_PKI, test "$enable_pki" = "yes")

Can we get a useflag to enable this?
Comment 1 Manuel Rüger (RETIRED) gentoo-dev 2017-10-09 15:11:12 UTC
More specifically I'm asking for a useflag that provides the gnutls certtool binary
Comment 2 Alon Bar-Lev (RETIRED) gentoo-dev 2017-10-09 15:18:31 UTC
USE=tools?
Comment 3 Manuel Rüger (RETIRED) gentoo-dev 2017-10-10 11:48:25 UTC
Thanks, sorry for the PEBKAC