diff options
author | jlam <jlam@pkgsrc.org> | 2001-11-19 17:27:22 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2001-11-19 17:27:22 +0000 |
commit | c0465ef8a667a07b6e928e59b3ab3c80d2e894c8 (patch) | |
tree | 70a9f2dac45b0e5a1705ea41731ede053faae160 /security/sudo/patches | |
parent | 3cb36985d3d4be0b48bbfa61b6969c0f834573ac (diff) | |
download | pkgsrc-c0465ef8a667a07b6e928e59b3ab3c80d2e894c8.tar.gz |
Respect ${CONFDIR} and use the general INSTALL/DEINSTALL scripts.
Diffstat (limited to 'security/sudo/patches')
-rw-r--r-- | security/sudo/patches/patch-af | 22 | ||||
-rw-r--r-- | security/sudo/patches/patch-ag | 29 |
2 files changed, 38 insertions, 13 deletions
diff --git a/security/sudo/patches/patch-af b/security/sudo/patches/patch-af index 3c9da6c4415..e0ebaf15925 100644 --- a/security/sudo/patches/patch-af +++ b/security/sudo/patches/patch-af @@ -1,8 +1,16 @@ -$NetBSD: patch-af,v 1.8 2000/08/10 02:25:31 thorpej Exp $ +$NetBSD: patch-af,v 1.9 2001/11/19 17:27:24 jlam Exp $ ---- configure.in.orig Fri Mar 24 12:14:04 2000 -+++ configure.in Wed Aug 9 17:13:17 2000 -@@ -167,6 +167,19 @@ +--- configure.in.orig Fri Mar 24 15:14:04 2000 ++++ configure.in +@@ -59,7 +59,6 @@ + test "$mandir" = '${prefix}/man' && mandir='$(prefix)/man' + test "$bindir" = '${exec_prefix}/bin' && bindir='$(exec_prefix)/bin' + test "$sbindir" = '${exec_prefix}/sbin' && sbindir='$(exec_prefix)/sbin' +-test "$sysconfdir" = '${prefix}/etc' && sysconfdir='/etc' + + dnl + dnl Deprecated --with options (these all warn or generate an error) +@@ -167,6 +166,19 @@ ;; esac]) @@ -22,7 +30,7 @@ $NetBSD: patch-af,v 1.8 2000/08/10 02:25:31 thorpej Exp $ AC_ARG_WITH(passwd, [ --without-passwd don't use passwd/shadow file for authentication], [case $with_passwd in yes) ;; -@@ -1466,7 +1479,9 @@ +@@ -1466,7 +1478,9 @@ dnl if test "$with_kerb5" = "yes"; then AC_DEFINE(HAVE_KERB5) @@ -33,7 +41,7 @@ $NetBSD: patch-af,v 1.8 2000/08/10 02:25:31 thorpej Exp $ CPPFLAGS="$CPPFLAGS -I/usr/local/include" elif test -f "/usr/local/kerberos/include/krb5.h"; then CPPFLAGS="$CPPFLAGS -I/usr/local/kerberos/include" -@@ -1476,7 +1491,9 @@ +@@ -1476,7 +1490,9 @@ echo 'Unable to locate kerberos 5 include files, you will have to edit the Makefile and add -I/path/to/krb/includes to CPPFLAGS' fi @@ -44,7 +52,7 @@ $NetBSD: patch-af,v 1.8 2000/08/10 02:25:31 thorpej Exp $ SUDO_LDFLAGS="${SUDO_LDFLAGS} -L/usr/local/lib" elif test -f "/usr/local/kerberos/lib/libkrb5.a"; then SUDO_LDFLAGS="${SUDO_LDFLAGS} -L/usr/local/kerberos/lib" -@@ -1486,7 +1503,7 @@ +@@ -1486,7 +1502,7 @@ echo 'Unable to locate kerberos 5 libraries, you will have to edit the Makefile and add -L/path/to/krb/libs to SUDO_LDFLAGS' fi diff --git a/security/sudo/patches/patch-ag b/security/sudo/patches/patch-ag index 916a16cf248..db65fb85e4e 100644 --- a/security/sudo/patches/patch-ag +++ b/security/sudo/patches/patch-ag @@ -1,6 +1,6 @@ -$NetBSD: patch-ag,v 1.1 2001/06/26 00:49:55 wiz Exp $ +$NetBSD: patch-ag,v 1.2 2001/11/19 17:27:24 jlam Exp $ ---- configure.orig Fri Mar 24 21:14:00 2000 +--- configure.orig Fri Mar 24 15:14:00 2000 +++ configure @@ -28,6 +28,8 @@ ac_help="$ac_help @@ -11,7 +11,24 @@ $NetBSD: patch-ag,v 1.1 2001/06/26 00:49:55 wiz Exp $ --without-passwd don't use passwd/shadow file for authentication" ac_help="$ac_help --with-skey enable S/Key support " -@@ -819,6 +821,23 @@ +@@ -292,7 +294,7 @@ + --libexecdir=DIR program executables in DIR [EPREFIX/libexec] + --datadir=DIR read-only architecture-independent data in DIR + [PREFIX/share] +- --sysconfdir=DIR read-only single-machine data in DIR [/etc] ++ --sysconfdir=DIR read-only single-machine data in DIR [PREFIX/etc] + --sharedstatedir=DIR modifiable architecture-independent data in DIR + [PREFIX/com] + --localstatedir=DIR modifiable single-machine data in DIR [PREFIX/var] +@@ -679,7 +681,6 @@ + test "$mandir" = '${prefix}/man' && mandir='$(prefix)/man' + test "$bindir" = '${exec_prefix}/bin' && bindir='$(exec_prefix)/bin' + test "$sbindir" = '${exec_prefix}/sbin' && sbindir='$(exec_prefix)/sbin' +-test "$sysconfdir" = '${prefix}/etc' && sysconfdir='/etc' + + + # Check whether --with-otp-only or --without-otp-only was given. +@@ -819,6 +820,23 @@ fi @@ -35,7 +52,7 @@ $NetBSD: patch-ag,v 1.1 2001/06/26 00:49:55 wiz Exp $ # Check whether --with-passwd or --without-passwd was given. if test "${with_passwd+set}" = set; then withval="$with_passwd" -@@ -7712,7 +7731,9 @@ +@@ -7712,7 +7730,9 @@ #define HAVE_KERB5 1 EOF @@ -46,7 +63,7 @@ $NetBSD: patch-ag,v 1.1 2001/06/26 00:49:55 wiz Exp $ CPPFLAGS="$CPPFLAGS -I/usr/local/include" elif test -f "/usr/local/kerberos/include/krb5.h"; then CPPFLAGS="$CPPFLAGS -I/usr/local/kerberos/include" -@@ -7722,7 +7743,9 @@ +@@ -7722,7 +7742,9 @@ echo 'Unable to locate kerberos 5 include files, you will have to edit the Makefile and add -I/path/to/krb/includes to CPPFLAGS' fi @@ -57,7 +74,7 @@ $NetBSD: patch-ag,v 1.1 2001/06/26 00:49:55 wiz Exp $ SUDO_LDFLAGS="${SUDO_LDFLAGS} -L/usr/local/lib" elif test -f "/usr/local/kerberos/lib/libkrb5.a"; then SUDO_LDFLAGS="${SUDO_LDFLAGS} -L/usr/local/kerberos/lib" -@@ -7732,7 +7755,7 @@ +@@ -7732,7 +7754,7 @@ echo 'Unable to locate kerberos 5 libraries, you will have to edit the Makefile and add -L/path/to/krb/libs to SUDO_LDFLAGS' fi |