libopkg: add support for signature checking through usign
[oweals/opkg-lede.git] / configure.ac
index f386b52ed3ee9682f57505d6fac45490dcc71f2d..967a4d5c6bac9a7f046d84a08488a36d7437018b 100644 (file)
@@ -4,7 +4,6 @@ AC_CONFIG_SRCDIR([libopkg/pkg.c])
 
 AC_CONFIG_AUX_DIR([conf])
 AC_CONFIG_MACRO_DIR([m4])
-AC_CONFIG_MACRO_DIR([shave])
 
 AM_INIT_AUTOMAKE
 AM_CONFIG_HEADER(libopkg/config.h)
@@ -66,8 +65,8 @@ fi
 # check for sha256
 AC_ARG_ENABLE(sha256,
               AC_HELP_STRING([--enable-sha256], [Enable sha256sum check
-      [[default=yes]] ]),
-    [want_sha256="$enableval"], [want_sha256="yes"])
+      (sha256.{c,h} are GPLv3 licensed) [[default=no]] ]),
+    [want_sha256="$enableval"], [want_sha256="no"])
 
 if test "x$want_sha256" = "xyes"; then
   AC_DEFINE(HAVE_SHA256, 1, [Define if you want sha256 support])
@@ -170,6 +169,15 @@ if test "x$want_gpgme" = "xyes"; then
   fi
 fi
 
+AC_ARG_ENABLE(usign,
+    AC_HELP_STRING([--enable-usign], [Enable signature checking with usign
+      [[default=yes]] ]),
+    [want_usign="$enableval"], [want_usign="yes"])
+
+if test "x$want_usign" = "xyes"; then
+  AC_DEFINE(HAVE_USIGN, 1, [Define if you want usign support])
+fi
+
 AC_SUBST(GPGME_CFLAGS)
 AC_SUBST(GPGME_LIBS)
 
@@ -270,14 +278,12 @@ Use --disable-gpg if you want OpenSSL smime signatures])
        fi
 fi
 
-
+CLEAN_DATE=`date +"%B %Y" | tr -d '\n'`
 
 AC_SUBST(opkglibdir)
 AC_SUBST(opkgetcdir)
 AC_SUBST(opkglockfile)
-
-# Setup output beautifier.
-SHAVE_INIT([shave], [enable])
+AC_SUBST([CLEAN_DATE])
 
 AC_OUTPUT(
     Makefile
@@ -288,6 +294,7 @@ AC_OUTPUT(
     utils/Makefile
     utils/update-alternatives
     libopkg.pc
-    shave/shave
-    shave/shave-libtool
+    man/Makefile
+    man/opkg-cl.1
+    man/opkg-key.1
     )