diff options
author | Göktürk Yüksek <gokturk@gentoo.org> | 2018-01-05 13:47:34 -0500 |
---|---|---|
committer | Göktürk Yüksek <gokturk@gentoo.org> | 2018-01-05 13:47:58 -0500 |
commit | 33d8979b7c7a2d634f66221aac3a616dc831ccc7 (patch) | |
tree | 9cb8fa0d1b8d2aed7c1794d48d9499cb18c9898d /app-crypt/libu2f-server/files | |
parent | app-emulation/wine: Test LINGUAS rather than linguas_* USE flags. (diff) | |
download | gentoo-33d8979b7c7a2d634f66221aac3a616dc831ccc7.tar.gz gentoo-33d8979b7c7a2d634f66221aac3a616dc831ccc7.tar.bz2 gentoo-33d8979b7c7a2d634f66221aac3a616dc831ccc7.zip |
app-crypt/libu2f-server: bump to 1.1.0, introduce a subslot
Package-Manager: Portage-2.3.13, Repoman-2.3.3
Diffstat (limited to 'app-crypt/libu2f-server/files')
-rw-r--r-- | app-crypt/libu2f-server/files/libu2f-server-1.1.0-disable-help2man-gengetopt-checks.patch | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/app-crypt/libu2f-server/files/libu2f-server-1.1.0-disable-help2man-gengetopt-checks.patch b/app-crypt/libu2f-server/files/libu2f-server-1.1.0-disable-help2man-gengetopt-checks.patch new file mode 100644 index 000000000000..2dbe28b5aa68 --- /dev/null +++ b/app-crypt/libu2f-server/files/libu2f-server-1.1.0-disable-help2man-gengetopt-checks.patch @@ -0,0 +1,37 @@ +Reverted, removed the second hunk about dev-libs/check, and further +adjusted. The tarball already contains the man page and gengetopt +generated command line parsing, so these checks are useless to us. + +From fbd340d1c777e23b66ef27ce1c03c4eb3bafc511 Mon Sep 17 00:00:00 2001 +From: Thordur Bjornsson <thorduri@yubico.com> +Date: Thu, 12 Jan 2017 14:28:31 +0100 +Subject: [PATCH] auto: Check for help2man/gengetopt, and bail out if not + found. + +Both are required to build. + +While here, if `--enable-tests` passed, check for `check` and +if not found, bail out as well. +--- + configure.ac | 11 +++++++++-- + 1 file changed, 9 insertions(+), 2 deletions(-) + +diff --git a/configure.ac b/configure.ac +index ad409a2..6decb78 100644 +--- b/configure.ac ++++ a/configure.ac +@@ -43,14 +43,7 @@ + LT_INIT([win32-dll]) + + AM_MISSING_PROG(HELP2ADOC, help2adoc, $missing_dir) + AM_MISSING_PROG(HELP2MAN, help2man, $missing_dir) +-if ! which help2man >/dev/null ; then +- AC_MSG_ERROR([help2man missing]) +-fi +-if ! which gengetopt >/dev/null ; then +- AC_MSG_ERROR([gengetopt missing]) +-fi +- + gl_LD_VERSION_SCRIPT + + PKG_CHECK_MODULES([LIBJSON], [json-c], [], [ |