]> git.pld-linux.org Git - packages/netatalk.git/commitdiff
- outdated
authormarcus <marcus@pld-linux.org>
Wed, 10 Oct 2001 17:07:21 +0000 (17:07 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    netatalk-asun.fsstnd.patch -> 1.2
    netatalk-asun.install.patch -> 1.2
    netatalk-asun.librpcsvc.patch -> 1.2
    netatalk-asun.nbp.patch -> 1.2
    netatalk-pam.patch -> 1.2

netatalk-asun.fsstnd.patch [deleted file]
netatalk-asun.install.patch [deleted file]
netatalk-asun.librpcsvc.patch [deleted file]
netatalk-asun.nbp.patch [deleted file]
netatalk-pam.patch [deleted file]

diff --git a/netatalk-asun.fsstnd.patch b/netatalk-asun.fsstnd.patch
deleted file mode 100644 (file)
index 952730c..0000000
+++ /dev/null
@@ -1,34 +0,0 @@
---- netatalk-1.4b2+asun2.1.3/Makefile.fsstnd   Sun Feb  7 06:15:46 1999
-+++ netatalk-1.4b2+asun2.1.3/Makefile  Tue Jun 20 14:10:00 2000
-@@ -1,17 +1,18 @@
- # Root of installation. Subdirectories will be ${DESTDIR}/etc,
- # ${DESTDIR}/bin, and ${DESTDIR}/lib.
--DESTDIR=/usr/local/atalk
-+INSTALL_PREFIX=
-+DESTDIR=$(INSTALL_PREFIX)/usr
- # for system-level binaries
--SBINDIR=$(DESTDIR)/etc
-+SBINDIR=$(DESTDIR)/sbin
- # for user-level binaries
- BINDIR=$(DESTDIR)/bin
- # for program libraries (*.a)
- LIBDIR=$(DESTDIR)/lib
- # for machine-independent resources (pagecount.ps, etc.)
--RESDIR=$(DESTDIR)/etc
-+RESDIR=$(DESTDIR)/lib/atalk
- # for configuration files (AppleVolumes.system, etc.)
--ETCDIR=$(DESTDIR)/etc
-+ETCDIR=$(INSTALL_PREFIX)/etc/atalk
- # for include files
- INCDIR=$(DESTDIR)/include
- # Root of man pages.  Subdirectories will be
-@@ -32,7 +33,7 @@
- # Location of the DES library and include files. Comment this out if you
- # don't want Randnum Exchange and 2-Way Randnum Exchange as allowable UAMs 
- # for afpd. We expect libdes.a in $DESDIR/lib and des.h in $DESDIR/include.
--DESDIR=/usr/local
-+#DESDIR=/usr/local
- # Location of the tcp wrapper library and include files. Comment this out
- # if you don't want tcp wrapper support. having tcp wrapper support is
diff --git a/netatalk-asun.install.patch b/netatalk-asun.install.patch
deleted file mode 100644 (file)
index 8164273..0000000
+++ /dev/null
@@ -1,82 +0,0 @@
-diff -uNr netatalk-1.4b2+asun2.1.3.orig/etc/psf/Makefile netatalk-1.4b2+asun2.1.3/etc/psf/Makefile
---- netatalk-1.4b2+asun2.1.3.orig/etc/psf/Makefile     Thu Feb  4 15:57:52 1999
-+++ netatalk-1.4b2+asun2.1.3/etc/psf/Makefile  Sat Mar 20 15:19:15 1999
-@@ -14,7 +14,10 @@
-       ofmpap ifmpap tfmpap ifmpaprev tfmpaprev \
-       ofwmpap ifwmpap tfwmpap ifwmpaprev tfwmpaprev
--all : ${TARGETS}
-+all : ${TARGETS} ${LINKS}
-+
-+${LINKS} :
-+      ln -sf ${SBINDIR}/psf $@
- psf : psf.o
-       ${CC} ${CFLAGS} -o psf psf.o ${LIBDIRS} ${LIBS}
-@@ -39,7 +42,7 @@
-       ${INSTALL} -c psf ${SBINDIR}
-       for i in ${LINKS} ; do \
-           rm -f ${RESDIR}/filters/$$i; \
--          ln -s ${SBINDIR}/psf ${RESDIR}/filters/$$i; \
-+          cp -a $$i ${RESDIR}/filters/$$i; \
-       done
- clean :
-diff -uNr netatalk-1.4b2+asun2.1.3.orig/man/man8/Makefile netatalk-1.4b2+asun2.1.3/man/man8/Makefile
---- netatalk-1.4b2+asun2.1.3.orig/man/man8/Makefile    Wed May 21 02:35:43 1997
-+++ netatalk-1.4b2+asun2.1.3/man/man8/Makefile Sat Mar 20 15:09:20 1999
-@@ -9,19 +9,25 @@
- LINKS=
- all :
--
--install : all
--      -mkdir ${MANDIR}/man8
-       for i in ${SRC} ; do \
--          rm -f ${MANDIR}/man8/$$i; \
-           sed -e s@:DESTDIR:@${DESTDIR}@ -e s@:SBINDIR:@${SBINDIR}@ \
-               -e s@:BINDIR:@${BINDIR}@ -e s@:RESDIR:@${RESDIR}@ \
-               -e s@:ETCDIR:@${ETCDIR}@ -e s@:LIBDIR:@${LIBDIR}@ \
-               -e s@:INCDIR:@${INCDIR}@ \
--              < $$i > ${MANDIR}/man8/$$i; \
-+              < $$i > $$i.tmp; \
-+      done
-+
-+install : 
-+      -mkdir ${MANDIR}/man8
-+      for i in ${SRC} ; do \
-+          rm -f ${MANDIR}/man8/$$i; \
-+          install -m644 $$i.tmp ${MANDIR}/man8/$$i; \
-       done
- clean :
-+      for i in ${SRC}; do \
-+          rm -f $$i.tmp; \
-+      done
- tags : ${SRC}
-diff -uNr netatalk-1.4b2+asun2.1.3.orig/sys/linux/Makefile netatalk-1.4b2+asun2.1.3/sys/linux/Makefile
---- netatalk-1.4b2+asun2.1.3.orig/sys/linux/Makefile   Sun Feb 28 06:10:59 1999
-+++ netatalk-1.4b2+asun2.1.3/sys/linux/Makefile        Sat Mar 20 15:09:20 1999
-@@ -66,8 +66,7 @@
-       fi \
-       fi
--install : ${ETCDIR} install-sysv install-bsd
--      -mkdir ${DESTDIR} ${SBINDIR} ${BINDIR} ${LIBDIR}
-+install : 
-       for i in ${ALL}; \
-           do (cd $$i; ${MAKE} ${MFLAGS} CC="${CC}" \
-               ADDLIBS="${ADDLIBS}" DEFS="${DEFS}" OPTOPTS="${OPTOPTS}" \
-@@ -76,10 +75,6 @@
-               AFSDIR="${AFSDIR}" KRBDIR="${KRBDIR}" AFPLIBS="${AFPLIBS}" \
-               INSTALL="${INSTALL}" $@); \
-       done
--      if [ -d /etc/pam.d -a ! -f /etc/pam.d/netatalk ]; then \
--              ${INSTALL} ../../config/netatalk.pamd /etc/pam.d/netatalk; \
--              echo "PAM netatalk file installed."; \
--      fi 
-       @echo
-       @echo "Install is done.  Don't forget to add lines from"
-       @echo "services.atalk to /etc/services."
diff --git a/netatalk-asun.librpcsvc.patch b/netatalk-asun.librpcsvc.patch
deleted file mode 100644 (file)
index 9338810..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
---- netatalk-1.4b2+asun2.1.3/sys/linux/Makefile.tim    Thu Dec 16 11:10:55 1999
-+++ netatalk-1.4b2+asun2.1.3/sys/linux/Makefile        Thu Dec 16 11:08:07 1999
-@@ -7,7 +7,7 @@
- INSTALL=      install 
- # if you aren't using pam and are using glibc, you'll need to add -lcrypt
- # if you're using libc5, you'll need to take out the -lrpcsvc
--AFPLIBS=-lrpcsvc
-+AFPLIBS=-lnss_nis -lrpcsvc
- ADDLIBS=
- ALL=  ../../libatalk ../../include ../../bin ../../etc ../../man
diff --git a/netatalk-asun.nbp.patch b/netatalk-asun.nbp.patch
deleted file mode 100644 (file)
index ac49ad7..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-diff -uNr netatalk-1.4b2+asun2.1.3.orig/bin/nbp/nbplkup.c netatalk-1.4b2+asun2.1.3/bin/nbp/nbplkup.c
---- netatalk-1.4b2+asun2.1.3.orig/bin/nbp/nbplkup.c    Fri May 30 09:15:44 1997
-+++ netatalk-1.4b2+asun2.1.3/bin/nbp/nbplkup.c Sat Mar 20 14:38:57 1999
-@@ -132,9 +132,6 @@
-       exit( -1 );
-     }
-     for ( i = 0; i < c; i++ ) {
--      asciize( nn[ i ].nn_objlen, nn[ i ].nn_obj );
--      asciize( nn[ i ].nn_typelen, nn[ i ].nn_type );
--
-       printf( "%31.*s:%-34.*s %u.%u:%u\n",
-               nn[ i ].nn_objlen, nn[ i ].nn_obj,
-               nn[ i ].nn_typelen, nn[ i ].nn_type,
-@@ -143,18 +140,6 @@
-               nn[ i ].nn_sat.sat_port );
-     }
--}
--
--#include <ctype.h>
--
--asciize( i, p )
--    int               i;
--    char      *p;
--{
--    for ( ; i > 0; p++, i-- ) {
--      if ( !isascii( *p ))
--          *p = toascii( *p );
--    }
- }
- #define BPLEN 48
diff --git a/netatalk-pam.patch b/netatalk-pam.patch
deleted file mode 100644 (file)
index 149fded..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
---- ../rpm/netatalk-1.4b2+asun2.1.3/config/netatalk.pamd       Wed Aug 19 05:32:59 1998
-+++ netatalk-1.4b2+asun2.1.3/config/netatalk.pamd      Tue Aug 15 21:06:56 2000
-@@ -1,6 +1,8 @@
- #%PAM-1.0
--auth       required   /lib/security/pam_pwdb.so shadow
--account    required   /lib/security/pam_pwdb.so 
--#password   required  /lib/security/pam_cracklib.so
--#password   required  /lib/security/pam_pwdb.so shadow use_authtok
--session    required   /lib/security/pam_pwdb.so 
-+auth          required        /lib/security/pam_listfile.so item=user sense=deny file=/etc/security/blacklist onerr=succeed
-+auth          required        /lib/security/pam_listfile.so item=user sense=deny file=/etc/security/blacklist.netatalk onerr=succeed
-+auth          required        /lib/security/pam_unix.so
-+account               required        /lib/security/pam_unix.so
-+session               required        /lib/security/pam_unix.so
-+#password        required        /lib/security/pam_cracklib.so difok=2 minlen=8 d
-+#password        required        /lib/security/pam_make.so /var/db
-+#password        required        /lib/security/pam_unix.so md5 shadow use_authtok
-\ No newline at end of file
This page took 0.048765 seconds and 4 git commands to generate.