Package Details: authconfig 7.0.1-2

Git Clone URL: https://aur.archlinux.org/authconfig.git (read-only, click to copy)
Package Base: authconfig
Description: Command line tool for setting up authentication from network services
Upstream URL: https://pagure.io/authconfig
Licenses: GPL
Conflicts: freeipa-client, nss_ldap, pam-krb5, samba
Replaces: authconfig-gtk
Submitter: TheGoliath
Maintainer: None
Last Packager: backerman
Votes: 2
Popularity: 0.000000
First Submitted: 2020-05-10 18:40 (UTC)
Last Updated: 2020-08-08 00:27 (UTC)

Latest Comments

takanashi commented on 2022-07-29 19:26 (UTC) (edited on 2022-07-29 19:32 (UTC) by takanashi)

Please add autoconf, automake, make and patch as make dependencies

yougotborked commented on 2020-07-23 03:45 (UTC) (edited on 2020-07-23 03:46 (UTC) by yougotborked)

Patching the 0001-adapt file fixed things

index c13f8e6..44d7fa5 100644
--- a/0001-Adapt-to-Arch-Linux.patch
+++ b/0001-Adapt-to-Arch-Linux.patch
@@ -48,10 +48,11 @@ index 1203a71114d0b700ff57802ece89b4a3e5351572..36e38418213c5c074178b8398ede8ade
  SSSD_AUTHCONFIG_DOMAIN = "default"

  if "lib64" in str(globals()["acutil"]):
--  LIBDIR = "/lib64"
-+  LIBDIR = "/lib"
+-    LIBDIR = "/usr/lib64"
++    LIBDIR = "/lib64"
  else:
-   LIBDIR = "/lib" 
+-    LIBDIR = "/usr/lib"
++    LIBDIR = "/lib"

 @@ -994,9 +994,6 @@ class SafeFile:
                self.file.flush()
diff --git a/PKGBUILD b/PKGBUILD
index e9306f4..5b002fc 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -28,7 +28,7 @@ prepare() {

     rm -f man/en/system-login-ac.5

-    patch -p1 <"$srcdir"/0001-Adapt-to-Arch-Linux.patch
+    patch --verbose -p1 <"$srcdir"/0001-Adapt-to-Arch-Linux.patch

     autoreconf -fi
 }

hadogenes commented on 2020-06-23 07:59 (UTC)

The patch is obsolete (many lines have offset) and broken LIBDIR in source is /usr/lib64, but in patch there is /lib64