summaryrefslogtreecommitdiff
path: root/net/netatalk-devel
diff options
context:
space:
mode:
Diffstat (limited to 'net/netatalk-devel')
-rw-r--r--net/netatalk-devel/Makefile108
-rw-r--r--net/netatalk-devel/distinfo1
-rw-r--r--net/netatalk-devel/files/netatalk.sh33
-rw-r--r--net/netatalk-devel/files/patch-Makefile.in17
-rw-r--r--net/netatalk-devel/files/patch-config_Makefile.in13
-rw-r--r--net/netatalk-devel/files/patch-configure39
-rw-r--r--net/netatalk-devel/files/patch-etc_afpd_unix.h12
-rw-r--r--net/netatalk-devel/files/patch-ltmain.sh25
-rw-r--r--net/netatalk-devel/pkg-comment1
-rw-r--r--net/netatalk-devel/pkg-descr24
-rw-r--r--net/netatalk-devel/pkg-message9
-rw-r--r--net/netatalk-devel/pkg-plist141
12 files changed, 0 insertions, 423 deletions
diff --git a/net/netatalk-devel/Makefile b/net/netatalk-devel/Makefile
deleted file mode 100644
index bcc70c78e3a4..000000000000
--- a/net/netatalk-devel/Makefile
+++ /dev/null
@@ -1,108 +0,0 @@
-# Ports collection makefile for: netatalk
-# Date created: 23 Jul 1997
-# Whom: stb
-#
-# $FreeBSD$
-#
-
-PORTNAME= netatalk
-PORTVERSION= 1.5.5
-PORTEPOCH= 1
-CATEGORIES= net print
-MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
-MASTER_SITE_SUBDIR= netatalk
-
-MAINTAINER= marcus@FreeBSD.org
-
-.if defined(WITH_CNID)
-LIB_DEPENDS= db3.3:${PORTSDIR}/databases/db3
-.endif
-.if defined(WITH_SRVLOC)
-LIB_DEPENDS+= slp.1:${PORTSDIR}/net/openslp
-.endif
-.if !exists(/usr/include/tcpd.h)
-LIB_DEPENDS+= wrap.7:${PORTSDIR}/security/tcp_wrapper
-.endif
-
-USE_BZIP2= yes
-CONFIGURE_ARGS+= --with-tcp-wrappers \
- --with-pkgconfdir=${PREFIX}/etc
-.if defined(WITH_PAM)
-CONFIGURE_ARGS+= --with-pam=/etc/pam.d
-PLIST_SUB+= NETATALKPAM=""
-.else
-CONFIGURE_ARGS+= --without-pam
-PLIST_SUB+= NETATALKPAM="@comment "
-.endif
-.if defined(WITH_SRVLOC)
-# Enable Service Location Protocol support. This allows MacOS X < 10.1 to
-# pickup afpd servers in the network.
-CONFIGURE_ARGS+= --enable-srvloc=${LOCALBASE}
-.endif
-.if defined(WITH_FLOCK_LOCKS)
-# Disable byte locking, and do full file locking. This _may_ help with some
-# Quark Express save issues.
-CONFIGURE_ARGS+= --with-flock-locks
-.endif
-.if defined(WITH_CNID)
-# Configure EXPERIMENTAL CNID DID support. This is an attmept to make
-# DIDs more persistent by using a Berkeley database to store the DID values.
-# This should hopefully allow aliases to work between restarts of afpd.
-# This has been tested on MacOS 9.2.x and OS X.
-CONFIGURE_ARGS+= --with-did=cnid \
- --with-db3=${LOCALBASE}
-PLIST_SUB+= NETATALKCNID=""
-.else
-# This method of DID calculation is not persistent, but has been tested to
-# work with MacOS X (10.0.3-10.1.3) as well as MacOS 7-9.2.2.
-CONFIGURE_ARGS+= --with-did=last
-PLIST_SUB+= NETATALKCNID="@comment "
-.endif
-.if defined (WITH_TIMELORD)
-CONFIGURE_ARGS+= --enable-timelord
-PLIST_SUB+= TIMELORD=""
-.else
-PLIST_SUB+= TIMELORD="@comment "
-.endif
-GNU_CONFIGURE= yes
-CONFIGURE_TARGET= --target=${MACHINE_ARCH}-unknown-freebsd${OSREL}
-USE_GMAKE= yes
-USE_PERL5= yes
-FILES= AppleVolumes.default AppleVolumes.system afpd.conf \
- atalkd.conf papd.conf
-LINKS= unbin unhex unsingle hqx2bin single2bin macbinary \
- binheader nadheader
-MAN1= achfile.1 aecho.1 afile.1 afppasswd.1 getzones.1 \
- megatron.1 nbp.1 pap.1 psorder.1 hqx2bin.1 macbinary.1 \
- nbplkup.1 nbprgstr.1 nbpunrgstr.1 papstatus.1 \
- single2bin.1 unbin.1 unhex.1 unsingle.1 acleandir.1 \
- netatalk-config.1 timeout.1 apple_cp.1 apple_mv.1 \
- apple_rm.1
-MAN3= atalk_aton.3 nbp_name.3
-MAN4= atalk.4
-MAN5= AppleVolumes.default.5 afpd.conf.5 atalkd.conf.5 \
- netatalk.conf.5 papd.conf.5
-MAN8= afpd.8 atalkd.8 pap.8 papd.8 papstatus.8 psf.8 timelord.8
-
-post-extract:
- @${SED} -e "s=%%PREFIX%%=${PREFIX}=g" ${FILESDIR}/netatalk.sh \
- > ${WRKSRC}/netatalk.sh
-
-post-install:
- @${RM} -f ${PREFIX}/bin/nu ${PREFIX}/bin/lp2pap.sh \
- ${PREFIX}/bin/test_parse_mtab \
- ${PREFIX}/bin/afpd-mtab.pl ${PREFIX}/etc/netatalk.conf.dist
- ${INSTALL_SCRIPT} ${WRKSRC}/netatalk.sh \
- ${PREFIX}/etc/rc.d/netatalk.sh.sample
- ${INSTALL_SCRIPT} ${WRKSRC}/contrib/macusers/macusers \
- ${PREFIX}/bin/macusers
-.for i in ${FILES}
- [ -f ${PREFIX}/etc/${i} ] || \
- ${INSTALL_DATA} -c ${PREFIX}/etc/${i}.dist ${PREFIX}/etc/${i}
-.endfor
-.for i in ${LINKS}
- ( cd ${PREFIX}/bin && ${LN} -sf megatron ${i} )
-.endfor
- @${CAT} ${PKGMESSAGE}
-
-.include <bsd.port.mk>
diff --git a/net/netatalk-devel/distinfo b/net/netatalk-devel/distinfo
deleted file mode 100644
index cba291c049a3..000000000000
--- a/net/netatalk-devel/distinfo
+++ /dev/null
@@ -1 +0,0 @@
-MD5 (netatalk-1.5.5.tar.bz2) = 93ec251d47f355c99daad19de0b40eb2
diff --git a/net/netatalk-devel/files/netatalk.sh b/net/netatalk-devel/files/netatalk.sh
deleted file mode 100644
index 1ea9a2d094dc..000000000000
--- a/net/netatalk-devel/files/netatalk.sh
+++ /dev/null
@@ -1,33 +0,0 @@
-#!/bin/sh
-#
-# $FreeBSD: /tmp/pcvs/ports/net/netatalk-devel/files/Attic/netatalk.sh,v 1.1 2001-05-18 20:00:29 dinoex Exp $
-#
-# AppleTalk daemons. Make sure not to start atalkd in the background:
-# its data structures must have time to stablize before running the
-# other processes.
-#
-if ! test -x %%PREFIX%%/sbin/atalkd
-then
-# exit 0
-fi
-HOSTNAME=`hostname|sed 's/\..*$//'`
-case $1 in
-start)
- echo -n ' netatalk'
- %%PREFIX%%/sbin/atalkd
- %%PREFIX%%/bin/nbprgstr -p 4 ${HOSTNAME}:Workstation &
- %%PREFIX%%/bin/nbprgstr -p 4 ${HOSTNAME}:netatalk &
- %%PREFIX%%/sbin/papd
- %%PREFIX%%/sbin/afpd -s %%PREFIX%%/etc/AppleVolumes.system \
- -f %%PREFIX%%/etc/AppleVolumes.default
- ;;
-stop)
- killall afpd
- killall papd
- killall atalkd
- ;;
-*)
- echo "Usage: $0: [ start | stop ]" 2>&1
- exit 65
- ;;
-esac
diff --git a/net/netatalk-devel/files/patch-Makefile.in b/net/netatalk-devel/files/patch-Makefile.in
deleted file mode 100644
index 2bced014b117..000000000000
--- a/net/netatalk-devel/files/patch-Makefile.in
+++ /dev/null
@@ -1,17 +0,0 @@
---- config/Makefile.in.orig Mon Dec 17 14:30:53 2001
-+++ config/Makefile.in Mon Dec 17 14:31:45 2001
-@@ -264,12 +264,8 @@
- install-config-files: $(CONFFILES) $(GENFILES)
- $(mkinstalldirs) $(DESTDIR)$(pkgconfdir)
- for f in $(CONFFILES) $(GENFILES); do \
-- if test "x$(OVERWRITE_CONFIG)" = "xyes" -o ! -f $(DESTDIR)$(pkgconfdir)/$$f; then \
-- echo "$(INSTALL_DATA) $$f $(DESTDIR)$(pkgconfdir)"; \
-- $(INSTALL_DATA) $$f $(DESTDIR)$(pkgconfdir); \
-- else \
-- echo "not overwriting $$f"; \
-- fi; \
-+ echo "$(INSTALL_DATA) $$f $(DESTDIR)$(pkgconfdir)/$$f.dist"; \
-+ $(INSTALL_DATA) $$f $(DESTDIR)$(pkgconfdir)/$$f.dist; \
- done
-
- @USE_PAM_TRUE@install-data-local: install-config-files $(PAMFILES)
diff --git a/net/netatalk-devel/files/patch-config_Makefile.in b/net/netatalk-devel/files/patch-config_Makefile.in
deleted file mode 100644
index 12f74375abb0..000000000000
--- a/net/netatalk-devel/files/patch-config_Makefile.in
+++ /dev/null
@@ -1,13 +0,0 @@
---- config/Makefile.in.orig Mon Oct 7 17:06:54 2002
-+++ config/Makefile.in Mon Oct 7 17:07:13 2002
-@@ -292,10 +292,6 @@
- done
-
- @USE_PAM_TRUE@install-data-local: install-config-files $(PAMFILES)
--@USE_PAM_TRUE@ $(mkinstalldirs) $(DESTDIR)$(pamdir)
--@USE_PAM_TRUE@ for f in $(PAMFILES); do \
--@USE_PAM_TRUE@ $(INSTALL_DATA) $$f $(DESTDIR)$(pamdir)/netatalk; \
--@USE_PAM_TRUE@ done
-
- @USE_PAM_FALSE@install-data-local: install-config-files
- # Tell versions [3.59,3.63) of GNU make to not export all variables.
diff --git a/net/netatalk-devel/files/patch-configure b/net/netatalk-devel/files/patch-configure
deleted file mode 100644
index fe0c2b710aa6..000000000000
--- a/net/netatalk-devel/files/patch-configure
+++ /dev/null
@@ -1,39 +0,0 @@
---- configure.orig Sun Sep 1 12:50:59 2002
-+++ configure Wed Oct 2 22:19:05 2002
-@@ -1499,10 +1499,6 @@
-
- # The aliases save the names the user supplied, while $host etc.
- # will get canonicalized.
--test -n "$target_alias" &&
-- test "$program_prefix$program_suffix$program_transform_name" = \
-- NONENONEs,x,x, &&
-- program_prefix=${target_alias}-
- am__api_version="1.6"
- # Find a good install program. We prefer a C program (faster),
- # so one script is as good as another. But avoid the broken or
-@@ -12706,13 +12702,13 @@
- savedldflags="$LDFLAGS"
- CFLAGS="$CFLAGS -I$db3dir"
- LDFLAGS="-L$db3libdir $LDFLAGS"
-- echo "$as_me:$LINENO: checking for main in -ldb" >&5
--echo $ECHO_N "checking for main in -ldb... $ECHO_C" >&6
-+ echo "$as_me:$LINENO: checking for main in -ldb3" >&5
-+echo $ECHO_N "checking for main in -ldb3... $ECHO_C" >&6
- if test "${ac_cv_lib_db_main+set}" = set; then
- echo $ECHO_N "(cached) $ECHO_C" >&6
- else
- ac_check_lib_save_LIBS=$LIBS
--LIBS="-ldb $LIBS"
-+LIBS="-ldb3 $LIBS"
- cat >conftest.$ac_ext <<_ACEOF
- #line $LINENO "configure"
- #include "confdefs.h"
-@@ -12759,7 +12755,7 @@
-
- db3found=yes
- DB3_CFLAGS="-I$db3dir"
-- DB3_LIBS="-L$db3libdir -ldb"
-+ DB3_LIBS="-L$db3libdir -ldb3"
- DB3_PATH="`echo $db3dir | sed 's,include/db3$,,'`"
-
- fi
diff --git a/net/netatalk-devel/files/patch-etc_afpd_unix.h b/net/netatalk-devel/files/patch-etc_afpd_unix.h
deleted file mode 100644
index cfc566530256..000000000000
--- a/net/netatalk-devel/files/patch-etc_afpd_unix.h
+++ /dev/null
@@ -1,12 +0,0 @@
---- etc/afpd/unix.h.orig Sun Sep 8 23:45:56 2002
-+++ etc/afpd/unix.h Mon Sep 9 00:03:58 2002
-@@ -30,7 +30,8 @@
- #if defined(TRU64)
- #define f_frsize f_fsize
- #else /* TRU64 */
--#if defined(HAVE_SYS_STATVFS_H) || defined(__svr4__)
-+#if (defined(HAVE_SYS_STATVFS_H) || defined(__svr4__)) && \
-+ !defined(__FreeBSD__)
- #include <sys/statvfs.h>
- #define statfs statvfs
- #else /* HAVE_SYS_STATVFS || __svr4__ */
diff --git a/net/netatalk-devel/files/patch-ltmain.sh b/net/netatalk-devel/files/patch-ltmain.sh
deleted file mode 100644
index 2ac052749556..000000000000
--- a/net/netatalk-devel/files/patch-ltmain.sh
+++ /dev/null
@@ -1,25 +0,0 @@
---- ltmain.sh 2001/08/27 09:51:26 1.1
-+++ ltmain.sh 2001/08/27 09:51:42
-@@ -2408,6 +2408,9 @@
- *-*-netbsd*)
- # Don't link with libc until the a.out ld.so is fixed.
- ;;
-+ *-*-freebsd*)
-+ # FreeBSD doesn't need this...
-+ ;;
- *)
- # Add libc to deplibs on all other systems if necessary.
- if test "$build_libtool_need_lc" = "yes"; then
-@@ -4175,10 +4178,12 @@
- fi
-
- # Install the pseudo-library for information purposes.
-+ if /usr/bin/false; then
- name=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
- instname="$dir/$name"i
- $show "$install_prog $instname $destdir/$name"
- $run eval "$install_prog $instname $destdir/$name" || exit $?
-+ fi
-
- # Maybe install the static library, too.
- test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library"
diff --git a/net/netatalk-devel/pkg-comment b/net/netatalk-devel/pkg-comment
deleted file mode 100644
index 4eb541bac506..000000000000
--- a/net/netatalk-devel/pkg-comment
+++ /dev/null
@@ -1 +0,0 @@
-File and print server for AppleTalk networks
diff --git a/net/netatalk-devel/pkg-descr b/net/netatalk-devel/pkg-descr
deleted file mode 100644
index 6d49d2583a0b..000000000000
--- a/net/netatalk-devel/pkg-descr
+++ /dev/null
@@ -1,24 +0,0 @@
-netatalk - File and Print Server for AppleTalk networks
-
-Netatalk features include:
-o Access to the UNIX file system for Macintosh and other systems with
- AppleShare client software.
-o Spool PostScript print jobs to the lpd(8) spool system via Printer Access
- Protocol (PAP).
-o Output PostScript print jobs from the lpd(8) spool system via Printer
- Access Protocol (PAP).
-o Filter PostScript, ASCII, and various other formats to PostScript,
- including banner pages and page reversal.
-o Route AppleTalk between multiple Ethernet interfaces.
-
-This version includes Adrian Sun's improvements:
-o Access to the file server via AFP-over-TCP.
-o Support for volumes larger that 2GB.
-o Randnum- and 2-Way Randnum authentication methods (courtesy S. Hirsch)
-o Support for Apple II ProDOS.
-o A number of bug fixes.
-
-Many other new features and bug fixes have also been integrated.
-Requires AppleTalk support in the kernel (FreeBSD 2.2 or newer).
-
-WWW: http://netatalk.sourceforge.net/
diff --git a/net/netatalk-devel/pkg-message b/net/netatalk-devel/pkg-message
deleted file mode 100644
index 23d91dbf7b03..000000000000
--- a/net/netatalk-devel/pkg-message
+++ /dev/null
@@ -1,9 +0,0 @@
-###
-If you compiled WITH_PAM support, you need to edit /etc/pam.conf to add
-support for netatalk. To do so, add the following three lines to this
-file:
-
-netatalk auth required pam_unix.so try_first_pass
-netatalk account required pam_unix.so try_first_pass
-netatalk session required pam_permit.so
-###
diff --git a/net/netatalk-devel/pkg-plist b/net/netatalk-devel/pkg-plist
deleted file mode 100644
index 8b84a99137ca..000000000000
--- a/net/netatalk-devel/pkg-plist
+++ /dev/null
@@ -1,141 +0,0 @@
-bin/achfile
-bin/acleandir.rc
-bin/add_netatalk_printer
-bin/adv1tov2
-bin/aecho
-bin/afile
-bin/afppasswd
-bin/apple_cp
-bin/apple_mv
-bin/apple_rm
-bin/cleanappledouble.pl
-bin/getzones
-bin/macusers
-bin/makecode
-bin/megatron
-@unexec rm -f %B/unbin
-@unexec rm -f %B/unhex
-@unexec rm -f %B/unsingle
-@unexec rm -f %B/hqx2bin
-@unexec rm -f %B/single2bin
-@unexec rm -f %B/macbinary
-@unexec rm -f %B/binheader
-@unexec rm -f %B/nadheader
-@exec cd %B && ln -s megatron unbin
-@exec cd %B && ln -s megatron unhex
-@exec cd %B && ln -s megatron unsingle
-@exec cd %B && ln -s megatron hqx2bin
-@exec cd %B && ln -s megatron single2bin
-@exec cd %B && ln -s megatron macbinary
-@exec cd %B && ln -s megatron binheader
-@exec cd %B && ln -s megatron nadheader
-%%NETATALKCNID%%bin/cnid_maint
-bin/nbplkup
-bin/nbprgstr
-bin/nbpunrgstr
-bin/netatalk-config
-bin/netatalkshorternamelinks.pl
-bin/pap
-bin/papstatus
-bin/parsecode
-bin/psorder
-bin/timeout
-sbin/afpd
-sbin/atalkd
-sbin/ifmpap
-sbin/ifmpaprev
-sbin/ifpap
-sbin/ifpaprev
-sbin/ifwmpap
-sbin/ifwmpaprev
-sbin/ifwpap
-sbin/ifwpaprev
-sbin/ofmpap
-sbin/ofpap
-sbin/ofwmpap
-sbin/ofwpap
-sbin/papd
-sbin/psa
-sbin/psf
-sbin/tfmpap
-sbin/tfmpaprev
-sbin/tfpap
-sbin/tfpaprev
-sbin/tfwmpap
-sbin/tfwmpaprev
-sbin/tfwpap
-sbin/tfwpaprev
-%%TIMELORD%%sbin/timelord
-@unexec if cmp -s %D/etc/AppleVolumes.default %D/etc/AppleVolumes.default.dist; then rm -f %D/etc/AppleVolumes.default; fi
-etc/AppleVolumes.default.dist
-@exec [ ! -f %B/AppleVolumes.default ] && cp %B/%f %B/AppleVolumes.default
-@unexec if cmp -s %D/etc/AppleVolumes.system %D/etc/AppleVolumes.system.dist; then rm -f %D/etc/AppleVolumes.system; fi
-etc/AppleVolumes.system.dist
-@exec [ ! -f %B/AppleVolumes.system ] && cp %B/%f %B/AppleVolumes.system
-@unexec if cmp -s %D/etc/afpd.conf %D/etc/afpd.conf.dist; then rm -f %D/etc/afpd.conf; fi
-etc/afpd.conf.dist
-@exec [ ! -f %B/afpd.conf ] && cp %B/%f %B/afpd.conf
-@unexec if cmp -s %D/etc/atalkd.conf %D/etc/atalkd.conf.dist; then rm -f %D/etc/atalkd.conf; fi
-etc/atalkd.conf.dist
-@exec [ ! -f %B/atalkd.conf ] && cp %B/%f %B/atalkd.conf
-@unexec if cmp -s %D/etc/papd.conf %D/etc/papd.conf.dist; then rm -f %D/etc/papd.conf; fi
-etc/papd.conf.dist
-@exec [ ! -f %B/papd.conf ] && cp %B/%f %B/papd.conf
-etc/nls/maccode.437
-etc/nls/maccode.850
-etc/nls/maccode.iso8859-1
-etc/nls/maccode.iso8859-1.adapted
-etc/rc.d/netatalk.sh.sample
-etc/uams/uams_clrtxt.so
-etc/uams/uams_dhx.so
-%%NETATALKPAM%%etc/uams/uams_dhx_pam.so
-%%NETATALKPAM%%etc/uams/uams_dhx_pam.a
-etc/uams/uams_dhx_passwd.so
-etc/uams/uams_dhx_passwd.a
-etc/uams/uams_guest.so
-etc/uams/uams_guest.a
-%%NETATALKPAM%%etc/uams/uams_pam.so
-%%NETATALKPAM%%etc/uams/uams_pam.a
-etc/uams/uams_passwd.so
-etc/uams/uams_passwd.a
-etc/uams/uams_randnum.so
-etc/uams/uams_randnum.a
-@dirrm etc/nls
-@dirrm etc/uams
-include/atalk/adouble.h
-include/atalk/aep.h
-include/atalk/afp.h
-include/atalk/asp.h
-include/atalk/atp.h
-include/atalk/cnid.h
-include/atalk/compat.h
-include/atalk/ddp.h
-include/atalk/dsi.h
-include/atalk/nbp.h
-include/atalk/netddp.h
-include/atalk/pap.h
-include/atalk/paths.h
-include/atalk/rtmp.h
-include/atalk/server_child.h
-include/atalk/uam.h
-include/atalk/util.h
-include/atalk/zip.h
-include/netatalk/aarp.c
-include/netatalk/aarp.h
-include/netatalk/at.h
-include/netatalk/at_control.c
-include/netatalk/at_proto.c
-include/netatalk/at_var.h
-include/netatalk/ddp.h
-include/netatalk/endian.h
-include/netatalk/ddp_var.h
-include/netatalk/ddp_input.c
-include/netatalk/ddp_output.c
-include/netatalk/ddp_usrreq.c
-include/netatalk/phase2.h
-@dirrm include/atalk
-@dirrm include/netatalk
-lib/libatalk.a
-share/aclocal/netatalk.m4
-share/netatalk/pagecount.ps
-@dirrm share/netatalk