diff options
Diffstat (limited to 'net')
568 files changed, 0 insertions, 19398 deletions
diff --git a/net/ari-yahoo/Makefile b/net/ari-yahoo/Makefile deleted file mode 100644 index c1dc526c6faa..000000000000 --- a/net/ari-yahoo/Makefile +++ /dev/null @@ -1,19 +0,0 @@ -# New ports collection makefile for: ari-yahoo -# Date created: 15 November 2000 -# Whom: George Reid <greid@ukug.uk.freebsd.org> -# -# $FreeBSD$ -# - -PORTNAME= ari-yahoo -PORTVERSION= 1.9 -CATEGORIES= misc -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= ${PORTNAME} - -MAINTAINER= greid@ukug.uk.freebsd.org - -GNU_CONFIGURE= yes -USE_GMAKE= yes - -.include <bsd.port.mk> diff --git a/net/ari-yahoo/distinfo b/net/ari-yahoo/distinfo deleted file mode 100644 index 8e60a9cd6a2f..000000000000 --- a/net/ari-yahoo/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (ari-yahoo-1.9.tar.gz) = cbf368ed16a137203d6212aa85cc6eae diff --git a/net/ari-yahoo/pkg-comment b/net/ari-yahoo/pkg-comment deleted file mode 100644 index 0e25f1e7706d..000000000000 --- a/net/ari-yahoo/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -A console Yahoo! messenger client diff --git a/net/ari-yahoo/pkg-descr b/net/ari-yahoo/pkg-descr deleted file mode 100644 index be8bd7da4682..000000000000 --- a/net/ari-yahoo/pkg-descr +++ /dev/null @@ -1,14 +0,0 @@ -This is a simple Yahoo Messenger client that requires no windowing system, -and it therefore can be quite useful in situations where a minimal system -is being used or when a windowing system is otherwise unavailable or -unfeasible. - -Ari's Yahoo Client is copyright (C) 2000 Ari Johnson, and this software -is protected by the GNU General Public License, which should have been -distributed along with this software as the file 'COPYING'. - -If you need to contact the developer, please e-mail him at: - ari@lusis.org - -- George Reid -greid@ukug.uk.freebsd.org diff --git a/net/ari-yahoo/pkg-plist b/net/ari-yahoo/pkg-plist deleted file mode 100644 index 29ed993c5488..000000000000 --- a/net/ari-yahoo/pkg-plist +++ /dev/null @@ -1 +0,0 @@ -bin/ari-yahoo diff --git a/net/arpwatch-devel/Makefile b/net/arpwatch-devel/Makefile deleted file mode 100644 index 20ed2db0c165..000000000000 --- a/net/arpwatch-devel/Makefile +++ /dev/null @@ -1,38 +0,0 @@ -# New ports collection makefile for: arpwatch -# Date created: March 24 1997 -# Whom: Brian Somers <brian@Awfulhak.org> -# -# $FreeBSD$ -# - -PORTNAME= arpwatch -PORTVERSION= 2.1.a11 -PORTREVISION= 1 -CATEGORIES= net -MASTER_SITES= http://www.Awfulhak.org/arpwatch/ \ - ftp://ftp.ee.lbl.gov/ -DISTNAME= arpwatch-2.1a11 - -MAINTAINER= brian@Awfulhak.org - -GNU_CONFIGURE= yes -HAS_CONFIGURE= yes -CONFIGURE_ARGS= --quiet -INSTALL_TARGET= install install-man -MAN8= arpwatch.8 arpsnmp.8 - -post-install: - if [ ! -d ${PREFIX}/arpwatch ]; then \ - ${MKDIR} ${PREFIX}/arpwatch; \ - ${CHMOD} 775 ${PREFIX}/arpwatch; \ - ${CHOWN} root:operator ${PREFIX}/arpwatch; \ - fi - ${TOUCH} ${PREFIX}/arpwatch/arp.dat - ${CHMOD} 644 ${PREFIX}/arpwatch/arp.dat - for file in ethercodes.dat d.awk e.awk p.awk; do \ - ${INSTALL_DATA} ${WRKSRC}/$$file ${PREFIX}/arpwatch/.; \ - done - ${INSTALL_SCRIPT} ${WRKSRC}/arp2ethers ${PREFIX}/arpwatch/. - ${INSTALL_SCRIPT} ${FILESDIR}/arpwatch.sh ${PREFIX}/etc/rc.d/. - -.include <bsd.port.mk> diff --git a/net/arpwatch-devel/distinfo b/net/arpwatch-devel/distinfo deleted file mode 100644 index b968ebf46ba4..000000000000 --- a/net/arpwatch-devel/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (arpwatch-2.1a11.tar.gz) = 9ecd00db892737431b0e524f3e52e19e diff --git a/net/arpwatch-devel/files/arpwatch.sh b/net/arpwatch-devel/files/arpwatch.sh deleted file mode 100644 index 072546207aab..000000000000 --- a/net/arpwatch-devel/files/arpwatch.sh +++ /dev/null @@ -1,52 +0,0 @@ -#!/bin/sh - -if [ -r /etc/defaults/rc.conf ]; then - . /etc/defaults/rc.conf - source_rc_confs -elif [ -r /etc/rc.conf ]; then - . /etc/rc.conf -fi - -prog=$(realpath $0) || exit 1 -dir=${prog%/*} -PREFIX=${dir%/etc/rc.d} - -if [ ."$dir" = ."$prog" -o ."$PREFIX" = ."$dir" ] -then - echo "$0: Cannot determine the PREFIX" >&2 - exit 1 -fi - -case $1 in -start) - if [ ! -e "$PREFIX"/arpwatch/arp.dat ]; then - if [ -e "$PREFIX"/arpwatch/arp.dat- ]; then - cp "$PREFIX"/arpwatch/arp.dat- "$PREFIX"/arpwatch/arp.dat - else - touch "$PREFIX"/arpwarch/arp.dat - fi - fi - - case ${arpwatch_interfaces} in - '') - if [ -x "$PREFIX"/sbin/arpwatch -a -d "$PREFIX"/arpwatch ]; then - "$PREFIX"/sbin/arpwatch && echo -n ' arpwatch' - fi - ;; - *) - for interface in ${arpwatch_interfaces}; do - "$PREFIX"/sbin/arpwatch -i "${interface}" && echo -n " arpwatch(${interface})" - done - ;; - esac - ;; -stop) - killall arpwatch && echo -n ' arpwatch' - ;; -*) - echo "Usage: `basename $0` {start|stop}" >&2 - exit 64 - ;; -esac - -exit 0 diff --git a/net/arpwatch-devel/files/patch-ab b/net/arpwatch-devel/files/patch-ab deleted file mode 100644 index 76cbc814dfaf..000000000000 --- a/net/arpwatch-devel/files/patch-ab +++ /dev/null @@ -1,22 +0,0 @@ ---- Makefile.in.orig Wed Jul 29 06:16:45 1998 -+++ Makefile.in Fri Aug 21 10:57:51 1998 -@@ -44,7 +44,7 @@ - CC = @CC@ - CCOPT = @V_CCOPT@ - INCLS = -I. @V_INCLS@ --DEFS = -DDEBUG @DEFS@ -DARPDIR=\"$(ARPDIR)\" -DPATH_SENDMAIL=\"$(SENDMAIL)\" -+DEFS = @DEFS@ -DARPDIR=\"$(ARPDIR)\" -DPATH_SENDMAIL=\"$(SENDMAIL)\" - - # Standard CFLAGS - CFLAGS = $(CCOPT) $(DEFS) $(INCLS) -@@ -109,8 +109,8 @@ - $(CC) $(CFLAGS) -o $@ zap.o intoa.o -lutil - - install: force -- $(INSTALL) -m 555 -o bin -g bin arpwatch $(DESTDIR)$(BINDEST) -- $(INSTALL) -m 555 -o bin -g bin arpsnmp $(DESTDIR)$(BINDEST) -+ $(INSTALL) -s -m 555 -o bin -g bin arpwatch $(DESTDIR)$(BINDEST) -+ $(INSTALL) -s -m 555 -o bin -g bin arpsnmp $(DESTDIR)$(BINDEST) - - install-man: force - $(INSTALL) -m 444 -o bin -g bin $(srcdir)/arpwatch.8 \ diff --git a/net/arpwatch-devel/files/patch-ae b/net/arpwatch-devel/files/patch-ae deleted file mode 100644 index 3fe876affcc2..000000000000 --- a/net/arpwatch-devel/files/patch-ae +++ /dev/null @@ -1,20 +0,0 @@ ---- configure.orig Thu Jun 15 01:37:53 2000 -+++ configure Tue Sep 5 02:57:33 2000 -@@ -649,7 +649,7 @@ - : - fi - -- V_CCOPT="-O" -+# V_CCOPT="-O" - V_INCLS="" - if test "${srcdir}" != "." ; then - V_INCLS="-I\$\(srcdir\)" -@@ -2599,7 +2599,7 @@ - fi - V_CCOPT="$V_CCOPT -Wall" - if test $ac_cv_lbl_gcc_vers -gt 1 ; then -- V_CCOPT="$V_CCOPT -Wmissing-prototypes -Wstrict-prototypes" -+# V_CCOPT="$V_CCOPT -Wmissing-prototypes -Wstrict-prototypes" - fi - fi - else diff --git a/net/arpwatch-devel/files/patch-af b/net/arpwatch-devel/files/patch-af deleted file mode 100644 index 0beb9378c27a..000000000000 --- a/net/arpwatch-devel/files/patch-af +++ /dev/null @@ -1,8 +0,0 @@ ---- ethercodes.dat.orig Tue Mar 21 02:37:05 2000 -+++ ethercodes.dat Thu Sep 14 11:18:09 2000 -@@ -897,3 +897,5 @@ - c0:0:0 Western Digital (may be reversed 00 00 C0?) - e2:c:f Kingston Technologies - ec:10:0 Enance Source Co., Ltd. PC clones(?) -+0:bd:11 VMWare Inc -+0:bd:fb VMWare Inc diff --git a/net/arpwatch-devel/files/patch-ag b/net/arpwatch-devel/files/patch-ag deleted file mode 100644 index bbd68993bc74..000000000000 --- a/net/arpwatch-devel/files/patch-ag +++ /dev/null @@ -1,39 +0,0 @@ ---- arpwatch.c.orig Thu Feb 22 22:47:29 2001 -+++ arpwatch.c Thu Feb 22 22:47:29 2001 -@@ -107,6 +107,8 @@ - - char *prog; - -+char *Watcher = NULL; -+ - int can_checkpoint; - int swapped; - int nobogons; -@@ -170,7 +172,7 @@ - interface = NULL; - rfilename = NULL; - pd = NULL; -- while ((op = getopt(argc, argv, "df:i:n:Nr:")) != EOF) -+ while ((op = getopt(argc, argv, "df:i:m:n:Nr:")) != EOF) - switch (op) { - - case 'd': -@@ -202,6 +204,10 @@ - rfilename = optarg; - break; - -+ case 'm': -+ Watcher = optarg; -+ break; -+ - default: - usage(); - } -@@ -751,6 +757,6 @@ - - (void)fprintf(stderr, "Version %s\n", version); - (void)fprintf(stderr, "usage: %s [-dN] [-f datafile] [-i interface]" -- " [-n net[/width]] [-r file]\n", prog); -+ " [-m email] [-n net[/width]] [-r file]\n", prog); - exit(1); - } diff --git a/net/arpwatch-devel/files/patch-ah b/net/arpwatch-devel/files/patch-ah deleted file mode 100644 index 0dd2433a689f..000000000000 --- a/net/arpwatch-devel/files/patch-ah +++ /dev/null @@ -1,20 +0,0 @@ ---- report.c.orig Sun Oct 1 00:41:10 2000 -+++ report.c Thu Feb 22 22:47:29 2001 -@@ -70,6 +70,8 @@ - - #define PLURAL(n) ((n) == 1 || (n) == -1 ? "" : "s") - -+extern char *Watcher; -+ - static int cdepth; /* number of outstanding children */ - - static char *fmtdate(time_t); -@@ -240,7 +242,7 @@ - register FILE *f; - char tempfile[64], cpu[64], os[64]; - char *fmt = "%20s: %s\n"; -- char *watcher = WATCHER; -+ char *watcher = Watcher ? Watcher : WATCHER; - char *watchee = WATCHEE; - char *sendmail = PATH_SENDMAIL; - char *unknown = "<unknown>"; diff --git a/net/arpwatch-devel/files/patch-ai b/net/arpwatch-devel/files/patch-ai deleted file mode 100644 index ef251223d844..000000000000 --- a/net/arpwatch-devel/files/patch-ai +++ /dev/null @@ -1,39 +0,0 @@ ---- arpsnmp.c.orig Mon Jan 18 01:47:40 1999 -+++ arpsnmp.c Thu Feb 22 22:47:29 2001 -@@ -68,6 +68,8 @@ - - char *prog; - -+char *Watcher; -+ - extern int optind; - extern int opterr; - extern char *optarg; -@@ -90,7 +92,7 @@ - } - - opterr = 0; -- while ((op = getopt(argc, argv, "df:")) != EOF) -+ while ((op = getopt(argc, argv, "df:m:")) != EOF) - switch (op) { - - case 'd': -@@ -105,6 +107,10 @@ - arpfile = optarg; - break; - -+ case 'm': -+ Watcher = optarg; -+ break; -+ - default: - usage(); - } -@@ -184,6 +190,6 @@ - - (void)fprintf(stderr, "Version %s\n", version); - (void)fprintf(stderr, -- "usage: %s [-d] [-f datafile] file [...]\n", prog); -+ "usage: %s [-d] [-f datafile] [-m email] file [...]\n", prog); - exit(1); - } diff --git a/net/arpwatch-devel/files/patch-aj b/net/arpwatch-devel/files/patch-aj deleted file mode 100644 index 85e34bf47345..000000000000 --- a/net/arpwatch-devel/files/patch-aj +++ /dev/null @@ -1,25 +0,0 @@ ---- arpwatch.8.orig Sun Oct 8 21:31:28 2000 -+++ arpwatch.8 Thu Feb 22 22:47:29 2001 -@@ -38,6 +38,9 @@ - .br - .ti +8 - [ -+.B -m -+.I email -+] [ - .B -n - .IR net [/ width - ]] [ -@@ -69,6 +72,12 @@ - The - .B -i - flag is used to override the default interface. -+.LP -+The -+.B -m -+flag specifies the address that will receive the emails. -+The default is -+.IR root . - .LP - The - .B -n diff --git a/net/arpwatch-devel/files/patch-ak b/net/arpwatch-devel/files/patch-ak deleted file mode 100644 index 50b504b27435..000000000000 --- a/net/arpwatch-devel/files/patch-ak +++ /dev/null @@ -1,25 +0,0 @@ ---- arpsnmp.8.orig Sun Sep 17 21:34:48 2000 -+++ arpsnmp.8 Thu Feb 22 22:47:29 2001 -@@ -30,6 +30,9 @@ - ] [ - .B -f - .I datafile -+] [ -+.B -m -+.I email - ] - .I file - [ -@@ -54,6 +57,12 @@ - flag is used to set the ethernet/ip address database filename. - The default is - .IR arp.dat . -+.LP -+The -+.B -m -+flag specifies the address that will receive the emails. -+The default is -+.IR root . - .LP - Note that an empty - .I arp.dat diff --git a/net/arpwatch-devel/pkg-comment b/net/arpwatch-devel/pkg-comment deleted file mode 100644 index 73ccdb9c117c..000000000000 --- a/net/arpwatch-devel/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Monitor arp & rarp requests diff --git a/net/arpwatch-devel/pkg-descr b/net/arpwatch-devel/pkg-descr deleted file mode 100644 index 1e2e8138080c..000000000000 --- a/net/arpwatch-devel/pkg-descr +++ /dev/null @@ -1,21 +0,0 @@ -ARPWATCH 2.0 -Lawrence Berkeley National Laboratory -Network Research Group -arpwatch@ee.lbl.gov -ftp://ftp.ee.lbl.gov/arpwatch.tar.Z - -This directory contains source code for arpwatch and arpsnmp, tools -that monitors ethernet activity and maintain a database of ethernet/ip -address pairings. It also reports certain changes via email. - -Arpsnmp has the same database features of arpwatch but relies on an -external agent to collect the arp data. This distribution contains a -script, arpfetch, that uses snmpwalk from the CMU SNMP package. This -package is available from: - - ftp://ftp.net.cmu.edu/pub/snmp-dist/cmu-snmp*.tar.Z - -It should be trivial to adaptive the output of any snmp query program -for use with arpsnmp. - -Please send bugs and comments to arpwatch@ee.lbl.gov. diff --git a/net/arpwatch-devel/pkg-plist b/net/arpwatch-devel/pkg-plist deleted file mode 100644 index d186c231e5fc..000000000000 --- a/net/arpwatch-devel/pkg-plist +++ /dev/null @@ -1,11 +0,0 @@ -sbin/arpwatch -sbin/arpsnmp -arpwatch/arp2ethers -arpwatch/ethercodes.dat -arpwatch/d.awk -arpwatch/e.awk -arpwatch/p.awk -etc/rc.d/arpwatch.sh -@unexec test -f %D/arpwatch/arp.dat && test -s %D/arpwatch/arp.dat || rm -f %D/arpwatch/arp.dat -@exec test -f %D/arpwatch/arp.dat || touch %D/arpwatch/arp.dat -@dirrm arpwatch diff --git a/net/ayttm/Makefile b/net/ayttm/Makefile deleted file mode 100644 index 11bdbad5df59..000000000000 --- a/net/ayttm/Makefile +++ /dev/null @@ -1,28 +0,0 @@ -# New ports collection makefile for: everybuddy -# Date created: 1 Mar 2000 -# Whom: Jim Mock <jim@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= everybuddy -PORTVERSION= 0.2.1b6 -CATEGORIES= net -MASTER_SITES= http://www.everybuddy.com/files/ -DISTNAME= ${PORTNAME}-${PORTVERSION:S/b/beta/} - -MAINTAINER= jim@FreeBSD.org - -USE_X_PREFIX= yes -USE_GMAKE= yes -USE_GTK= yes -GNU_CONFIGURE= yes -CONFIGURE_ENV= CFLAGS="${CFLAGS} ${PTHREAD_CFLAGS}" - -MAN1= everybuddy.1 - -pre-patch: - @${PERL} -pi -e 's|-lpthread|${PTHREAD_LIBS:S/"//g}|g; \ - s|-lpthreads|${PTHREAD_LIBS:S/"//g}|g' ${WRKSRC}/configure - -.include <bsd.port.mk> diff --git a/net/ayttm/distinfo b/net/ayttm/distinfo deleted file mode 100644 index 595bb075b76a..000000000000 --- a/net/ayttm/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (everybuddy-0.2.1beta6.tar.gz) = f9f020a184459a9289fbdd9b62cf0bfb diff --git a/net/ayttm/files/patch-aa b/net/ayttm/files/patch-aa deleted file mode 100644 index df24355206ae..000000000000 --- a/net/ayttm/files/patch-aa +++ /dev/null @@ -1,11 +0,0 @@ ---- configure.orig Mon Jun 18 13:40:19 2001 -+++ configure Mon Jun 18 13:44:04 2001 -@@ -3437,7 +3437,7 @@ - EB_LIBS="$LIBS -L../libmsn -lmsn -L../libyahoo -lyahoo -L../libproxy -lproxy -L../libtoc -ltoc -L../libicq -licq -L../libjabber -lEBjabber -ljabber -L../libxode -lxode -L../zephyr -lzephyr" - EB_LDADD="$LDADD" - --EB_CFLAGS="$EB_CFLAGS -D_REENTRANT -Wall -g " -+EB_CFLAGS="$EB_CFLAGS -D_REENTRANT -Wall" - - esd_val=yes - # Check whether --enable-esd or --disable-esd was given. diff --git a/net/ayttm/files/patch-ae b/net/ayttm/files/patch-ae deleted file mode 100644 index 0079b278ac7a..000000000000 --- a/net/ayttm/files/patch-ae +++ /dev/null @@ -1,14 +0,0 @@ ---- Makefile.am.orig Sun Oct 15 13:46:35 2000 -+++ Makefile.am Sun Oct 15 13:46:52 2000 -@@ -1,8 +1,8 @@ - SUBDIRS = pixmaps m4 libproxy libtoc libicq libyahoo libmsn sounds doc src - ACLOCAL_AMFLAGS = -I m4 - --Utilitiesdir = /etc/X11/applnk/Internet --Utilities_DATA = Everybuddy.desktop -+Utilitiesdir = -+Utilities_DATA = - - --EXTRA_DIST = Everybuddy.desktop -+EXTRA_DIST = diff --git a/net/ayttm/files/patch-ag b/net/ayttm/files/patch-ag deleted file mode 100644 index c7015ce37ecf..000000000000 --- a/net/ayttm/files/patch-ag +++ /dev/null @@ -1,10 +0,0 @@ ---- pixmaps/Makefile.am.orig Mon Jun 18 13:54:21 2001 -+++ pixmaps/Makefile.am Mon Jun 18 13:54:43 2001 -@@ -6,5 +6,5 @@ - msn_online.xpm msn_away.xpm tb_mail_send.xpm tb_search.xpm \ - line-wrap.xbm line-arrow.xbm ebicon.png jabber_online.xpm jabber_away.xpm \ - ebicon.png zephyr_online.xpm zephyr_hidden.xpm zephyr_offline.xpm --Utilitiesdir = $(datadir)/pixmaps --Utilities_DATA = ebicon.png -+Utilitiesdir = -+Utilities_DATA = diff --git a/net/ayttm/pkg-comment b/net/ayttm/pkg-comment deleted file mode 100644 index 008ed1484b41..000000000000 --- a/net/ayttm/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -A "chat" program that combines AIM, ICQ, and Yahoo! Chat into one diff --git a/net/ayttm/pkg-descr b/net/ayttm/pkg-descr deleted file mode 100644 index 0451ea2b1ea6..000000000000 --- a/net/ayttm/pkg-descr +++ /dev/null @@ -1,8 +0,0 @@ -Everybuddy is a chat application that "combines" several different ones -including AIM, ICQ, and Yahoo! Chat. It also has file transfers between -other Everybuddy users, and planned support for file transfers to other -users. - -WWW: http://www.everybuddy.com/ - -- jim <jim@FreeBSD.org> diff --git a/net/ayttm/pkg-plist b/net/ayttm/pkg-plist deleted file mode 100644 index 7a67338ad068..000000000000 --- a/net/ayttm/pkg-plist +++ /dev/null @@ -1,9 +0,0 @@ -bin/everybuddy -bin/update.pl -bin/contact-update.pl -share/sounds/everybuddy/BuddyArrive.au -share/sounds/everybuddy/BuddyLeave.au -share/sounds/everybuddy/Send.au -share/sounds/everybuddy/Receive.au -@dirrm share/sounds/everybuddy -@dirrm share/sounds diff --git a/net/citrix_xenapp/Makefile b/net/citrix_xenapp/Makefile deleted file mode 100644 index d0862eae8087..000000000000 --- a/net/citrix_xenapp/Makefile +++ /dev/null @@ -1,46 +0,0 @@ -# New ports collection makefile for: Citrix(R) ICA(R) Client -# Date created: 20 Sep 1998 -# Whom: msmith -# -# $FreeBSD$ -# - -PORTNAME= citrix_ica -PORTVERSION= 6.0.908 -CATEGORIES= net comms linux -MASTER_SITES= -DISTNAME= linuxx86 - -MAINTAINER= mb@imp.ch - -RUN_DEPENDS= /compat/linux/lib/libc.so.6:${PORTSDIR}/emulators/linux_base - -ONLY_FOR_ARCHS= i386 -RESTRICTED= "License prohibits redistribution" -IS_INTERACTIVE= "Noisy license agreement ignores stdin" - -DIST_SUBDIR= citrix_ica -NO_WRKSUBDIR= yes -NO_BUILD= yes - -CDIR= ${PREFIX}/ICAClient -BINDIR= ${PREFIX}/bin - -.include <bsd.port.pre.mk> - -.if !exists(${DISTDIR}/${DIST_SUBDIR}/${DISTNAME}${EXTRACT_SUFX}) -IGNORE='The distribution file for this port may not be automatically fetched due to licensing restrictions. You MUST fetch the file manually after reading and agreeing to the license at: http://www.citrix.com/download/bin/license.asp?client=linux Once ${DISTFILES} has been downloaded, move it to ${DISTDIR}/${DIST_SUBDIR} and then restart this build.' -.endif - -do-install: - ${SED} s%DESTINATION%${CDIR}% < ${FILESDIR}/response \ - > ${WRKSRC}/response - ${SED} s%DESTINATION%${CDIR}% < ${FILESDIR}/wfcmgr \ - > ${WRKSRC}/wfcmgr.x - ${SED} s%DESTINATION%${CDIR}% < ${FILESDIR}/wfica \ - > ${WRKSRC}/wfica.x - cd ${WRKSRC} && ${LINUXBASE}/bin/sh -c './setupwfc < response' - ${INSTALL_SCRIPT} ${WRKSRC}/wfcmgr.x ${PREFIX}/bin/wfcmgr - ${INSTALL_SCRIPT} ${WRKSRC}/wfica.x ${PREFIX}/bin/wfica - -.include <bsd.port.post.mk> diff --git a/net/citrix_xenapp/distinfo b/net/citrix_xenapp/distinfo deleted file mode 100644 index 09151aa51587..000000000000 --- a/net/citrix_xenapp/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (citrix_ica/linuxx86.tar.gz) = cd26657c3436a34f7a0b1d5084189678 diff --git a/net/citrix_xenapp/files/response b/net/citrix_xenapp/files/response deleted file mode 100644 index 359acaa7500f..000000000000 --- a/net/citrix_xenapp/files/response +++ /dev/null @@ -1,7 +0,0 @@ -1 -DESTINATION -y -y -y -y -3 diff --git a/net/citrix_xenapp/files/wfcmgr b/net/citrix_xenapp/files/wfcmgr deleted file mode 100644 index 70248171d687..000000000000 --- a/net/citrix_xenapp/files/wfcmgr +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/sh -export ICAROOT=DESTINATION -exec $ICAROOT/wfcmgr diff --git a/net/citrix_xenapp/files/wfica b/net/citrix_xenapp/files/wfica deleted file mode 100644 index 35be9df3a8b2..000000000000 --- a/net/citrix_xenapp/files/wfica +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/sh -export ICAROOT=DESTINATION -exec $ICAROOT/wfica diff --git a/net/citrix_xenapp/pkg-comment b/net/citrix_xenapp/pkg-comment deleted file mode 100644 index 70d23f88a95f..000000000000 --- a/net/citrix_xenapp/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Citrix(R) client for the Microsoft Windows Terminal Server diff --git a/net/citrix_xenapp/pkg-descr b/net/citrix_xenapp/pkg-descr deleted file mode 100644 index 35b3b42ba57d..000000000000 --- a/net/citrix_xenapp/pkg-descr +++ /dev/null @@ -1,15 +0,0 @@ -Citrix(R) MetaFrame(TM) is thin-client/server system software for -Microsoft's Windows NT Server 4.0, Terminal Server Edition. -MetaFrame(TM) delivers a comprehensive thin-client/server solution to -the enterprise by extending Windows Terminal Server with additional -client and server functionality - including support for heterogeneous -computing environments, enterprise-scale management and seamless -desktop integration. MetaFrame(TM) transforms the way organizations -deploy, manage and access business applications by providing improved -application manageability, access, performance and security. Citrix(R) -MetaFrame(TM) system software, which incorporates Citrix's Independent -Computing Architecture (ICA)(R), provides a complete -thin-client/server computing solution for multi-user NT 4.0 -environments. - -WWW: http://www.citrix.com/products/metaframe.asp diff --git a/net/citrix_xenapp/pkg-plist b/net/citrix_xenapp/pkg-plist deleted file mode 100644 index 49cb4fc4e6ee..000000000000 --- a/net/citrix_xenapp/pkg-plist +++ /dev/null @@ -1,228 +0,0 @@ -@unexec if [ -f %D/lib/netscape/mime.types ]; then (cat %D/lib/netscape/mime.types | grep -v "application/x-ica" > %D/lib/netscape/mime.types.tmp; mv %D/lib/netscape/mime.types.tmp %D/lib/netscape/mime.types); fi -@unexec if [ -f %D/lib/netscape/mailcap ]; then (cat %D/lib/netscape/mailcap | grep -v "application/x-ica" > %D/lib/netscape/mailcap.tmp; mv %D/lib/netscape/mailcap.tmp %D/lib/netscape/mailcap); fi -bin/wfcmgr -bin/wfica -ICAClient/wfica -ICAClient/wfcmgr -ICAClient/npica.so -ICAClient/Wfica.ad -ICAClient/Wfcmgr.ad -ICAClient/Npica.ad -ICAClient/readme.txt -ICAClient/eula.txt -ICAClient/install.txt -ICAClient/util/hinst -ICAClient/util/echo_cmd -ICAClient/util/icalicense.sh -ICAClient/util/xcapture -ICAClient/util/XCapture.ad -ICAClient/setupwfc -ICAClient/config/appsrv.ini -ICAClient/config/module.ini -ICAClient/config/wfclient.ini -ICAClient/config/.server -ICAClient/.config/appsrv.ini -ICAClient/.config/module.ini -ICAClient/.config/wfclient.ini -ICAClient/.config/keyboard.ini -ICAClient/keyboard/age2.kbd -ICAClient/keyboard/agex2.kbd -ICAClient/keyboard/dcint401.kbd -ICAClient/keyboard/dcintpcx.kbd -ICAClient/keyboard/dcus401.kbd -ICAClient/keyboard/dcuspcx.kbd -ICAClient/keyboard/dec401.kbd -ICAClient/keyboard/dec401uk.kbd -ICAClient/keyboard/decpcx.kbd -ICAClient/keyboard/decpcxuk.kbd -ICAClient/keyboard/dgfr.kbd -ICAClient/keyboard/dggr.kbd -ICAClient/keyboard/dguk.kbd -ICAClient/keyboard/dgus.kbd -ICAClient/keyboard/dg.kbd -ICAClient/keyboard/hpfritf.kbd -ICAClient/keyboard/hpgritf.kbd -ICAClient/keyboard/hpint101.kbd -ICAClient/keyboard/hpintps2.kbd -ICAClient/keyboard/hpukitf.kbd -ICAClient/keyboard/hpus101.kbd -ICAClient/keyboard/hpusitf.kbd -ICAClient/keyboard/hpusps2.kbd -ICAClient/keyboard/hp101.kbd -ICAClient/keyboard/hpitf.kbd -ICAClient/keyboard/hpps2.kbd -ICAClient/keyboard/hpuk101.kbd -ICAClient/keyboard/hpukps2.kbd -ICAClient/keyboard/ibm.kbd -ICAClient/keyboard/keyboard.ini -ICAClient/keyboard/linux.kbd -ICAClient/keyboard/netbsd.kbd -ICAClient/keyboard/mac101.kbd -ICAClient/keyboard/ncdn-101.kbd -ICAClient/keyboard/ncdn-102.kbd -ICAClient/keyboard/scoos5.kbd -ICAClient/keyboard/scouw2.kbd -ICAClient/keyboard/sg.kbd -ICAClient/keyboard/sgindyfr.kbd -ICAClient/keyboard/sgindygr.kbd -ICAClient/keyboard/sgindyuk.kbd -ICAClient/keyboard/sgindyus.kbd -ICAClient/keyboard/sgindy.kbd -ICAClient/keyboard/sngr.kbd -ICAClient/keyboard/sparcfr4.kbd -ICAClient/keyboard/sparcfr5.kbd -ICAClient/keyboard/sparcgr4.kbd -ICAClient/keyboard/sparcgr5.kbd -ICAClient/keyboard/sparcuk4.kbd -ICAClient/keyboard/sparcuk5.kbd -ICAClient/keyboard/sparcus3.kbd -ICAClient/keyboard/sparcus4.kbd -ICAClient/keyboard/sparcus5.kbd -ICAClient/keyboard/sparc3.kbd -ICAClient/keyboard/sparc4.kbd -ICAClient/keyboard/sparc5.kbd -ICAClient/keyboard/trimodal.kbd -ICAClient/keyboard/automatic.kbd -ICAClient/help/contents.htm -ICAClient/help/ctx00013.htm -ICAClient/help/ctx00014.htm -ICAClient/help/ctx00015.htm -ICAClient/help/ctx00016.htm -ICAClient/help/ctx00017.htm -ICAClient/help/ctx00018.htm -ICAClient/help/ctx00019.htm -ICAClient/help/ctx00020.htm -ICAClient/help/ctx00021.htm -ICAClient/help/ctx00022.htm -ICAClient/help/ctx00023.htm -ICAClient/help/ctx00025.htm -ICAClient/help/ctx00026.htm -ICAClient/help/ctx00027.htm -ICAClient/help/ctx00028.htm -ICAClient/help/ctx00029.htm -ICAClient/help/ctx00030.htm -ICAClient/help/ctx00031.htm -ICAClient/help/ctx00032.htm -ICAClient/help/ctx00033.htm -ICAClient/help/ctx00034.htm -ICAClient/help/ctx00035.htm -ICAClient/help/ctx00195.htm -ICAClient/help/ctx00196.htm -ICAClient/help/ctx00197.htm -ICAClient/help/ctx00198.htm -ICAClient/help/ctx00199.htm -ICAClient/help/ctx00200.htm -ICAClient/help/ctx00201.htm -ICAClient/help/ctx00202.htm -ICAClient/help/ctx00203.htm -ICAClient/help/ctx00204.htm -ICAClient/help/ctx00205.htm -ICAClient/help/ctx00206.htm -ICAClient/help/ctx00207.htm -ICAClient/help/ctx00208.htm -ICAClient/help/ctx00209.htm -ICAClient/help/ctx00210.htm -ICAClient/help/ctx00211.htm -ICAClient/help/index.htm -ICAClient/help/1a.gif -ICAClient/help/3a.gif -ICAClient/help/3b.gif -ICAClient/help/3c.gif -ICAClient/help/3d.gif -ICAClient/help/3f.gif -ICAClient/help/3g.gif -ICAClient/help/3h.gif -ICAClient/help/3i.gif -ICAClient/help/3l.gif -ICAClient/help/3m.gif -ICAClient/help/3n.gif -ICAClient/help/3o.gif -ICAClient/help/3p.gif -ICAClient/help/3q.gif -ICAClient/help/3r.gif -ICAClient/help/3s.gif -ICAClient/help/3t.gif -ICAClient/help/3u.gif -ICAClient/help/3v.gif -ICAClient/help/3w.gif -ICAClient/help/3x.gif -ICAClient/help/3y.gif -ICAClient/help/4a.gif -ICAClient/help/4b.gif -ICAClient/help/4c.gif -ICAClient/help/4d.gif -ICAClient/help/4e.gif -ICAClient/help/4f.gif -ICAClient/help/4g.gif -ICAClient/help/4h.gif -ICAClient/help/4i.gif -ICAClient/help/4k.gif -ICAClient/help/DIGITAL.gif -ICAClient/help/HP.gif -ICAClient/help/IBM.gif -ICAClient/help/SG.gif -ICAClient/help/SCO.gif -ICAClient/help/SPARC.gif -ICAClient/help/LINUX.gif -ICAClient/help/contents.gif -ICAClient/help/index.gif -ICAClient/help/index_a.gif -ICAClient/help/index_b.gif -ICAClient/help/index_c.gif -ICAClient/help/index_d.gif -ICAClient/help/index_e.gif -ICAClient/help/index_f.gif -ICAClient/help/index_g.gif -ICAClient/help/index_h.gif -ICAClient/help/index_i.gif -ICAClient/help/index_j.gif -ICAClient/help/index_k.gif -ICAClient/help/index_l.gif -ICAClient/help/index_m.gif -ICAClient/help/index_n.gif -ICAClient/help/index_o.gif -ICAClient/help/index_p.gif -ICAClient/help/index_q.gif -ICAClient/help/index_r.gif -ICAClient/help/index_s.gif -ICAClient/help/index_t.gif -ICAClient/help/index_u.gif -ICAClient/help/index_v.gif -ICAClient/help/index_w.gif -ICAClient/help/index_x.gif -ICAClient/help/index_y.gif -ICAClient/help/index_z.gif -ICAClient/help/next0.gif -ICAClient/help/next1.gif -ICAClient/help/prev0.gif -ICAClient/help/prev1.gif -ICAClient/help/sett_cdm.gif -ICAClient/help/sett_cache.gif -ICAClient/help/prop_conn.gif -ICAClient/help/comport.gif -ICAClient/help/firewall.gif -ICAClient/help/hotkeys.gif -ICAClient/help/login.gif -ICAClient/help/settings_diskc.gif -ICAClient/help/properties_network.gif -ICAClient/icons/ica16.xpm -ICAClient/icons/ica32.xpm -ICAClient/icons/ica48.xpm -ICAClient/icons/ica64.xpm -ICAClient/PDCRYPT1.DLL -ICAClient/PDCRYPT2.DLL -ICAClient/pkginf/Ver.core.linuxx86 -ICAClient/pkginf/F.core.linuxx86 -ICAClient/util/XCapture -ICAClient/Wfica -ICAClient/Wfcmgr -ICAClient/Npica -@dirrm ICAClient/util -@dirrm ICAClient/config -@dirrm ICAClient/.config -@dirrm ICAClient/cache -@dirrm ICAClient/keyboard -@dirrm ICAClient/help -@dirrm ICAClient/icons -@dirrm ICAClient/pkginf -@dirrm ICAClient diff --git a/net/ekiga/Makefile b/net/ekiga/Makefile deleted file mode 100644 index 34f3c2d3e310..000000000000 --- a/net/ekiga/Makefile +++ /dev/null @@ -1,34 +0,0 @@ -# Ports collection Makefile for: gnomemeeting -# Date created: 24/07/2001 -# Whom: roger@FreeBSD.org -# -# $FreeBSD$ -# - -PORTNAME= gnomemeeting -PORTVERSION= 0.10 -CATEGORIES= net gnome -MASTER_SITES= http://130.104.229.225/gnomemeeting/downloads/0.10/sources/ \ - ftp://telepresence.dmem.strath.ac.uk/pub/openh323/ - -MAINTAINER= roger@FreeBSD.org - -LIB_DEPENDS= ldap.1:${PORTSDIR}/net/openldap \ - gdk_pixbuf.2:${PORTSDIR}/graphics/gdk-pixbuf/ - -BUILD_DEPENDS= ${NONEXISTENT}:${PORTSDIR}/net/openh323:build - -# note, we do not want to clean openh323, otherwise it has to build -# it all over again which can take several hours. -NOCLEANDEPENDS= yes - -USE_NEWGCC= yes -USE_GNOME= yes -USE_AUTOCONF= yes -USE_GTK= yes -USE_GMAKE= yes -CONFIGURE_ENV= LIBS=-L${PREFIX}/lib \ - PWLIBDIR=${WRKDIRPREFIX}${.CURDIR}/../openh323/work/pwlib \ - OPENH323DIR=${WRKDIRPREFIX}${.CURDIR}/../openh323/work/openh323 \ - -.include <bsd.port.mk> diff --git a/net/ekiga/distinfo b/net/ekiga/distinfo deleted file mode 100644 index e23ad8317204..000000000000 --- a/net/ekiga/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (gnomemeeting-0.10.tar.gz) = 1d14f7ade38a7b7033825b9550c7da59 diff --git a/net/ekiga/files/patch-aa b/net/ekiga/files/patch-aa deleted file mode 100644 index 2bf26cd444d1..000000000000 --- a/net/ekiga/files/patch-aa +++ /dev/null @@ -1,78 +0,0 @@ -*** configure.in.orig Sat Aug 18 00:20:58 2001 ---- configure.in Mon Aug 20 14:50:48 2001 -*************** AC_HEADER_STDC -*** 27,38 **** - AC_ARG_PROGRAM - - -! H323_INCLUDES="-I$PTLIB_INCLUDE_DIR/unix -I$PTLIB_INCLUDE_DIR/.. -I$PTLIB_INCLUDE_DIR/../ptclib -I/usr/include -I$OPENH323_INCLUDE_DIR" -! H323_LIBS="-lh323_linux_x86_r -ldl -lpt_linux_x86_r -lpthread" - - -! LDAP_INCLUDES="-I/usr/local/include" -! LDAP_LIBS="-lldap -llber -lresolv" - - GNOMEMEETING_INCLUDES="" - GNOMEMEETING_LDADD="" ---- 27,38 ---- - AC_ARG_PROGRAM - - -! H323_INCLUDES="-I$PWLIBDIR/include/ptlib/unix -I$PWLIBDIR/include -I$OPENH323DIR/include" -! H323_LIBS="-L$PWLIBDIR/lib -L$OPENH323DIR/lib -lh323_FreeBSD_x86_r -lpt_FreeBSD_x86_r -pthread -lssl -lcrypto -DP_SSL" - - -! LDAP_INCLUDES="-I/usr/include -I/usr/local/include" -! LDAP_LIBS="-L/usr/local/lib -lldap -llber" - - GNOMEMEETING_INCLUDES="" - GNOMEMEETING_LDADD="" -*************** dnl * -D_DEBUG -DPMEMORY_CHECK=1 -DPTRAC -*** 46,60 **** - dnl ************************************************************************* - - -! H323_CFLAGS="-DP_LINUX -m486 -D_REENTRANT -DP_HAS_SEMAPHORES -DP_PTHREADS -DPBYTE_ORDER=PLITTLE_ENDIAN -DHAS_OSS -O2" -! - - dnl ********************************************************************* - dnl ** GNOME ************************************************************ - dnl ********************************************************************* - -! GNOMEMEETING_INCLUDES="$H323_INCLUDES $H323_CFLAGS" -! GNOMEMEETING_LDADD="$GNOME_LIBDIR $GTK_LIBS $GNOMEGNORBA_LIBS $GNOME_APPLETS_LIBS $LDAP_LIBS $H323_LIBS `gtk-config --libs gthread`" - - GNOME_COMPILE_WARNINGS - GNOME_X_CHECKS ---- 46,59 ---- - dnl ************************************************************************* - - -! H323_CFLAGS="-DP_FREEBSD=400001 -DP_PTHREADS -DPBYTE_ORDER=PLITTLE_ENDIAN -DPTRACING -02 -DNDEBUG" - - dnl ********************************************************************* - dnl ** GNOME ************************************************************ - dnl ********************************************************************* - -! GNOMEMEETING_INCLUDES="$LDAP_INCLUDES $H323_INCLUDES $H323_CFLAGS" -! GNOMEMEETING_LDADD="$GNOME_LIBDIR $GTK_LIBS $GNOMEGNORBA_LIBS $GNOME_APPLETS_LIBS $LDAP_LIBS $H323_LIBS `gtk12-config --libs gthread`" - - GNOME_COMPILE_WARNINGS - GNOME_X_CHECKS -*************** AM_PROG_LIBTOOL -*** 64,70 **** - dnl ######################################################################### - dnl Check for LDAP if available. - dnl ######################################################################## -! AC_CHECK_LIB(resolv, res_gethostbyaddr, [LIBS="-lresolv $LIBS"], AC_MSG_ERROR([*** libresolv not found.]), -lresolv) - - AC_CHECK_LIB(ldap, ldap_simple_bind, LIBS="-lldap -llber $LIBS", AC_MSG_ERROR([*** LDAP library is not found.]), -llber) - ---- 63,69 ---- - dnl ######################################################################### - dnl Check for LDAP if available. - dnl ######################################################################## -! dnl AC_CHECK_LIB(resolv, res_gethostbyaddr, [LIBS="-lresolv $LIBS"], AC_MSG_ERROR([*** libresolv not found.]), -lresolv) - - AC_CHECK_LIB(ldap, ldap_simple_bind, LIBS="-lldap -llber $LIBS", AC_MSG_ERROR([*** LDAP library is not found.]), -llber) - diff --git a/net/ekiga/files/patch-ad b/net/ekiga/files/patch-ad deleted file mode 100644 index 90a3118a4274..000000000000 --- a/net/ekiga/files/patch-ad +++ /dev/null @@ -1,18 +0,0 @@ -*** src/audio.h.orig Fri Aug 17 20:08:26 2001 ---- src/audio.h Mon Aug 20 07:54:33 2001 -*************** -*** 21,27 **** ---- 21,33 ---- - #define _AUDIO_H_ - - -+ #ifdef __linux__ - #include <linux/soundcard.h> -+ #endif -+ #ifdef __FreeBSD__ -+ #include <machine/soundcard.h> -+ #endif -+ - - - #include <sys/ioctl.h> diff --git a/net/ekiga/files/patch-ae b/net/ekiga/files/patch-ae deleted file mode 100644 index 9a8d68f49ca4..000000000000 --- a/net/ekiga/files/patch-ae +++ /dev/null @@ -1,17 +0,0 @@ -*** src/webcam.h.orig Mon Aug 20 07:55:24 2001 ---- src/webcam.h Mon Aug 20 07:55:51 2001 -*************** -*** 23,29 **** ---- 23,34 ---- - #include <fcntl.h> - #include <unistd.h> - -+ #ifdef __linux__ - #include <linux/videodev.h> -+ #endif -+ #ifdef __FreeBSD__ -+ #include <machine/ioctl_meteor.h> -+ #endif - - #include <sys/ioctl.h> - #include <gtk/gtk.h> diff --git a/net/ekiga/files/patch-ai b/net/ekiga/files/patch-ai deleted file mode 100644 index 77763d4e07fa..000000000000 --- a/net/ekiga/files/patch-ai +++ /dev/null @@ -1,41 +0,0 @@ -*** src/config.cpp.orig Mon Aug 13 17:19:15 2001 ---- src/config.cpp Fri Aug 17 18:03:23 2001 -*************** void read_config (options *opts) -*** 161,167 **** - // Do not free key and value as they are assigned as pointers to opts->audio_codecs - cpt++; - } -! - } - - ---- 161,175 ---- - // Do not free key and value as they are assigned as pointers to opts->audio_codecs - cpt++; - } -! -! /* handle old config files which do not have a Devices section */ -! if(opts->audio_device == NULL) opts->audio_device="/dev/dsp"; -! if(opts->audio_mixer == NULL) opts->audio_mixer="/dev/mixer"; -! #ifdef __linux__ -! if(opts->video_device == NULL) opts->video_device="/dev/video"; -! #else -! if(opts->video_device == NULL) opts->video_device="/dev/bktr0"; -! #endif - } - - -*************** void init_config (void) -*** 419,425 **** ---- 427,437 ---- - - gnome_config_set_string ("Devices/audio_device", "/dev/dsp"); - gnome_config_set_string ("Devices/audio_mixer", "/dev/mixer"); -+ #ifdef __linux__ - gnome_config_set_string ("Devices/video_device", "/dev/video"); -+ #else -+ gnome_config_set_string ("Devices/video_device", "/dev/bktr0"); -+ #endif - gnome_config_set_int ("Devices/video_channel", 0); - - gnome_config_set_string ("Placement/Dock", diff --git a/net/ekiga/pkg-comment b/net/ekiga/pkg-comment deleted file mode 100644 index bec41f50ea5b..000000000000 --- a/net/ekiga/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -GNOME H323 Video Conferencing program, similar to NetMeeting diff --git a/net/ekiga/pkg-descr b/net/ekiga/pkg-descr deleted file mode 100644 index edc41ed20bbd..000000000000 --- a/net/ekiga/pkg-descr +++ /dev/null @@ -1,11 +0,0 @@ -gnomemeeting is a H323 Video Conferencing application which uses the H323 -protocol and the OpenH323 libraries. - -It can connect to a variety of other H323 applications including -Microsoft NetMeeting, OpenMCU, OpenAM and OhPhone. - -It is very similar to NetMeeting, and also support ILS servers - -WWW: http://www.gnomemeeting.org/ - -Roger Hardiman <roger@freebsd.org> diff --git a/net/ekiga/pkg-plist b/net/ekiga/pkg-plist deleted file mode 100644 index b0472f7a382a..000000000000 --- a/net/ekiga/pkg-plist +++ /dev/null @@ -1,8 +0,0 @@ -bin/gnomemeeting -share/gnome/sounds/gnomemeeting/gnomemeeting.wav -share/gnome/apps/Internet/gnomemeeting.desktop -lib/locale/fr/LC_MESSAGES/gnomemeeting.mo -pixmaps/gnomemeeting-logo-icon.png -pixmaps/gnomemeeting-logo.png -#humm, what do with /etc/sound/events/GnomeMeeting.soundlist - diff --git a/net/gaim-snapshot/Makefile b/net/gaim-snapshot/Makefile deleted file mode 100644 index f4f1b1d8236b..000000000000 --- a/net/gaim-snapshot/Makefile +++ /dev/null @@ -1,52 +0,0 @@ -# New ports collection makefile for: gaim -# Date created: 26 Mar 1999 -# Whom: Jim Mock <jim@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= gaim -PORTVERSION= 0.43 -CATEGORIES= net -MASTER_SITES= ftp://ftp.marko.net/pub/gaim/ \ - ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= ${PORTNAME} - -MAINTAINER= jim@FreeBSD.org - -USE_BZIP2= yes -USE_X_PREFIX= yes -USE_GMAKE= yes -USE_GTK= yes -WANT_ESOUND= yes -WANT_GNOME= yes -GNU_CONFIGURE= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LIBS="-L${LOCALBASE}/lib" -CONFIGURE_TARGET= --target=${MACHINE_ARCH}-unknown-freebsd${OSREL} - -MAN1= gaim.1 - -.include <bsd.port.pre.mk> - -.if defined(HAVE_GNOME) -USE_GNOME= yes -RUN_DEPENDS= ispell:${PORTSDIR}/textproc/ispell -CONFIGURE_ARGS+= --enable-panel -.else -CONFIGURE_ARGS+= --disable-gnome -.endif -.if defined(HAVE_ESOUND) -USE_ESOUND= yes -.else -CONFIGURE_ARGS+= --disable-esd -.endif - -pre-patch: - @${PERL} -pi -e 's|-lpthread|${PTHREAD_LIBS}|g ; \ - s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure - @find ${WRKSRC} -name "Makefile.in" | xargs ${PERL} -pi -e \ - 's|\$$\(datadir\)/gnome/|\$$\(datadir\)/|g ; \ - s|\$$\(datadir\)/locale|\$$\(prefix\)/share/locale|g' - -.include <bsd.port.post.mk> diff --git a/net/gaim-snapshot/distinfo b/net/gaim-snapshot/distinfo deleted file mode 100644 index 8f39e2c35cad..000000000000 --- a/net/gaim-snapshot/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (gaim-0.43.tar.bz2) = f130f7afc6ce72da9006fadeedf16fd0 diff --git a/net/gaim-snapshot/files/patch-aa b/net/gaim-snapshot/files/patch-aa deleted file mode 100644 index e01484100cf3..000000000000 --- a/net/gaim-snapshot/files/patch-aa +++ /dev/null @@ -1,13 +0,0 @@ ---- Makefile.in.orig Tue Oct 3 03:12:14 2000 -+++ Makefile.in Tue Oct 3 03:13:14 2000 -@@ -156,8 +156,8 @@ - @GNOMEBITS_TRUE@bitssounddir = $(bitssysconf)/sound/events - @GNOMEBITS_TRUE@bitssound_DATA = gaim.soundlist - --pixmapdir = $(datadir)/apps/Internet --pixmap_DATA = gaim.desktop -+@GNOMEAPPLET_TRUE@pixmapdir = $(datadir)/apps/Internet -+@GNOMEAPPLET_TRUE@pixmap_DATA = gaim.desktop - - SUBDIRS = m4 libfaim sounds plugins pixmaps doc po intl src - ACLOCAL_AMFLAGS = -I m4 diff --git a/net/gaim-snapshot/files/patch-ab b/net/gaim-snapshot/files/patch-ab deleted file mode 100644 index 716dfc9761b5..000000000000 --- a/net/gaim-snapshot/files/patch-ab +++ /dev/null @@ -1,22 +0,0 @@ ---- pixmaps/Makefile.in.orig Tue Oct 3 02:42:15 2000 -+++ pixmaps/Makefile.in Tue Oct 3 02:48:38 2000 -@@ -128,8 +128,8 @@ - EXTRA_DIST = about_small.xpm add.xpm add_small.xpm admin_icon.xpm aimicon.xpm aimicon2.xpm angel.xpm aol_icon.xpm away.xpm away_icon.xpm away_small.xpm bgcolor.xpm big.xpm bigsmile.xpm block.xpm bold.xpm bsmile.xpm buddyadd.xpm buddychat.xpm buddydel.xpm burp.xpm cancel.xpm close.xpm close_small.xpm crossedlips.xpm cry.xpm daemon-buddyadd.xpm daemon-buddychat.xpm daemon-buddydel.xpm daemon-im.xpm daemon-info.xpm daemon-permadd.xpm daemon-permdel.xpm daemon.xpm dt_icon.xpm embarrassed.xpm exit_small.xpm export_small.xpm fgcolor.xpm fontface.xpm fontface2.xpm free_icon.xpm gaim.xpm gnome_add.xpm gnome_close.xpm gnome_preferences.xpm gnome_remove.xpm gnome/devil-connect.png gnome/devil-offline.png gnome/devil-online.png gnome/penguin-connect.png gnome/penguin-offline.png gnome/penguin-online.png group.xpm im.xpm import_small.xpm info.xpm italic.xpm join.xpm kiss.xpm link.xpm login_icon.xpm logo.xpm logout_icon.xpm luke03.xpm moneymouth.xpm msg_pending.xpm no_icon.xpm normal.xpm offline.xpm ok.xpm oneeye.xpm online.xpm palette.xpm peng_frown.xpm peng_smile.xpm peng_wink.xpm permadd.xpm permdel.xpm plugins_small.xpm pounce_small.xpm prefs_small.xpm refresh.xpm sad.xpm save.xpm scream.xpm search_small.xpm signing_on.xpm small.xpm smile.xpm smile8.xpm smile_happy.xpm smile_icon.xpm smile_sad.xpm smile_wink.xpm speaker.xpm strike.xpm tb_forward.xpm tb_search.xpm think.xpm tmp_send.xpm tongue.xpm underline.xpm warn.xpm wink.xpm wood.xpm yell.xpm - - --pixmapdir = $(datadir)/pixmaps --pixmap_DATA = gaim.xpm -+pixmapdir = $(datadir)/pixmaps/gaim -+pixmap_DATA = $(EXTRA_DIST) - - #gnomesysconf = `@GNOME_CONFIG@ --sysconfdir` - @GNOMEAPPLET_TRUE@gnomedata = `@GNOME_CONFIG@ --datadir` -@@ -187,7 +187,7 @@ - - install-pixmapDATA: $(pixmap_DATA) - @$(NORMAL_INSTALL) -- $(mkinstalldirs) $(DESTDIR)$(pixmapdir) -+ $(mkinstalldirs) $(DESTDIR)$(pixmapdir) $(DESTDIR)$(pixmapdir)/gnome - @list='$(pixmap_DATA)'; for p in $$list; do \ - if test -f $(srcdir)/$$p; then \ - echo " $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(pixmapdir)/$$p"; \ diff --git a/net/gaim-snapshot/files/patch-ac b/net/gaim-snapshot/files/patch-ac deleted file mode 100644 index 810ee8926d7c..000000000000 --- a/net/gaim-snapshot/files/patch-ac +++ /dev/null @@ -1,75 +0,0 @@ ---- src/Makefile.in.orig Thu Aug 30 13:09:31 2001 -+++ src/Makefile.in Thu Aug 30 13:12:34 2001 -@@ -149,16 +149,16 @@ - sedpath = @sedpath@ - - SUBDIRS = protocols --@GNOMEAPPLET_TRUE@bin_PROGRAMS = gaim_applet -+@GNOMEAPPLET_TRUE@bin_PROGRAMS = gaim_applet gaim - @GNOMEAPPLET_FALSE@bin_PROGRAMS = gaim --@GNOMEAPPLET_TRUE@gaim_applet_SOURCES = about.c aim.c applet.c away.c browser.c buddy.c buddy_chat.c conversation.c dialogs.c gaimrc.c gtkimhtml.c gtkspell.c gtkticker.c html.c idle.c multi.c perl.c plugins.c prefs.c proxy.c prpl.c server.c sound.c ticker.c util.c --@GNOMEAPPLET_TRUE@gaim_applet_DEPENDENCIES = @LIBOBJS@ $(STATIC_LINK_LIBS) --@GNOMEAPPLET_TRUE@gaim_applet_LDFLAGS = -export-dynamic --@GNOMEAPPLET_TRUE@gaim_applet_LDADD = @LDADD@ @LIBOBJS@ --@GNOMEAPPLET_FALSE@gaim_SOURCES = about.c aim.c applet.c away.c browser.c buddy.c buddy_chat.c conversation.c dialogs.c gaimrc.c gtkimhtml.c gtkspell.c gtkticker.c html.c idle.c multi.c perl.c plugins.c prefs.c proxy.c prpl.c server.c sound.c ticker.c util.c --@GNOMEAPPLET_FALSE@gaim_DEPENDENCIES = @LIBOBJS@ $(STATIC_LINK_LIBS) --@GNOMEAPPLET_FALSE@gaim_LDFLAGS = -export-dynamic --@GNOMEAPPLET_FALSE@gaim_LDADD = @LDADD@ @LIBOBJS@ -+gaim_applet_SOURCES = about.c aim.c applet.c away.c browser.c buddy.c buddy_chat.c conversation.c dialogs.c gaimrc.c gtkimhtml.c gtkspell.c gtkticker.c html.c idle.c multi.c perl.c plugins.c prefs.c proxy.c prpl.c server.c sound.c ticker.c util.c -+gaim_applet_DEPENDENCIES = @LIBOBJS@ $(STATIC_LINK_LIBS) -+gaim_applet_LDFLAGS = -export-dynamic -+gaim_applet_LDADD = @LDADD@ @LIBOBJS@ -+gaim_SOURCES = about.c aim.c applet.c away.c browser.c buddy.c buddy_chat.c conversation.c dialogs.c gaimrc.c gtkimhtml.c gtkspell.c gtkticker.c html.c idle.c multi.c perl.c plugins.c prefs.c proxy.c prpl.c server.c sound.c ticker.c util.c -+gaim_DEPENDENCIES = @LIBOBJS@ $(STATIC_LINK_LIBS) -+gaim_LDFLAGS = -export-dynamic -+gaim_LDADD = @LDADD@ @LIBOBJS@ - LIBS = @LIBS@ $(UI_LIBS) $(SOUND_LIBS) $(STATIC_LINK_LIBS) $(PERL_LIBS) $(XSS_LIBS) $(INTLLIBS) $(DEBUG_LIBS) - - # any other stuff -@@ -176,26 +176,26 @@ - DEFS = @DEFS@ -I. -I$(srcdir) -I.. - CPPFLAGS = @CPPFLAGS@ - LDFLAGS = @LDFLAGS@ --@GNOMEAPPLET_TRUE@gaim_applet_OBJECTS = about.$(OBJEXT) aim.$(OBJEXT) \ --@GNOMEAPPLET_TRUE@applet.$(OBJEXT) away.$(OBJEXT) browser.$(OBJEXT) \ --@GNOMEAPPLET_TRUE@buddy.$(OBJEXT) buddy_chat.$(OBJEXT) \ --@GNOMEAPPLET_TRUE@conversation.$(OBJEXT) dialogs.$(OBJEXT) \ --@GNOMEAPPLET_TRUE@gaimrc.$(OBJEXT) gtkimhtml.$(OBJEXT) \ --@GNOMEAPPLET_TRUE@gtkspell.$(OBJEXT) gtkticker.$(OBJEXT) html.$(OBJEXT) \ --@GNOMEAPPLET_TRUE@idle.$(OBJEXT) multi.$(OBJEXT) perl.$(OBJEXT) \ --@GNOMEAPPLET_TRUE@plugins.$(OBJEXT) prefs.$(OBJEXT) proxy.$(OBJEXT) \ --@GNOMEAPPLET_TRUE@prpl.$(OBJEXT) server.$(OBJEXT) sound.$(OBJEXT) \ --@GNOMEAPPLET_TRUE@ticker.$(OBJEXT) util.$(OBJEXT) --@GNOMEAPPLET_FALSE@gaim_OBJECTS = about.$(OBJEXT) aim.$(OBJEXT) \ --@GNOMEAPPLET_FALSE@applet.$(OBJEXT) away.$(OBJEXT) browser.$(OBJEXT) \ --@GNOMEAPPLET_FALSE@buddy.$(OBJEXT) buddy_chat.$(OBJEXT) \ --@GNOMEAPPLET_FALSE@conversation.$(OBJEXT) dialogs.$(OBJEXT) \ --@GNOMEAPPLET_FALSE@gaimrc.$(OBJEXT) gtkimhtml.$(OBJEXT) \ --@GNOMEAPPLET_FALSE@gtkspell.$(OBJEXT) gtkticker.$(OBJEXT) \ --@GNOMEAPPLET_FALSE@html.$(OBJEXT) idle.$(OBJEXT) multi.$(OBJEXT) \ --@GNOMEAPPLET_FALSE@perl.$(OBJEXT) plugins.$(OBJEXT) prefs.$(OBJEXT) \ --@GNOMEAPPLET_FALSE@proxy.$(OBJEXT) prpl.$(OBJEXT) server.$(OBJEXT) \ --@GNOMEAPPLET_FALSE@sound.$(OBJEXT) ticker.$(OBJEXT) util.$(OBJEXT) -+gaim_applet_OBJECTS = about.$(OBJEXT) aim.$(OBJEXT) \ -+applet.$(OBJEXT) away.$(OBJEXT) browser.$(OBJEXT) \ -+buddy.$(OBJEXT) buddy_chat.$(OBJEXT) \ -+conversation.$(OBJEXT) dialogs.$(OBJEXT) \ -+gaimrc.$(OBJEXT) gtkimhtml.$(OBJEXT) \ -+gtkspell.$(OBJEXT) gtkticker.$(OBJEXT) html.$(OBJEXT) \ -+idle.$(OBJEXT) multi.$(OBJEXT) perl.$(OBJEXT) \ -+plugins.$(OBJEXT) prefs.$(OBJEXT) proxy.$(OBJEXT) \ -+prpl.$(OBJEXT) server.$(OBJEXT) sound.$(OBJEXT) \ -+ticker.$(OBJEXT) util.$(OBJEXT) -+gaim_OBJECTS = about.$(OBJEXT) aim.$(OBJEXT) \ -+applet.$(OBJEXT) away.$(OBJEXT) browser.$(OBJEXT) \ -+buddy.$(OBJEXT) buddy_chat.$(OBJEXT) \ -+conversation.$(OBJEXT) dialogs.$(OBJEXT) \ -+gaimrc.$(OBJEXT) gtkimhtml.$(OBJEXT) \ -+gtkspell.$(OBJEXT) gtkticker.$(OBJEXT) \ -+html.$(OBJEXT) idle.$(OBJEXT) multi.$(OBJEXT) \ -+perl.$(OBJEXT) plugins.$(OBJEXT) prefs.$(OBJEXT) \ -+proxy.$(OBJEXT) prpl.$(OBJEXT) server.$(OBJEXT) \ -+sound.$(OBJEXT) ticker.$(OBJEXT) util.$(OBJEXT) - COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) - LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) - CCLD = $(CC) diff --git a/net/gaim-snapshot/files/patch-aim.c b/net/gaim-snapshot/files/patch-aim.c deleted file mode 100644 index 71b1110a00fe..000000000000 --- a/net/gaim-snapshot/files/patch-aim.c +++ /dev/null @@ -1,12 +0,0 @@ ---- src/aim.c.orig Fri Aug 31 20:15:17 2001 -+++ src/aim.c Fri Aug 31 20:15:39 2001 -@@ -54,9 +54,7 @@ - #include "locale.h" - #include "gtkticker.h" - #include "gtkspell.h" --#ifndef USE_APPLET - #include <getopt.h> --#endif - - static gchar *ispell_cmd[] = { "ispell", "-a", NULL }; - diff --git a/net/gaim-snapshot/files/patch-ltmain.sh b/net/gaim-snapshot/files/patch-ltmain.sh deleted file mode 100644 index 293fce173a52..000000000000 --- a/net/gaim-snapshot/files/patch-ltmain.sh +++ /dev/null @@ -1,18 +0,0 @@ - -$FreeBSD$ - ---- ltmain.sh 2001/08/31 17:32:22 1.1 -+++ ltmain.sh 2001/08/31 17:32:44 -@@ -4673,10 +4673,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/gaim-snapshot/pkg-comment b/net/gaim-snapshot/pkg-comment deleted file mode 100644 index 4014745a2094..000000000000 --- a/net/gaim-snapshot/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Gtk+ open-source 'clone' of AOL's Instant Messenger client diff --git a/net/gaim-snapshot/pkg-descr b/net/gaim-snapshot/pkg-descr deleted file mode 100644 index d9136f63a88a..000000000000 --- a/net/gaim-snapshot/pkg-descr +++ /dev/null @@ -1,10 +0,0 @@ -GAIM is an Open Source 'clone' of America OnLine's Instant Messenger -client using the GTK+ toolkit. It features most of the functionality -of the official AIM client while being much smaller and faster. It -features multiple groups, group chat, user information fetching and -registration, time stamping, sound (for when you really do want to be -interrupted), multiple away messages, and probably a few other things. - -WWW: http://www.marko.net/gaim/ - -- Jim <jim@FreeBSD.org> diff --git a/net/gaim-snapshot/pkg-plist b/net/gaim-snapshot/pkg-plist deleted file mode 100644 index 2b30af064415..000000000000 --- a/net/gaim-snapshot/pkg-plist +++ /dev/null @@ -1,130 +0,0 @@ -bin/gaim -%%GNOME:%%bin/gaim_applet -%%GNOME:%%etc/CORBA/servers/gaim_applet.gnorba -lib/gaim/autorecon.so -lib/gaim/iconaway.so -lib/gaim/lagmeter.so -lib/gaim/libicq.so -lib/gaim/libicq.so.0 -lib/gaim/libirc.so -lib/gaim/libirc.so.0 -lib/gaim/libjabber.so -lib/gaim/libjabber.so.0 -lib/gaim/libnapster.so -lib/gaim/libnapster.so.0 -lib/gaim/libyahoo.so -lib/gaim/libyahoo.so.0 -lib/gaim/libmsn.so -lib/gaim/libmsn.so.0 -lib/gaim/libzephyr.so -lib/gaim/libzephyr.so.0 -lib/gaim/notify.so -lib/gaim/spellchk.so -%%DATADIR%%/pixmaps/gaim/about_small.xpm -%%DATADIR%%/pixmaps/gaim/add.xpm -%%DATADIR%%/pixmaps/gaim/add_small.xpm -%%DATADIR%%/pixmaps/gaim/admin_icon.xpm -%%DATADIR%%/pixmaps/gaim/aimicon.xpm -%%DATADIR%%/pixmaps/gaim/angel.xpm -%%DATADIR%%/pixmaps/gaim/aol_icon.xpm -%%DATADIR%%/pixmaps/gaim/available-away.xpm -%%DATADIR%%/pixmaps/gaim/available-chat.xpm -%%DATADIR%%/pixmaps/gaim/available-dnd.xpm -%%DATADIR%%/pixmaps/gaim/available-xa.xpm -%%DATADIR%%/pixmaps/gaim/available.xpm -%%DATADIR%%/pixmaps/gaim/away_big.xpm -%%DATADIR%%/pixmaps/gaim/away_icon.xpm -%%DATADIR%%/pixmaps/gaim/away_small.xpm -%%DATADIR%%/pixmaps/gaim/bgcolor.xpm -%%DATADIR%%/pixmaps/gaim/big.xpm -%%DATADIR%%/pixmaps/gaim/bigsmile.xpm -%%DATADIR%%/pixmaps/gaim/block.xpm -%%DATADIR%%/pixmaps/gaim/bold.xpm -%%DATADIR%%/pixmaps/gaim/burp.xpm -%%DATADIR%%/pixmaps/gaim/cancel.xpm -%%DATADIR%%/pixmaps/gaim/close.xpm -%%DATADIR%%/pixmaps/gaim/close_small.xpm -%%DATADIR%%/pixmaps/gaim/crazy4.xpm -%%DATADIR%%/pixmaps/gaim/crossedlips.xpm -%%DATADIR%%/pixmaps/gaim/cry.xpm -%%DATADIR%%/pixmaps/gaim/dt_icon.xpm -%%DATADIR%%/pixmaps/gaim/embarrassed.xpm -%%DATADIR%%/pixmaps/gaim/exit_small.xpm -%%DATADIR%%/pixmaps/gaim/fgcolor.xpm -%%DATADIR%%/pixmaps/gaim/fontface.xpm -%%DATADIR%%/pixmaps/gaim/fontface2.xpm -%%DATADIR%%/pixmaps/gaim/free_icon.xpm -%%DATADIR%%/pixmaps/gaim/gaim.xpm -%%DATADIR%%/pixmaps/gaim/gnomeicu-away.xpm -%%DATADIR%%/pixmaps/gaim/gnomeicu-dnd.xpm -%%DATADIR%%/pixmaps/gaim/gnomeicu-ffc.xpm -%%DATADIR%%/pixmaps/gaim/gnomeicu-na.xpm -%%DATADIR%%/pixmaps/gaim/gnomeicu-occ.xpm -%%DATADIR%%/pixmaps/gaim/gnomeicu-online.xpm -%%DATADIR%%/pixmaps/gaim/gnome_add.xpm -%%DATADIR%%/pixmaps/gaim/gnome_preferences.xpm -%%DATADIR%%/pixmaps/gaim/gnome_remove.xpm -%%DATADIR%%/pixmaps/gaim/group.xpm -%%DATADIR%%/pixmaps/gaim/import_small.xpm -%%DATADIR%%/pixmaps/gaim/italic.xpm -%%DATADIR%%/pixmaps/gaim/join.xpm -%%DATADIR%%/pixmaps/gaim/kiss.xpm -%%DATADIR%%/pixmaps/gaim/link.xpm -%%DATADIR%%/pixmaps/gaim/login_icon.xpm -%%DATADIR%%/pixmaps/gaim/logo.xpm -%%DATADIR%%/pixmaps/gaim/logout_icon.xpm -%%DATADIR%%/pixmaps/gaim/luke03.xpm -%%DATADIR%%/pixmaps/gaim/moneymouth.xpm -%%DATADIR%%/pixmaps/gaim/mrt.xpm -%%DATADIR%%/pixmaps/gaim/msn_away.xpm -%%DATADIR%%/pixmaps/gaim/msn_online.xpm -%%DATADIR%%/pixmaps/gaim/napster.xpm -%%DATADIR%%/pixmaps/gaim/no_icon.xpm -%%DATADIR%%/pixmaps/gaim/normal.xpm -%%DATADIR%%/pixmaps/gaim/ok.xpm -%%DATADIR%%/pixmaps/gaim/oneeye.xpm -%%DATADIR%%/pixmaps/gaim/plugins_small.xpm -%%DATADIR%%/pixmaps/gaim/pounce_small.xpm -%%DATADIR%%/pixmaps/gaim/prefs_small.xpm -%%DATADIR%%/pixmaps/gaim/refresh.xpm -%%DATADIR%%/pixmaps/gaim/register.xpm -%%DATADIR%%/pixmaps/gaim/sad.xpm -%%DATADIR%%/pixmaps/gaim/save.xpm -%%DATADIR%%/pixmaps/gaim/save_small.xpm -%%DATADIR%%/pixmaps/gaim/scream.xpm -%%DATADIR%%/pixmaps/gaim/search_small.xpm -%%DATADIR%%/pixmaps/gaim/send_small.xpm -%%DATADIR%%/pixmaps/gaim/small.xpm -%%DATADIR%%/pixmaps/gaim/smile.xpm -%%DATADIR%%/pixmaps/gaim/smile8.xpm -%%DATADIR%%/pixmaps/gaim/smile_icon.xpm -%%DATADIR%%/pixmaps/gaim/speaker.xpm -%%DATADIR%%/pixmaps/gaim/status-away.xpm -%%DATADIR%%/pixmaps/gaim/status-here.xpm -%%DATADIR%%/pixmaps/gaim/status-idle.xpm -%%DATADIR%%/pixmaps/gaim/strike.xpm -%%DATADIR%%/pixmaps/gaim/tb_forward.xpm -%%DATADIR%%/pixmaps/gaim/tb_redo.xpm -%%DATADIR%%/pixmaps/gaim/tb_refresh.xpm -%%DATADIR%%/pixmaps/gaim/tb_search.xpm -%%DATADIR%%/pixmaps/gaim/tb_undo.xpm -%%DATADIR%%/pixmaps/gaim/think.xpm -%%DATADIR%%/pixmaps/gaim/tmp_send.xpm -%%DATADIR%%/pixmaps/gaim/tongue.xpm -%%DATADIR%%/pixmaps/gaim/underline.xpm -%%DATADIR%%/pixmaps/gaim/warn.xpm -%%DATADIR%%/pixmaps/gaim/wink.xpm -%%DATADIR%%/pixmaps/gaim/wood.xpm -%%DATADIR%%/pixmaps/gaim/yell.xpm -%%GNOME:%%share/gnome/applets/Network/gaim_applet.desktop -%%GNOME:%%share/gnome/apps/Internet/gaim.desktop -%%GNOME:%%share/gnome/pixmaps/gaim.xpm -share/locale/de/LC_MESSAGES/gaim.mo -share/locale/es/LC_MESSAGES/gaim.mo -share/locale/fr/LC_MESSAGES/gaim.mo -share/locale/ko/LC_MESSAGES/gaim.mo -share/locale/zh_CN/LC_MESSAGES/gaim.mo -@dirrm %%DATADIR%%/pixmaps/gaim/gnome -@dirrm %%DATADIR%%/pixmaps/gaim -%%NOGNOME:%%@dirrm %%DATADIR%%/pixmaps -@dirrm lib/gaim diff --git a/net/gnet-glib2/Makefile b/net/gnet-glib2/Makefile deleted file mode 100644 index 416e763cc5e9..000000000000 --- a/net/gnet-glib2/Makefile +++ /dev/null @@ -1,19 +0,0 @@ -# New ports collection makefile for: gnet -# Date created: 16 February 2000 -# Whom: Yukihiro Nakai <nakai@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= gnet -PORTVERSION= 1.1.0 -CATEGORIES= net -MASTER_SITES= http://www.gnetlibrary.org/src/ - -MAINTAINER= nakai@FreeBSD.org - -USE_GLIB= yes -USE_LIBTOOL= yes -INSTALLS_SHLIB= yes - -.include <bsd.port.mk> diff --git a/net/gnet-glib2/distinfo b/net/gnet-glib2/distinfo deleted file mode 100644 index 9a62b82470a8..000000000000 --- a/net/gnet-glib2/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (gnet-1.1.0.tar.gz) = ad7aef2f1de593e548134922472d3b98 diff --git a/net/gnet-glib2/files/patch-ac b/net/gnet-glib2/files/patch-ac deleted file mode 100644 index 5124d5969ad8..000000000000 --- a/net/gnet-glib2/files/patch-ac +++ /dev/null @@ -1,11 +0,0 @@ ---- src/Makefile.in.orig Mon Feb 28 18:47:45 2000 -+++ src/Makefile.in Mon Feb 28 18:48:34 2000 -@@ -93,7 +93,7 @@ - - lib_LTLIBRARIES = libgnet.la - --libgnet_la_LDFLAGS = -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) -release $(LT_RELEASE) -+libgnet_la_LDFLAGS = -version-info 0:0:0 - - - libgnet_la_SOURCES = gnet.c gnet-private.c inetaddr.c mcast.c tcp.c udp.c diff --git a/net/gnet-glib2/files/patch-ad b/net/gnet-glib2/files/patch-ad deleted file mode 100644 index 5d8440eba6b3..000000000000 --- a/net/gnet-glib2/files/patch-ad +++ /dev/null @@ -1,13 +0,0 @@ ---- configure.orig Tue Apr 11 15:56:56 2000 -+++ configure Thu Jun 15 13:51:43 2000 -@@ -2238,8 +2238,8 @@ - rm -f conf.glibtest - - --glib_cflags=`glib-config --cflags glib` --glib_libs=`glib-config --libs glib` -+glib_cflags=`$GLIB_CONFIG --cflags glib` -+glib_libs=`$GLIB_CONFIG --libs glib` - - - diff --git a/net/gnet-glib2/files/patch-ae b/net/gnet-glib2/files/patch-ae deleted file mode 100644 index ef5a0a5e02eb..000000000000 --- a/net/gnet-glib2/files/patch-ae +++ /dev/null @@ -1,11 +0,0 @@ ---- Makefile.in 2000/11/25 13:34:07 1.1 -+++ Makefile.in 2000/11/25 13:34:59 -@@ -99,7 +99,7 @@ - m4datadir = $(datadir)/aclocal - m4data_DATA = gnet.m4 - --configincludedir = $(pkglibdir)/include -+configincludedir = $(pkgincludedir) - configinclude_DATA = gnetconfig.h - - WEBPATH = $(HOME)/public_html/misc/gnet diff --git a/net/gnet-glib2/pkg-comment b/net/gnet-glib2/pkg-comment deleted file mode 100644 index 4a87a43a43d2..000000000000 --- a/net/gnet-glib2/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -A simple network library built upon Glib diff --git a/net/gnet-glib2/pkg-descr b/net/gnet-glib2/pkg-descr deleted file mode 100644 index 370d05dfadb7..000000000000 --- a/net/gnet-glib2/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -A simple network library built upon glib. - -WWW: http://www.gnetlibrary.org/ diff --git a/net/gnet-glib2/pkg-plist b/net/gnet-glib2/pkg-plist deleted file mode 100644 index a8e06adbe03f..000000000000 --- a/net/gnet-glib2/pkg-plist +++ /dev/null @@ -1,48 +0,0 @@ -bin/gnet-config -include/gnet/conn.h -include/gnet/gnet.h -include/gnet/gnetconfig.h -include/gnet/inetaddr.h -include/gnet/iochannel.h -include/gnet/mcast.h -include/gnet/md5.h -include/gnet/pack.h -include/gnet/server.h -include/gnet/sha.h -include/gnet/tcp.h -include/gnet/udp.h -include/gnet/url.h -lib/libgnet.a -lib/libgnet.so -lib/libgnet.so.0 -share/aclocal/gnet.m4 -share/doc/libgnet1.1-dev/html/book1.html -share/doc/libgnet1.1-dev/html/dnstest.html -share/doc/libgnet1.1-dev/html/gnet-conn.html -share/doc/libgnet1.1-dev/html/gnet-developers-tips.html -share/doc/libgnet1.1-dev/html/gnet-developers.html -share/doc/libgnet1.1-dev/html/gnet-examples.html -share/doc/libgnet1.1-dev/html/gnet-gnet.html -share/doc/libgnet1.1-dev/html/gnet-inetaddr.html -share/doc/libgnet1.1-dev/html/gnet-iochannel.html -share/doc/libgnet1.1-dev/html/gnet-mcast.html -share/doc/libgnet1.1-dev/html/gnet-md5.html -share/doc/libgnet1.1-dev/html/gnet-overview.html -share/doc/libgnet1.1-dev/html/gnet-pack.html -share/doc/libgnet1.1-dev/html/gnet-server.html -share/doc/libgnet1.1-dev/html/gnet-sha.html -share/doc/libgnet1.1-dev/html/gnet-tcp.html -share/doc/libgnet1.1-dev/html/gnet-udp.html -share/doc/libgnet1.1-dev/html/gnet-url.html -share/doc/libgnet1.1-dev/html/hfetch.html -share/doc/libgnet1.1-dev/html/hostinfo.html -share/doc/libgnet1.1-dev/html/index.html -share/doc/libgnet1.1-dev/html/index.sgml -share/doc/libgnet1.1-dev/html/jmtransfer.html -share/doc/libgnet1.1-dev/html/libgnet-reference.html -share/doc/libgnet1.1-dev/html/ljoust.html -share/doc/libgnet1.1-dev/html/sdr.html -share/doc/libgnet1.1-dev/html/tests.html -@dirrm include/gnet -@dirrm share/doc/libgnet1.1-dev/html -@dirrm share/doc/libgnet1.1-dev diff --git a/net/gnet2/Makefile b/net/gnet2/Makefile deleted file mode 100644 index 416e763cc5e9..000000000000 --- a/net/gnet2/Makefile +++ /dev/null @@ -1,19 +0,0 @@ -# New ports collection makefile for: gnet -# Date created: 16 February 2000 -# Whom: Yukihiro Nakai <nakai@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= gnet -PORTVERSION= 1.1.0 -CATEGORIES= net -MASTER_SITES= http://www.gnetlibrary.org/src/ - -MAINTAINER= nakai@FreeBSD.org - -USE_GLIB= yes -USE_LIBTOOL= yes -INSTALLS_SHLIB= yes - -.include <bsd.port.mk> diff --git a/net/gnet2/distinfo b/net/gnet2/distinfo deleted file mode 100644 index 9a62b82470a8..000000000000 --- a/net/gnet2/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (gnet-1.1.0.tar.gz) = ad7aef2f1de593e548134922472d3b98 diff --git a/net/gnet2/files/patch-ac b/net/gnet2/files/patch-ac deleted file mode 100644 index 5124d5969ad8..000000000000 --- a/net/gnet2/files/patch-ac +++ /dev/null @@ -1,11 +0,0 @@ ---- src/Makefile.in.orig Mon Feb 28 18:47:45 2000 -+++ src/Makefile.in Mon Feb 28 18:48:34 2000 -@@ -93,7 +93,7 @@ - - lib_LTLIBRARIES = libgnet.la - --libgnet_la_LDFLAGS = -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) -release $(LT_RELEASE) -+libgnet_la_LDFLAGS = -version-info 0:0:0 - - - libgnet_la_SOURCES = gnet.c gnet-private.c inetaddr.c mcast.c tcp.c udp.c diff --git a/net/gnet2/files/patch-ad b/net/gnet2/files/patch-ad deleted file mode 100644 index 5d8440eba6b3..000000000000 --- a/net/gnet2/files/patch-ad +++ /dev/null @@ -1,13 +0,0 @@ ---- configure.orig Tue Apr 11 15:56:56 2000 -+++ configure Thu Jun 15 13:51:43 2000 -@@ -2238,8 +2238,8 @@ - rm -f conf.glibtest - - --glib_cflags=`glib-config --cflags glib` --glib_libs=`glib-config --libs glib` -+glib_cflags=`$GLIB_CONFIG --cflags glib` -+glib_libs=`$GLIB_CONFIG --libs glib` - - - diff --git a/net/gnet2/files/patch-ae b/net/gnet2/files/patch-ae deleted file mode 100644 index ef5a0a5e02eb..000000000000 --- a/net/gnet2/files/patch-ae +++ /dev/null @@ -1,11 +0,0 @@ ---- Makefile.in 2000/11/25 13:34:07 1.1 -+++ Makefile.in 2000/11/25 13:34:59 -@@ -99,7 +99,7 @@ - m4datadir = $(datadir)/aclocal - m4data_DATA = gnet.m4 - --configincludedir = $(pkglibdir)/include -+configincludedir = $(pkgincludedir) - configinclude_DATA = gnetconfig.h - - WEBPATH = $(HOME)/public_html/misc/gnet diff --git a/net/gnet2/pkg-comment b/net/gnet2/pkg-comment deleted file mode 100644 index 4a87a43a43d2..000000000000 --- a/net/gnet2/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -A simple network library built upon Glib diff --git a/net/gnet2/pkg-descr b/net/gnet2/pkg-descr deleted file mode 100644 index 370d05dfadb7..000000000000 --- a/net/gnet2/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -A simple network library built upon glib. - -WWW: http://www.gnetlibrary.org/ diff --git a/net/gnet2/pkg-plist b/net/gnet2/pkg-plist deleted file mode 100644 index a8e06adbe03f..000000000000 --- a/net/gnet2/pkg-plist +++ /dev/null @@ -1,48 +0,0 @@ -bin/gnet-config -include/gnet/conn.h -include/gnet/gnet.h -include/gnet/gnetconfig.h -include/gnet/inetaddr.h -include/gnet/iochannel.h -include/gnet/mcast.h -include/gnet/md5.h -include/gnet/pack.h -include/gnet/server.h -include/gnet/sha.h -include/gnet/tcp.h -include/gnet/udp.h -include/gnet/url.h -lib/libgnet.a -lib/libgnet.so -lib/libgnet.so.0 -share/aclocal/gnet.m4 -share/doc/libgnet1.1-dev/html/book1.html -share/doc/libgnet1.1-dev/html/dnstest.html -share/doc/libgnet1.1-dev/html/gnet-conn.html -share/doc/libgnet1.1-dev/html/gnet-developers-tips.html -share/doc/libgnet1.1-dev/html/gnet-developers.html -share/doc/libgnet1.1-dev/html/gnet-examples.html -share/doc/libgnet1.1-dev/html/gnet-gnet.html -share/doc/libgnet1.1-dev/html/gnet-inetaddr.html -share/doc/libgnet1.1-dev/html/gnet-iochannel.html -share/doc/libgnet1.1-dev/html/gnet-mcast.html -share/doc/libgnet1.1-dev/html/gnet-md5.html -share/doc/libgnet1.1-dev/html/gnet-overview.html -share/doc/libgnet1.1-dev/html/gnet-pack.html -share/doc/libgnet1.1-dev/html/gnet-server.html -share/doc/libgnet1.1-dev/html/gnet-sha.html -share/doc/libgnet1.1-dev/html/gnet-tcp.html -share/doc/libgnet1.1-dev/html/gnet-udp.html -share/doc/libgnet1.1-dev/html/gnet-url.html -share/doc/libgnet1.1-dev/html/hfetch.html -share/doc/libgnet1.1-dev/html/hostinfo.html -share/doc/libgnet1.1-dev/html/index.html -share/doc/libgnet1.1-dev/html/index.sgml -share/doc/libgnet1.1-dev/html/jmtransfer.html -share/doc/libgnet1.1-dev/html/libgnet-reference.html -share/doc/libgnet1.1-dev/html/ljoust.html -share/doc/libgnet1.1-dev/html/sdr.html -share/doc/libgnet1.1-dev/html/tests.html -@dirrm include/gnet -@dirrm share/doc/libgnet1.1-dev/html -@dirrm share/doc/libgnet1.1-dev diff --git a/net/gnome-mud/Makefile b/net/gnome-mud/Makefile deleted file mode 100644 index 6ca23c0b26cc..000000000000 --- a/net/gnome-mud/Makefile +++ /dev/null @@ -1,25 +0,0 @@ -# New ports collection makefile for: amcl -# Date created: 15 Apr 2000 -# Whom: will -# -# $FreeBSD$ -# - -PORTNAME= amcl -PORTVERSION= 0.7.5 -CATEGORIES= net -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= ${PORTNAME} - -MAINTAINER= ports@FreeBSD.org - -USE_X_PREFIX= yes -USE_GTK= yes -GNU_CONFIGURE= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LIBS="-L${LOCALBASE}/lib" - -post-patch: - @${PERL} -pi -e 's|CFLAGS -O -pipe -Wall|CFLAGS|g' ${WRKSRC}/configure - -.include <bsd.port.mk> diff --git a/net/gnome-mud/distinfo b/net/gnome-mud/distinfo deleted file mode 100644 index f7554716f304..000000000000 --- a/net/gnome-mud/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (amcl-0.7.5.tar.gz) = eaed429befbccb0c09798c0a29356ef9 diff --git a/net/gnome-mud/pkg-comment b/net/gnome-mud/pkg-comment deleted file mode 100644 index 22b5884542cd..000000000000 --- a/net/gnome-mud/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -GTK-based MUD client with triggers, aliases, colors, etc diff --git a/net/gnome-mud/pkg-descr b/net/gnome-mud/pkg-descr deleted file mode 100644 index 315beb16be1e..000000000000 --- a/net/gnome-mud/pkg-descr +++ /dev/null @@ -1,9 +0,0 @@ -AMCL is short for Another MUD CLient. It is based -on GTK, and offers many features, such as full support -for ANSI colors, aliases, command history, triggers, -automapping, multiple connections, and so forth. - -WWW: http://amcl.sourceforge.net/ -Author: Robin Ericsson <lobbin@localhost.nu> - -- Will <andrews@technologist.com> diff --git a/net/gnome-mud/pkg-plist b/net/gnome-mud/pkg-plist deleted file mode 100644 index e539032952b0..000000000000 --- a/net/gnome-mud/pkg-plist +++ /dev/null @@ -1,5 +0,0 @@ -bin/amcl -share/locale/ca/LC_MESSAGES/amcl.mo -share/locale/de/LC_MESSAGES/amcl.mo -share/locale/es/LC_MESSAGES/amcl.mo -share/locale/sv/LC_MESSAGES/amcl.mo diff --git a/net/gnomeicu/gnomeicu/Makefile b/net/gnomeicu/gnomeicu/Makefile deleted file mode 100644 index 853dc427516e..000000000000 --- a/net/gnomeicu/gnomeicu/Makefile +++ /dev/null @@ -1,46 +0,0 @@ -# Ports collection Makefile for: GnomeICU -# Date created: 03/16/1999 -# Whom: nectar@FreeBSD.org -# -# $FreeBSD$ -# - -PORTNAME= gnomeicu -PORTVERSION= 0.96.1 -PORTREVISION= 2 -CATEGORIES= net gnome -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= gnomeicu - -MAINTAINER= gnome@FreeBSD.org - -USE_X_PREFIX= yes -USE_BZIP2= yes -USE_GNOME= yes -GNU_CONFIGURE= yes -.if defined(WITH_DANTE) -LIB_DEPENDS+= socks.1:${PORTSDIR}/net/dante -SOCKSFLAGS= -Dconnect=Rconnect -Dbind=Rbind -Dgetsockname=Rgetsockname \ - -Dgetpeername=Rgetpeername -Daccept=Raccept \ - -Drresvport=Rrresvport -Dbindresvport=Rbindresvport \ - -Dgethostbyname=Rgethostbyname \ - -Dgethostbyname2=Rgethostbyname2 -Dsendto=Rsendto \ - -Drecvfrom=Rrecvfrom -Drecvfrom=Rrecvfrom -Dwrite=Rwrite \ - -Dwritev=Rwritev -Dsend=Rsend -Dsendmsg=Rsendmsg \ - -Dread=Rread -Dreadv=Rreadv -Drecv=Rrecv -Drecvmsg=Rrecvmsg -SOCKSLIBS= -lsocks -.endif - -CONFIGURE_ARGS= --with-statusmenu -CONFIGURE_ENV= CPPFLAGS="${SOCKSFLAGS} -I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" LIBS="-lgiconv ${SOCKSLIBS}" \ - CFLAGS="${CFLAGS}" - -pre-patch: - @${PERL} -pi -e 's|-lpthread|${PTHREAD_LIBS}|g ; \ - s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure - @find ${WRKSRC} -name "Makefile.in" | xargs ${PERL} -pi -e \ - 's|\$\(datadir\)/gnome/|\$\(datadir\)/|g ; \ - s|\$\(datadir\)/locale|\$\(prefix\)/share/locale|g' - -.include <bsd.port.mk> diff --git a/net/gnomeicu/gnomeicu/distinfo b/net/gnomeicu/gnomeicu/distinfo deleted file mode 100644 index 2eeb3fc7ef30..000000000000 --- a/net/gnomeicu/gnomeicu/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (gnomeicu-0.96.1.tar.bz2) = 1286c2d250562fc416836882b89bcdf1 diff --git a/net/gnomeicu/gnomeicu/files/patch-ac b/net/gnomeicu/gnomeicu/files/patch-ac deleted file mode 100644 index c0a042787c06..000000000000 --- a/net/gnomeicu/gnomeicu/files/patch-ac +++ /dev/null @@ -1,11 +0,0 @@ ---- po/Makefile.in.in.orig Sat Jan 29 16:04:07 2000 -+++ po/Makefile.in.in Sat Jan 29 16:08:19 2000 -@@ -19,7 +19,7 @@ - prefix = @prefix@ - exec_prefix = @exec_prefix@ - datadir = $(prefix)/@DATADIRNAME@ --localedir = $(datadir)/locale -+localedir = $(prefix)/share/locale - gnulocaledir = $(prefix)/share/locale - gettextsrcdir = $(prefix)/share/gettext/po - subdir = po diff --git a/net/gnomeicu/gnomeicu/files/patch-configure b/net/gnomeicu/gnomeicu/files/patch-configure deleted file mode 100644 index fcb467e8a8ef..000000000000 --- a/net/gnomeicu/gnomeicu/files/patch-configure +++ /dev/null @@ -1,16 +0,0 @@ ---- configure.orig Tue Feb 27 13:35:06 2001 -+++ configure Thu Apr 19 15:50:55 2001 -@@ -5039,5 +5039,5 @@ - --ac_safe=`echo "iconv.h" | sed 'y%./+-%__p_%'` --echo $ac_n "checking for iconv.h""... $ac_c" 1>&6 --echo "configure:5043: checking for iconv.h" >&5 -+ac_safe=`echo "giconv.h" | sed 'y%./+-%__p_%'` -+echo $ac_n "checking for giconv.h""... $ac_c" 1>&6 -+echo "configure:5043: checking for giconv.h" >&5 - if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then -@@ -5048,3 +5048,3 @@ - #include "confdefs.h" --#include <iconv.h> -+#include <giconv.h> - EOF diff --git a/net/gnomeicu/gnomeicu/files/patch-src::kanji_conv.c b/net/gnomeicu/gnomeicu/files/patch-src::kanji_conv.c deleted file mode 100644 index 497b91d16c89..000000000000 --- a/net/gnomeicu/gnomeicu/files/patch-src::kanji_conv.c +++ /dev/null @@ -1,7 +0,0 @@ ---- src/kanji_conv.c.orig Wed Jan 3 16:14:39 2001 -+++ src/kanji_conv.c Thu Apr 19 15:51:21 2001 -@@ -32,3 +32,3 @@ - #ifdef HAVE_ICONV --#include <iconv.h> -+#include <giconv.h> - #endif diff --git a/net/gnomeicu/gnomeicu/pkg-comment b/net/gnomeicu/gnomeicu/pkg-comment deleted file mode 100644 index bb39546ca3ca..000000000000 --- a/net/gnomeicu/gnomeicu/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -GNOME ICQ client diff --git a/net/gnomeicu/gnomeicu/pkg-descr b/net/gnomeicu/gnomeicu/pkg-descr deleted file mode 100644 index 1ea707c0865a..000000000000 --- a/net/gnomeicu/gnomeicu/pkg-descr +++ /dev/null @@ -1,8 +0,0 @@ - GnomeICU (previously GtkICQ) is an Internet based communications - program which makes use of ICQ protocol. GnomeICU also makes use of - Gnome, a growingly popular desktop environment.GnomeICU is released - under the GNU Public License, and is available free of charge. - -WWW: http://gnomeicu.gdev.net/ - -Jacques Vidrine <nectar@FreeBSD.ORG> diff --git a/net/gnomeicu/gnomeicu/pkg-plist b/net/gnomeicu/gnomeicu/pkg-plist deleted file mode 100644 index 89d6605f1c55..000000000000 --- a/net/gnomeicu/gnomeicu/pkg-plist +++ /dev/null @@ -1,124 +0,0 @@ -bin/gnomeicu -bin/gnomeicu-client -etc/CORBA/servers/GnomeICU.gnorba -etc/sound/events/GnomeICU.soundlist -share/gnome/applets/Network/GnomeICU.desktop -share/gnome/apps/Internet/GnomeICU.desktop -share/gnome/gnomeicu/icons/Default/gnomeicu-animation.png -share/gnome/gnomeicu/icons/Default/gnomeicu-auth.png -share/gnome/gnomeicu/icons/Default/gnomeicu-away.png -share/gnome/gnomeicu/icons/Default/gnomeicu-blank.png -share/gnome/gnomeicu/icons/Default/gnomeicu-cancel.png -share/gnome/gnomeicu/icons/Default/gnomeicu-chat.png -share/gnome/gnomeicu/icons/Default/gnomeicu-contact.png -share/gnome/gnomeicu/icons/Default/gnomeicu-dnd.png -share/gnome/gnomeicu/icons/Default/gnomeicu-ffc.png -share/gnome/gnomeicu/icons/Default/gnomeicu-file.png -share/gnome/gnomeicu/icons/Default/gnomeicu-hist.png -share/gnome/gnomeicu/icons/Default/gnomeicu-info -share/gnome/gnomeicu/icons/Default/gnomeicu-info.png -share/gnome/gnomeicu/icons/Default/gnomeicu-inv.png -share/gnome/gnomeicu/icons/Default/gnomeicu-message.png -share/gnome/gnomeicu/icons/Default/gnomeicu-na.png -share/gnome/gnomeicu/icons/Default/gnomeicu-occ.png -share/gnome/gnomeicu/icons/Default/gnomeicu-offline.png -share/gnome/gnomeicu/icons/Default/gnomeicu-ok.png -share/gnome/gnomeicu/icons/Default/gnomeicu-online.png -share/gnome/gnomeicu/icons/Default/gnomeicu-rename.png -share/gnome/gnomeicu/icons/Default/gnomeicu-still.png -share/gnome/gnomeicu/icons/Default/gnomeicu-url.png -share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-animation.png -share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-auth.png -share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-away.png -share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-blank.png -share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-cancel.png -share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-chat.png -share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-contact.png -share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-dnd.png -share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-ffc.png -share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-file.png -share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-hist.png -share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-info -share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-info.png -share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-inv.png -share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-message.png -share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-na.png -share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-occ.png -share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-offline.png -share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-ok.png -share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-online.png -share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-rename.png -share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-still.png -share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-url.png -share/gnome/gnomeicu/icons/Gradients/gnomeicu-animation.png -share/gnome/gnomeicu/icons/Gradients/gnomeicu-away.png -share/gnome/gnomeicu/icons/Gradients/gnomeicu-dnd.png -share/gnome/gnomeicu/icons/Gradients/gnomeicu-ffc.png -share/gnome/gnomeicu/icons/Gradients/gnomeicu-info -share/gnome/gnomeicu/icons/Gradients/gnomeicu-inv.png -share/gnome/gnomeicu/icons/Gradients/gnomeicu-na.png -share/gnome/gnomeicu/icons/Gradients/gnomeicu-occ.png -share/gnome/gnomeicu/icons/Gradients/gnomeicu-offline.png -share/gnome/gnomeicu/icons/Gradients/gnomeicu-online.png -share/gnome/gnomeicu/icons/reDubbed/gnomeicu-animation.png -share/gnome/gnomeicu/icons/reDubbed/gnomeicu-auth.png -share/gnome/gnomeicu/icons/reDubbed/gnomeicu-away.png -share/gnome/gnomeicu/icons/reDubbed/gnomeicu-blank.png -share/gnome/gnomeicu/icons/reDubbed/gnomeicu-cancel.png -share/gnome/gnomeicu/icons/reDubbed/gnomeicu-chat.png -share/gnome/gnomeicu/icons/reDubbed/gnomeicu-contact.png -share/gnome/gnomeicu/icons/reDubbed/gnomeicu-dnd.png -share/gnome/gnomeicu/icons/reDubbed/gnomeicu-ffc.png -share/gnome/gnomeicu/icons/reDubbed/gnomeicu-file.png -share/gnome/gnomeicu/icons/reDubbed/gnomeicu-hist.png -share/gnome/gnomeicu/icons/reDubbed/gnomeicu-info -share/gnome/gnomeicu/icons/reDubbed/gnomeicu-info.png -share/gnome/gnomeicu/icons/reDubbed/gnomeicu-inv.png -share/gnome/gnomeicu/icons/reDubbed/gnomeicu-message.png -share/gnome/gnomeicu/icons/reDubbed/gnomeicu-na.png -share/gnome/gnomeicu/icons/reDubbed/gnomeicu-occ.png -share/gnome/gnomeicu/icons/reDubbed/gnomeicu-offline.png -share/gnome/gnomeicu/icons/reDubbed/gnomeicu-ok.png -share/gnome/gnomeicu/icons/reDubbed/gnomeicu-online.png -share/gnome/gnomeicu/icons/reDubbed/gnomeicu-rename.png -share/gnome/gnomeicu/icons/reDubbed/gnomeicu-still.png -share/gnome/gnomeicu/icons/reDubbed/gnomeicu-url.png -share/gnome/help/gnomeicu/C/topic.dat -share/gnome/pixmaps/gnome-gnomeicu.xpm -share/gnome/sounds/gnomeicu/message.wav -share/locale/ca/LC_MESSAGES/gnomeicu.mo -share/locale/da/LC_MESSAGES/gnomeicu.mo -share/locale/de/LC_MESSAGES/gnomeicu.mo -share/locale/el/LC_MESSAGES/gnomeicu.mo -share/locale/es/LC_MESSAGES/gnomeicu.mo -share/locale/fi/LC_MESSAGES/gnomeicu.mo -share/locale/fr/LC_MESSAGES/gnomeicu.mo -share/locale/ga/LC_MESSAGES/gnomeicu.mo -share/locale/gl/LC_MESSAGES/gnomeicu.mo -share/locale/hu/LC_MESSAGES/gnomeicu.mo -share/locale/it/LC_MESSAGES/gnomeicu.mo -share/locale/ja/LC_MESSAGES/gnomeicu.mo -share/locale/ko/LC_MESSAGES/gnomeicu.mo -share/locale/lt/LC_MESSAGES/gnomeicu.mo -share/locale/nl/LC_MESSAGES/gnomeicu.mo -share/locale/no/LC_MESSAGES/gnomeicu.mo -share/locale/pl/LC_MESSAGES/gnomeicu.mo -share/locale/pt/LC_MESSAGES/gnomeicu.mo -share/locale/pt_BR/LC_MESSAGES/gnomeicu.mo -share/locale/ro/LC_MESSAGES/gnomeicu.mo -share/locale/ru/LC_MESSAGES/gnomeicu.mo -share/locale/sl/LC_MESSAGES/gnomeicu.mo -share/locale/sv/LC_MESSAGES/gnomeicu.mo -share/locale/tr/LC_MESSAGES/gnomeicu.mo -share/locale/uk/LC_MESSAGES/gnomeicu.mo -@dirrm share/gnome/gnomeicu/icons/Default -@dirrm share/gnome/gnomeicu/icons/Eyeballs -@dirrm share/gnome/gnomeicu/icons/Gradients -@dirrm share/gnome/gnomeicu/icons/reDubbed -@dirrm share/gnome/gnomeicu/icons -@dirrm share/gnome/gnomeicu -@exec mkdir -p %D/share/gnome/help/gnomeicu/C/images -@dirrm share/gnome/help/gnomeicu/C/images -@dirrm share/gnome/help/gnomeicu/C -@dirrm share/gnome/help/gnomeicu -@dirrm share/gnome/sounds/gnomeicu diff --git a/net/gnomeicu2/Makefile b/net/gnomeicu2/Makefile deleted file mode 100644 index 853dc427516e..000000000000 --- a/net/gnomeicu2/Makefile +++ /dev/null @@ -1,46 +0,0 @@ -# Ports collection Makefile for: GnomeICU -# Date created: 03/16/1999 -# Whom: nectar@FreeBSD.org -# -# $FreeBSD$ -# - -PORTNAME= gnomeicu -PORTVERSION= 0.96.1 -PORTREVISION= 2 -CATEGORIES= net gnome -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= gnomeicu - -MAINTAINER= gnome@FreeBSD.org - -USE_X_PREFIX= yes -USE_BZIP2= yes -USE_GNOME= yes -GNU_CONFIGURE= yes -.if defined(WITH_DANTE) -LIB_DEPENDS+= socks.1:${PORTSDIR}/net/dante -SOCKSFLAGS= -Dconnect=Rconnect -Dbind=Rbind -Dgetsockname=Rgetsockname \ - -Dgetpeername=Rgetpeername -Daccept=Raccept \ - -Drresvport=Rrresvport -Dbindresvport=Rbindresvport \ - -Dgethostbyname=Rgethostbyname \ - -Dgethostbyname2=Rgethostbyname2 -Dsendto=Rsendto \ - -Drecvfrom=Rrecvfrom -Drecvfrom=Rrecvfrom -Dwrite=Rwrite \ - -Dwritev=Rwritev -Dsend=Rsend -Dsendmsg=Rsendmsg \ - -Dread=Rread -Dreadv=Rreadv -Drecv=Rrecv -Drecvmsg=Rrecvmsg -SOCKSLIBS= -lsocks -.endif - -CONFIGURE_ARGS= --with-statusmenu -CONFIGURE_ENV= CPPFLAGS="${SOCKSFLAGS} -I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" LIBS="-lgiconv ${SOCKSLIBS}" \ - CFLAGS="${CFLAGS}" - -pre-patch: - @${PERL} -pi -e 's|-lpthread|${PTHREAD_LIBS}|g ; \ - s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure - @find ${WRKSRC} -name "Makefile.in" | xargs ${PERL} -pi -e \ - 's|\$\(datadir\)/gnome/|\$\(datadir\)/|g ; \ - s|\$\(datadir\)/locale|\$\(prefix\)/share/locale|g' - -.include <bsd.port.mk> diff --git a/net/gnomeicu2/distinfo b/net/gnomeicu2/distinfo deleted file mode 100644 index 2eeb3fc7ef30..000000000000 --- a/net/gnomeicu2/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (gnomeicu-0.96.1.tar.bz2) = 1286c2d250562fc416836882b89bcdf1 diff --git a/net/gnomeicu2/files/patch-ac b/net/gnomeicu2/files/patch-ac deleted file mode 100644 index c0a042787c06..000000000000 --- a/net/gnomeicu2/files/patch-ac +++ /dev/null @@ -1,11 +0,0 @@ ---- po/Makefile.in.in.orig Sat Jan 29 16:04:07 2000 -+++ po/Makefile.in.in Sat Jan 29 16:08:19 2000 -@@ -19,7 +19,7 @@ - prefix = @prefix@ - exec_prefix = @exec_prefix@ - datadir = $(prefix)/@DATADIRNAME@ --localedir = $(datadir)/locale -+localedir = $(prefix)/share/locale - gnulocaledir = $(prefix)/share/locale - gettextsrcdir = $(prefix)/share/gettext/po - subdir = po diff --git a/net/gnomeicu2/files/patch-configure b/net/gnomeicu2/files/patch-configure deleted file mode 100644 index fcb467e8a8ef..000000000000 --- a/net/gnomeicu2/files/patch-configure +++ /dev/null @@ -1,16 +0,0 @@ ---- configure.orig Tue Feb 27 13:35:06 2001 -+++ configure Thu Apr 19 15:50:55 2001 -@@ -5039,5 +5039,5 @@ - --ac_safe=`echo "iconv.h" | sed 'y%./+-%__p_%'` --echo $ac_n "checking for iconv.h""... $ac_c" 1>&6 --echo "configure:5043: checking for iconv.h" >&5 -+ac_safe=`echo "giconv.h" | sed 'y%./+-%__p_%'` -+echo $ac_n "checking for giconv.h""... $ac_c" 1>&6 -+echo "configure:5043: checking for giconv.h" >&5 - if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then -@@ -5048,3 +5048,3 @@ - #include "confdefs.h" --#include <iconv.h> -+#include <giconv.h> - EOF diff --git a/net/gnomeicu2/files/patch-src::kanji_conv.c b/net/gnomeicu2/files/patch-src::kanji_conv.c deleted file mode 100644 index 497b91d16c89..000000000000 --- a/net/gnomeicu2/files/patch-src::kanji_conv.c +++ /dev/null @@ -1,7 +0,0 @@ ---- src/kanji_conv.c.orig Wed Jan 3 16:14:39 2001 -+++ src/kanji_conv.c Thu Apr 19 15:51:21 2001 -@@ -32,3 +32,3 @@ - #ifdef HAVE_ICONV --#include <iconv.h> -+#include <giconv.h> - #endif diff --git a/net/gnomeicu2/pkg-comment b/net/gnomeicu2/pkg-comment deleted file mode 100644 index bb39546ca3ca..000000000000 --- a/net/gnomeicu2/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -GNOME ICQ client diff --git a/net/gnomeicu2/pkg-descr b/net/gnomeicu2/pkg-descr deleted file mode 100644 index 1ea707c0865a..000000000000 --- a/net/gnomeicu2/pkg-descr +++ /dev/null @@ -1,8 +0,0 @@ - GnomeICU (previously GtkICQ) is an Internet based communications - program which makes use of ICQ protocol. GnomeICU also makes use of - Gnome, a growingly popular desktop environment.GnomeICU is released - under the GNU Public License, and is available free of charge. - -WWW: http://gnomeicu.gdev.net/ - -Jacques Vidrine <nectar@FreeBSD.ORG> diff --git a/net/gnomeicu2/pkg-plist b/net/gnomeicu2/pkg-plist deleted file mode 100644 index 89d6605f1c55..000000000000 --- a/net/gnomeicu2/pkg-plist +++ /dev/null @@ -1,124 +0,0 @@ -bin/gnomeicu -bin/gnomeicu-client -etc/CORBA/servers/GnomeICU.gnorba -etc/sound/events/GnomeICU.soundlist -share/gnome/applets/Network/GnomeICU.desktop -share/gnome/apps/Internet/GnomeICU.desktop -share/gnome/gnomeicu/icons/Default/gnomeicu-animation.png -share/gnome/gnomeicu/icons/Default/gnomeicu-auth.png -share/gnome/gnomeicu/icons/Default/gnomeicu-away.png -share/gnome/gnomeicu/icons/Default/gnomeicu-blank.png -share/gnome/gnomeicu/icons/Default/gnomeicu-cancel.png -share/gnome/gnomeicu/icons/Default/gnomeicu-chat.png -share/gnome/gnomeicu/icons/Default/gnomeicu-contact.png -share/gnome/gnomeicu/icons/Default/gnomeicu-dnd.png -share/gnome/gnomeicu/icons/Default/gnomeicu-ffc.png -share/gnome/gnomeicu/icons/Default/gnomeicu-file.png -share/gnome/gnomeicu/icons/Default/gnomeicu-hist.png -share/gnome/gnomeicu/icons/Default/gnomeicu-info -share/gnome/gnomeicu/icons/Default/gnomeicu-info.png -share/gnome/gnomeicu/icons/Default/gnomeicu-inv.png -share/gnome/gnomeicu/icons/Default/gnomeicu-message.png -share/gnome/gnomeicu/icons/Default/gnomeicu-na.png -share/gnome/gnomeicu/icons/Default/gnomeicu-occ.png -share/gnome/gnomeicu/icons/Default/gnomeicu-offline.png -share/gnome/gnomeicu/icons/Default/gnomeicu-ok.png -share/gnome/gnomeicu/icons/Default/gnomeicu-online.png -share/gnome/gnomeicu/icons/Default/gnomeicu-rename.png -share/gnome/gnomeicu/icons/Default/gnomeicu-still.png -share/gnome/gnomeicu/icons/Default/gnomeicu-url.png -share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-animation.png -share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-auth.png -share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-away.png -share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-blank.png -share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-cancel.png -share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-chat.png -share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-contact.png -share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-dnd.png -share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-ffc.png -share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-file.png -share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-hist.png -share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-info -share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-info.png -share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-inv.png -share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-message.png -share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-na.png -share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-occ.png -share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-offline.png -share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-ok.png -share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-online.png -share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-rename.png -share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-still.png -share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-url.png -share/gnome/gnomeicu/icons/Gradients/gnomeicu-animation.png -share/gnome/gnomeicu/icons/Gradients/gnomeicu-away.png -share/gnome/gnomeicu/icons/Gradients/gnomeicu-dnd.png -share/gnome/gnomeicu/icons/Gradients/gnomeicu-ffc.png -share/gnome/gnomeicu/icons/Gradients/gnomeicu-info -share/gnome/gnomeicu/icons/Gradients/gnomeicu-inv.png -share/gnome/gnomeicu/icons/Gradients/gnomeicu-na.png -share/gnome/gnomeicu/icons/Gradients/gnomeicu-occ.png -share/gnome/gnomeicu/icons/Gradients/gnomeicu-offline.png -share/gnome/gnomeicu/icons/Gradients/gnomeicu-online.png -share/gnome/gnomeicu/icons/reDubbed/gnomeicu-animation.png -share/gnome/gnomeicu/icons/reDubbed/gnomeicu-auth.png -share/gnome/gnomeicu/icons/reDubbed/gnomeicu-away.png -share/gnome/gnomeicu/icons/reDubbed/gnomeicu-blank.png -share/gnome/gnomeicu/icons/reDubbed/gnomeicu-cancel.png -share/gnome/gnomeicu/icons/reDubbed/gnomeicu-chat.png -share/gnome/gnomeicu/icons/reDubbed/gnomeicu-contact.png -share/gnome/gnomeicu/icons/reDubbed/gnomeicu-dnd.png -share/gnome/gnomeicu/icons/reDubbed/gnomeicu-ffc.png -share/gnome/gnomeicu/icons/reDubbed/gnomeicu-file.png -share/gnome/gnomeicu/icons/reDubbed/gnomeicu-hist.png -share/gnome/gnomeicu/icons/reDubbed/gnomeicu-info -share/gnome/gnomeicu/icons/reDubbed/gnomeicu-info.png -share/gnome/gnomeicu/icons/reDubbed/gnomeicu-inv.png -share/gnome/gnomeicu/icons/reDubbed/gnomeicu-message.png -share/gnome/gnomeicu/icons/reDubbed/gnomeicu-na.png -share/gnome/gnomeicu/icons/reDubbed/gnomeicu-occ.png -share/gnome/gnomeicu/icons/reDubbed/gnomeicu-offline.png -share/gnome/gnomeicu/icons/reDubbed/gnomeicu-ok.png -share/gnome/gnomeicu/icons/reDubbed/gnomeicu-online.png -share/gnome/gnomeicu/icons/reDubbed/gnomeicu-rename.png -share/gnome/gnomeicu/icons/reDubbed/gnomeicu-still.png -share/gnome/gnomeicu/icons/reDubbed/gnomeicu-url.png -share/gnome/help/gnomeicu/C/topic.dat -share/gnome/pixmaps/gnome-gnomeicu.xpm -share/gnome/sounds/gnomeicu/message.wav -share/locale/ca/LC_MESSAGES/gnomeicu.mo -share/locale/da/LC_MESSAGES/gnomeicu.mo -share/locale/de/LC_MESSAGES/gnomeicu.mo -share/locale/el/LC_MESSAGES/gnomeicu.mo -share/locale/es/LC_MESSAGES/gnomeicu.mo -share/locale/fi/LC_MESSAGES/gnomeicu.mo -share/locale/fr/LC_MESSAGES/gnomeicu.mo -share/locale/ga/LC_MESSAGES/gnomeicu.mo -share/locale/gl/LC_MESSAGES/gnomeicu.mo -share/locale/hu/LC_MESSAGES/gnomeicu.mo -share/locale/it/LC_MESSAGES/gnomeicu.mo -share/locale/ja/LC_MESSAGES/gnomeicu.mo -share/locale/ko/LC_MESSAGES/gnomeicu.mo -share/locale/lt/LC_MESSAGES/gnomeicu.mo -share/locale/nl/LC_MESSAGES/gnomeicu.mo -share/locale/no/LC_MESSAGES/gnomeicu.mo -share/locale/pl/LC_MESSAGES/gnomeicu.mo -share/locale/pt/LC_MESSAGES/gnomeicu.mo -share/locale/pt_BR/LC_MESSAGES/gnomeicu.mo -share/locale/ro/LC_MESSAGES/gnomeicu.mo -share/locale/ru/LC_MESSAGES/gnomeicu.mo -share/locale/sl/LC_MESSAGES/gnomeicu.mo -share/locale/sv/LC_MESSAGES/gnomeicu.mo -share/locale/tr/LC_MESSAGES/gnomeicu.mo -share/locale/uk/LC_MESSAGES/gnomeicu.mo -@dirrm share/gnome/gnomeicu/icons/Default -@dirrm share/gnome/gnomeicu/icons/Eyeballs -@dirrm share/gnome/gnomeicu/icons/Gradients -@dirrm share/gnome/gnomeicu/icons/reDubbed -@dirrm share/gnome/gnomeicu/icons -@dirrm share/gnome/gnomeicu -@exec mkdir -p %D/share/gnome/help/gnomeicu/C/images -@dirrm share/gnome/help/gnomeicu/C/images -@dirrm share/gnome/help/gnomeicu/C -@dirrm share/gnome/help/gnomeicu -@dirrm share/gnome/sounds/gnomeicu diff --git a/net/gnomemeeting/Makefile b/net/gnomemeeting/Makefile deleted file mode 100644 index 34f3c2d3e310..000000000000 --- a/net/gnomemeeting/Makefile +++ /dev/null @@ -1,34 +0,0 @@ -# Ports collection Makefile for: gnomemeeting -# Date created: 24/07/2001 -# Whom: roger@FreeBSD.org -# -# $FreeBSD$ -# - -PORTNAME= gnomemeeting -PORTVERSION= 0.10 -CATEGORIES= net gnome -MASTER_SITES= http://130.104.229.225/gnomemeeting/downloads/0.10/sources/ \ - ftp://telepresence.dmem.strath.ac.uk/pub/openh323/ - -MAINTAINER= roger@FreeBSD.org - -LIB_DEPENDS= ldap.1:${PORTSDIR}/net/openldap \ - gdk_pixbuf.2:${PORTSDIR}/graphics/gdk-pixbuf/ - -BUILD_DEPENDS= ${NONEXISTENT}:${PORTSDIR}/net/openh323:build - -# note, we do not want to clean openh323, otherwise it has to build -# it all over again which can take several hours. -NOCLEANDEPENDS= yes - -USE_NEWGCC= yes -USE_GNOME= yes -USE_AUTOCONF= yes -USE_GTK= yes -USE_GMAKE= yes -CONFIGURE_ENV= LIBS=-L${PREFIX}/lib \ - PWLIBDIR=${WRKDIRPREFIX}${.CURDIR}/../openh323/work/pwlib \ - OPENH323DIR=${WRKDIRPREFIX}${.CURDIR}/../openh323/work/openh323 \ - -.include <bsd.port.mk> diff --git a/net/gnomemeeting/distinfo b/net/gnomemeeting/distinfo deleted file mode 100644 index e23ad8317204..000000000000 --- a/net/gnomemeeting/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (gnomemeeting-0.10.tar.gz) = 1d14f7ade38a7b7033825b9550c7da59 diff --git a/net/gnomemeeting/files/patch-aa b/net/gnomemeeting/files/patch-aa deleted file mode 100644 index 2bf26cd444d1..000000000000 --- a/net/gnomemeeting/files/patch-aa +++ /dev/null @@ -1,78 +0,0 @@ -*** configure.in.orig Sat Aug 18 00:20:58 2001 ---- configure.in Mon Aug 20 14:50:48 2001 -*************** AC_HEADER_STDC -*** 27,38 **** - AC_ARG_PROGRAM - - -! H323_INCLUDES="-I$PTLIB_INCLUDE_DIR/unix -I$PTLIB_INCLUDE_DIR/.. -I$PTLIB_INCLUDE_DIR/../ptclib -I/usr/include -I$OPENH323_INCLUDE_DIR" -! H323_LIBS="-lh323_linux_x86_r -ldl -lpt_linux_x86_r -lpthread" - - -! LDAP_INCLUDES="-I/usr/local/include" -! LDAP_LIBS="-lldap -llber -lresolv" - - GNOMEMEETING_INCLUDES="" - GNOMEMEETING_LDADD="" ---- 27,38 ---- - AC_ARG_PROGRAM - - -! H323_INCLUDES="-I$PWLIBDIR/include/ptlib/unix -I$PWLIBDIR/include -I$OPENH323DIR/include" -! H323_LIBS="-L$PWLIBDIR/lib -L$OPENH323DIR/lib -lh323_FreeBSD_x86_r -lpt_FreeBSD_x86_r -pthread -lssl -lcrypto -DP_SSL" - - -! LDAP_INCLUDES="-I/usr/include -I/usr/local/include" -! LDAP_LIBS="-L/usr/local/lib -lldap -llber" - - GNOMEMEETING_INCLUDES="" - GNOMEMEETING_LDADD="" -*************** dnl * -D_DEBUG -DPMEMORY_CHECK=1 -DPTRAC -*** 46,60 **** - dnl ************************************************************************* - - -! H323_CFLAGS="-DP_LINUX -m486 -D_REENTRANT -DP_HAS_SEMAPHORES -DP_PTHREADS -DPBYTE_ORDER=PLITTLE_ENDIAN -DHAS_OSS -O2" -! - - dnl ********************************************************************* - dnl ** GNOME ************************************************************ - dnl ********************************************************************* - -! GNOMEMEETING_INCLUDES="$H323_INCLUDES $H323_CFLAGS" -! GNOMEMEETING_LDADD="$GNOME_LIBDIR $GTK_LIBS $GNOMEGNORBA_LIBS $GNOME_APPLETS_LIBS $LDAP_LIBS $H323_LIBS `gtk-config --libs gthread`" - - GNOME_COMPILE_WARNINGS - GNOME_X_CHECKS ---- 46,59 ---- - dnl ************************************************************************* - - -! H323_CFLAGS="-DP_FREEBSD=400001 -DP_PTHREADS -DPBYTE_ORDER=PLITTLE_ENDIAN -DPTRACING -02 -DNDEBUG" - - dnl ********************************************************************* - dnl ** GNOME ************************************************************ - dnl ********************************************************************* - -! GNOMEMEETING_INCLUDES="$LDAP_INCLUDES $H323_INCLUDES $H323_CFLAGS" -! GNOMEMEETING_LDADD="$GNOME_LIBDIR $GTK_LIBS $GNOMEGNORBA_LIBS $GNOME_APPLETS_LIBS $LDAP_LIBS $H323_LIBS `gtk12-config --libs gthread`" - - GNOME_COMPILE_WARNINGS - GNOME_X_CHECKS -*************** AM_PROG_LIBTOOL -*** 64,70 **** - dnl ######################################################################### - dnl Check for LDAP if available. - dnl ######################################################################## -! AC_CHECK_LIB(resolv, res_gethostbyaddr, [LIBS="-lresolv $LIBS"], AC_MSG_ERROR([*** libresolv not found.]), -lresolv) - - AC_CHECK_LIB(ldap, ldap_simple_bind, LIBS="-lldap -llber $LIBS", AC_MSG_ERROR([*** LDAP library is not found.]), -llber) - ---- 63,69 ---- - dnl ######################################################################### - dnl Check for LDAP if available. - dnl ######################################################################## -! dnl AC_CHECK_LIB(resolv, res_gethostbyaddr, [LIBS="-lresolv $LIBS"], AC_MSG_ERROR([*** libresolv not found.]), -lresolv) - - AC_CHECK_LIB(ldap, ldap_simple_bind, LIBS="-lldap -llber $LIBS", AC_MSG_ERROR([*** LDAP library is not found.]), -llber) - diff --git a/net/gnomemeeting/files/patch-ad b/net/gnomemeeting/files/patch-ad deleted file mode 100644 index 90a3118a4274..000000000000 --- a/net/gnomemeeting/files/patch-ad +++ /dev/null @@ -1,18 +0,0 @@ -*** src/audio.h.orig Fri Aug 17 20:08:26 2001 ---- src/audio.h Mon Aug 20 07:54:33 2001 -*************** -*** 21,27 **** ---- 21,33 ---- - #define _AUDIO_H_ - - -+ #ifdef __linux__ - #include <linux/soundcard.h> -+ #endif -+ #ifdef __FreeBSD__ -+ #include <machine/soundcard.h> -+ #endif -+ - - - #include <sys/ioctl.h> diff --git a/net/gnomemeeting/files/patch-ae b/net/gnomemeeting/files/patch-ae deleted file mode 100644 index 9a8d68f49ca4..000000000000 --- a/net/gnomemeeting/files/patch-ae +++ /dev/null @@ -1,17 +0,0 @@ -*** src/webcam.h.orig Mon Aug 20 07:55:24 2001 ---- src/webcam.h Mon Aug 20 07:55:51 2001 -*************** -*** 23,29 **** ---- 23,34 ---- - #include <fcntl.h> - #include <unistd.h> - -+ #ifdef __linux__ - #include <linux/videodev.h> -+ #endif -+ #ifdef __FreeBSD__ -+ #include <machine/ioctl_meteor.h> -+ #endif - - #include <sys/ioctl.h> - #include <gtk/gtk.h> diff --git a/net/gnomemeeting/files/patch-ai b/net/gnomemeeting/files/patch-ai deleted file mode 100644 index 77763d4e07fa..000000000000 --- a/net/gnomemeeting/files/patch-ai +++ /dev/null @@ -1,41 +0,0 @@ -*** src/config.cpp.orig Mon Aug 13 17:19:15 2001 ---- src/config.cpp Fri Aug 17 18:03:23 2001 -*************** void read_config (options *opts) -*** 161,167 **** - // Do not free key and value as they are assigned as pointers to opts->audio_codecs - cpt++; - } -! - } - - ---- 161,175 ---- - // Do not free key and value as they are assigned as pointers to opts->audio_codecs - cpt++; - } -! -! /* handle old config files which do not have a Devices section */ -! if(opts->audio_device == NULL) opts->audio_device="/dev/dsp"; -! if(opts->audio_mixer == NULL) opts->audio_mixer="/dev/mixer"; -! #ifdef __linux__ -! if(opts->video_device == NULL) opts->video_device="/dev/video"; -! #else -! if(opts->video_device == NULL) opts->video_device="/dev/bktr0"; -! #endif - } - - -*************** void init_config (void) -*** 419,425 **** ---- 427,437 ---- - - gnome_config_set_string ("Devices/audio_device", "/dev/dsp"); - gnome_config_set_string ("Devices/audio_mixer", "/dev/mixer"); -+ #ifdef __linux__ - gnome_config_set_string ("Devices/video_device", "/dev/video"); -+ #else -+ gnome_config_set_string ("Devices/video_device", "/dev/bktr0"); -+ #endif - gnome_config_set_int ("Devices/video_channel", 0); - - gnome_config_set_string ("Placement/Dock", diff --git a/net/gnomemeeting/pkg-comment b/net/gnomemeeting/pkg-comment deleted file mode 100644 index bec41f50ea5b..000000000000 --- a/net/gnomemeeting/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -GNOME H323 Video Conferencing program, similar to NetMeeting diff --git a/net/gnomemeeting/pkg-descr b/net/gnomemeeting/pkg-descr deleted file mode 100644 index edc41ed20bbd..000000000000 --- a/net/gnomemeeting/pkg-descr +++ /dev/null @@ -1,11 +0,0 @@ -gnomemeeting is a H323 Video Conferencing application which uses the H323 -protocol and the OpenH323 libraries. - -It can connect to a variety of other H323 applications including -Microsoft NetMeeting, OpenMCU, OpenAM and OhPhone. - -It is very similar to NetMeeting, and also support ILS servers - -WWW: http://www.gnomemeeting.org/ - -Roger Hardiman <roger@freebsd.org> diff --git a/net/gnomemeeting/pkg-plist b/net/gnomemeeting/pkg-plist deleted file mode 100644 index b0472f7a382a..000000000000 --- a/net/gnomemeeting/pkg-plist +++ /dev/null @@ -1,8 +0,0 @@ -bin/gnomemeeting -share/gnome/sounds/gnomemeeting/gnomemeeting.wav -share/gnome/apps/Internet/gnomemeeting.desktop -lib/locale/fr/LC_MESSAGES/gnomemeeting.mo -pixmaps/gnomemeeting-logo-icon.png -pixmaps/gnomemeeting-logo.png -#humm, what do with /etc/sound/events/GnomeMeeting.soundlist - diff --git a/net/gnomemeeting2/Makefile b/net/gnomemeeting2/Makefile deleted file mode 100644 index 34f3c2d3e310..000000000000 --- a/net/gnomemeeting2/Makefile +++ /dev/null @@ -1,34 +0,0 @@ -# Ports collection Makefile for: gnomemeeting -# Date created: 24/07/2001 -# Whom: roger@FreeBSD.org -# -# $FreeBSD$ -# - -PORTNAME= gnomemeeting -PORTVERSION= 0.10 -CATEGORIES= net gnome -MASTER_SITES= http://130.104.229.225/gnomemeeting/downloads/0.10/sources/ \ - ftp://telepresence.dmem.strath.ac.uk/pub/openh323/ - -MAINTAINER= roger@FreeBSD.org - -LIB_DEPENDS= ldap.1:${PORTSDIR}/net/openldap \ - gdk_pixbuf.2:${PORTSDIR}/graphics/gdk-pixbuf/ - -BUILD_DEPENDS= ${NONEXISTENT}:${PORTSDIR}/net/openh323:build - -# note, we do not want to clean openh323, otherwise it has to build -# it all over again which can take several hours. -NOCLEANDEPENDS= yes - -USE_NEWGCC= yes -USE_GNOME= yes -USE_AUTOCONF= yes -USE_GTK= yes -USE_GMAKE= yes -CONFIGURE_ENV= LIBS=-L${PREFIX}/lib \ - PWLIBDIR=${WRKDIRPREFIX}${.CURDIR}/../openh323/work/pwlib \ - OPENH323DIR=${WRKDIRPREFIX}${.CURDIR}/../openh323/work/openh323 \ - -.include <bsd.port.mk> diff --git a/net/gnomemeeting2/distinfo b/net/gnomemeeting2/distinfo deleted file mode 100644 index e23ad8317204..000000000000 --- a/net/gnomemeeting2/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (gnomemeeting-0.10.tar.gz) = 1d14f7ade38a7b7033825b9550c7da59 diff --git a/net/gnomemeeting2/files/patch-aa b/net/gnomemeeting2/files/patch-aa deleted file mode 100644 index 2bf26cd444d1..000000000000 --- a/net/gnomemeeting2/files/patch-aa +++ /dev/null @@ -1,78 +0,0 @@ -*** configure.in.orig Sat Aug 18 00:20:58 2001 ---- configure.in Mon Aug 20 14:50:48 2001 -*************** AC_HEADER_STDC -*** 27,38 **** - AC_ARG_PROGRAM - - -! H323_INCLUDES="-I$PTLIB_INCLUDE_DIR/unix -I$PTLIB_INCLUDE_DIR/.. -I$PTLIB_INCLUDE_DIR/../ptclib -I/usr/include -I$OPENH323_INCLUDE_DIR" -! H323_LIBS="-lh323_linux_x86_r -ldl -lpt_linux_x86_r -lpthread" - - -! LDAP_INCLUDES="-I/usr/local/include" -! LDAP_LIBS="-lldap -llber -lresolv" - - GNOMEMEETING_INCLUDES="" - GNOMEMEETING_LDADD="" ---- 27,38 ---- - AC_ARG_PROGRAM - - -! H323_INCLUDES="-I$PWLIBDIR/include/ptlib/unix -I$PWLIBDIR/include -I$OPENH323DIR/include" -! H323_LIBS="-L$PWLIBDIR/lib -L$OPENH323DIR/lib -lh323_FreeBSD_x86_r -lpt_FreeBSD_x86_r -pthread -lssl -lcrypto -DP_SSL" - - -! LDAP_INCLUDES="-I/usr/include -I/usr/local/include" -! LDAP_LIBS="-L/usr/local/lib -lldap -llber" - - GNOMEMEETING_INCLUDES="" - GNOMEMEETING_LDADD="" -*************** dnl * -D_DEBUG -DPMEMORY_CHECK=1 -DPTRAC -*** 46,60 **** - dnl ************************************************************************* - - -! H323_CFLAGS="-DP_LINUX -m486 -D_REENTRANT -DP_HAS_SEMAPHORES -DP_PTHREADS -DPBYTE_ORDER=PLITTLE_ENDIAN -DHAS_OSS -O2" -! - - dnl ********************************************************************* - dnl ** GNOME ************************************************************ - dnl ********************************************************************* - -! GNOMEMEETING_INCLUDES="$H323_INCLUDES $H323_CFLAGS" -! GNOMEMEETING_LDADD="$GNOME_LIBDIR $GTK_LIBS $GNOMEGNORBA_LIBS $GNOME_APPLETS_LIBS $LDAP_LIBS $H323_LIBS `gtk-config --libs gthread`" - - GNOME_COMPILE_WARNINGS - GNOME_X_CHECKS ---- 46,59 ---- - dnl ************************************************************************* - - -! H323_CFLAGS="-DP_FREEBSD=400001 -DP_PTHREADS -DPBYTE_ORDER=PLITTLE_ENDIAN -DPTRACING -02 -DNDEBUG" - - dnl ********************************************************************* - dnl ** GNOME ************************************************************ - dnl ********************************************************************* - -! GNOMEMEETING_INCLUDES="$LDAP_INCLUDES $H323_INCLUDES $H323_CFLAGS" -! GNOMEMEETING_LDADD="$GNOME_LIBDIR $GTK_LIBS $GNOMEGNORBA_LIBS $GNOME_APPLETS_LIBS $LDAP_LIBS $H323_LIBS `gtk12-config --libs gthread`" - - GNOME_COMPILE_WARNINGS - GNOME_X_CHECKS -*************** AM_PROG_LIBTOOL -*** 64,70 **** - dnl ######################################################################### - dnl Check for LDAP if available. - dnl ######################################################################## -! AC_CHECK_LIB(resolv, res_gethostbyaddr, [LIBS="-lresolv $LIBS"], AC_MSG_ERROR([*** libresolv not found.]), -lresolv) - - AC_CHECK_LIB(ldap, ldap_simple_bind, LIBS="-lldap -llber $LIBS", AC_MSG_ERROR([*** LDAP library is not found.]), -llber) - ---- 63,69 ---- - dnl ######################################################################### - dnl Check for LDAP if available. - dnl ######################################################################## -! dnl AC_CHECK_LIB(resolv, res_gethostbyaddr, [LIBS="-lresolv $LIBS"], AC_MSG_ERROR([*** libresolv not found.]), -lresolv) - - AC_CHECK_LIB(ldap, ldap_simple_bind, LIBS="-lldap -llber $LIBS", AC_MSG_ERROR([*** LDAP library is not found.]), -llber) - diff --git a/net/gnomemeeting2/files/patch-ad b/net/gnomemeeting2/files/patch-ad deleted file mode 100644 index 90a3118a4274..000000000000 --- a/net/gnomemeeting2/files/patch-ad +++ /dev/null @@ -1,18 +0,0 @@ -*** src/audio.h.orig Fri Aug 17 20:08:26 2001 ---- src/audio.h Mon Aug 20 07:54:33 2001 -*************** -*** 21,27 **** ---- 21,33 ---- - #define _AUDIO_H_ - - -+ #ifdef __linux__ - #include <linux/soundcard.h> -+ #endif -+ #ifdef __FreeBSD__ -+ #include <machine/soundcard.h> -+ #endif -+ - - - #include <sys/ioctl.h> diff --git a/net/gnomemeeting2/files/patch-ae b/net/gnomemeeting2/files/patch-ae deleted file mode 100644 index 9a8d68f49ca4..000000000000 --- a/net/gnomemeeting2/files/patch-ae +++ /dev/null @@ -1,17 +0,0 @@ -*** src/webcam.h.orig Mon Aug 20 07:55:24 2001 ---- src/webcam.h Mon Aug 20 07:55:51 2001 -*************** -*** 23,29 **** ---- 23,34 ---- - #include <fcntl.h> - #include <unistd.h> - -+ #ifdef __linux__ - #include <linux/videodev.h> -+ #endif -+ #ifdef __FreeBSD__ -+ #include <machine/ioctl_meteor.h> -+ #endif - - #include <sys/ioctl.h> - #include <gtk/gtk.h> diff --git a/net/gnomemeeting2/files/patch-ai b/net/gnomemeeting2/files/patch-ai deleted file mode 100644 index 77763d4e07fa..000000000000 --- a/net/gnomemeeting2/files/patch-ai +++ /dev/null @@ -1,41 +0,0 @@ -*** src/config.cpp.orig Mon Aug 13 17:19:15 2001 ---- src/config.cpp Fri Aug 17 18:03:23 2001 -*************** void read_config (options *opts) -*** 161,167 **** - // Do not free key and value as they are assigned as pointers to opts->audio_codecs - cpt++; - } -! - } - - ---- 161,175 ---- - // Do not free key and value as they are assigned as pointers to opts->audio_codecs - cpt++; - } -! -! /* handle old config files which do not have a Devices section */ -! if(opts->audio_device == NULL) opts->audio_device="/dev/dsp"; -! if(opts->audio_mixer == NULL) opts->audio_mixer="/dev/mixer"; -! #ifdef __linux__ -! if(opts->video_device == NULL) opts->video_device="/dev/video"; -! #else -! if(opts->video_device == NULL) opts->video_device="/dev/bktr0"; -! #endif - } - - -*************** void init_config (void) -*** 419,425 **** ---- 427,437 ---- - - gnome_config_set_string ("Devices/audio_device", "/dev/dsp"); - gnome_config_set_string ("Devices/audio_mixer", "/dev/mixer"); -+ #ifdef __linux__ - gnome_config_set_string ("Devices/video_device", "/dev/video"); -+ #else -+ gnome_config_set_string ("Devices/video_device", "/dev/bktr0"); -+ #endif - gnome_config_set_int ("Devices/video_channel", 0); - - gnome_config_set_string ("Placement/Dock", diff --git a/net/gnomemeeting2/pkg-comment b/net/gnomemeeting2/pkg-comment deleted file mode 100644 index bec41f50ea5b..000000000000 --- a/net/gnomemeeting2/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -GNOME H323 Video Conferencing program, similar to NetMeeting diff --git a/net/gnomemeeting2/pkg-descr b/net/gnomemeeting2/pkg-descr deleted file mode 100644 index edc41ed20bbd..000000000000 --- a/net/gnomemeeting2/pkg-descr +++ /dev/null @@ -1,11 +0,0 @@ -gnomemeeting is a H323 Video Conferencing application which uses the H323 -protocol and the OpenH323 libraries. - -It can connect to a variety of other H323 applications including -Microsoft NetMeeting, OpenMCU, OpenAM and OhPhone. - -It is very similar to NetMeeting, and also support ILS servers - -WWW: http://www.gnomemeeting.org/ - -Roger Hardiman <roger@freebsd.org> diff --git a/net/gnomemeeting2/pkg-plist b/net/gnomemeeting2/pkg-plist deleted file mode 100644 index b0472f7a382a..000000000000 --- a/net/gnomemeeting2/pkg-plist +++ /dev/null @@ -1,8 +0,0 @@ -bin/gnomemeeting -share/gnome/sounds/gnomemeeting/gnomemeeting.wav -share/gnome/apps/Internet/gnomemeeting.desktop -lib/locale/fr/LC_MESSAGES/gnomemeeting.mo -pixmaps/gnomemeeting-logo-icon.png -pixmaps/gnomemeeting-logo.png -#humm, what do with /etc/sound/events/GnomeMeeting.soundlist - diff --git a/net/hping/Makefile b/net/hping/Makefile deleted file mode 100644 index f61dd0afb4b2..000000000000 --- a/net/hping/Makefile +++ /dev/null @@ -1,34 +0,0 @@ -# New ports collection makefile for: hping -# Date Created: 5 Oct 2000 -# Whom: Roman Shterenzon <roman@xpert.com> -# -# $FreeBSD$ -# - -PORTNAME= hping -PORTVERSION= 2b54 -PORTREVISION= 1 -CATEGORIES= security net -MASTER_SITES= http://www.kyuzz.org/antirez/hping2-src/ -DISTNAME= hping2-beta54 - -MAINTAINER= roman@xpert.com - -BROKEN= See PR 28974 - -GNU_CONFIGURE= yes -CONFIGURE_ARGS+= --force-libpcap - -MAN8= hping.8 - -do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/hping2 ${PREFIX}/sbin/hping - ${INSTALL_MAN} ${WRKSRC}/docs/hping2.8 ${PREFIX}/man/man8/hping.8 -.if !defined(NOPORTDOCS) - ${MKDIR} ${PREFIX}/share/doc/hping -.for i in AS-BACKDOOR HPING2-HOWTO.txt HPING2-IS-OPEN MORE-FUN-WITH-IPID SPOOFED_SCAN.txt - ${INSTALL_DATA} ${WRKSRC}/docs/${i} ${PREFIX}/share/doc/hping/ -.endfor -.endif - -.include <bsd.port.mk> diff --git a/net/hping/distinfo b/net/hping/distinfo deleted file mode 100644 index 06733487e4a6..000000000000 --- a/net/hping/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (hping2-beta54.tar.gz) = 703f2102b948f214d59d89b41bca9923 diff --git a/net/hping/files/patch-aa b/net/hping/files/patch-aa deleted file mode 100644 index f60706776698..000000000000 --- a/net/hping/files/patch-aa +++ /dev/null @@ -1,22 +0,0 @@ ---- configure.orig Thu Jul 6 20:06:10 2000 -+++ configure Thu Oct 5 15:33:45 2000 -@@ -65,8 +65,8 @@ - ;; - *"--force-libpcap") - FORCE_LIBPCAP="-DFORCE_LIBPCAP" -- PCAP="PCAP=libpcap/libpcap.a" -- PCAP_INCLUDE="-I./libpcap" -+ PCAP="PCAP=-lpcap" -+ PCAP_INCLUDE="" - ;; - *"--dont-use-proc") - HAVE_PROC="" -@@ -92,7 +92,7 @@ - -e s/@FORCE_LIBPCAP@/"$FORCE_LIBPCAP"/g \ - -e s/@HAVE_PROC@/"$HAVE_PROC"/g \ - -e s^@PCAP@^"$PCAP"^g \ -- -e s^@PCAP_INCLUDE@^"$PCAP_INCLUDE$"^g \ -+ -e s^@PCAP_INCLUDE@^"$PCAP_INCLUDE"^g \ - -e s^@MANPATH@^"$INSTALL_MANPATH"^g \ - > Makefile - diff --git a/net/hping/files/patch-ab b/net/hping/files/patch-ab deleted file mode 100644 index fcc4cad3fa43..000000000000 --- a/net/hping/files/patch-ab +++ /dev/null @@ -1,13 +0,0 @@ ---- Makefile.in.orig Thu Oct 5 15:22:25 2000 -+++ Makefile.in Thu Oct 5 15:25:28 2000 -@@ -6,8 +6,8 @@ - # $date: Sun Jul 25 17:56:15 MET DST 1999$ - # $rev: 3$ - --CC= gcc --CCOPT= -O2 -Wall @PCAP_INCLUDE@ -+CC?= gcc -+CCOPT= $(CFLAGS) -Wall @PCAP_INCLUDE@ - DEBUG= -g - #uncomment the following if you need libpcap based build under linux - #(not raccomanded) diff --git a/net/hping/files/patch-ac b/net/hping/files/patch-ac deleted file mode 100644 index ca68c8d0719b..000000000000 --- a/net/hping/files/patch-ac +++ /dev/null @@ -1,28 +0,0 @@ ---- getlhs.c.orig Mon Jun 4 16:17:30 2001 -+++ getlhs.c Mon Jun 4 16:17:32 2001 -@@ -73,6 +73,7 @@ - else if ( strstr(ifname, "eth") /* ? */ - || strstr(ifname, "ed") - || strstr(ifname, "ne") -+ || strstr(ifname, "xe") /* Xircom */ - || strstr(ifname, "xl") /* 3com */ - || strstr(ifname, "vx") /* 3com (older model) */ - || strstr(ifname, "ep") /* 3com 3c589 */ -@@ -85,6 +86,17 @@ - || strstr(ifname, "sk") /* SysKonnect SK-984x */ - || strstr(ifname, "tl") /* Compaq Netelligent 10/10+TNETE100 */ - || strstr(ifname, "tx") /* SMC 9432TX */ -+ || strstr(ifname, "an") /* Aironet 4500/4800 */ -+ || strstr(ifname, "awi") /* PRISM I IEEE 802.11b wireless NIC */ -+ || strstr(ifname, "dc") /* DEC/Intel 21143 and workalikes */ -+ || strstr(ifname, "de") /* Digital Equipment DC21040 */ -+ || strstr(ifname, "pcn") /* AMD Am79C79x */\ -+ || strstr(ifname, "sis") /* SiS 900/SiS 7016 */ -+ || strstr(ifname, "ste") /* Sundance ST201 */ -+ || strstr(ifname, "vr") /* VIA Rhine, Rhine II */ -+ || strstr(ifname, "vx") /* 3com (older model) */ -+ || strstr(ifname, "wi") /* WaveLAN/IEEE 802.11 wireless NICs */ -+ || strstr(ifname, "wx") /* Intel Gigabit "Wiseman" */ - || strstr(ifname, "wb")) /* Winbond W89C840F chip */ - { - linkhdr_size = ETHHDR_SIZE; diff --git a/net/hping/pkg-comment b/net/hping/pkg-comment deleted file mode 100644 index 2c244dd70f04..000000000000 --- a/net/hping/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Network auditing tool diff --git a/net/hping/pkg-descr b/net/hping/pkg-descr deleted file mode 100644 index 3ea23af55788..000000000000 --- a/net/hping/pkg-descr +++ /dev/null @@ -1,22 +0,0 @@ -hping2 is a network tool able to send custom ICMP/UDP/TCP -packets and to display target replies like ping do with -ICMP replies. hping2 handle fragmentation, arbitrary packet -body and size and can be used in order to transfer files -under supported protocols. Using hping2 you are able at -least to perform the following jobs: - - - Test firewall rules - - [spoofed] port scanning - - Test net performance using different protocols, - packet size, TOS (type of service) and fragmentation. - - Path MTU discovery - - Files transfering even between really fascist firewall rules. - - Traceroute like under different protocols. - - Firewalk like usage. - - Remote OS fingerprint. - - TCP/IP stack auditing. - - A lot of others. - -WWW: http://www.kyuzz.org/antirez/hping/ - --- Roman Shterenzon <roman@xpert.com> diff --git a/net/hping/pkg-plist b/net/hping/pkg-plist deleted file mode 100644 index 53c3a3af705f..000000000000 --- a/net/hping/pkg-plist +++ /dev/null @@ -1,7 +0,0 @@ -sbin/hping -%%PORTDOCS%%share/doc/hping/AS-BACKDOOR -%%PORTDOCS%%share/doc/hping/HPING2-HOWTO.txt -%%PORTDOCS%%share/doc/hping/HPING2-IS-OPEN -%%PORTDOCS%%share/doc/hping/MORE-FUN-WITH-IPID -%%PORTDOCS%%share/doc/hping/SPOOFED_SCAN.txt -%%PORTDOCS%%@dirrm share/doc/hping diff --git a/net/imm/Makefile b/net/imm/Makefile deleted file mode 100644 index 4ca41dd5f326..000000000000 --- a/net/imm/Makefile +++ /dev/null @@ -1,42 +0,0 @@ -# New ports collection makefile for: imm -# Date created: 13 October 1994 -# Whom: wollman -# -# $FreeBSD$ -# - -PORTNAME= imm -PORTVERSION= 3.5a1 -CATEGORIES= mbone tk82 -MASTER_SITES= ftp://ftp.hawaii.edu/paccom/imm-3.5a1/ -DISTNAME= imm.source -EXTRACT_SUFX= .tar.Z - -MAINTAINER= fenner@freebsd.org - -LIB_DEPENDS= tk82.1:${PORTSDIR}/x11-toolkits/tk82 - -WRKSRC= ${WRKDIR}/mnm -USE_X_PREFIX= yes - -post-extract: - @${MKDIR} ${WRKSRC}/freebsd - @${CP} ${FILESDIR}/Makefile.work ${WRKSRC}/Makefile - @${CP} ${FILESDIR}/Makefile.freebsd ${WRKSRC}/src - -# The included makefile doesn't have an "install" target. -do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/freebsd/imm ${PREFIX}/bin - ${INSTALL_PROGRAM} ${WRKSRC}/freebsd/immserv ${PREFIX}/bin - ${INSTALL_PROGRAM} ${WRKSRC}/freebsd/lscomp ${PREFIX}/bin -# and no man pages at all yet. -# But include the very limited documentation - ${MKDIR} ${PREFIX}/share/doc/imm -.if !defined(NOPORTDOCS) - ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/imm - ${INSTALL_DATA} ${WRKSRC}/imm_readme.txt ${PREFIX}/share/doc/imm -.endif -# The sdr plugin is pretty much required. - ${INSTALL_DATA} ${WRKSRC}/sdr2.plugin.S53.image.imm ${PREFIX}/share/doc/imm - -.include <bsd.port.mk> diff --git a/net/imm/distinfo b/net/imm/distinfo deleted file mode 100644 index 672f0d0c6e34..000000000000 --- a/net/imm/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (imm.source.tar.Z) = bf2713e5dca81daaecbc0bbcaf7af667 diff --git a/net/imm/files/Makefile.freebsd b/net/imm/files/Makefile.freebsd deleted file mode 100644 index ae7ce6434e6f..000000000000 --- a/net/imm/files/Makefile.freebsd +++ /dev/null @@ -1,77 +0,0 @@ -# Some versions of make, like SGI's, use the following variable to -# determine which shell to use for executing commands: -SHELL = /bin/sh -INCLUDE_DIR = -I${PREFIX}/include -I${LOCALBASE}/include/tcl8.2 -I${LOCALBASE}/include/tk8.2 -# Libraries to use when linking: -LIBS = -lm - -TKLIBS= -L$(PREFIX)/lib -L${LOCALBASE}/lib -ltk82 -ltcl82 -lX11 - -TARGET = ../freebsd - -CFLAGS = -g -DSIG_T=void -DMULTICAST -I. -DERROR_TEST - -CC = gcc -CC_SWITCHES = ${CFLAGS} - -ROBJS = protocol.o utils.o - -SOBJS = protocol.o immserv.o sorttree.o utils.o - -MOBJS = protocol.o mnmserver.o sorttree.o utils.o - -all: $(TARGET)/imm $(TARGET)/immserv $(TARGET)/lscomp - -$(TARGET)/mnm: $(ROBJS) main.o xlopen.o mcl.o - $(CC) $(CFLAGS) main.o xlopen.o mcl.o $(ROBJS) $(LIBS) -o $(TARGET)/mnm - -$(TARGET)/imm: $(ROBJS) tkAppInit.o imm_init.o imm.o xlopen_imm.o - $(CC) $(CFLAGS) tkAppInit.o imm_init.o imm.o xlopen_imm.o $(ROBJS) $(TKLIBS) $(LIBS) -o $(TARGET)/imm - -$(TARGET)/immserv: $(SOBJS) - $(CC) $(CFLAGS) $(SOBJS) $(LIBS) -o $(TARGET)/immserv - -$(TARGET)/lscomp: lscomp.o protocol.o sorttree.o utils.o - $(CC) $(CFLAGS) lscomp.o protocol.o sorttree.o utils.o $(LIBS) -o $(TARGET)/lscomp - -clean: - rm -f *.o tcl2c $(TARGET)/mnm $(TARGET)/lscomp $(TARGET)/imm $(TARGET)/immserv - -tcl2c: tcl2c.c - $(CC) $(CFLAGS) tcl2c.c $(LIBS) -o tcl2c - -imm_init.c: tcl2c imm_def.tcl mcl.tcl Radio.tcl Listbox.tcl viewbox.tcl filebox.tcl mkHostname.tcl - ./tcl2c IMM_Init < imm_def.tcl > imm_init.c - ./tcl2c MCL < mcl.tcl >> imm_init.c - ./tcl2c RADIO < Radio.tcl >> imm_init.c - ./tcl2c LISTBOX < Listbox.tcl >> imm_init.c - ./tcl2c VIEWBOX < viewbox.tcl >> imm_init.c - ./tcl2c FILEBOX < filebox.tcl >> imm_init.c - ./tcl2c HOSTBOX < mkHostname.tcl >> imm_init.c - ./tcl2c SERVERBOX < mnmserv.tcl >> imm_init.c - -imm_init.o: imm_init.c - -main.o: main.c - -mcl.o: mcl.c - -imm.o: mcl.c - gcc $(CFLAGS) -DIMM $(INCLUDE_DIR) -c mcl.c -o imm.o - -xlopen_imm.o: xlopen.c - gcc $(CFLAGS) -DIMM $(INCLUDE_DIR) -c xlopen.c -o xlopen_imm.o - -tkAppInit.o: tkAppInit.c - gcc $(CFLAGS) $(INCLUDE_DIR) tkAppInit.c -c - -protocol.o: protocol.c - -utils.o: utils.c - -lscomp.o: lscomp.c - -sorttree.o: sorttree.c immserv.h - -immserv.o: immserv.c immserv.h - diff --git a/net/imm/files/Makefile.work b/net/imm/files/Makefile.work deleted file mode 100644 index cb876d343f9e..000000000000 --- a/net/imm/files/Makefile.work +++ /dev/null @@ -1,2 +0,0 @@ -all install: - cd src; ${MAKE} -f Makefile.freebsd $@ diff --git a/net/imm/files/patch-aa b/net/imm/files/patch-aa deleted file mode 100644 index f7cb9a9cefc8..000000000000 --- a/net/imm/files/patch-aa +++ /dev/null @@ -1,11 +0,0 @@ ---- src/mcl.c.orig Tue Nov 19 12:33:49 1996 -+++ src/mcl.c Tue Nov 19 12:34:23 1996 -@@ -25,7 +25,7 @@ - - #define MAIN - #include "protocol.h" --#include <malloc.h> -+#include <stdlib.h> - #include <fcntl.h> - #include <sys/socket.h> - #include <netinet/in.h> diff --git a/net/imm/files/patch-ab b/net/imm/files/patch-ab deleted file mode 100644 index 4b1f038304da..000000000000 --- a/net/imm/files/patch-ab +++ /dev/null @@ -1,11 +0,0 @@ ---- src/xlopen.c.orig Tue Nov 19 12:33:53 1996 -+++ src/xlopen.c Tue Nov 19 12:35:01 1996 -@@ -34,7 +34,7 @@ - extern int optind, opterr; - extern int useimageloader; - extern struct hosttype *hosts_tail; --#ifndef __NetBSD__ -+#if !defined(__NetBSD__) && !defined(__FreeBSD__) /* XXX */ - extern char *sys_errlist[]; - #endif - extern unsigned int total; diff --git a/net/imm/files/patch-ac b/net/imm/files/patch-ac deleted file mode 100644 index 2da9e3a99e12..000000000000 --- a/net/imm/files/patch-ac +++ /dev/null @@ -1,11 +0,0 @@ ---- src/immserv.c.orig Tue Nov 19 12:36:41 1996 -+++ src/immserv.c Tue Nov 19 12:37:32 1996 -@@ -1407,7 +1407,7 @@ - /******************************************************************************/ - void setackalarm(int nop) {} - /******************************************************************************/ --#ifndef __NetBSD__ -+#if !defined(__NetBSD__) && !defined(__FreeBSD__) /* XXX */ - /* routine to put process to sleep */ - int usleep( wait) - u_int wait; diff --git a/net/imm/pkg-comment b/net/imm/pkg-comment deleted file mode 100644 index 3b8b83a184f7..000000000000 --- a/net/imm/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Internet Image(or other data) Multicaster (and receiver) diff --git a/net/imm/pkg-descr b/net/imm/pkg-descr deleted file mode 100644 index 339f05932750..000000000000 --- a/net/imm/pkg-descr +++ /dev/null @@ -1,10 +0,0 @@ -IMM has been designed to efficiently replicate files/file directories -using a reliable dissemination protocol framework and provide archiving -and post processing features. The default mode of operation is for imm -to receive and display compressed imagery files (e.g., jpg,gif) using -xv or xloadimage as a post processor. - -This release includes an sdr plug-in, named sdr2.plugin.S53.image.imm, -which must be installed to participate in MBone alpha testing of imm sessions. -Usually in a directory called ~home/.sdr/plugins to be found by sdr. -See the sdr help pages for information on installing plugins. diff --git a/net/imm/pkg-plist b/net/imm/pkg-plist deleted file mode 100644 index f470d0e00c01..000000000000 --- a/net/imm/pkg-plist +++ /dev/null @@ -1,7 +0,0 @@ -bin/imm -bin/immserv -bin/lscomp -share/doc/imm/README -share/doc/imm/imm_readme.txt -share/doc/imm/sdr2.plugin.S53.image.imm -@dirrm share/doc/imm diff --git a/net/irrtoolset/Makefile b/net/irrtoolset/Makefile deleted file mode 100644 index 1e5a2c29bc26..000000000000 --- a/net/irrtoolset/Makefile +++ /dev/null @@ -1,32 +0,0 @@ -# New ports collection makefile for: RAToolSet -# Date created: May 4th 1997 -# Whom: James FitzGibbon <jfitz@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= ratoolset -PORTVERSION= 3.5.8 -CATEGORIES= net tk82 -MASTER_SITES= ftp://ftp.isi.edu/ra/RAToolSet/ -DISTNAME= RAToolSet-3.5.8 - -MAINTAINER= ports@FreeBSD.org - -LIB_DEPENDS= tk82.1:${PORTSDIR}/x11-toolkits/tk82 - -USE_BISON= yes -GNU_CONFIGURE= Yes -CONFIGURE_ENV= TCL_TK_INCLUDE_DIR="${PREFIX}/include/tcl8.2:${PREFIX}/include/tk8.2" \ - TCL_TK_LIBRARY_DIR=${PREFIX}/lib \ - TCL_LIBRARY=${PREFIX}/lib/tcl8.2 \ - TK_LIBRARY=${PREFIX}/lib/tk8.2 \ - LD_TCL_TK_LIBS="-ltk82 -ltcl82" - -MAN1= CIDRAdvisor.1 aoe.1 pmatch.1 prpath.1 RtConfig.1 peval.1 \ - prcheck.1 roe.1 -MAN8= prtraceroute.8 relayd.8 - -ALL_TARGET= depend all - -.include <bsd.port.mk> diff --git a/net/irrtoolset/distinfo b/net/irrtoolset/distinfo deleted file mode 100644 index bf0f43d9ff9e..000000000000 --- a/net/irrtoolset/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (RAToolSet-3.5.8.tar.gz) = 4c7a04539a878ba3bcc5a6de3d12ac38 diff --git a/net/irrtoolset/files/patch-aa b/net/irrtoolset/files/patch-aa deleted file mode 100644 index b4052b639c36..000000000000 --- a/net/irrtoolset/files/patch-aa +++ /dev/null @@ -1,45 +0,0 @@ ---- src/misc/net.hh.orig Wed Jan 28 17:40:42 1998 -+++ src/misc/net.hh Sat Nov 27 18:11:23 1999 -@@ -86,12 +86,12 @@ - int bind (...); - int listen (...); - int accept (...); --int recvfrom(...); -+ssize_t recvfrom(...); - int gethostname (...); - int setsockopt (...); - int select (...); --int sendto (...); --int send (...); -+ssize_t sendto (...); -+ssize_t send (...); - int gettimeofday (...); - } - -@@ -132,7 +132,7 @@ - class Timer { - struct timeval tv; - struct timezone tz; -- init_time () { -+ void init_time () { - bzero ((char *) &tv, sizeof (struct timeval)); - ::gettimeofday (&tv, &tz); - } -@@ -256,7 +256,7 @@ - return ptr; - } - u_long getInaddr () { return hexaddr; } -- print () { printf ("%s\n%s\n0x%x\n", hostname, dottedaddr, hexaddr); } -+ void print () { printf ("%s\n%s\n0x%x\n", hostname, dottedaddr, hexaddr); } - - Error error; - }; -@@ -331,7 +331,7 @@ - error.warn("listen"); - return error(); - } -- accept () { -+ int accept () { - //u_long addrlen; - int addrlen = sizeof (struct sockaddr); - bzero ((char *) &socknew, sizeof (socknew)); diff --git a/net/irrtoolset/files/patch-ab b/net/irrtoolset/files/patch-ab deleted file mode 100644 index 6566ed2b1af4..000000000000 --- a/net/irrtoolset/files/patch-ab +++ /dev/null @@ -1,20 +0,0 @@ ---- src/dbase/Route.hh.orig Sat Nov 27 18:08:21 1999 -+++ src/dbase/Route.hh Sat Nov 27 18:08:41 1999 -@@ -92,7 +92,7 @@ - clear(); - } - -- clear () { -+ void clear () { - pix = NULL; - _dontcare = 0; - } -@@ -248,7 +248,7 @@ - pref = 0; - } - -- set (Pix asn, int p) { -+ void set (Pix asn, int p) { - asno = asn; - pref = p; - } diff --git a/net/irrtoolset/files/patch-ac b/net/irrtoolset/files/patch-ac deleted file mode 100644 index ca2b0e1d8f1f..000000000000 --- a/net/irrtoolset/files/patch-ac +++ /dev/null @@ -1,208 +0,0 @@ ---- src/dbase/Node.h.orig Sat Nov 27 18:11:57 1999 -+++ src/dbase/Node.h Sat Nov 27 18:16:21 1999 -@@ -101,7 +101,7 @@ - protected: - virtual void print(ostream &os) = 0; - public: -- virtual operator== (Node &b) = 0; -+ virtual int operator== (Node &b) = 0; - virtual void InOrderPrint() = 0; - virtual void PostOrderPrint() { InOrderPrint(); } - virtual ~Node() {}; -@@ -144,7 +144,7 @@ - virtual void print(ostream &os) = 0; - - public: -- virtual Execute(Route &r) = 0; -+ virtual void Execute(Route &r) = 0; - virtual ActionNode *FindFirst(Node_t _type) = 0; - int operator< (ActionNode &b); - friend ostream &operator<<(ostream &os, ActionNode *an) { -@@ -172,7 +172,7 @@ - type = T_ANDNode; - } - -- virtual operator== (Node& b) { -+ virtual int operator== (Node& b) { - return b.type == T_ANDNode - && left == ((ANDNode&) b).left - && right == ((ANDNode&) b).right; -@@ -200,7 +200,7 @@ - type = T_ORNode; - } - -- virtual operator== (Node& b) { -+ virtual int operator== (Node& b) { - return b.type == T_ORNode - && left == ((ORNode&) b).left - && right == ((ORNode&) b).right; -@@ -227,7 +227,7 @@ - type = T_NotNode; - } - -- virtual operator== (Node& b) { -+ virtual int operator== (Node& b) { - return b.type == T_NotNode - && left == ((NotNode&) b).left; - } -@@ -256,7 +256,7 @@ - type = T_AssignNode; - } - -- virtual operator== (Node& b) { -+ virtual int operator== (Node& b) { - return b.type == T_AssignNode - && val == ((AssignNode&) b).val - && left == ((AssignNode&) b).left; -@@ -281,7 +281,7 @@ - type = T_ANYNode; - } - -- virtual operator== (Node& b) { -+ virtual int operator== (Node& b) { - return b.type == T_ANYNode; - } - -@@ -305,7 +305,7 @@ - type = T_ASNode; - } - -- virtual operator== (Node& b) { -+ virtual int operator== (Node& b) { - return b.type == T_ASNode - && val == ((ASNode&) b).val; - } -@@ -330,7 +330,7 @@ - type = T_ASMacroNode; - } - -- virtual operator== (Node& b) { -+ virtual int operator== (Node& b) { - return b.type == T_ASMacroNode - && val == ((ASMacroNode&) b).val; - } -@@ -355,7 +355,7 @@ - type = T_CommNode; - } - -- virtual operator== (Node& b) { -+ virtual int operator== (Node& b) { - return b.type == T_CommNode - && val == ((CommNode&) b).val; - } -@@ -382,7 +382,7 @@ - cidr_root = NULL; - } - -- virtual operator== (Node& b) { -+ virtual int operator== (Node& b) { - return b.type == T_NetListNode - && nets == ((NetListNode&) b).nets; - } -@@ -391,7 +391,7 @@ - virtual NormalExpression *Evaluate(int expand); - virtual int match(Route &r, char dontcare); - virtual int match_exact_or_more_specific(Route &r, char dontcare); -- add(Pix pi) { nets.add(pi); } -+ void add(Pix pi) { nets.add(pi); } - }; - - ////////////////////////////// ASPathNode ////////////////////////////// -@@ -412,7 +412,7 @@ - type = T_ASPathNode; - } - -- virtual operator== (Node& b) { -+ virtual int operator== (Node& b) { - ASSERT(0); - return 0; - } -@@ -438,7 +438,7 @@ - type = T_RegisterNode; - } - -- virtual operator== (Node& b) { -+ virtual int operator== (Node& b) { - return b.type == T_RegisterNode - && val == ((RegisterNode&) b).val; - } -@@ -460,13 +460,13 @@ - type = T_PrefNode; - } - -- virtual operator== (Node& b) { -+ virtual int operator== (Node& b) { - return b.type == T_PrefNode - && val == ((PrefNode&) b).val; - } - - virtual void InOrderPrint(); -- virtual Execute(Route &r) { -+ virtual void Execute(Route &r) { - } - virtual ActionNode *FindFirst(Node_t _type) { - if (type == _type) -@@ -492,13 +492,13 @@ - type = T_MEDNode; - } - -- virtual operator== (Node& b) { -+ virtual int operator== (Node& b) { - return b.type == T_MEDNode - && val == ((MEDNode&) b).val; - } - - virtual void InOrderPrint(); -- virtual Execute(Route &r) { -+ virtual void Execute(Route &r) { - } - virtual ActionNode *FindFirst(Node_t _type) { - if (type == _type) -@@ -524,13 +524,13 @@ - type = T_DPANode; - } - -- virtual operator== (Node& b) { -+ virtual int operator== (Node& b) { - return b.type == T_DPANode - && val == ((DPANode&) b).val; - } - - virtual void InOrderPrint(); -- virtual Execute(Route &r) { -+ virtual void Execute(Route &r) { - } - virtual ActionNode *FindFirst(Node_t _type) { - if (type == _type) -@@ -552,12 +552,12 @@ - type = T_NoopNode; - } - -- virtual operator== (Node& b) { -+ virtual int operator== (Node& b) { - return b.type == T_NoopNode; - } - - virtual void InOrderPrint(); -- virtual Execute(Route &r) {} -+ virtual void Execute(Route &r) {} - virtual ActionNode *FindFirst(Node_t _type) { - if (type == _type) - return this; -@@ -581,14 +581,14 @@ - } - virtual ~ComposeNode(); - -- virtual operator== (Node& b) { -+ virtual int operator== (Node& b) { - return b.type == T_ComposeNode - && left == ((ComposeNode&) b).left - && right == ((ComposeNode&) b).right; - } - - virtual void InOrderPrint(); -- virtual Execute(Route &r) {} -+ virtual void Execute(Route &r) {} - virtual ActionNode *FindFirst(Node_t _type) { - ActionNode *r; - if (type == _type) diff --git a/net/irrtoolset/files/patch-ad b/net/irrtoolset/files/patch-ad deleted file mode 100644 index d0560a973b2a..000000000000 --- a/net/irrtoolset/files/patch-ad +++ /dev/null @@ -1,11 +0,0 @@ ---- src/misc/Error.hh.orig Sat Nov 27 18:17:24 1999 -+++ src/misc/Error.hh Sat Nov 27 18:17:31 1999 -@@ -378,7 +378,7 @@ - reset(); - } - -- reset() { -+ void reset() { - errno = 0; - level_ = ErrorNone; - messages_.clear(); diff --git a/net/irrtoolset/files/patch-ae b/net/irrtoolset/files/patch-ae deleted file mode 100644 index 8c3005236be0..000000000000 --- a/net/irrtoolset/files/patch-ae +++ /dev/null @@ -1,11 +0,0 @@ ---- src/peval/xx_lexer.y.orig Sat Nov 27 18:18:56 1999 -+++ src/peval/xx_lexer.y Sat Nov 27 18:19:07 1999 -@@ -94,7 +94,7 @@ - NULL, ERROR_TKN - }; - --static inline strtoupper(char *c) { -+static inline void strtoupper(char *c) { - for (; *c; c++) - if (isascii(*c) && isalpha(*c)) - *c = toupper(*c); diff --git a/net/irrtoolset/files/patch-af b/net/irrtoolset/files/patch-af deleted file mode 100644 index 50022888976a..000000000000 --- a/net/irrtoolset/files/patch-af +++ /dev/null @@ -1,10 +0,0 @@ ---- src/misc/net.cc.orig Sat Nov 27 18:20:31 1999 -+++ src/misc/net.cc Sat Nov 27 18:21:15 1999 -@@ -215,6 +215,7 @@ - init_server (p); - } - -+int - TCP::init_server (int p) { - setLocalPort (p); - bind(); diff --git a/net/irrtoolset/files/patch-ag b/net/irrtoolset/files/patch-ag deleted file mode 100644 index f5519df2a198..000000000000 --- a/net/irrtoolset/files/patch-ag +++ /dev/null @@ -1,11 +0,0 @@ ---- src/dbase/irr_lexer.y.orig Sat Nov 27 18:22:22 1999 -+++ src/dbase/irr_lexer.y Sat Nov 27 18:22:44 1999 -@@ -73,7 +73,7 @@ - - #include <cctype> - --static inline strtoupper(char *c) { -+static inline void strtoupper(char *c) { - for (; *c; c++) - if (isascii(*c) && isalpha(*c)) - *c = toupper(*c); diff --git a/net/irrtoolset/files/patch-ah b/net/irrtoolset/files/patch-ah deleted file mode 100644 index 4278782c08ab..000000000000 --- a/net/irrtoolset/files/patch-ah +++ /dev/null @@ -1,20 +0,0 @@ ---- src/dbase/irr_parser.y.orig Sat Nov 27 18:23:53 1999 -+++ src/dbase/irr_parser.y Sat Nov 27 18:25:00 1999 -@@ -90,7 +90,7 @@ - char *error_while_expecting = NULL; - - static regexp_symbol *re_symbol; --static insert_or_update_filter_action(ListHead<Filter_Action> &l, -+static void insert_or_update_filter_action(ListHead<Filter_Action> &l, - ActionNode *action, FilterNode *filter); - static ASPolicy *find_or_insert_peer_as(Pix peer); - static InterASPolicy *find_or_insert_peering(ASPolicy *p, Pix laddr, Pix raddr); -@@ -635,7 +635,7 @@ - return(0); - } - --static insert_or_update_filter_action(ListHead<Filter_Action> &l, -+static void insert_or_update_filter_action(ListHead<Filter_Action> &l, - ActionNode *action, FilterNode *filter) { - Filter_Action *fap, *fap2; - diff --git a/net/irrtoolset/files/patch-ai b/net/irrtoolset/files/patch-ai deleted file mode 100644 index 18de9569197e..000000000000 --- a/net/irrtoolset/files/patch-ai +++ /dev/null @@ -1,11 +0,0 @@ ---- src/roe/roe_config.hh.orig Sat Nov 27 18:35:37 1999 -+++ src/roe/roe_config.hh Sat Nov 27 18:36:14 1999 -@@ -42,7 +42,7 @@ - - class Configure { - public: -- const int size = 12; -+ static const int size = 12; - - class DBUpdate { - public: diff --git a/net/irrtoolset/files/patch-aj b/net/irrtoolset/files/patch-aj deleted file mode 100644 index 6d190fb677b6..000000000000 --- a/net/irrtoolset/files/patch-aj +++ /dev/null @@ -1,14 +0,0 @@ ---- src/aoe/TclApp.cc.orig Sat Nov 27 18:38:25 1999 -+++ src/aoe/TclApp.cc Sat Nov 27 18:43:51 1999 -@@ -186,9 +186,9 @@ - // Call Tcl function to create a Tcl command - if (Tcl_CreateCommand(ptInterp, - pcCommand->getName(), -- TclCommand::command, -+ &TclCommand::command, - (ClientData)pcCommand, -- TclCommand::cleanUp) == NULL) return 0; -+ &TclCommand::cleanUp) == NULL) return 0; - return 1; - } - diff --git a/net/irrtoolset/files/patch-ak b/net/irrtoolset/files/patch-ak deleted file mode 100644 index 05060ae5f711..000000000000 --- a/net/irrtoolset/files/patch-ak +++ /dev/null @@ -1,11 +0,0 @@ ---- src/aoe/TclLabel.cc.orig Sat Nov 27 18:45:09 1999 -+++ src/aoe/TclLabel.cc Sat Nov 27 18:45:24 1999 -@@ -47,7 +47,7 @@ - #include "TclLabel.hh" - #include "TclApp.hh" - --TclLabel::clear(void) -+int TclLabel::clear(void) - { - TclApplication *pcApp = (TclApplication *)getExtraArgument(); - return (pcApp->evalf("%s configure -text {}", getName())); diff --git a/net/irrtoolset/files/patch-al b/net/irrtoolset/files/patch-al deleted file mode 100644 index 49b068f99199..000000000000 --- a/net/irrtoolset/files/patch-al +++ /dev/null @@ -1,11 +0,0 @@ ---- src/prtraceroute/netraw.hh.orig Sat Nov 27 18:46:27 1999 -+++ src/prtraceroute/netraw.hh Sat Nov 27 18:46:49 1999 -@@ -121,7 +121,7 @@ - rawIP (int protocol = IPPROTO_RAW); - rawIP (char *hostname, int protocol = IPPROTO_RAW); - -- setIpaddresses (); // can be used for incoming packets. -+ void setIpaddresses (); // can be used for incoming packets. - - int write (){return rawPacket::write ((char *) ip_hdr, ip_hdr->ip_len);} - int send (){return rawPacket::send ((char *) ip_hdr, ip_hdr->ip_len);} diff --git a/net/irrtoolset/files/patch-am b/net/irrtoolset/files/patch-am deleted file mode 100644 index 70e7cb9572ed..000000000000 --- a/net/irrtoolset/files/patch-am +++ /dev/null @@ -1,11 +0,0 @@ ---- src/prtraceroute/prtraceroute.hh.orig Sat Nov 27 18:47:35 1999 -+++ src/prtraceroute/prtraceroute.hh Sat Nov 27 18:47:45 1999 -@@ -121,7 +121,7 @@ - u_int flags; - void _add (ipAddr *ipaddr); - -- _hop () { -+ void _hop () { - ipaddr = (ipAddr *) NULL; - autnum = NULL; - route = new Route(); diff --git a/net/irrtoolset/pkg-comment b/net/irrtoolset/pkg-comment deleted file mode 100644 index 74aadb1512e4..000000000000 --- a/net/irrtoolset/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -A suite of policy analysis tools diff --git a/net/irrtoolset/pkg-descr b/net/irrtoolset/pkg-descr deleted file mode 100644 index 5129fb44e3a5..000000000000 --- a/net/irrtoolset/pkg-descr +++ /dev/null @@ -1,24 +0,0 @@ -RAToolSet is a suite of policy analysis tools. It is implemented in C++ on a -UNIX platform. It has been ported successfully to many platforms including -Sun Sparc stations running SunOS 4.1.3 or Solaris, FreeBSD, DEC Alphas -running OSF/1, and BSDI. It contains the following programs: - -RtConfig routing policies analyzer and router configuration tool - -peval a low-level policy evaluation tool - -roe route object editor - -CIDRAdvisor suggests safe cidr aggregates - -aoe autonomous system object editor - -pmatch prints matching policies for destinations in aut-num objects - -prpath enumerates a list of patchs between ASes and destinations - -prtraceroute prints route and policy information packets take to a - network host - -prcheck syntax checks the aut-num objects in the Internet Routing - Registry diff --git a/net/irrtoolset/pkg-plist b/net/irrtoolset/pkg-plist deleted file mode 100644 index a56f950cdc49..000000000000 --- a/net/irrtoolset/pkg-plist +++ /dev/null @@ -1,11 +0,0 @@ -bin/peval -bin/pmatch -bin/prpath -bin/RtConfig -bin/CIDRAdvisor -bin/prcheck -bin/irrstat -bin/roe -bin/aoe -bin/relayd -bin/prtraceroute diff --git a/net/isc-dhcp3-server/Makefile b/net/isc-dhcp3-server/Makefile deleted file mode 100644 index 4486a54bd5d4..000000000000 --- a/net/isc-dhcp3-server/Makefile +++ /dev/null @@ -1,198 +0,0 @@ -# ex:ts=8 -# Ports collection makefile for: dhcp -# Date created: 7 Mar 1996 -# Whom: se -# -# $FreeBSD$ -# - -PORTNAME= dhcp -PORTVERSION= 3.0.r11 -CATEGORIES= net -MASTER_SITES= ftp://ftp.isc.org/isc/%SUBDIR%/ \ - ${US_MASTER_SITES} ${JAPAN_MASTER_SITES} \ - ${AUSTRIA_MASTER_SITES} ${FRANCE_MASTER_SITES} \ - ${FINLAND_MASTER_SITES} ${GERMANY_MASTER_SITES} \ - ${HUNGARY_MASTER_SITES} ${ICELAND_MASTER_SITES} \ - ${LATVIA_MASTER_SITES} ${POLAND_MASTER_SITES} \ - ${RUSSIA_MASTER_SITES} ${SPAIN_MASTER_SITES} \ - ${SWEDEN_MASTER_SITES} ${UK_MASTER_SITES} \ - ${NETHERLANDS_MASTER_SITES} ${BRAZIL_MASTER_SITES} \ - ${GREECE_MASTER_SITES} ${TURKEY_MASTER_SITES} -MASTER_SITE_SUBDIR= dhcp dpcp/dhcp-3.0-history -PKGNAMEPREFIX= isc- -PKGNAMESUFFIX= 3 -DISTNAME= ${PORTNAME}-${RELEASE}${VERSION}${PATCHLEVEL} - -MAINTAINER= clefevre@citeweb.net - -# -# Global variables -# - -HAS_CONFIGURE= yes - -PLIST_SUB= DATA_DIR="${DATA_DIR}" RCD_SUBDIR="${RCD_SUBDIR}" \ - CONF_SUBDIR="${CONF_SUBDIR}" SAMP_SUBDIR="${SAMP_SUBDIR}" \ - BIN_SUBDIR="${BIN_SUBDIR}" SBIN_SUBDIR="${SBIN_SUBDIR}" \ - INC_SUBDIR="${INC_SUBDIR}" LIB_SUBDIR="${LIB_SUBDIR}" \ - DOC_SUBDIR="${DOC_SUBDIR}" SAMP_SUFFIX="${SAMP_SUFFIX}" - -MAN1= omshell.1 -MAN3= dhcpctl.3 omapi.3 omshell.3 -MAN5= dhclient.conf.5 dhclient.leases.5 dhcp-contrib.5 \ - dhcp-eval.5 dhcp-options.5 dhcpd.conf.5 \ - dhcpd.leases.5 -MAN8= dhclient.8 dhclient-script.8 dhcpd.8 dhcrelay.8 - -# -# Local variables -# - -# fast -AUSTRIA_MASTER_SITES= ftp://gd.tuwien.ac.at/infosys/servers/isc/%SUBDIR%/ -FRANCE_MASTER_SITES= ftp://ftp.ciril.fr/pub/isc/%SUBDIR%/ \ - ftp://ftp.grolier.fr/pub/isc/%SUBDIR%/ -FINLAND_MASTER_SITES= ftp://ftp.funet.fi/pub/mirrors/ftp.isc.org/isc/%SUBDIR%/ -GERMANY_MASTER_SITES= ftp://ftp.freenet.de/pub/ftp.isc.org/isc/%SUBDIR%/ \ - ftp://ftp.gigabell.net/pub/%SUBDIR%/ -HUNGARY_MASTER_SITES= ftp://ftp.fsn.hu/pub/isc/%SUBDIR%/ -ICELAND_MASTER_SITES= ftp://ftp.gm.is/pub/isc/%SUBDIR%/ -JAPAN_MASTER_SITES= ftp://ftp.kyushu-u.ac.jp/pub/Net/isc/%SUBDIR%/ \ - ftp://ftp.iij.ad.jp/pub/network/isc/%SUBDIR%/ \ - ftp://ftp.u-aizu.ac.jp/pub/net/isc/%SUBDIR%/ -LATVIA_MASTER_SITES= ftp://ftp.linux.lv/pub/software/isc/%SUBDIR%/ -POLAND_MASTER_SITES= ftp://ftp.task.gda.pl/mirror/ftp.isc.org/isc/%SUBDIR%/ -RUSSIA_MASTER_SITES= ftp://ftp.cdu.elektra.ru/pub/unix/isc/%SUBDIR%/ -SPAIN_MASTER_SITES= ftp://ftp.si.uniovi.es/mirror/isc/%SUBDIR%/ -SWEDEN_MASTER_SITES= ftp://ftp.sunet.se/pub/network/isc/%SUBDIR%/ \ - ftp://ftp.chl.chalmers.se/pub/unix/network/isc/%SUBDIR%/ -UK_MASTER_SITES= ftp://unix.hensa.ac.uk/mirrors/ftp.isc.org/isc/%SUBDIR%/ -US_MASTER_SITES= ftp://ftp.epix.net/pub/isc/%SUBDIR%/ \ - ftp://ftp.nominum.com/pub/isc/%SUBDIR%/ -NETHERLANDS_MASTER_SITES= ftp://ftp.ripe.net/mirrors/sites/ftp.isc.org/isc/%SUBDIR%/ \ - ftp://ftp.nl.uu.net/pub/mirrors/ftp.isc.org/%SUBDIR%/ - -# slow -BRAZIL_MASTER_SITES= ftp://ftp.pop-mg.com.br/pub/isc/%SUBDIR%/ -GREECE_MASTER_SITES= ftp://ftp.ntua.gr/pub/net/isc/isc/%SUBDIR%/ -TURKEY_MASTER_SITES= ftp://ftp.ulak.net.tr/pub/networking/isc/%SUBDIR%/ \ - ftp://ftp.metu.edu.tr/pub/mirrors/ftp.isc.org/%SUBDIR%/ - -# for instance, possible version formats are, in order: -# 1.2.r3.4 (or 1.2.b3.4), 1.2.r3 (or 1.2.b3), 1.2.3, 1.2 -# which have to become: -# 1.2rc3pl4 (or 1.2beta3pl4), 1.2rc3 (or 1.2beta3), 1.2pl3, 1.2 -VERSION= -PATCHLEVEL= -.if ${PORTVERSION:R:E:M[br]*} != "" -RELEASE= ${PORTVERSION:R:R} -VERSION= ${PORTVERSION:R:E:S/b/beta/:S/r/rc/} -PATCHLEVEL= pl${PORTVERSION:E} -.elif ${PORTVERSION:E:M[br]*} != "" -RELEASE= ${PORTVERSION:R} -VERSION= ${PORTVERSION:E:S/b/beta/:S/r/rc/} -.elif ${PORTVERSION:R:E} != "" -RELEASE= ${PORTVERSION:R} -PATCHLEVEL= pl${PORTVERSION:E} -.else -RELEASE= ${PORTVERSION} -.endif - -PATCH_SUBDIRS= common minires dst omapip server client relay dhcpctl - -SAMP_SUFFIX= .sample - -BIN_FILES= dhclient dhcpd dhcrelay -CONF_FILES= dhclient.conf -SAMP_FILES= client/dhclient.conf server/dhcpd.conf -RCD_FILES= isc-dhcpd.sh${SAMP_SUFFIX} -DOC_FILES= CHANGES COPYRIGHT README RELNOTES -DATA_FILES= dhclient.leases dhcpd.leases - -BIN_SUBDIR= bin -SBIN_SUBDIR= sbin -CONF_SUBDIR= etc -SAMP_SUBDIR= ${CONF_SUBDIR} -RCD_SUBDIR= etc/rc.d -INC_SUBDIR= include -LIB_SUBDIR= lib -DOC_SUBDIR= share/doc/${PKGBASE} -DATA_DIR= /var/db - -STRIP_CMD?= strip - -# -# Post-patch -# - -post-patch: patch-scripts patch-makefile-conf patch-makefiles-dist \ - patch-man-pages - -patch-scripts: - @${PERL} -pi.fbsd -e 's.!!PREFIX!!.${PREFIX}.g' \ - ${WRKSRC}/client/scripts/freebsd - -patch-makefile-conf: - @${PERL} -pi.fbsd -e 's|^DEBUG[ ]*=|# DEBUG ?=|g' \ - ${WRKSRC}/Makefile.conf - -patch-makefiles-dist: -.for subdir in ${PATCH_SUBDIRS} - @${PERL} -pi.fbsd -e 's|^CFLAGS[ ]*=|CFLAGS +=|g' \ - ${WRKSRC}/${subdir}/Makefile.dist -.endfor - -# temporary hack - no patch file needed for this typo. -patch-man-pages: - @${PERL} -ni.fbsd -e '/^\.Fd$$/ or print;' ${WRKSRC}/dhcpctl/dhcpctl.3 - -# -# Post-install -# - -post-install: strip-binary-files install-startup-files \ - install-doc-files install-sample-files \ - create-data-files create-conf-files - -strip-binary-files: -.for file in ${BIN_FILES} -.if exists(${PREFIX}/${BIN_SUBDIR}/${file}) - @${STRIP_CMD} ${PREFIX}/${BIN_SUBDIR}/${file} -.endif -.endfor - -install-startup-files: -.for file in ${RCD_FILES} - @${INSTALL_SCRIPT} ${FILESDIR}/${file} ${PREFIX}/${RCD_SUBDIR} -.endfor - -install-doc-files: -.if !defined(NOPORTDOCS) - @${MKDIR} ${PREFIX}/${DOC_SUBDIR} -.for file in ${DOC_FILES} - @${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/${DOC_SUBDIR} -.endfor -.endif - -install-sample-files: -.for file in ${SAMP_FILES} - @${INSTALL_DATA} ${WRKSRC}/${file} \ - ${PREFIX}/${SAMP_SUBDIR}/${file:T}${SAMP_SUFFIX} -.endfor - -create-data-files: -.for file in ${DATA_FILES} -.if !exists(${DATA_DIR}/${file}) - @${TOUCH} ${DATA_DIR}/${file} -.endif -.endfor - -create-conf-files: -.for file in ${CONF_FILES} -.if !exists(${PREFIX}/${CONF_SUBDIR}/${file}) - @${TOUCH} ${PREFIX}/${CONF_SUBDIR}/${file} -.endif -.endfor - -.include <bsd.port.mk> diff --git a/net/isc-dhcp3-server/distinfo b/net/isc-dhcp3-server/distinfo deleted file mode 100644 index 7a2ecad54128..000000000000 --- a/net/isc-dhcp3-server/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (dhcp-3.0rc11.tar.gz) = 6b244e2bb056d423a49aca7b6bbeee91 diff --git a/net/isc-dhcp3-server/files/isc-dhcpd.sh.sample b/net/isc-dhcp3-server/files/isc-dhcpd.sh.sample deleted file mode 100644 index bd9f10dbc3fd..000000000000 --- a/net/isc-dhcp3-server/files/isc-dhcpd.sh.sample +++ /dev/null @@ -1,33 +0,0 @@ -#! /bin/sh - -# $FreeBSD$ - -OPTIONS="" -IFACES="" - -if ! PREFIX=$(expr $0 : "\(/.*\)/etc/rc\.d/$(basename $0)\$"); then - echo "$0: Cannot determine the PREFIX" >&2 - exit 1 -fi - -case "$1" in -start) - ${PREFIX}/sbin/dhcpd $OPTIONS $IFACES > /dev/null 2>&1 - echo -n ' dhcpd' - ;; -stop) - killall dhcpd - ;; -restart) - $0 stop - $0 start - ;; -status) - ps -auxww | egrep '(conserver|console)' | egrep -v "($0|egrep)" - ;; -*) - echo "usage: ${0##*/} {start|stop|restart|status}" >&2 - ;; -esac - -exit 0 diff --git a/net/isc-dhcp3-server/files/patch-freebsd b/net/isc-dhcp3-server/files/patch-freebsd deleted file mode 100644 index 62fe0a127a40..000000000000 --- a/net/isc-dhcp3-server/files/patch-freebsd +++ /dev/null @@ -1,47 +0,0 @@ ---- client/scripts/freebsd.orig Fri Apr 20 22:01:14 2001 -+++ client/scripts/freebsd Sat Apr 21 19:01:59 2001 -@@ -16,17 +16,17 @@ - # Must be used on exit. Invokes the local dhcp client exit hooks, if any. - exit_with_hooks() { - exit_status=$1 -- if [ -f /etc/dhclient-exit-hooks ]; then -- . /etc/dhclient-exit-hooks -+ if [ -f !!PREFIX!!/etc/dhclient-exit-hooks ]; then -+ . !!PREFIX!!/etc/dhclient-exit-hooks - fi - # probably should do something with exit status of the local script - exit $exit_status - } - - # Invoke the local dhcp client enter hooks, if they exist. --if [ -f /etc/dhclient-enter-hooks ]; then -+if [ -f !!PREFIX!!/etc/dhclient-enter-hooks ]; then - exit_status=0 -- . /etc/dhclient-enter-hooks -+ . !!PREFIX!!/etc/dhclient-enter-hooks - # allow the local script to abort processing of this state - # local script must set exit_status variable to nonzero. - if [ $exit_status -ne 0 ]; then -@@ -35,11 +35,11 @@ - fi - - if [ x$new_network_number != x ]; then -- $LOGGER New Network Number: $new_network_number -+ $LOGGER "New Network Number: $new_network_number" - fi - - if [ x$new_broadcast_address != x ]; then -- $LOGGER New Broadcast Address: $new_broadcast_address -+ $LOGGER "New Broadcast Address: $new_broadcast_address" - new_broadcast_arg="broadcast $new_broadcast_address" - fi - if [ x$old_broadcast_address != x ]; then -@@ -158,7 +158,7 @@ - shift; shift - done - fi -- arp -n -a | sed -n -e 's/^.*(\(.*\)) at .*$/arp -n -d \1/p' \ -+ arp -n -a | sed -n -e 's/^.*(\(.*\)) at .*$/arp -d \1/p' \ - |sh >/dev/null 2>&1 - fi - if [ x$alias_ip_address != x ]; then diff --git a/net/isc-dhcp3-server/files/patch-site.conf b/net/isc-dhcp3-server/files/patch-site.conf deleted file mode 100644 index 5c14e470dcbc..000000000000 --- a/net/isc-dhcp3-server/files/patch-site.conf +++ /dev/null @@ -1,38 +0,0 @@ ---- site.conf.orig Wed Jul 7 17:20:10 1999 -+++ site.conf Sun Jun 24 02:07:17 2001 -@@ -1,2 +1,35 @@ - # Put local site configuration stuff here to override the default - # settings in Makefile.conf -+ -+PREFIX ?= /usr/local -+ -+USERBINDIR = $(PREFIX)/bin -+BINDIR = $(PREFIX)/sbin -+CLIENTBINDIR = $(PREFIX)/sbin -+ADMMANDIR = $(PREFIX)/man/man8 -+ADMMANEXT = .8 -+FFMANDIR = $(PREFIX)/man/man5 -+FFMANEXT = .5 -+LIBMANDIR = $(PREFIX)/man/man3 -+LIBMANEXT = .3 -+USRMANDIR = $(PREFIX)/man/man1 -+USRMANEXT = .1 -+MANCAT = man -+# INSTALL = ${INSTALL_DATA} -+# MANINSTALL = ${INSTALL_MAN} -+ETC = $(PREFIX)/etc -+LIBDIR = ${PREFIX}/lib -+INCDIR = ${PREFIX}/include -+ -+DEBUG ?= #none -+ -+CFLAGS += -D_PATH_DHCPD_CONF=\"$(ETC)/dhcpd.conf\" -+CFLAGS += -D_PATH_DHCPD_DB=\"$(VARDB)/dhcpd.leases\" -+CFLAGS += -D_PATH_DHCPD_PID=\"$(VARRUN)/dhcpd.pid\" -+ -+CFLAGS += -D_PATH_DHCRELAY_PID=\"$(VARRUN)/dhcrelay.pid\" -+ -+CFLAGS += -D_PATH_DHCLIENT_CONF=\"$(ETC)/dhclient.conf\" -+CFLAGS += -D_PATH_DHCLIENT_SCRIPT=\"$(CLIENTBINDIR)/dhclient-script\" -+CFLAGS += -D_PATH_DHCLIENT_DB=\"$(VARDB)/dhclient.leases\" -+CFLAGS += -D_PATH_DHCLIENT_PID=\"$(VARDB)/dhclient.pid\" diff --git a/net/isc-dhcp3-server/pkg-comment b/net/isc-dhcp3-server/pkg-comment deleted file mode 100644 index 77d728a4ed55..000000000000 --- a/net/isc-dhcp3-server/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -ISC Dynamic Host Configuration Protocol client and server code diff --git a/net/isc-dhcp3-server/pkg-descr b/net/isc-dhcp3-server/pkg-descr deleted file mode 100644 index 47c2b8c9ada8..000000000000 --- a/net/isc-dhcp3-server/pkg-descr +++ /dev/null @@ -1,24 +0,0 @@ -The ISC Dynamic Host Configuration Protocol Distribution provides a -freely redistributable reference implementation of all aspects of the -DHCP protocol, through a suite of DHCP tools: - - * A DHCP server - * A DHCP client - * A DHCP relay agent - -Version 3 of the ISC DHCP Distribution includes the following features -that are new since version 2.0: - - * DHCP Failover Protocol support - * OMAPI, an API for accessing and modifying the DHCP server and client state - * Conditional behaviour - * Storing arbitrary information on leases - * Address pools with access control - * Client classing - * Address allocation restriction by class - * Relay agent information option support - * Dynamic DNS updates - * Many bug fixes, performance enhancements, and minor new DHCP protocol - features. - -WWW: http://www.isc.org/products/DHCP/ diff --git a/net/isc-dhcp3-server/pkg-plist b/net/isc-dhcp3-server/pkg-plist deleted file mode 100644 index 14392593c635..000000000000 --- a/net/isc-dhcp3-server/pkg-plist +++ /dev/null @@ -1,36 +0,0 @@ -@comment $FreeBSD$ -%%SAMP_SUBDIR%%/dhclient.conf%%SAMP_SUFFIX%% -%%SAMP_SUBDIR%%/dhcpd.conf%%SAMP_SUFFIX%% -%%RCD_SUBDIR%%/isc-dhcpd.sh%%SAMP_SUFFIX%% -%%INC_SUBDIR%%/dhcpctl.h -%%INC_SUBDIR%%/isc-dhcp/boolean.h -%%INC_SUBDIR%%/isc-dhcp/dst.h -%%INC_SUBDIR%%/isc-dhcp/int.h -%%INC_SUBDIR%%/isc-dhcp/lang.h -%%INC_SUBDIR%%/isc-dhcp/list.h -%%INC_SUBDIR%%/isc-dhcp/result.h -%%INC_SUBDIR%%/isc-dhcp/types.h -%%INC_SUBDIR%%/omapip/alloc.h -%%INC_SUBDIR%%/omapip/buffer.h -%%INC_SUBDIR%%/omapip/omapip.h -%%LIB_SUBDIR%%/libdhcpctl.a -%%LIB_SUBDIR%%/libomapi.a -%%BIN_SUBDIR%%/omshell -%%SBIN_SUBDIR%%/dhclient -%%SBIN_SUBDIR%%/dhclient-script -%%SBIN_SUBDIR%%/dhcpd -%%SBIN_SUBDIR%%/dhcrelay -%%PORTDOCS%%%%DOC_SUBDIR%%/CHANGES -%%PORTDOCS%%%%DOC_SUBDIR%%/COPYRIGHT -%%PORTDOCS%%%%DOC_SUBDIR%%/README -%%PORTDOCS%%%%DOC_SUBDIR%%/RELNOTES -@dirrm %%INC_SUBDIR%%/isc-dhcp -@dirrm %%INC_SUBDIR%%/omapip -%%PORTDOCS%%@dirrm %%DOC_SUBDIR%% -@unexec rm -f %%RCD_SUBDIR%%/isc-dhcpd.sh -@exec [ -f %%DATA_DIR%%/dhclient.leases ] || touch %%DATA_DIR%%/dhclient.leases -@unexec [ -s %%DATA_DIR%%/dhclient.leases ] || rm -f %%DATA_DIR%%/dhclient.leases -@exec [ -f %%DATA_DIR%%/dhcpd.leases ] || touch %%DATA_DIR%%/dhcpd.leases -@unexec [ -s %%DATA_DIR%%/dhcpd.leases ] || rm -f %%DATA_DIR%%/dhcpd.leases -@exec [ -f %D/%%CONF_SUBDIR%%/dhclient.conf ] || touch %D/%%CONF_SUBDIR%%/dhclient.conf -@unexec [ -L %D/%%CONF_SUBDIR%%/dhclient.conf -o -s %D/%%CONF_SUBDIR%%/dhclient.conf ] || rm -f %D/%%CONF_SUBDIR%%/dhclient.conf diff --git a/net/isc-dhcp30-server/Makefile b/net/isc-dhcp30-server/Makefile deleted file mode 100644 index 4486a54bd5d4..000000000000 --- a/net/isc-dhcp30-server/Makefile +++ /dev/null @@ -1,198 +0,0 @@ -# ex:ts=8 -# Ports collection makefile for: dhcp -# Date created: 7 Mar 1996 -# Whom: se -# -# $FreeBSD$ -# - -PORTNAME= dhcp -PORTVERSION= 3.0.r11 -CATEGORIES= net -MASTER_SITES= ftp://ftp.isc.org/isc/%SUBDIR%/ \ - ${US_MASTER_SITES} ${JAPAN_MASTER_SITES} \ - ${AUSTRIA_MASTER_SITES} ${FRANCE_MASTER_SITES} \ - ${FINLAND_MASTER_SITES} ${GERMANY_MASTER_SITES} \ - ${HUNGARY_MASTER_SITES} ${ICELAND_MASTER_SITES} \ - ${LATVIA_MASTER_SITES} ${POLAND_MASTER_SITES} \ - ${RUSSIA_MASTER_SITES} ${SPAIN_MASTER_SITES} \ - ${SWEDEN_MASTER_SITES} ${UK_MASTER_SITES} \ - ${NETHERLANDS_MASTER_SITES} ${BRAZIL_MASTER_SITES} \ - ${GREECE_MASTER_SITES} ${TURKEY_MASTER_SITES} -MASTER_SITE_SUBDIR= dhcp dpcp/dhcp-3.0-history -PKGNAMEPREFIX= isc- -PKGNAMESUFFIX= 3 -DISTNAME= ${PORTNAME}-${RELEASE}${VERSION}${PATCHLEVEL} - -MAINTAINER= clefevre@citeweb.net - -# -# Global variables -# - -HAS_CONFIGURE= yes - -PLIST_SUB= DATA_DIR="${DATA_DIR}" RCD_SUBDIR="${RCD_SUBDIR}" \ - CONF_SUBDIR="${CONF_SUBDIR}" SAMP_SUBDIR="${SAMP_SUBDIR}" \ - BIN_SUBDIR="${BIN_SUBDIR}" SBIN_SUBDIR="${SBIN_SUBDIR}" \ - INC_SUBDIR="${INC_SUBDIR}" LIB_SUBDIR="${LIB_SUBDIR}" \ - DOC_SUBDIR="${DOC_SUBDIR}" SAMP_SUFFIX="${SAMP_SUFFIX}" - -MAN1= omshell.1 -MAN3= dhcpctl.3 omapi.3 omshell.3 -MAN5= dhclient.conf.5 dhclient.leases.5 dhcp-contrib.5 \ - dhcp-eval.5 dhcp-options.5 dhcpd.conf.5 \ - dhcpd.leases.5 -MAN8= dhclient.8 dhclient-script.8 dhcpd.8 dhcrelay.8 - -# -# Local variables -# - -# fast -AUSTRIA_MASTER_SITES= ftp://gd.tuwien.ac.at/infosys/servers/isc/%SUBDIR%/ -FRANCE_MASTER_SITES= ftp://ftp.ciril.fr/pub/isc/%SUBDIR%/ \ - ftp://ftp.grolier.fr/pub/isc/%SUBDIR%/ -FINLAND_MASTER_SITES= ftp://ftp.funet.fi/pub/mirrors/ftp.isc.org/isc/%SUBDIR%/ -GERMANY_MASTER_SITES= ftp://ftp.freenet.de/pub/ftp.isc.org/isc/%SUBDIR%/ \ - ftp://ftp.gigabell.net/pub/%SUBDIR%/ -HUNGARY_MASTER_SITES= ftp://ftp.fsn.hu/pub/isc/%SUBDIR%/ -ICELAND_MASTER_SITES= ftp://ftp.gm.is/pub/isc/%SUBDIR%/ -JAPAN_MASTER_SITES= ftp://ftp.kyushu-u.ac.jp/pub/Net/isc/%SUBDIR%/ \ - ftp://ftp.iij.ad.jp/pub/network/isc/%SUBDIR%/ \ - ftp://ftp.u-aizu.ac.jp/pub/net/isc/%SUBDIR%/ -LATVIA_MASTER_SITES= ftp://ftp.linux.lv/pub/software/isc/%SUBDIR%/ -POLAND_MASTER_SITES= ftp://ftp.task.gda.pl/mirror/ftp.isc.org/isc/%SUBDIR%/ -RUSSIA_MASTER_SITES= ftp://ftp.cdu.elektra.ru/pub/unix/isc/%SUBDIR%/ -SPAIN_MASTER_SITES= ftp://ftp.si.uniovi.es/mirror/isc/%SUBDIR%/ -SWEDEN_MASTER_SITES= ftp://ftp.sunet.se/pub/network/isc/%SUBDIR%/ \ - ftp://ftp.chl.chalmers.se/pub/unix/network/isc/%SUBDIR%/ -UK_MASTER_SITES= ftp://unix.hensa.ac.uk/mirrors/ftp.isc.org/isc/%SUBDIR%/ -US_MASTER_SITES= ftp://ftp.epix.net/pub/isc/%SUBDIR%/ \ - ftp://ftp.nominum.com/pub/isc/%SUBDIR%/ -NETHERLANDS_MASTER_SITES= ftp://ftp.ripe.net/mirrors/sites/ftp.isc.org/isc/%SUBDIR%/ \ - ftp://ftp.nl.uu.net/pub/mirrors/ftp.isc.org/%SUBDIR%/ - -# slow -BRAZIL_MASTER_SITES= ftp://ftp.pop-mg.com.br/pub/isc/%SUBDIR%/ -GREECE_MASTER_SITES= ftp://ftp.ntua.gr/pub/net/isc/isc/%SUBDIR%/ -TURKEY_MASTER_SITES= ftp://ftp.ulak.net.tr/pub/networking/isc/%SUBDIR%/ \ - ftp://ftp.metu.edu.tr/pub/mirrors/ftp.isc.org/%SUBDIR%/ - -# for instance, possible version formats are, in order: -# 1.2.r3.4 (or 1.2.b3.4), 1.2.r3 (or 1.2.b3), 1.2.3, 1.2 -# which have to become: -# 1.2rc3pl4 (or 1.2beta3pl4), 1.2rc3 (or 1.2beta3), 1.2pl3, 1.2 -VERSION= -PATCHLEVEL= -.if ${PORTVERSION:R:E:M[br]*} != "" -RELEASE= ${PORTVERSION:R:R} -VERSION= ${PORTVERSION:R:E:S/b/beta/:S/r/rc/} -PATCHLEVEL= pl${PORTVERSION:E} -.elif ${PORTVERSION:E:M[br]*} != "" -RELEASE= ${PORTVERSION:R} -VERSION= ${PORTVERSION:E:S/b/beta/:S/r/rc/} -.elif ${PORTVERSION:R:E} != "" -RELEASE= ${PORTVERSION:R} -PATCHLEVEL= pl${PORTVERSION:E} -.else -RELEASE= ${PORTVERSION} -.endif - -PATCH_SUBDIRS= common minires dst omapip server client relay dhcpctl - -SAMP_SUFFIX= .sample - -BIN_FILES= dhclient dhcpd dhcrelay -CONF_FILES= dhclient.conf -SAMP_FILES= client/dhclient.conf server/dhcpd.conf -RCD_FILES= isc-dhcpd.sh${SAMP_SUFFIX} -DOC_FILES= CHANGES COPYRIGHT README RELNOTES -DATA_FILES= dhclient.leases dhcpd.leases - -BIN_SUBDIR= bin -SBIN_SUBDIR= sbin -CONF_SUBDIR= etc -SAMP_SUBDIR= ${CONF_SUBDIR} -RCD_SUBDIR= etc/rc.d -INC_SUBDIR= include -LIB_SUBDIR= lib -DOC_SUBDIR= share/doc/${PKGBASE} -DATA_DIR= /var/db - -STRIP_CMD?= strip - -# -# Post-patch -# - -post-patch: patch-scripts patch-makefile-conf patch-makefiles-dist \ - patch-man-pages - -patch-scripts: - @${PERL} -pi.fbsd -e 's.!!PREFIX!!.${PREFIX}.g' \ - ${WRKSRC}/client/scripts/freebsd - -patch-makefile-conf: - @${PERL} -pi.fbsd -e 's|^DEBUG[ ]*=|# DEBUG ?=|g' \ - ${WRKSRC}/Makefile.conf - -patch-makefiles-dist: -.for subdir in ${PATCH_SUBDIRS} - @${PERL} -pi.fbsd -e 's|^CFLAGS[ ]*=|CFLAGS +=|g' \ - ${WRKSRC}/${subdir}/Makefile.dist -.endfor - -# temporary hack - no patch file needed for this typo. -patch-man-pages: - @${PERL} -ni.fbsd -e '/^\.Fd$$/ or print;' ${WRKSRC}/dhcpctl/dhcpctl.3 - -# -# Post-install -# - -post-install: strip-binary-files install-startup-files \ - install-doc-files install-sample-files \ - create-data-files create-conf-files - -strip-binary-files: -.for file in ${BIN_FILES} -.if exists(${PREFIX}/${BIN_SUBDIR}/${file}) - @${STRIP_CMD} ${PREFIX}/${BIN_SUBDIR}/${file} -.endif -.endfor - -install-startup-files: -.for file in ${RCD_FILES} - @${INSTALL_SCRIPT} ${FILESDIR}/${file} ${PREFIX}/${RCD_SUBDIR} -.endfor - -install-doc-files: -.if !defined(NOPORTDOCS) - @${MKDIR} ${PREFIX}/${DOC_SUBDIR} -.for file in ${DOC_FILES} - @${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/${DOC_SUBDIR} -.endfor -.endif - -install-sample-files: -.for file in ${SAMP_FILES} - @${INSTALL_DATA} ${WRKSRC}/${file} \ - ${PREFIX}/${SAMP_SUBDIR}/${file:T}${SAMP_SUFFIX} -.endfor - -create-data-files: -.for file in ${DATA_FILES} -.if !exists(${DATA_DIR}/${file}) - @${TOUCH} ${DATA_DIR}/${file} -.endif -.endfor - -create-conf-files: -.for file in ${CONF_FILES} -.if !exists(${PREFIX}/${CONF_SUBDIR}/${file}) - @${TOUCH} ${PREFIX}/${CONF_SUBDIR}/${file} -.endif -.endfor - -.include <bsd.port.mk> diff --git a/net/isc-dhcp30-server/distinfo b/net/isc-dhcp30-server/distinfo deleted file mode 100644 index 7a2ecad54128..000000000000 --- a/net/isc-dhcp30-server/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (dhcp-3.0rc11.tar.gz) = 6b244e2bb056d423a49aca7b6bbeee91 diff --git a/net/isc-dhcp30-server/files/isc-dhcpd.sh.sample b/net/isc-dhcp30-server/files/isc-dhcpd.sh.sample deleted file mode 100644 index bd9f10dbc3fd..000000000000 --- a/net/isc-dhcp30-server/files/isc-dhcpd.sh.sample +++ /dev/null @@ -1,33 +0,0 @@ -#! /bin/sh - -# $FreeBSD$ - -OPTIONS="" -IFACES="" - -if ! PREFIX=$(expr $0 : "\(/.*\)/etc/rc\.d/$(basename $0)\$"); then - echo "$0: Cannot determine the PREFIX" >&2 - exit 1 -fi - -case "$1" in -start) - ${PREFIX}/sbin/dhcpd $OPTIONS $IFACES > /dev/null 2>&1 - echo -n ' dhcpd' - ;; -stop) - killall dhcpd - ;; -restart) - $0 stop - $0 start - ;; -status) - ps -auxww | egrep '(conserver|console)' | egrep -v "($0|egrep)" - ;; -*) - echo "usage: ${0##*/} {start|stop|restart|status}" >&2 - ;; -esac - -exit 0 diff --git a/net/isc-dhcp30-server/files/patch-freebsd b/net/isc-dhcp30-server/files/patch-freebsd deleted file mode 100644 index 62fe0a127a40..000000000000 --- a/net/isc-dhcp30-server/files/patch-freebsd +++ /dev/null @@ -1,47 +0,0 @@ ---- client/scripts/freebsd.orig Fri Apr 20 22:01:14 2001 -+++ client/scripts/freebsd Sat Apr 21 19:01:59 2001 -@@ -16,17 +16,17 @@ - # Must be used on exit. Invokes the local dhcp client exit hooks, if any. - exit_with_hooks() { - exit_status=$1 -- if [ -f /etc/dhclient-exit-hooks ]; then -- . /etc/dhclient-exit-hooks -+ if [ -f !!PREFIX!!/etc/dhclient-exit-hooks ]; then -+ . !!PREFIX!!/etc/dhclient-exit-hooks - fi - # probably should do something with exit status of the local script - exit $exit_status - } - - # Invoke the local dhcp client enter hooks, if they exist. --if [ -f /etc/dhclient-enter-hooks ]; then -+if [ -f !!PREFIX!!/etc/dhclient-enter-hooks ]; then - exit_status=0 -- . /etc/dhclient-enter-hooks -+ . !!PREFIX!!/etc/dhclient-enter-hooks - # allow the local script to abort processing of this state - # local script must set exit_status variable to nonzero. - if [ $exit_status -ne 0 ]; then -@@ -35,11 +35,11 @@ - fi - - if [ x$new_network_number != x ]; then -- $LOGGER New Network Number: $new_network_number -+ $LOGGER "New Network Number: $new_network_number" - fi - - if [ x$new_broadcast_address != x ]; then -- $LOGGER New Broadcast Address: $new_broadcast_address -+ $LOGGER "New Broadcast Address: $new_broadcast_address" - new_broadcast_arg="broadcast $new_broadcast_address" - fi - if [ x$old_broadcast_address != x ]; then -@@ -158,7 +158,7 @@ - shift; shift - done - fi -- arp -n -a | sed -n -e 's/^.*(\(.*\)) at .*$/arp -n -d \1/p' \ -+ arp -n -a | sed -n -e 's/^.*(\(.*\)) at .*$/arp -d \1/p' \ - |sh >/dev/null 2>&1 - fi - if [ x$alias_ip_address != x ]; then diff --git a/net/isc-dhcp30-server/files/patch-site.conf b/net/isc-dhcp30-server/files/patch-site.conf deleted file mode 100644 index 5c14e470dcbc..000000000000 --- a/net/isc-dhcp30-server/files/patch-site.conf +++ /dev/null @@ -1,38 +0,0 @@ ---- site.conf.orig Wed Jul 7 17:20:10 1999 -+++ site.conf Sun Jun 24 02:07:17 2001 -@@ -1,2 +1,35 @@ - # Put local site configuration stuff here to override the default - # settings in Makefile.conf -+ -+PREFIX ?= /usr/local -+ -+USERBINDIR = $(PREFIX)/bin -+BINDIR = $(PREFIX)/sbin -+CLIENTBINDIR = $(PREFIX)/sbin -+ADMMANDIR = $(PREFIX)/man/man8 -+ADMMANEXT = .8 -+FFMANDIR = $(PREFIX)/man/man5 -+FFMANEXT = .5 -+LIBMANDIR = $(PREFIX)/man/man3 -+LIBMANEXT = .3 -+USRMANDIR = $(PREFIX)/man/man1 -+USRMANEXT = .1 -+MANCAT = man -+# INSTALL = ${INSTALL_DATA} -+# MANINSTALL = ${INSTALL_MAN} -+ETC = $(PREFIX)/etc -+LIBDIR = ${PREFIX}/lib -+INCDIR = ${PREFIX}/include -+ -+DEBUG ?= #none -+ -+CFLAGS += -D_PATH_DHCPD_CONF=\"$(ETC)/dhcpd.conf\" -+CFLAGS += -D_PATH_DHCPD_DB=\"$(VARDB)/dhcpd.leases\" -+CFLAGS += -D_PATH_DHCPD_PID=\"$(VARRUN)/dhcpd.pid\" -+ -+CFLAGS += -D_PATH_DHCRELAY_PID=\"$(VARRUN)/dhcrelay.pid\" -+ -+CFLAGS += -D_PATH_DHCLIENT_CONF=\"$(ETC)/dhclient.conf\" -+CFLAGS += -D_PATH_DHCLIENT_SCRIPT=\"$(CLIENTBINDIR)/dhclient-script\" -+CFLAGS += -D_PATH_DHCLIENT_DB=\"$(VARDB)/dhclient.leases\" -+CFLAGS += -D_PATH_DHCLIENT_PID=\"$(VARDB)/dhclient.pid\" diff --git a/net/isc-dhcp30-server/pkg-comment b/net/isc-dhcp30-server/pkg-comment deleted file mode 100644 index 77d728a4ed55..000000000000 --- a/net/isc-dhcp30-server/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -ISC Dynamic Host Configuration Protocol client and server code diff --git a/net/isc-dhcp30-server/pkg-descr b/net/isc-dhcp30-server/pkg-descr deleted file mode 100644 index 47c2b8c9ada8..000000000000 --- a/net/isc-dhcp30-server/pkg-descr +++ /dev/null @@ -1,24 +0,0 @@ -The ISC Dynamic Host Configuration Protocol Distribution provides a -freely redistributable reference implementation of all aspects of the -DHCP protocol, through a suite of DHCP tools: - - * A DHCP server - * A DHCP client - * A DHCP relay agent - -Version 3 of the ISC DHCP Distribution includes the following features -that are new since version 2.0: - - * DHCP Failover Protocol support - * OMAPI, an API for accessing and modifying the DHCP server and client state - * Conditional behaviour - * Storing arbitrary information on leases - * Address pools with access control - * Client classing - * Address allocation restriction by class - * Relay agent information option support - * Dynamic DNS updates - * Many bug fixes, performance enhancements, and minor new DHCP protocol - features. - -WWW: http://www.isc.org/products/DHCP/ diff --git a/net/isc-dhcp30-server/pkg-plist b/net/isc-dhcp30-server/pkg-plist deleted file mode 100644 index 14392593c635..000000000000 --- a/net/isc-dhcp30-server/pkg-plist +++ /dev/null @@ -1,36 +0,0 @@ -@comment $FreeBSD$ -%%SAMP_SUBDIR%%/dhclient.conf%%SAMP_SUFFIX%% -%%SAMP_SUBDIR%%/dhcpd.conf%%SAMP_SUFFIX%% -%%RCD_SUBDIR%%/isc-dhcpd.sh%%SAMP_SUFFIX%% -%%INC_SUBDIR%%/dhcpctl.h -%%INC_SUBDIR%%/isc-dhcp/boolean.h -%%INC_SUBDIR%%/isc-dhcp/dst.h -%%INC_SUBDIR%%/isc-dhcp/int.h -%%INC_SUBDIR%%/isc-dhcp/lang.h -%%INC_SUBDIR%%/isc-dhcp/list.h -%%INC_SUBDIR%%/isc-dhcp/result.h -%%INC_SUBDIR%%/isc-dhcp/types.h -%%INC_SUBDIR%%/omapip/alloc.h -%%INC_SUBDIR%%/omapip/buffer.h -%%INC_SUBDIR%%/omapip/omapip.h -%%LIB_SUBDIR%%/libdhcpctl.a -%%LIB_SUBDIR%%/libomapi.a -%%BIN_SUBDIR%%/omshell -%%SBIN_SUBDIR%%/dhclient -%%SBIN_SUBDIR%%/dhclient-script -%%SBIN_SUBDIR%%/dhcpd -%%SBIN_SUBDIR%%/dhcrelay -%%PORTDOCS%%%%DOC_SUBDIR%%/CHANGES -%%PORTDOCS%%%%DOC_SUBDIR%%/COPYRIGHT -%%PORTDOCS%%%%DOC_SUBDIR%%/README -%%PORTDOCS%%%%DOC_SUBDIR%%/RELNOTES -@dirrm %%INC_SUBDIR%%/isc-dhcp -@dirrm %%INC_SUBDIR%%/omapip -%%PORTDOCS%%@dirrm %%DOC_SUBDIR%% -@unexec rm -f %%RCD_SUBDIR%%/isc-dhcpd.sh -@exec [ -f %%DATA_DIR%%/dhclient.leases ] || touch %%DATA_DIR%%/dhclient.leases -@unexec [ -s %%DATA_DIR%%/dhclient.leases ] || rm -f %%DATA_DIR%%/dhclient.leases -@exec [ -f %%DATA_DIR%%/dhcpd.leases ] || touch %%DATA_DIR%%/dhcpd.leases -@unexec [ -s %%DATA_DIR%%/dhcpd.leases ] || rm -f %%DATA_DIR%%/dhcpd.leases -@exec [ -f %D/%%CONF_SUBDIR%%/dhclient.conf ] || touch %D/%%CONF_SUBDIR%%/dhclient.conf -@unexec [ -L %D/%%CONF_SUBDIR%%/dhclient.conf -o -s %D/%%CONF_SUBDIR%%/dhclient.conf ] || rm -f %D/%%CONF_SUBDIR%%/dhclient.conf diff --git a/net/isc-dhcp31-server/Makefile b/net/isc-dhcp31-server/Makefile deleted file mode 100644 index 4486a54bd5d4..000000000000 --- a/net/isc-dhcp31-server/Makefile +++ /dev/null @@ -1,198 +0,0 @@ -# ex:ts=8 -# Ports collection makefile for: dhcp -# Date created: 7 Mar 1996 -# Whom: se -# -# $FreeBSD$ -# - -PORTNAME= dhcp -PORTVERSION= 3.0.r11 -CATEGORIES= net -MASTER_SITES= ftp://ftp.isc.org/isc/%SUBDIR%/ \ - ${US_MASTER_SITES} ${JAPAN_MASTER_SITES} \ - ${AUSTRIA_MASTER_SITES} ${FRANCE_MASTER_SITES} \ - ${FINLAND_MASTER_SITES} ${GERMANY_MASTER_SITES} \ - ${HUNGARY_MASTER_SITES} ${ICELAND_MASTER_SITES} \ - ${LATVIA_MASTER_SITES} ${POLAND_MASTER_SITES} \ - ${RUSSIA_MASTER_SITES} ${SPAIN_MASTER_SITES} \ - ${SWEDEN_MASTER_SITES} ${UK_MASTER_SITES} \ - ${NETHERLANDS_MASTER_SITES} ${BRAZIL_MASTER_SITES} \ - ${GREECE_MASTER_SITES} ${TURKEY_MASTER_SITES} -MASTER_SITE_SUBDIR= dhcp dpcp/dhcp-3.0-history -PKGNAMEPREFIX= isc- -PKGNAMESUFFIX= 3 -DISTNAME= ${PORTNAME}-${RELEASE}${VERSION}${PATCHLEVEL} - -MAINTAINER= clefevre@citeweb.net - -# -# Global variables -# - -HAS_CONFIGURE= yes - -PLIST_SUB= DATA_DIR="${DATA_DIR}" RCD_SUBDIR="${RCD_SUBDIR}" \ - CONF_SUBDIR="${CONF_SUBDIR}" SAMP_SUBDIR="${SAMP_SUBDIR}" \ - BIN_SUBDIR="${BIN_SUBDIR}" SBIN_SUBDIR="${SBIN_SUBDIR}" \ - INC_SUBDIR="${INC_SUBDIR}" LIB_SUBDIR="${LIB_SUBDIR}" \ - DOC_SUBDIR="${DOC_SUBDIR}" SAMP_SUFFIX="${SAMP_SUFFIX}" - -MAN1= omshell.1 -MAN3= dhcpctl.3 omapi.3 omshell.3 -MAN5= dhclient.conf.5 dhclient.leases.5 dhcp-contrib.5 \ - dhcp-eval.5 dhcp-options.5 dhcpd.conf.5 \ - dhcpd.leases.5 -MAN8= dhclient.8 dhclient-script.8 dhcpd.8 dhcrelay.8 - -# -# Local variables -# - -# fast -AUSTRIA_MASTER_SITES= ftp://gd.tuwien.ac.at/infosys/servers/isc/%SUBDIR%/ -FRANCE_MASTER_SITES= ftp://ftp.ciril.fr/pub/isc/%SUBDIR%/ \ - ftp://ftp.grolier.fr/pub/isc/%SUBDIR%/ -FINLAND_MASTER_SITES= ftp://ftp.funet.fi/pub/mirrors/ftp.isc.org/isc/%SUBDIR%/ -GERMANY_MASTER_SITES= ftp://ftp.freenet.de/pub/ftp.isc.org/isc/%SUBDIR%/ \ - ftp://ftp.gigabell.net/pub/%SUBDIR%/ -HUNGARY_MASTER_SITES= ftp://ftp.fsn.hu/pub/isc/%SUBDIR%/ -ICELAND_MASTER_SITES= ftp://ftp.gm.is/pub/isc/%SUBDIR%/ -JAPAN_MASTER_SITES= ftp://ftp.kyushu-u.ac.jp/pub/Net/isc/%SUBDIR%/ \ - ftp://ftp.iij.ad.jp/pub/network/isc/%SUBDIR%/ \ - ftp://ftp.u-aizu.ac.jp/pub/net/isc/%SUBDIR%/ -LATVIA_MASTER_SITES= ftp://ftp.linux.lv/pub/software/isc/%SUBDIR%/ -POLAND_MASTER_SITES= ftp://ftp.task.gda.pl/mirror/ftp.isc.org/isc/%SUBDIR%/ -RUSSIA_MASTER_SITES= ftp://ftp.cdu.elektra.ru/pub/unix/isc/%SUBDIR%/ -SPAIN_MASTER_SITES= ftp://ftp.si.uniovi.es/mirror/isc/%SUBDIR%/ -SWEDEN_MASTER_SITES= ftp://ftp.sunet.se/pub/network/isc/%SUBDIR%/ \ - ftp://ftp.chl.chalmers.se/pub/unix/network/isc/%SUBDIR%/ -UK_MASTER_SITES= ftp://unix.hensa.ac.uk/mirrors/ftp.isc.org/isc/%SUBDIR%/ -US_MASTER_SITES= ftp://ftp.epix.net/pub/isc/%SUBDIR%/ \ - ftp://ftp.nominum.com/pub/isc/%SUBDIR%/ -NETHERLANDS_MASTER_SITES= ftp://ftp.ripe.net/mirrors/sites/ftp.isc.org/isc/%SUBDIR%/ \ - ftp://ftp.nl.uu.net/pub/mirrors/ftp.isc.org/%SUBDIR%/ - -# slow -BRAZIL_MASTER_SITES= ftp://ftp.pop-mg.com.br/pub/isc/%SUBDIR%/ -GREECE_MASTER_SITES= ftp://ftp.ntua.gr/pub/net/isc/isc/%SUBDIR%/ -TURKEY_MASTER_SITES= ftp://ftp.ulak.net.tr/pub/networking/isc/%SUBDIR%/ \ - ftp://ftp.metu.edu.tr/pub/mirrors/ftp.isc.org/%SUBDIR%/ - -# for instance, possible version formats are, in order: -# 1.2.r3.4 (or 1.2.b3.4), 1.2.r3 (or 1.2.b3), 1.2.3, 1.2 -# which have to become: -# 1.2rc3pl4 (or 1.2beta3pl4), 1.2rc3 (or 1.2beta3), 1.2pl3, 1.2 -VERSION= -PATCHLEVEL= -.if ${PORTVERSION:R:E:M[br]*} != "" -RELEASE= ${PORTVERSION:R:R} -VERSION= ${PORTVERSION:R:E:S/b/beta/:S/r/rc/} -PATCHLEVEL= pl${PORTVERSION:E} -.elif ${PORTVERSION:E:M[br]*} != "" -RELEASE= ${PORTVERSION:R} -VERSION= ${PORTVERSION:E:S/b/beta/:S/r/rc/} -.elif ${PORTVERSION:R:E} != "" -RELEASE= ${PORTVERSION:R} -PATCHLEVEL= pl${PORTVERSION:E} -.else -RELEASE= ${PORTVERSION} -.endif - -PATCH_SUBDIRS= common minires dst omapip server client relay dhcpctl - -SAMP_SUFFIX= .sample - -BIN_FILES= dhclient dhcpd dhcrelay -CONF_FILES= dhclient.conf -SAMP_FILES= client/dhclient.conf server/dhcpd.conf -RCD_FILES= isc-dhcpd.sh${SAMP_SUFFIX} -DOC_FILES= CHANGES COPYRIGHT README RELNOTES -DATA_FILES= dhclient.leases dhcpd.leases - -BIN_SUBDIR= bin -SBIN_SUBDIR= sbin -CONF_SUBDIR= etc -SAMP_SUBDIR= ${CONF_SUBDIR} -RCD_SUBDIR= etc/rc.d -INC_SUBDIR= include -LIB_SUBDIR= lib -DOC_SUBDIR= share/doc/${PKGBASE} -DATA_DIR= /var/db - -STRIP_CMD?= strip - -# -# Post-patch -# - -post-patch: patch-scripts patch-makefile-conf patch-makefiles-dist \ - patch-man-pages - -patch-scripts: - @${PERL} -pi.fbsd -e 's.!!PREFIX!!.${PREFIX}.g' \ - ${WRKSRC}/client/scripts/freebsd - -patch-makefile-conf: - @${PERL} -pi.fbsd -e 's|^DEBUG[ ]*=|# DEBUG ?=|g' \ - ${WRKSRC}/Makefile.conf - -patch-makefiles-dist: -.for subdir in ${PATCH_SUBDIRS} - @${PERL} -pi.fbsd -e 's|^CFLAGS[ ]*=|CFLAGS +=|g' \ - ${WRKSRC}/${subdir}/Makefile.dist -.endfor - -# temporary hack - no patch file needed for this typo. -patch-man-pages: - @${PERL} -ni.fbsd -e '/^\.Fd$$/ or print;' ${WRKSRC}/dhcpctl/dhcpctl.3 - -# -# Post-install -# - -post-install: strip-binary-files install-startup-files \ - install-doc-files install-sample-files \ - create-data-files create-conf-files - -strip-binary-files: -.for file in ${BIN_FILES} -.if exists(${PREFIX}/${BIN_SUBDIR}/${file}) - @${STRIP_CMD} ${PREFIX}/${BIN_SUBDIR}/${file} -.endif -.endfor - -install-startup-files: -.for file in ${RCD_FILES} - @${INSTALL_SCRIPT} ${FILESDIR}/${file} ${PREFIX}/${RCD_SUBDIR} -.endfor - -install-doc-files: -.if !defined(NOPORTDOCS) - @${MKDIR} ${PREFIX}/${DOC_SUBDIR} -.for file in ${DOC_FILES} - @${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/${DOC_SUBDIR} -.endfor -.endif - -install-sample-files: -.for file in ${SAMP_FILES} - @${INSTALL_DATA} ${WRKSRC}/${file} \ - ${PREFIX}/${SAMP_SUBDIR}/${file:T}${SAMP_SUFFIX} -.endfor - -create-data-files: -.for file in ${DATA_FILES} -.if !exists(${DATA_DIR}/${file}) - @${TOUCH} ${DATA_DIR}/${file} -.endif -.endfor - -create-conf-files: -.for file in ${CONF_FILES} -.if !exists(${PREFIX}/${CONF_SUBDIR}/${file}) - @${TOUCH} ${PREFIX}/${CONF_SUBDIR}/${file} -.endif -.endfor - -.include <bsd.port.mk> diff --git a/net/isc-dhcp31-server/distinfo b/net/isc-dhcp31-server/distinfo deleted file mode 100644 index 7a2ecad54128..000000000000 --- a/net/isc-dhcp31-server/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (dhcp-3.0rc11.tar.gz) = 6b244e2bb056d423a49aca7b6bbeee91 diff --git a/net/isc-dhcp31-server/files/isc-dhcpd.sh.sample b/net/isc-dhcp31-server/files/isc-dhcpd.sh.sample deleted file mode 100644 index bd9f10dbc3fd..000000000000 --- a/net/isc-dhcp31-server/files/isc-dhcpd.sh.sample +++ /dev/null @@ -1,33 +0,0 @@ -#! /bin/sh - -# $FreeBSD$ - -OPTIONS="" -IFACES="" - -if ! PREFIX=$(expr $0 : "\(/.*\)/etc/rc\.d/$(basename $0)\$"); then - echo "$0: Cannot determine the PREFIX" >&2 - exit 1 -fi - -case "$1" in -start) - ${PREFIX}/sbin/dhcpd $OPTIONS $IFACES > /dev/null 2>&1 - echo -n ' dhcpd' - ;; -stop) - killall dhcpd - ;; -restart) - $0 stop - $0 start - ;; -status) - ps -auxww | egrep '(conserver|console)' | egrep -v "($0|egrep)" - ;; -*) - echo "usage: ${0##*/} {start|stop|restart|status}" >&2 - ;; -esac - -exit 0 diff --git a/net/isc-dhcp31-server/files/patch-freebsd b/net/isc-dhcp31-server/files/patch-freebsd deleted file mode 100644 index 62fe0a127a40..000000000000 --- a/net/isc-dhcp31-server/files/patch-freebsd +++ /dev/null @@ -1,47 +0,0 @@ ---- client/scripts/freebsd.orig Fri Apr 20 22:01:14 2001 -+++ client/scripts/freebsd Sat Apr 21 19:01:59 2001 -@@ -16,17 +16,17 @@ - # Must be used on exit. Invokes the local dhcp client exit hooks, if any. - exit_with_hooks() { - exit_status=$1 -- if [ -f /etc/dhclient-exit-hooks ]; then -- . /etc/dhclient-exit-hooks -+ if [ -f !!PREFIX!!/etc/dhclient-exit-hooks ]; then -+ . !!PREFIX!!/etc/dhclient-exit-hooks - fi - # probably should do something with exit status of the local script - exit $exit_status - } - - # Invoke the local dhcp client enter hooks, if they exist. --if [ -f /etc/dhclient-enter-hooks ]; then -+if [ -f !!PREFIX!!/etc/dhclient-enter-hooks ]; then - exit_status=0 -- . /etc/dhclient-enter-hooks -+ . !!PREFIX!!/etc/dhclient-enter-hooks - # allow the local script to abort processing of this state - # local script must set exit_status variable to nonzero. - if [ $exit_status -ne 0 ]; then -@@ -35,11 +35,11 @@ - fi - - if [ x$new_network_number != x ]; then -- $LOGGER New Network Number: $new_network_number -+ $LOGGER "New Network Number: $new_network_number" - fi - - if [ x$new_broadcast_address != x ]; then -- $LOGGER New Broadcast Address: $new_broadcast_address -+ $LOGGER "New Broadcast Address: $new_broadcast_address" - new_broadcast_arg="broadcast $new_broadcast_address" - fi - if [ x$old_broadcast_address != x ]; then -@@ -158,7 +158,7 @@ - shift; shift - done - fi -- arp -n -a | sed -n -e 's/^.*(\(.*\)) at .*$/arp -n -d \1/p' \ -+ arp -n -a | sed -n -e 's/^.*(\(.*\)) at .*$/arp -d \1/p' \ - |sh >/dev/null 2>&1 - fi - if [ x$alias_ip_address != x ]; then diff --git a/net/isc-dhcp31-server/files/patch-site.conf b/net/isc-dhcp31-server/files/patch-site.conf deleted file mode 100644 index 5c14e470dcbc..000000000000 --- a/net/isc-dhcp31-server/files/patch-site.conf +++ /dev/null @@ -1,38 +0,0 @@ ---- site.conf.orig Wed Jul 7 17:20:10 1999 -+++ site.conf Sun Jun 24 02:07:17 2001 -@@ -1,2 +1,35 @@ - # Put local site configuration stuff here to override the default - # settings in Makefile.conf -+ -+PREFIX ?= /usr/local -+ -+USERBINDIR = $(PREFIX)/bin -+BINDIR = $(PREFIX)/sbin -+CLIENTBINDIR = $(PREFIX)/sbin -+ADMMANDIR = $(PREFIX)/man/man8 -+ADMMANEXT = .8 -+FFMANDIR = $(PREFIX)/man/man5 -+FFMANEXT = .5 -+LIBMANDIR = $(PREFIX)/man/man3 -+LIBMANEXT = .3 -+USRMANDIR = $(PREFIX)/man/man1 -+USRMANEXT = .1 -+MANCAT = man -+# INSTALL = ${INSTALL_DATA} -+# MANINSTALL = ${INSTALL_MAN} -+ETC = $(PREFIX)/etc -+LIBDIR = ${PREFIX}/lib -+INCDIR = ${PREFIX}/include -+ -+DEBUG ?= #none -+ -+CFLAGS += -D_PATH_DHCPD_CONF=\"$(ETC)/dhcpd.conf\" -+CFLAGS += -D_PATH_DHCPD_DB=\"$(VARDB)/dhcpd.leases\" -+CFLAGS += -D_PATH_DHCPD_PID=\"$(VARRUN)/dhcpd.pid\" -+ -+CFLAGS += -D_PATH_DHCRELAY_PID=\"$(VARRUN)/dhcrelay.pid\" -+ -+CFLAGS += -D_PATH_DHCLIENT_CONF=\"$(ETC)/dhclient.conf\" -+CFLAGS += -D_PATH_DHCLIENT_SCRIPT=\"$(CLIENTBINDIR)/dhclient-script\" -+CFLAGS += -D_PATH_DHCLIENT_DB=\"$(VARDB)/dhclient.leases\" -+CFLAGS += -D_PATH_DHCLIENT_PID=\"$(VARDB)/dhclient.pid\" diff --git a/net/isc-dhcp31-server/pkg-comment b/net/isc-dhcp31-server/pkg-comment deleted file mode 100644 index 77d728a4ed55..000000000000 --- a/net/isc-dhcp31-server/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -ISC Dynamic Host Configuration Protocol client and server code diff --git a/net/isc-dhcp31-server/pkg-descr b/net/isc-dhcp31-server/pkg-descr deleted file mode 100644 index 47c2b8c9ada8..000000000000 --- a/net/isc-dhcp31-server/pkg-descr +++ /dev/null @@ -1,24 +0,0 @@ -The ISC Dynamic Host Configuration Protocol Distribution provides a -freely redistributable reference implementation of all aspects of the -DHCP protocol, through a suite of DHCP tools: - - * A DHCP server - * A DHCP client - * A DHCP relay agent - -Version 3 of the ISC DHCP Distribution includes the following features -that are new since version 2.0: - - * DHCP Failover Protocol support - * OMAPI, an API for accessing and modifying the DHCP server and client state - * Conditional behaviour - * Storing arbitrary information on leases - * Address pools with access control - * Client classing - * Address allocation restriction by class - * Relay agent information option support - * Dynamic DNS updates - * Many bug fixes, performance enhancements, and minor new DHCP protocol - features. - -WWW: http://www.isc.org/products/DHCP/ diff --git a/net/isc-dhcp31-server/pkg-plist b/net/isc-dhcp31-server/pkg-plist deleted file mode 100644 index 14392593c635..000000000000 --- a/net/isc-dhcp31-server/pkg-plist +++ /dev/null @@ -1,36 +0,0 @@ -@comment $FreeBSD$ -%%SAMP_SUBDIR%%/dhclient.conf%%SAMP_SUFFIX%% -%%SAMP_SUBDIR%%/dhcpd.conf%%SAMP_SUFFIX%% -%%RCD_SUBDIR%%/isc-dhcpd.sh%%SAMP_SUFFIX%% -%%INC_SUBDIR%%/dhcpctl.h -%%INC_SUBDIR%%/isc-dhcp/boolean.h -%%INC_SUBDIR%%/isc-dhcp/dst.h -%%INC_SUBDIR%%/isc-dhcp/int.h -%%INC_SUBDIR%%/isc-dhcp/lang.h -%%INC_SUBDIR%%/isc-dhcp/list.h -%%INC_SUBDIR%%/isc-dhcp/result.h -%%INC_SUBDIR%%/isc-dhcp/types.h -%%INC_SUBDIR%%/omapip/alloc.h -%%INC_SUBDIR%%/omapip/buffer.h -%%INC_SUBDIR%%/omapip/omapip.h -%%LIB_SUBDIR%%/libdhcpctl.a -%%LIB_SUBDIR%%/libomapi.a -%%BIN_SUBDIR%%/omshell -%%SBIN_SUBDIR%%/dhclient -%%SBIN_SUBDIR%%/dhclient-script -%%SBIN_SUBDIR%%/dhcpd -%%SBIN_SUBDIR%%/dhcrelay -%%PORTDOCS%%%%DOC_SUBDIR%%/CHANGES -%%PORTDOCS%%%%DOC_SUBDIR%%/COPYRIGHT -%%PORTDOCS%%%%DOC_SUBDIR%%/README -%%PORTDOCS%%%%DOC_SUBDIR%%/RELNOTES -@dirrm %%INC_SUBDIR%%/isc-dhcp -@dirrm %%INC_SUBDIR%%/omapip -%%PORTDOCS%%@dirrm %%DOC_SUBDIR%% -@unexec rm -f %%RCD_SUBDIR%%/isc-dhcpd.sh -@exec [ -f %%DATA_DIR%%/dhclient.leases ] || touch %%DATA_DIR%%/dhclient.leases -@unexec [ -s %%DATA_DIR%%/dhclient.leases ] || rm -f %%DATA_DIR%%/dhclient.leases -@exec [ -f %%DATA_DIR%%/dhcpd.leases ] || touch %%DATA_DIR%%/dhcpd.leases -@unexec [ -s %%DATA_DIR%%/dhcpd.leases ] || rm -f %%DATA_DIR%%/dhcpd.leases -@exec [ -f %D/%%CONF_SUBDIR%%/dhclient.conf ] || touch %D/%%CONF_SUBDIR%%/dhclient.conf -@unexec [ -L %D/%%CONF_SUBDIR%%/dhclient.conf -o -s %D/%%CONF_SUBDIR%%/dhclient.conf ] || rm -f %D/%%CONF_SUBDIR%%/dhclient.conf diff --git a/net/isc-dhcp40-server/Makefile b/net/isc-dhcp40-server/Makefile deleted file mode 100644 index 4486a54bd5d4..000000000000 --- a/net/isc-dhcp40-server/Makefile +++ /dev/null @@ -1,198 +0,0 @@ -# ex:ts=8 -# Ports collection makefile for: dhcp -# Date created: 7 Mar 1996 -# Whom: se -# -# $FreeBSD$ -# - -PORTNAME= dhcp -PORTVERSION= 3.0.r11 -CATEGORIES= net -MASTER_SITES= ftp://ftp.isc.org/isc/%SUBDIR%/ \ - ${US_MASTER_SITES} ${JAPAN_MASTER_SITES} \ - ${AUSTRIA_MASTER_SITES} ${FRANCE_MASTER_SITES} \ - ${FINLAND_MASTER_SITES} ${GERMANY_MASTER_SITES} \ - ${HUNGARY_MASTER_SITES} ${ICELAND_MASTER_SITES} \ - ${LATVIA_MASTER_SITES} ${POLAND_MASTER_SITES} \ - ${RUSSIA_MASTER_SITES} ${SPAIN_MASTER_SITES} \ - ${SWEDEN_MASTER_SITES} ${UK_MASTER_SITES} \ - ${NETHERLANDS_MASTER_SITES} ${BRAZIL_MASTER_SITES} \ - ${GREECE_MASTER_SITES} ${TURKEY_MASTER_SITES} -MASTER_SITE_SUBDIR= dhcp dpcp/dhcp-3.0-history -PKGNAMEPREFIX= isc- -PKGNAMESUFFIX= 3 -DISTNAME= ${PORTNAME}-${RELEASE}${VERSION}${PATCHLEVEL} - -MAINTAINER= clefevre@citeweb.net - -# -# Global variables -# - -HAS_CONFIGURE= yes - -PLIST_SUB= DATA_DIR="${DATA_DIR}" RCD_SUBDIR="${RCD_SUBDIR}" \ - CONF_SUBDIR="${CONF_SUBDIR}" SAMP_SUBDIR="${SAMP_SUBDIR}" \ - BIN_SUBDIR="${BIN_SUBDIR}" SBIN_SUBDIR="${SBIN_SUBDIR}" \ - INC_SUBDIR="${INC_SUBDIR}" LIB_SUBDIR="${LIB_SUBDIR}" \ - DOC_SUBDIR="${DOC_SUBDIR}" SAMP_SUFFIX="${SAMP_SUFFIX}" - -MAN1= omshell.1 -MAN3= dhcpctl.3 omapi.3 omshell.3 -MAN5= dhclient.conf.5 dhclient.leases.5 dhcp-contrib.5 \ - dhcp-eval.5 dhcp-options.5 dhcpd.conf.5 \ - dhcpd.leases.5 -MAN8= dhclient.8 dhclient-script.8 dhcpd.8 dhcrelay.8 - -# -# Local variables -# - -# fast -AUSTRIA_MASTER_SITES= ftp://gd.tuwien.ac.at/infosys/servers/isc/%SUBDIR%/ -FRANCE_MASTER_SITES= ftp://ftp.ciril.fr/pub/isc/%SUBDIR%/ \ - ftp://ftp.grolier.fr/pub/isc/%SUBDIR%/ -FINLAND_MASTER_SITES= ftp://ftp.funet.fi/pub/mirrors/ftp.isc.org/isc/%SUBDIR%/ -GERMANY_MASTER_SITES= ftp://ftp.freenet.de/pub/ftp.isc.org/isc/%SUBDIR%/ \ - ftp://ftp.gigabell.net/pub/%SUBDIR%/ -HUNGARY_MASTER_SITES= ftp://ftp.fsn.hu/pub/isc/%SUBDIR%/ -ICELAND_MASTER_SITES= ftp://ftp.gm.is/pub/isc/%SUBDIR%/ -JAPAN_MASTER_SITES= ftp://ftp.kyushu-u.ac.jp/pub/Net/isc/%SUBDIR%/ \ - ftp://ftp.iij.ad.jp/pub/network/isc/%SUBDIR%/ \ - ftp://ftp.u-aizu.ac.jp/pub/net/isc/%SUBDIR%/ -LATVIA_MASTER_SITES= ftp://ftp.linux.lv/pub/software/isc/%SUBDIR%/ -POLAND_MASTER_SITES= ftp://ftp.task.gda.pl/mirror/ftp.isc.org/isc/%SUBDIR%/ -RUSSIA_MASTER_SITES= ftp://ftp.cdu.elektra.ru/pub/unix/isc/%SUBDIR%/ -SPAIN_MASTER_SITES= ftp://ftp.si.uniovi.es/mirror/isc/%SUBDIR%/ -SWEDEN_MASTER_SITES= ftp://ftp.sunet.se/pub/network/isc/%SUBDIR%/ \ - ftp://ftp.chl.chalmers.se/pub/unix/network/isc/%SUBDIR%/ -UK_MASTER_SITES= ftp://unix.hensa.ac.uk/mirrors/ftp.isc.org/isc/%SUBDIR%/ -US_MASTER_SITES= ftp://ftp.epix.net/pub/isc/%SUBDIR%/ \ - ftp://ftp.nominum.com/pub/isc/%SUBDIR%/ -NETHERLANDS_MASTER_SITES= ftp://ftp.ripe.net/mirrors/sites/ftp.isc.org/isc/%SUBDIR%/ \ - ftp://ftp.nl.uu.net/pub/mirrors/ftp.isc.org/%SUBDIR%/ - -# slow -BRAZIL_MASTER_SITES= ftp://ftp.pop-mg.com.br/pub/isc/%SUBDIR%/ -GREECE_MASTER_SITES= ftp://ftp.ntua.gr/pub/net/isc/isc/%SUBDIR%/ -TURKEY_MASTER_SITES= ftp://ftp.ulak.net.tr/pub/networking/isc/%SUBDIR%/ \ - ftp://ftp.metu.edu.tr/pub/mirrors/ftp.isc.org/%SUBDIR%/ - -# for instance, possible version formats are, in order: -# 1.2.r3.4 (or 1.2.b3.4), 1.2.r3 (or 1.2.b3), 1.2.3, 1.2 -# which have to become: -# 1.2rc3pl4 (or 1.2beta3pl4), 1.2rc3 (or 1.2beta3), 1.2pl3, 1.2 -VERSION= -PATCHLEVEL= -.if ${PORTVERSION:R:E:M[br]*} != "" -RELEASE= ${PORTVERSION:R:R} -VERSION= ${PORTVERSION:R:E:S/b/beta/:S/r/rc/} -PATCHLEVEL= pl${PORTVERSION:E} -.elif ${PORTVERSION:E:M[br]*} != "" -RELEASE= ${PORTVERSION:R} -VERSION= ${PORTVERSION:E:S/b/beta/:S/r/rc/} -.elif ${PORTVERSION:R:E} != "" -RELEASE= ${PORTVERSION:R} -PATCHLEVEL= pl${PORTVERSION:E} -.else -RELEASE= ${PORTVERSION} -.endif - -PATCH_SUBDIRS= common minires dst omapip server client relay dhcpctl - -SAMP_SUFFIX= .sample - -BIN_FILES= dhclient dhcpd dhcrelay -CONF_FILES= dhclient.conf -SAMP_FILES= client/dhclient.conf server/dhcpd.conf -RCD_FILES= isc-dhcpd.sh${SAMP_SUFFIX} -DOC_FILES= CHANGES COPYRIGHT README RELNOTES -DATA_FILES= dhclient.leases dhcpd.leases - -BIN_SUBDIR= bin -SBIN_SUBDIR= sbin -CONF_SUBDIR= etc -SAMP_SUBDIR= ${CONF_SUBDIR} -RCD_SUBDIR= etc/rc.d -INC_SUBDIR= include -LIB_SUBDIR= lib -DOC_SUBDIR= share/doc/${PKGBASE} -DATA_DIR= /var/db - -STRIP_CMD?= strip - -# -# Post-patch -# - -post-patch: patch-scripts patch-makefile-conf patch-makefiles-dist \ - patch-man-pages - -patch-scripts: - @${PERL} -pi.fbsd -e 's.!!PREFIX!!.${PREFIX}.g' \ - ${WRKSRC}/client/scripts/freebsd - -patch-makefile-conf: - @${PERL} -pi.fbsd -e 's|^DEBUG[ ]*=|# DEBUG ?=|g' \ - ${WRKSRC}/Makefile.conf - -patch-makefiles-dist: -.for subdir in ${PATCH_SUBDIRS} - @${PERL} -pi.fbsd -e 's|^CFLAGS[ ]*=|CFLAGS +=|g' \ - ${WRKSRC}/${subdir}/Makefile.dist -.endfor - -# temporary hack - no patch file needed for this typo. -patch-man-pages: - @${PERL} -ni.fbsd -e '/^\.Fd$$/ or print;' ${WRKSRC}/dhcpctl/dhcpctl.3 - -# -# Post-install -# - -post-install: strip-binary-files install-startup-files \ - install-doc-files install-sample-files \ - create-data-files create-conf-files - -strip-binary-files: -.for file in ${BIN_FILES} -.if exists(${PREFIX}/${BIN_SUBDIR}/${file}) - @${STRIP_CMD} ${PREFIX}/${BIN_SUBDIR}/${file} -.endif -.endfor - -install-startup-files: -.for file in ${RCD_FILES} - @${INSTALL_SCRIPT} ${FILESDIR}/${file} ${PREFIX}/${RCD_SUBDIR} -.endfor - -install-doc-files: -.if !defined(NOPORTDOCS) - @${MKDIR} ${PREFIX}/${DOC_SUBDIR} -.for file in ${DOC_FILES} - @${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/${DOC_SUBDIR} -.endfor -.endif - -install-sample-files: -.for file in ${SAMP_FILES} - @${INSTALL_DATA} ${WRKSRC}/${file} \ - ${PREFIX}/${SAMP_SUBDIR}/${file:T}${SAMP_SUFFIX} -.endfor - -create-data-files: -.for file in ${DATA_FILES} -.if !exists(${DATA_DIR}/${file}) - @${TOUCH} ${DATA_DIR}/${file} -.endif -.endfor - -create-conf-files: -.for file in ${CONF_FILES} -.if !exists(${PREFIX}/${CONF_SUBDIR}/${file}) - @${TOUCH} ${PREFIX}/${CONF_SUBDIR}/${file} -.endif -.endfor - -.include <bsd.port.mk> diff --git a/net/isc-dhcp40-server/distinfo b/net/isc-dhcp40-server/distinfo deleted file mode 100644 index 7a2ecad54128..000000000000 --- a/net/isc-dhcp40-server/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (dhcp-3.0rc11.tar.gz) = 6b244e2bb056d423a49aca7b6bbeee91 diff --git a/net/isc-dhcp40-server/files/isc-dhcpd.sh.sample b/net/isc-dhcp40-server/files/isc-dhcpd.sh.sample deleted file mode 100644 index bd9f10dbc3fd..000000000000 --- a/net/isc-dhcp40-server/files/isc-dhcpd.sh.sample +++ /dev/null @@ -1,33 +0,0 @@ -#! /bin/sh - -# $FreeBSD$ - -OPTIONS="" -IFACES="" - -if ! PREFIX=$(expr $0 : "\(/.*\)/etc/rc\.d/$(basename $0)\$"); then - echo "$0: Cannot determine the PREFIX" >&2 - exit 1 -fi - -case "$1" in -start) - ${PREFIX}/sbin/dhcpd $OPTIONS $IFACES > /dev/null 2>&1 - echo -n ' dhcpd' - ;; -stop) - killall dhcpd - ;; -restart) - $0 stop - $0 start - ;; -status) - ps -auxww | egrep '(conserver|console)' | egrep -v "($0|egrep)" - ;; -*) - echo "usage: ${0##*/} {start|stop|restart|status}" >&2 - ;; -esac - -exit 0 diff --git a/net/isc-dhcp40-server/files/patch-freebsd b/net/isc-dhcp40-server/files/patch-freebsd deleted file mode 100644 index 62fe0a127a40..000000000000 --- a/net/isc-dhcp40-server/files/patch-freebsd +++ /dev/null @@ -1,47 +0,0 @@ ---- client/scripts/freebsd.orig Fri Apr 20 22:01:14 2001 -+++ client/scripts/freebsd Sat Apr 21 19:01:59 2001 -@@ -16,17 +16,17 @@ - # Must be used on exit. Invokes the local dhcp client exit hooks, if any. - exit_with_hooks() { - exit_status=$1 -- if [ -f /etc/dhclient-exit-hooks ]; then -- . /etc/dhclient-exit-hooks -+ if [ -f !!PREFIX!!/etc/dhclient-exit-hooks ]; then -+ . !!PREFIX!!/etc/dhclient-exit-hooks - fi - # probably should do something with exit status of the local script - exit $exit_status - } - - # Invoke the local dhcp client enter hooks, if they exist. --if [ -f /etc/dhclient-enter-hooks ]; then -+if [ -f !!PREFIX!!/etc/dhclient-enter-hooks ]; then - exit_status=0 -- . /etc/dhclient-enter-hooks -+ . !!PREFIX!!/etc/dhclient-enter-hooks - # allow the local script to abort processing of this state - # local script must set exit_status variable to nonzero. - if [ $exit_status -ne 0 ]; then -@@ -35,11 +35,11 @@ - fi - - if [ x$new_network_number != x ]; then -- $LOGGER New Network Number: $new_network_number -+ $LOGGER "New Network Number: $new_network_number" - fi - - if [ x$new_broadcast_address != x ]; then -- $LOGGER New Broadcast Address: $new_broadcast_address -+ $LOGGER "New Broadcast Address: $new_broadcast_address" - new_broadcast_arg="broadcast $new_broadcast_address" - fi - if [ x$old_broadcast_address != x ]; then -@@ -158,7 +158,7 @@ - shift; shift - done - fi -- arp -n -a | sed -n -e 's/^.*(\(.*\)) at .*$/arp -n -d \1/p' \ -+ arp -n -a | sed -n -e 's/^.*(\(.*\)) at .*$/arp -d \1/p' \ - |sh >/dev/null 2>&1 - fi - if [ x$alias_ip_address != x ]; then diff --git a/net/isc-dhcp40-server/files/patch-site.conf b/net/isc-dhcp40-server/files/patch-site.conf deleted file mode 100644 index 5c14e470dcbc..000000000000 --- a/net/isc-dhcp40-server/files/patch-site.conf +++ /dev/null @@ -1,38 +0,0 @@ ---- site.conf.orig Wed Jul 7 17:20:10 1999 -+++ site.conf Sun Jun 24 02:07:17 2001 -@@ -1,2 +1,35 @@ - # Put local site configuration stuff here to override the default - # settings in Makefile.conf -+ -+PREFIX ?= /usr/local -+ -+USERBINDIR = $(PREFIX)/bin -+BINDIR = $(PREFIX)/sbin -+CLIENTBINDIR = $(PREFIX)/sbin -+ADMMANDIR = $(PREFIX)/man/man8 -+ADMMANEXT = .8 -+FFMANDIR = $(PREFIX)/man/man5 -+FFMANEXT = .5 -+LIBMANDIR = $(PREFIX)/man/man3 -+LIBMANEXT = .3 -+USRMANDIR = $(PREFIX)/man/man1 -+USRMANEXT = .1 -+MANCAT = man -+# INSTALL = ${INSTALL_DATA} -+# MANINSTALL = ${INSTALL_MAN} -+ETC = $(PREFIX)/etc -+LIBDIR = ${PREFIX}/lib -+INCDIR = ${PREFIX}/include -+ -+DEBUG ?= #none -+ -+CFLAGS += -D_PATH_DHCPD_CONF=\"$(ETC)/dhcpd.conf\" -+CFLAGS += -D_PATH_DHCPD_DB=\"$(VARDB)/dhcpd.leases\" -+CFLAGS += -D_PATH_DHCPD_PID=\"$(VARRUN)/dhcpd.pid\" -+ -+CFLAGS += -D_PATH_DHCRELAY_PID=\"$(VARRUN)/dhcrelay.pid\" -+ -+CFLAGS += -D_PATH_DHCLIENT_CONF=\"$(ETC)/dhclient.conf\" -+CFLAGS += -D_PATH_DHCLIENT_SCRIPT=\"$(CLIENTBINDIR)/dhclient-script\" -+CFLAGS += -D_PATH_DHCLIENT_DB=\"$(VARDB)/dhclient.leases\" -+CFLAGS += -D_PATH_DHCLIENT_PID=\"$(VARDB)/dhclient.pid\" diff --git a/net/isc-dhcp40-server/pkg-comment b/net/isc-dhcp40-server/pkg-comment deleted file mode 100644 index 77d728a4ed55..000000000000 --- a/net/isc-dhcp40-server/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -ISC Dynamic Host Configuration Protocol client and server code diff --git a/net/isc-dhcp40-server/pkg-descr b/net/isc-dhcp40-server/pkg-descr deleted file mode 100644 index 47c2b8c9ada8..000000000000 --- a/net/isc-dhcp40-server/pkg-descr +++ /dev/null @@ -1,24 +0,0 @@ -The ISC Dynamic Host Configuration Protocol Distribution provides a -freely redistributable reference implementation of all aspects of the -DHCP protocol, through a suite of DHCP tools: - - * A DHCP server - * A DHCP client - * A DHCP relay agent - -Version 3 of the ISC DHCP Distribution includes the following features -that are new since version 2.0: - - * DHCP Failover Protocol support - * OMAPI, an API for accessing and modifying the DHCP server and client state - * Conditional behaviour - * Storing arbitrary information on leases - * Address pools with access control - * Client classing - * Address allocation restriction by class - * Relay agent information option support - * Dynamic DNS updates - * Many bug fixes, performance enhancements, and minor new DHCP protocol - features. - -WWW: http://www.isc.org/products/DHCP/ diff --git a/net/isc-dhcp40-server/pkg-plist b/net/isc-dhcp40-server/pkg-plist deleted file mode 100644 index 14392593c635..000000000000 --- a/net/isc-dhcp40-server/pkg-plist +++ /dev/null @@ -1,36 +0,0 @@ -@comment $FreeBSD$ -%%SAMP_SUBDIR%%/dhclient.conf%%SAMP_SUFFIX%% -%%SAMP_SUBDIR%%/dhcpd.conf%%SAMP_SUFFIX%% -%%RCD_SUBDIR%%/isc-dhcpd.sh%%SAMP_SUFFIX%% -%%INC_SUBDIR%%/dhcpctl.h -%%INC_SUBDIR%%/isc-dhcp/boolean.h -%%INC_SUBDIR%%/isc-dhcp/dst.h -%%INC_SUBDIR%%/isc-dhcp/int.h -%%INC_SUBDIR%%/isc-dhcp/lang.h -%%INC_SUBDIR%%/isc-dhcp/list.h -%%INC_SUBDIR%%/isc-dhcp/result.h -%%INC_SUBDIR%%/isc-dhcp/types.h -%%INC_SUBDIR%%/omapip/alloc.h -%%INC_SUBDIR%%/omapip/buffer.h -%%INC_SUBDIR%%/omapip/omapip.h -%%LIB_SUBDIR%%/libdhcpctl.a -%%LIB_SUBDIR%%/libomapi.a -%%BIN_SUBDIR%%/omshell -%%SBIN_SUBDIR%%/dhclient -%%SBIN_SUBDIR%%/dhclient-script -%%SBIN_SUBDIR%%/dhcpd -%%SBIN_SUBDIR%%/dhcrelay -%%PORTDOCS%%%%DOC_SUBDIR%%/CHANGES -%%PORTDOCS%%%%DOC_SUBDIR%%/COPYRIGHT -%%PORTDOCS%%%%DOC_SUBDIR%%/README -%%PORTDOCS%%%%DOC_SUBDIR%%/RELNOTES -@dirrm %%INC_SUBDIR%%/isc-dhcp -@dirrm %%INC_SUBDIR%%/omapip -%%PORTDOCS%%@dirrm %%DOC_SUBDIR%% -@unexec rm -f %%RCD_SUBDIR%%/isc-dhcpd.sh -@exec [ -f %%DATA_DIR%%/dhclient.leases ] || touch %%DATA_DIR%%/dhclient.leases -@unexec [ -s %%DATA_DIR%%/dhclient.leases ] || rm -f %%DATA_DIR%%/dhclient.leases -@exec [ -f %%DATA_DIR%%/dhcpd.leases ] || touch %%DATA_DIR%%/dhcpd.leases -@unexec [ -s %%DATA_DIR%%/dhcpd.leases ] || rm -f %%DATA_DIR%%/dhcpd.leases -@exec [ -f %D/%%CONF_SUBDIR%%/dhclient.conf ] || touch %D/%%CONF_SUBDIR%%/dhclient.conf -@unexec [ -L %D/%%CONF_SUBDIR%%/dhclient.conf -o -s %D/%%CONF_SUBDIR%%/dhclient.conf ] || rm -f %D/%%CONF_SUBDIR%%/dhclient.conf diff --git a/net/kdenetwork3/Makefile b/net/kdenetwork3/Makefile deleted file mode 100644 index 0bbeea35a78c..000000000000 --- a/net/kdenetwork3/Makefile +++ /dev/null @@ -1,30 +0,0 @@ -# New ports collection makefile for: kdenetwork2 -# Date created: Sun May 14 00:55:45 -# Whom: Will Andrews <will@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= kdenetwork -PORTVERSION= 2.2 -CATEGORIES?= net news kde -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src -DIST_SUBDIR= KDE - -MAINTAINER?= kde@FreeBSD.org - -LIB_DEPENDS= uu.1:${PORTSDIR}/converters/uulib - -USE_KDELIBS_VER=2 -USE_BZIP2= yes -INSTALLS_SHLIB= yes -USE_AUTOCONF= yes -USE_GMAKE= yes - -pre-configure: - ${PERL} -pi -e "s:-lpthread:${PTHREAD_LIBS}:g" ${WRKSRC}/knode/Makefile.in - ${PERL} -pi -e "s@all_includes=\"@all_includes=\"-I/usr/include @g" ${WRKSRC}/acinclude.m4 ${WRKSRC}/aclocal.m4 - ${PERL} -pi -e "s@^AC_CHECK_UTMP_FILE@# AC_CHECK_UTMP_FILE@g" ${WRKSRC}/configure.in - -.include <bsd.port.mk> diff --git a/net/kdenetwork3/distinfo b/net/kdenetwork3/distinfo deleted file mode 100644 index d02f3292bef1..000000000000 --- a/net/kdenetwork3/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (KDE/kdenetwork-2.2.tar.bz2) = 8b83592546aa96ce69fb80dffde32f68 diff --git a/net/kdenetwork3/pkg-comment b/net/kdenetwork3/pkg-comment deleted file mode 100644 index bf5dcda48324..000000000000 --- a/net/kdenetwork3/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Network modules for KDE2 diff --git a/net/kdenetwork3/pkg-descr b/net/kdenetwork3/pkg-descr deleted file mode 100644 index f7425da6373d..000000000000 --- a/net/kdenetwork3/pkg-descr +++ /dev/null @@ -1,6 +0,0 @@ -KDE provides an integrated X11 based environment, much like CDE. -This particular port installs the networking components of KDE, -which includes applications for Internet things like email, web, -irc, and so forth. Note that this is for KDE2, not KDE 1.x. - -WWW: http://www.kde.org/ diff --git a/net/kdenetwork3/pkg-plist b/net/kdenetwork3/pkg-plist deleted file mode 100644 index 531f5ea826cf..000000000000 --- a/net/kdenetwork3/pkg-plist +++ /dev/null @@ -1,852 +0,0 @@ -bin/dsirc -bin/kdict -bin/kit -bin/kmail -bin/kmailcvt -bin/knewstickerstub -bin/knode -bin/korn -bin/kotalkd -bin/kppp -bin/kppplogview -bin/ksirc -bin/ksticker -bin/ktalkd -bin/ktalkdlg -bin/lisa -bin/mail.local -bin/reslisa -include/kmailIface.h -include/mimelib/binhex.h -include/mimelib/bodypart.h -include/mimelib/boyermor.h -include/mimelib/config.h -include/mimelib/datetime.h -include/mimelib/debug.h -include/mimelib/disptype.h -include/mimelib/entity.h -include/mimelib/enum.h -include/mimelib/field.h -include/mimelib/fieldbdy.h -include/mimelib/group.h -include/mimelib/headers.h -include/mimelib/mailbox.h -include/mimelib/mboxlist.h -include/mimelib/mechansm.h -include/mimelib/mediatyp.h -include/mimelib/message.h -include/mimelib/mimepp.h -include/mimelib/msgcmp.h -include/mimelib/msgid.h -include/mimelib/nntp.h -include/mimelib/param.h -include/mimelib/pop.h -include/mimelib/protocol.h -include/mimelib/smtp.h -include/mimelib/string.h -include/mimelib/text.h -include/mimelib/token.h -include/mimelib/utility.h -include/mimelib/uuencode.h -lib/kde2/libkcm_ktalkd.la -lib/kde2/libkcm_ktalkd.so -lib/kio_lan.la -lib/kio_lan.so -lib/ksirc.la -lib/ksirc.so -lib/libkcm_lanbrowser.la -lib/libkcm_lanbrowser.so -lib/libkcm_newsticker.la -lib/libkcm_newsticker.so -lib/libkdenetwork.la -lib/libkdenetwork.so -lib/libkdenetwork.so.1 -lib/libkdictapplet.la -lib/libkdictapplet.so -lib/libkdictapplet.so.1 -lib/libknewstickerapplet.la -lib/libknewstickerapplet.so -lib/libkntsrcfilepropsdlg.la -lib/libkntsrcfilepropsdlg.so -lib/libmimelib.la -lib/libmimelib.so -lib/libmimelib.so.1 -share/applnk/.hidden/knewstickerstub.desktop -share/applnk/Internet/KMail.desktop -share/applnk/Internet/KNode.desktop -share/applnk/Internet/KOrn.desktop -share/applnk/Internet/Kppp.desktop -share/applnk/Internet/kit.desktop -share/applnk/Internet/kppplogview.desktop -share/applnk/Internet/ksirc.desktop -share/applnk/Settings/Network/kcmktalkd.desktop -share/applnk/Settings/Network/kcmnewsticker.desktop -share/applnk/Settings/Network/lanbrowser.desktop -share/applnk/Settings/Personalization/kcmnewsticker.desktop -share/applnk/Utilities/kdict.desktop -share/applnk/Utilities/kmailcvt.desktop -share/apps/kconf_update/knewsticker.upd -share/apps/kconf_update/knt-0.1-0.2.pl -share/apps/kdict/icons/hicolor/16x16/actions/define_clip.png -share/apps/kdict/icons/hicolor/16x16/actions/query_erase.png -share/apps/kdict/icons/hicolor/22x22/actions/define_clip.png -share/apps/kdict/icons/hicolor/32x32/actions/define_clip.png -share/apps/kdict/kdictui.rc -share/apps/kicker/applets/kdictapplet.desktop -share/apps/kicker/applets/knewsticker.desktop -share/apps/kit/eventsrc -share/apps/kit/icons/hicolor/16x16/actions/kit_anonwarning.png -share/apps/kit/icons/hicolor/16x16/actions/kit_away.png -share/apps/kit/icons/hicolor/16x16/actions/kit_bold.png -share/apps/kit/icons/hicolor/16x16/actions/kit_group.png -share/apps/kit/icons/hicolor/16x16/actions/kit_info.png -share/apps/kit/icons/hicolor/16x16/actions/kit_logging.png -share/apps/kit/icons/hicolor/16x16/actions/kit_offline.png -share/apps/kit/icons/hicolor/16x16/actions/kit_online.png -share/apps/kit/icons/hicolor/16x16/actions/kit_sound.png -share/apps/kit/icons/hicolor/16x16/actions/kit_status.png -share/apps/kit/icons/hicolor/16x16/actions/kit_timestamping.png -share/apps/kit/icons/hicolor/16x16/actions/kit_warning.png -share/apps/kmail/about/background.png -share/apps/kmail/about/bgtable.png -share/apps/kmail/about/kdelogo2.png -share/apps/kmail/about/kmail.png -share/apps/kmail/about/konq.css -share/apps/kmail/about/lines.png -share/apps/kmail/about/lines2.png -share/apps/kmail/about/main.html -share/apps/kmail/about/pointers.png -share/apps/kmail/about/shadow1.png -share/apps/kmail/kmcomposerui.rc -share/apps/kmail/kmmainwin.rc -share/apps/kmail/pics/abdown.png -share/apps/kmail/pics/abup.png -share/apps/kmail/pics/closed.png -share/apps/kmail/pics/feather_white.png -share/apps/kmail/pics/green-bullet.png -share/apps/kmail/pics/kdelogo.xpm -share/apps/kmail/pics/kmfldin.png -share/apps/kmail/pics/kmfldout.png -share/apps/kmail/pics/kmfldsent.png -share/apps/kmail/pics/kmfolder.png -share/apps/kmail/pics/kmfolderfull.png -share/apps/kmail/pics/kminsorgmsg.png -share/apps/kmail/pics/kmmsgdel.png -share/apps/kmail/pics/kmmsgflag.png -share/apps/kmail/pics/kmmsgforwarded.png -share/apps/kmail/pics/kmmsgnew.png -share/apps/kmail/pics/kmmsgold.png -share/apps/kmail/pics/kmmsgqueued.png -share/apps/kmail/pics/kmmsgreplied.png -share/apps/kmail/pics/kmmsgsent.png -share/apps/kmail/pics/kmmsgunseen.png -share/apps/kmail/pics/kmtrash.png -share/apps/kmail/pics/pgp-keys.png -share/apps/kmail/pics/pub_key_red.png -share/apps/kmail/pics/red-bullet.png -share/apps/kmail/pics/stopwatch.xbm -share/apps/kmail/pics/stopwatchMask.xbm -share/apps/knewsticker/eventsrc -share/apps/knode/filters/1.fltr -share/apps/knode/filters/2.fltr -share/apps/knode/filters/3.fltr -share/apps/knode/filters/4.fltr -share/apps/knode/filters/5.fltr -share/apps/knode/filters/6.fltr -share/apps/knode/filters/7.fltr -share/apps/knode/filters/8.fltr -share/apps/knode/filters/filters.rc -share/apps/knode/headers.rc -share/apps/knode/icons/hicolor/16x16/actions/message_reply.png -share/apps/knode/icons/hicolor/22x22/actions/message_reply.png -share/apps/knode/icons/hicolor/32x32/actions/message_reply.png -share/apps/knode/kncomposerui.rc -share/apps/knode/knodeui.rc -share/apps/knode/knreaderui.rc -share/apps/knode/pics/ctlart.png -share/apps/knode/pics/eyes.png -share/apps/knode/pics/greyball.png -share/apps/knode/pics/greyballchk.png -share/apps/knode/pics/group.png -share/apps/knode/pics/group_big.png -share/apps/knode/pics/ignore.png -share/apps/knode/pics/mail.png -share/apps/knode/pics/newsubs.png -share/apps/knode/pics/pgp-keys.png -share/apps/knode/pics/posting.png -share/apps/knode/pics/server.png -share/apps/knode/pics/server_big.png -share/apps/knode/pics/snderr.png -share/apps/knode/pics/stat_cncl.png -share/apps/knode/pics/stat_edit.png -share/apps/knode/pics/stat_saved.png -share/apps/knode/pics/stat_sent.png -share/apps/konqueror/dirtree/remote/lan.desktop -share/apps/kppp/Provider/Austria/.directory -share/apps/kppp/Provider/Austria/Simon%032Media -share/apps/kppp/Provider/Czech_Republic/.directory -share/apps/kppp/Provider/Czech_Republic/AICOM -share/apps/kppp/Provider/Czech_Republic/ARsystem -share/apps/kppp/Provider/Czech_Republic/ASYS -share/apps/kppp/Provider/Czech_Republic/ApexNet -share/apps/kppp/Provider/Czech_Republic/BohemiaNet -share/apps/kppp/Provider/Czech_Republic/Brailcom -share/apps/kppp/Provider/Czech_Republic/CITYNET -share/apps/kppp/Provider/Czech_Republic/Contactel -share/apps/kppp/Provider/Czech_Republic/ES-servis -share/apps/kppp/Provider/Czech_Republic/Econnect -share/apps/kppp/Provider/Czech_Republic/Falco_computer -share/apps/kppp/Provider/Czech_Republic/Fortech -share/apps/kppp/Provider/Czech_Republic/HP-NET -share/apps/kppp/Provider/Czech_Republic/INTERNET_OnLine -share/apps/kppp/Provider/Czech_Republic/INTERNEXT -share/apps/kppp/Provider/Czech_Republic/IQNET -share/apps/kppp/Provider/Czech_Republic/KPNQuest -share/apps/kppp/Provider/Czech_Republic/M-soft -share/apps/kppp/Provider/Czech_Republic/Nextra -share/apps/kppp/Provider/Czech_Republic/ProfiNet -share/apps/kppp/Provider/Czech_Republic/SeverNET -share/apps/kppp/Provider/Czech_Republic/Video_OnLine -share/apps/kppp/Provider/Czech_Republic/Volny -share/apps/kppp/Provider/Denmark/.directory -share/apps/kppp/Provider/Denmark/Get2Net -share/apps/kppp/Provider/Germany/.directory -share/apps/kppp/Provider/Germany/CityWeb -share/apps/kppp/Provider/Germany/FH%032Rhein%032Sieg%032%040Informatik%041 -share/apps/kppp/Provider/Germany/MUC%046DE -share/apps/kppp/Provider/Germany/Netsurf -share/apps/kppp/Provider/Netherlands/.directory -share/apps/kppp/Provider/Netherlands/12Move -share/apps/kppp/Provider/Netherlands/Cistron -share/apps/kppp/Provider/Netherlands/Concepts%032ICT -share/apps/kppp/Provider/Netherlands/Cybercomm -share/apps/kppp/Provider/Netherlands/Dataweb -share/apps/kppp/Provider/Netherlands/Daxis%032Internet -share/apps/kppp/Provider/Netherlands/Freeler -share/apps/kppp/Provider/Netherlands/HetNet -share/apps/kppp/Provider/Netherlands/IAE -share/apps/kppp/Provider/Netherlands/InterNLnet%032met%0323-cijferig%032kengetal -share/apps/kppp/Provider/Netherlands/InterNLnet%032met%0324-cijferig%032kengetal -share/apps/kppp/Provider/Netherlands/Internet%032Acces%032Facilities -share/apps/kppp/Provider/Netherlands/Interstroom -share/apps/kppp/Provider/Netherlands/IntroWeb%032Hengelo%032e.o. -share/apps/kppp/Provider/Netherlands/IntroWeb%032met%0323-cijferig%032kengetal -share/apps/kppp/Provider/Netherlands/IntroWeb%032met%0324-cijferig%032kengetal -share/apps/kppp/Provider/Netherlands/Kabelfoon -share/apps/kppp/Provider/Netherlands/Popin -share/apps/kppp/Provider/Netherlands/Solcon -share/apps/kppp/Provider/Netherlands/Sonera%032Plaza -share/apps/kppp/Provider/Netherlands/TIP -share/apps/kppp/Provider/Netherlands/Trefpunt%032Acces -share/apps/kppp/Provider/Netherlands/Wish -share/apps/kppp/Provider/Netherlands/Zonnet -share/apps/kppp/Provider/NewZealand/.directory -share/apps/kppp/Provider/NewZealand/OrconInternet -share/apps/kppp/Provider/NewZealand/Paradise -share/apps/kppp/Provider/NewZealand/Voyager -share/apps/kppp/Provider/NewZealand/XTRA -share/apps/kppp/Provider/NewZealand/ihug -share/apps/kppp/Provider/Norway/.directory -share/apps/kppp/Provider/Norway/BGNett -share/apps/kppp/Provider/Norway/Institutt%032for%032informatikk -share/apps/kppp/Provider/Portugal/.directory -share/apps/kppp/Provider/Portugal/Clix -share/apps/kppp/Provider/Portugal/Netc -share/apps/kppp/Provider/Portugal/OniNet -share/apps/kppp/Provider/Sweden/.directory -share/apps/kppp/Provider/Sweden/Tiscali -share/apps/kppp/Provider/Sweden/Utfors -share/apps/kppp/Provider/Taiwan/.directory -share/apps/kppp/Provider/Taiwan/EraNet -share/apps/kppp/Provider/Taiwan/HiNet -share/apps/kppp/Provider/Taiwan/SeedNet -share/apps/kppp/Provider/United_Kingdom/.directory -share/apps/kppp/Provider/United_Kingdom/Demon%032Green%0322120666 -share/apps/kppp/Provider/United_Kingdom/Demon%032Purple%0322121666 -share/apps/kppp/Provider/United_Kingdom/Demon%032Red%0320798666 -share/apps/kppp/Provider/United_Kingdom/FreeServe -share/apps/kppp/Provider/Yugoslavia/041Net -share/apps/kppp/Provider/Yugoslavia/041Net.rst -share/apps/kppp/Provider/Yugoslavia/9819 -share/apps/kppp/Provider/Yugoslavia/9819.rst -share/apps/kppp/Provider/Yugoslavia/BeoTelNet -share/apps/kppp/Provider/Yugoslavia/CG.Bar.yu -share/apps/kppp/Provider/Yugoslavia/CG.Berane.yu -share/apps/kppp/Provider/Yugoslavia/CG.BijeloPolje.CG.yu -share/apps/kppp/Provider/Yugoslavia/CG.Budva.yu -share/apps/kppp/Provider/Yugoslavia/CG.Cetinje.yu -share/apps/kppp/Provider/Yugoslavia/CG.HercegNovi.yu -share/apps/kppp/Provider/Yugoslavia/CG.Kotor.yu -share/apps/kppp/Provider/Yugoslavia/CG.Niksic.yu -share/apps/kppp/Provider/Yugoslavia/CG.Pljevlja.yu -share/apps/kppp/Provider/Yugoslavia/CG.Podgorica.yu -share/apps/kppp/Provider/Yugoslavia/CG.Tivat.yu -share/apps/kppp/Provider/Yugoslavia/CG.Ulcinj.yu -share/apps/kppp/Provider/Yugoslavia/CG.yu -share/apps/kppp/Provider/Yugoslavia/DrenikNet -share/apps/kppp/Provider/Yugoslavia/EUnet@Full -share/apps/kppp/Provider/Yugoslavia/EUnet@Lite -share/apps/kppp/Provider/Yugoslavia/EUnetBeograd -share/apps/kppp/Provider/Yugoslavia/EUnetCacak -share/apps/kppp/Provider/Yugoslavia/EUnetKragujevac -share/apps/kppp/Provider/Yugoslavia/EUnetNis -share/apps/kppp/Provider/Yugoslavia/EUnetNoviSad -share/apps/kppp/Provider/Yugoslavia/EUnetPristina -share/apps/kppp/Provider/Yugoslavia/EUnetSombor -share/apps/kppp/Provider/Yugoslavia/EUnetSubotica -share/apps/kppp/Provider/Yugoslavia/InfoSKY -share/apps/kppp/Provider/Yugoslavia/PTT -share/apps/kppp/Provider/Yugoslavia/SCnet -share/apps/kppp/Provider/Yugoslavia/Sezampro -share/apps/kppp/Provider/Yugoslavia/TelefonZona1.rst -share/apps/kppp/Provider/Yugoslavia/TelefonZona2.rst -share/apps/kppp/Provider/Yugoslavia/TelefonZona3.rst -share/apps/kppp/Provider/Yugoslavia/VeratNet -share/apps/kppp/Provider/Yugoslavia/YUBCnet -share/apps/kppp/Rules/Argentina/Argentina_0610.rst -share/apps/kppp/Rules/Argentina/Argentina_Local.rst -share/apps/kppp/Rules/Australia/Local.rst -share/apps/kppp/Rules/Australia/Optus_Residential.rst -share/apps/kppp/Rules/Australia/STD_Zone_1_-_25-50_kms.rst -share/apps/kppp/Rules/Australia/STD_Zone_2_-_50-85_kms.rst -share/apps/kppp/Rules/Australia/STD_Zone_3_-_85-165_kms.rst -share/apps/kppp/Rules/Australia/STD_Zone_4_-_165+_kms.rst -share/apps/kppp/Rules/Austria/Business_1/Local.rst -share/apps/kppp/Rules/Austria/Business_1/Long_Distance.rst -share/apps/kppp/Rules/Austria/Business_1/Online.rst -share/apps/kppp/Rules/Austria/Business_2/Local.rst -share/apps/kppp/Rules/Austria/Business_2/Long_Distance.rst -share/apps/kppp/Rules/Austria/Business_2/Online.rst -share/apps/kppp/Rules/Austria/Minimum/Local.rst -share/apps/kppp/Rules/Austria/Minimum/Long_Distance.rst -share/apps/kppp/Rules/Austria/Minimum/Online.rst -share/apps/kppp/Rules/Austria/Standard/Local.rst -share/apps/kppp/Rules/Austria/Standard/Long_Distance.rst -share/apps/kppp/Rules/Austria/Standard/Online.rst -share/apps/kppp/Rules/Austria/Standard/UTA_easyinternet.rst -share/apps/kppp/Rules/Bangladesh/ATT00007.rst -share/apps/kppp/Rules/Bangladesh/ATT00010.rst -share/apps/kppp/Rules/Belgium/Belgium_internet_euro.rst -share/apps/kppp/Rules/Belgium/Belgium_internet_frank.rst -share/apps/kppp/Rules/Belgium/Belgium_interzonal.rst -share/apps/kppp/Rules/Belgium/Belgium_zonal.rst -share/apps/kppp/Rules/Brasil/Brasil.rst -share/apps/kppp/Rules/Brasil/SaoPaulo.rst -share/apps/kppp/Rules/Croatia/CARNet_lokalni_poziv.rst -share/apps/kppp/Rules/Croatia/CARNet_medjugradski_poziv.rst -share/apps/kppp/Rules/Croatia/hinet_anonimni_ulaz.rst -share/apps/kppp/Rules/Croatia/hinet_hpt.rst -share/apps/kppp/Rules/Croatia/ibm_net.rst -share/apps/kppp/Rules/Croatia/iskon_lokalni_poziv.rst -share/apps/kppp/Rules/Croatia/iskon_medjugradski_poziv.rst -share/apps/kppp/Rules/Croatia/iskon_optimal.rst -share/apps/kppp/Rules/Croatia/iskon_zagrebacka_zupanija.rst -share/apps/kppp/Rules/Czechia/Czech_Telecom_City.rst -share/apps/kppp/Rules/Czechia/Czech_Telecom_Internet.rst -share/apps/kppp/Rules/Denmark/12Move_Analog.rst -share/apps/kppp/Rules/Denmark/12Move_ISDN.rst -share/apps/kppp/Rules/Denmark/Cybercity_Friabonnement.rst -share/apps/kppp/Rules/Denmark/Get2net_Betaling.rst -share/apps/kppp/Rules/Denmark/Get2net_Gratis.rst -share/apps/kppp/Rules/Denmark/Mobilix_Wanadoo.rst -share/apps/kppp/Rules/Denmark/Teledanmark_Basis.rst -share/apps/kppp/Rules/Denmark/Teledanmark_Favoritinternet.rst -share/apps/kppp/Rules/Denmark/Worldonline-Analog.rst -share/apps/kppp/Rules/Denmark/Worldonline-ISDN.rst -share/apps/kppp/Rules/Estonia/Eesti_Telefon.rst -share/apps/kppp/Rules/Finland/Vaasan_LP.rst -share/apps/kppp/Rules/France/France_Telecom_Local.rst -share/apps/kppp/Rules/France/France_Telecom_Local_Area.rst -share/apps/kppp/Rules/France/France_Telecom_Local_Primaliste_Internet.rst -share/apps/kppp/Rules/France/France_Telecom_National.rst -share/apps/kppp/Rules/Germany/2.5min.rst -share/apps/kppp/Rules/Germany/2.5s.rst -share/apps/kppp/Rules/Germany/AddCom_by_Call.rst -share/apps/kppp/Rules/Germany/Addcom.rst -share/apps/kppp/Rules/Germany/CallOkaynet.rst -share/apps/kppp/Rules/Germany/Callino_Surf_Basic.rst -share/apps/kppp/Rules/Germany/Callino_Surf_Plus.rst -share/apps/kppp/Rules/Germany/City_Activ_Plus_Option.rst -share/apps/kppp/Rules/Germany/Cityweb.rst -share/apps/kppp/Rules/Germany/Freenet_Enterprise.rst -share/apps/kppp/Rules/Germany/MSN.rst -share/apps/kppp/Rules/Germany/Mobilcom_Freenet.rst -share/apps/kppp/Rules/Germany/NGI_Call_By_Call.rst -share/apps/kppp/Rules/Germany/Netcom_Kassel.rst -share/apps/kppp/Rules/Germany/Nikoma.rst -share/apps/kppp/Rules/Germany/Nikoma_Internet_by_Call.rst -share/apps/kppp/Rules/Germany/Nikoma_Study_and_Surf.rst -share/apps/kppp/Rules/Germany/Planet-Interkom_Internet_by_call.rst -share/apps/kppp/Rules/Germany/Telekom_City_Select_5_30.rst -share/apps/kppp/Rules/Germany/expressnet.rst -share/apps/kppp/Rules/Germany/knUUt-by-Call.rst -share/apps/kppp/Rules/Germany/talkline_by_call.rst -share/apps/kppp/Rules/Germany/vossnet_fun.rst -share/apps/kppp/Rules/Germany/vossnet_fun_light.rst -share/apps/kppp/Rules/Germany/vossnet_kompl.rst -share/apps/kppp/Rules/Greece/Hellas_EPAK_Zone1_in_drs.rst -share/apps/kppp/Rules/Greece/Hellas_EPAK_Zone1_in_euro.rst -share/apps/kppp/Rules/Greece/Hellas_EPAK_Zone2_in_drs.rst -share/apps/kppp/Rules/Greece/Hellas_EPAK_Zone2_in_euro.rst -share/apps/kppp/Rules/Greece/Hellas_EPAK_local_in_drs.rst -share/apps/kppp/Rules/Greece/Hellas_EPAK_local_in_euro.rst -share/apps/kppp/Rules/Greece/Hellas_analog_local_in_drs.rst -share/apps/kppp/Rules/Greece/Hellas_analog_local_in_euro.rst -share/apps/kppp/Rules/Greece/Hellas_digital_local_in_drs.rst -share/apps/kppp/Rules/Greece/Hellas_digital_local_in_euro.rst -share/apps/kppp/Rules/Hong_Kong/Hong_Kong_Telecom.rst -share/apps/kppp/Rules/Hungary/Local.rst -share/apps/kppp/Rules/Hungary/LocalTop_MATAV.rst -share/apps/kppp/Rules/Hungary/Local_MATAV.rst -share/apps/kppp/Rules/Iceland/Iceland_general.rst -share/apps/kppp/Rules/India/BSNL_Local.rst -share/apps/kppp/Rules/India/BSNL_Long_101_To_200.rst -share/apps/kppp/Rules/India/BSNL_Medium_51_To_100.rst -share/apps/kppp/Rules/India/Vsnl_local.rst -share/apps/kppp/Rules/Indonesia/Lokal_1_Metropolitan.rst -share/apps/kppp/Rules/Indonesia/Lokal_2_Metropolitan.rst -share/apps/kppp/Rules/Indonesia/Lokal_non_metropolitan.rst -share/apps/kppp/Rules/Ireland/Eircom_Internet.rst -share/apps/kppp/Rules/Ireland/Eircom_Local.rst -share/apps/kppp/Rules/Ireland/Eircom_National.rst -share/apps/kppp/Rules/Ireland/Eircom_Special.rst -share/apps/kppp/Rules/Israel/Bezeq_Interurban.rst -share/apps/kppp/Rules/Israel/Bezeq_Local.rst -share/apps/kppp/Rules/Italy/Infostrada_Libero@Sogno.rst -share/apps/kppp/Rules/Italy/Infostrada_Libero@Sogno_Prima_del_24.10.2000.rst -share/apps/kppp/Rules/Italy/Infostrada_Locali.rst -share/apps/kppp/Rules/Italy/Infostrada_Nazionali.rst -share/apps/kppp/Rules/Italy/Infostrada_Regionali.rst -share/apps/kppp/Rules/Italy/Infostrada_SpazioZero.rst -share/apps/kppp/Rules/Italy/Infostrada_SpazioZero_Ridotta.rst -share/apps/kppp/Rules/Italy/TAT_Distrettuale.rst -share/apps/kppp/Rules/Italy/TAT_Formula_Urbana.rst -share/apps/kppp/Rules/Italy/TAT_Interdistrettuale_0-15.rst -share/apps/kppp/Rules/Italy/TAT_Interdistrettuale_15-30.rst -share/apps/kppp/Rules/Italy/TAT_Interdistrettuale_30+.rst -share/apps/kppp/Rules/Italy/TAT_Urbana.rst -share/apps/kppp/Rules/Italy/Tele2_Urbana.rst -share/apps/kppp/Rules/Italy/Teleconomy_24.rst -share/apps/kppp/Rules/Italy/Teleconomy_24_Ridotta.rst -share/apps/kppp/Rules/Italy/Teleconomy_No_Stop.rst -share/apps/kppp/Rules/Italy/Wind_Internet_Light_1088.rst -share/apps/kppp/Rules/Italy/Wind_Internet_Light_1088_24ore.rst -share/apps/kppp/Rules/Italy/Wind_Regionale_1088_Light.rst -share/apps/kppp/Rules/Italy/Wind_Urbana.rst -share/apps/kppp/Rules/Italy/Wind_Urbana_1088_Light.rst -share/apps/kppp/Rules/Jamaica/CWJ_InterParish.rst -share/apps/kppp/Rules/Jamaica/CWJ_Local.rst -share/apps/kppp/Rules/Japan/NTT_Local.rst -share/apps/kppp/Rules/Kazakhstan/Akparat_Sprint.rst -share/apps/kppp/Rules/Luxembourg/Local.rst -share/apps/kppp/Rules/Macedonia/Macedonia_GenericISP_interurban.rst -share/apps/kppp/Rules/Macedonia/Macedonia_GenericISP_local.rst -share/apps/kppp/Rules/Macedonia/Macedonia_MTnet.rst -share/apps/kppp/Rules/Malaysia/TMNet_Jaring.rst -share/apps/kppp/Rules/Malaysia/malaysia.rst -share/apps/kppp/Rules/Netherlands/BelBasis_Buiten_Regio.rst -share/apps/kppp/Rules/Netherlands/BelBasis_Buiten_Regio_Nummervoordeel.rst -share/apps/kppp/Rules/Netherlands/BelBasis_Lokaal.rst -share/apps/kppp/Rules/Netherlands/BelBasis_Regio_Nummervoordeel.rst -share/apps/kppp/Rules/Netherlands/BelBudget_Buiten_Regio.rst -share/apps/kppp/Rules/Netherlands/BelBudget_Regio.rst -share/apps/kppp/Rules/Netherlands/BelPlus_Buiten_Regio.rst -share/apps/kppp/Rules/Netherlands/BelPlus_Regio.rst -share/apps/kppp/Rules/Netherlands/BelPlus_Regio_Nummervoordeel.rst -share/apps/kppp/Rules/Netherlands/NedpointBasis_Lokaal.rst -share/apps/kppp/Rules/Netherlands/NedpointBelBespaar_Lokaal.rst -share/apps/kppp/Rules/Norway/Local_Area.rst -share/apps/kppp/Rules/Norway/Long_Distance.rst -share/apps/kppp/Rules/Poland/Internetia.rst -share/apps/kppp/Rules/Poland/Netia_100km_Niebieska.rst -share/apps/kppp/Rules/Poland/Netia_100km_Zielona.rst -share/apps/kppp/Rules/Poland/Netia_Lokalne_Niebieska.rst -share/apps/kppp/Rules/Poland/Netia_Lokalne_Zielona.rst -share/apps/kppp/Rules/Poland/TPSA.rst -share/apps/kppp/Rules/Poland/TP_100km.rst -share/apps/kppp/Rules/Poland/TP_Lokalne.rst -share/apps/kppp/Rules/Portugal/PT_Local.rst -share/apps/kppp/Rules/Portugal/PT_Local_Ilhas.rst -share/apps/kppp/Rules/Portugal/PT_Regional.rst -share/apps/kppp/Rules/Portugal/PT_Regional_Ilhas.rst -share/apps/kppp/Rules/Portugal/PT_YesNET.rst -share/apps/kppp/Rules/Portugal/PT_YesNET_Ilhas.rst -share/apps/kppp/Rules/Romania/Telecom_GSM.rst -share/apps/kppp/Rules/Romania/Telecom_Interurban.rst -share/apps/kppp/Rules/Romania/Telecom_Local.rst -share/apps/kppp/Rules/Singapore/SingTel_Local.rst -share/apps/kppp/Rules/Slovakia/Internetovy_tarif_019XY.rst -share/apps/kppp/Rules/Slovakia/ST_medzimesto.rst -share/apps/kppp/Rules/Slovakia/ST_mesto.rst -share/apps/kppp/Rules/South_Afrika/South_Afrika.rst -share/apps/kppp/Rules/Spain/Infovia.rst -share/apps/kppp/Rules/Spain/Infovia_IVA.rst -share/apps/kppp/Rules/Spain/Telefonica_Interprovincial.rst -share/apps/kppp/Rules/Spain/Telefonica_Interprovincial_IVA.rst -share/apps/kppp/Rules/Spain/Telefonica_Local.rst -share/apps/kppp/Rules/Spain/Telefonica_Metropolitana.rst -share/apps/kppp/Rules/Spain/Telefonica_Metropolitana_IVA.rst -share/apps/kppp/Rules/Spain/Telefonica_Nacional.rst -share/apps/kppp/Rules/Spain/Telefonica_Provincial.rst -share/apps/kppp/Rules/Spain/Telefonica_Provincial_IVA.rst -share/apps/kppp/Rules/Sweden/ACN.rst -share/apps/kppp/Rules/Sweden/Abonnera_com.rst -share/apps/kppp/Rules/Sweden/CNEAB-Route66.rst -share/apps/kppp/Rules/Sweden/Crossnet-Affinity.rst -share/apps/kppp/Rules/Sweden/Glocalnet.rst -share/apps/kppp/Rules/Sweden/Gts.rst -share/apps/kppp/Rules/Sweden/Home_se.rst -share/apps/kppp/Rules/Sweden/Nemtel.rst -share/apps/kppp/Rules/Sweden/Plusenergi.rst -share/apps/kppp/Rules/Sweden/RSLCom.rst -share/apps/kppp/Rules/Sweden/Rix_Telecom.rst -share/apps/kppp/Rules/Sweden/Supertel.rst -share/apps/kppp/Rules/Sweden/Svensk_Telekom.rst -share/apps/kppp/Rules/Sweden/Tele1_Europe.rst -share/apps/kppp/Rules/Sweden/Tele2.rst -share/apps/kppp/Rules/Sweden/Tele8.rst -share/apps/kppp/Rules/Sweden/Teleman.rst -share/apps/kppp/Rules/Sweden/Telenordia.rst -share/apps/kppp/Rules/Sweden/Telerian.rst -share/apps/kppp/Rules/Sweden/Telia.rst -share/apps/kppp/Rules/Sweden/Telia_Telebonus1.rst -share/apps/kppp/Rules/Sweden/Telia_Telebonus2.rst -share/apps/kppp/Rules/Sweden/Telitel.rst -share/apps/kppp/Rules/Sweden/Tiscali.rst -share/apps/kppp/Rules/Sweden/Transnet.rst -share/apps/kppp/Rules/Sweden/Universal_Telecom.rst -share/apps/kppp/Rules/Sweden/Utfors.rst -share/apps/kppp/Rules/Sweden/Vattenfall.rst -share/apps/kppp/Rules/Switzerland/Sunrise_Freetime.rst -share/apps/kppp/Rules/Switzerland/Sunrise_Local.rst -share/apps/kppp/Rules/Switzerland/Sunrise_Select_Internet.rst -share/apps/kppp/Rules/Switzerland/Swisscom_Local.rst -share/apps/kppp/Rules/Switzerland/Swisscom_Remote.rst -share/apps/kppp/Rules/Switzerland/Swisscom_Surf.rst -share/apps/kppp/Rules/TEMPLATE -share/apps/kppp/Rules/Turkey/Turk_Telekom_Internet.rst -share/apps/kppp/Rules/United_Kingdom/BirminghamCable_Local.rst -share/apps/kppp/Rules/United_Kingdom/BirminghamCable_National.rst -share/apps/kppp/Rules/United_Kingdom/BirminghamCable_SameTelco.rst -share/apps/kppp/Rules/United_Kingdom/BritishTelecom_Local.rst -share/apps/kppp/Rules/United_Kingdom/BritishTelecom_National.rst -share/apps/kppp/Rules/United_Kingdom/BritishTelecom_Regional.rst -share/apps/kppp/Rules/United_Kingdom/British_OneTel.rst -share/apps/kppp/Rules/United_Kingdom/Connaught_Telecom.rst -share/apps/kppp/Rules/Uruguay/Adinet_cIVA.rst -share/apps/kppp/Rules/checkrules -share/apps/kppp/pics/dock_both.png -share/apps/kppp/pics/dock_left.png -share/apps/kppp/pics/dock_none.png -share/apps/kppp/pics/dock_right.png -share/apps/kppp/pics/folder.png -share/apps/kppp/pics/modemboth.png -share/apps/kppp/pics/modemleft.png -share/apps/kppp/pics/modemnone.png -share/apps/kppp/pics/modemright.png -share/apps/kppp/pics/phone.png -share/apps/ksirc/commands-handler.pl -share/apps/ksirc/commands-perl.pl -share/apps/ksirc/convert_commands.pl -share/apps/ksirc/dcc_progress.pm -share/apps/ksirc/dcc_status.pm -share/apps/ksirc/filters.pl -share/apps/ksirc/ksirc.pl -share/apps/ksirc/ksirclistbox.pm -share/apps/ksirc/load_all.pm -share/apps/ksirc/palistbox.pm -share/apps/ksirc/pbase.pm -share/apps/ksirc/pboxlayout.pm -share/apps/ksirc/pbutton.pm -share/apps/ksirc/pframe.pm -share/apps/ksirc/pics/arrow.png -share/apps/ksirc/pics/blueball.png -share/apps/ksirc/pics/bluepin.png -share/apps/ksirc/pics/channel.xpm -share/apps/ksirc/pics/channels.xpm -share/apps/ksirc/pics/greenpin.png -share/apps/ksirc/pics/info.png -share/apps/ksirc/pics/info1.png -share/apps/ksirc/pics/ksirc.png -share/apps/ksirc/pics/ksirc_a.xpm -share/apps/ksirc/pics/ksirc_b.xpm -share/apps/ksirc/pics/ksirc_dock.xpm -share/apps/ksirc/pics/madsmiley.png -share/apps/ksirc/pics/mini-run.png -share/apps/ksirc/pics/server.xpm -share/apps/ksirc/pics/smiley.png -share/apps/ksirc/pics/star.png -share/apps/ksirc/pkfiledialog.pm -share/apps/ksirc/plabel.pm -share/apps/ksirc/plined.pm -share/apps/ksirc/plistbox.pm -share/apps/ksirc/pmenudta.pm -share/apps/ksirc/pobjfinder.pm -share/apps/ksirc/ppopmenu.pm -share/apps/ksirc/pprogress.pm -share/apps/ksirc/ppushbt.pm -share/apps/ksirc/ptabdialog.pm -share/apps/ksirc/ptablevw.pm -share/apps/ksirc/puke.pl -share/apps/ksirc/pwidget.pm -share/apps/ksirc/relnotes -share/apps/ksirc/servers.ini -share/apps/ksirc/servers.txt -share/apps/ksirc/sirc.help.gz -share/apps/ksirc/small.pl -share/apps/ksirc/test.pl -share/apps/ksirc/tester.pl -share/apps/lisa/README -share/config/ksircrc -share/doc/HTML/en/kdict/applet.png -share/doc/HTML/en/kdict/common -share/doc/HTML/en/kdict/conf.png -share/doc/HTML/en/kdict/index.docbook -share/doc/HTML/en/kdict/mainwin.png -share/doc/HTML/en/kdict/seteditor.png -share/doc/HTML/en/kit/common -share/doc/HTML/en/kit/index.docbook -share/doc/HTML/en/kmail/common -share/doc/HTML/en/kmail/index.docbook -share/doc/HTML/en/knewsticker/TODO -share/doc/HTML/en/knewsticker/about-icon.png -share/doc/HTML/en/knewsticker/checknews-icon.png -share/doc/HTML/en/knewsticker/common -share/doc/HTML/en/knewsticker/contextmenu.png -share/doc/HTML/en/knewsticker/downarrow-icon.png -share/doc/HTML/en/knewsticker/help-icon.png -share/doc/HTML/en/knewsticker/index.docbook -share/doc/HTML/en/knewsticker/kcmnewsticker-general.png -share/doc/HTML/en/knewsticker/kcmnewsticker-newssources.png -share/doc/HTML/en/knewsticker/kcontrol-icon.png -share/doc/HTML/en/knewsticker/knewsticker-childpanel.png -share/doc/HTML/en/knewsticker/knewsticker-kicker.png -share/doc/HTML/en/knewsticker/newarticle-icon.png -share/doc/HTML/en/knewsticker/newssite-icon.png -share/doc/HTML/en/knewsticker/noarticles-icon.png -share/doc/HTML/en/knewsticker/oldarticle-icon.png -share/doc/HTML/en/knewsticker/preferences-icon.png -share/doc/HTML/en/knewsticker/uparrow-icon.png -share/doc/HTML/en/knode/common -share/doc/HTML/en/knode/eyes.png -share/doc/HTML/en/knode/german_original.docbook -share/doc/HTML/en/knode/greyball.png -share/doc/HTML/en/knode/greyballchk.png -share/doc/HTML/en/knode/index.docbook -share/doc/HTML/en/knode/knode-cleanup.png -share/doc/HTML/en/knode/knode-colors-fonts.png -share/doc/HTML/en/knode/knode-composer-attachments.png -share/doc/HTML/en/knode/knode-composer-settings.png -share/doc/HTML/en/knode/knode-edit-filter.png -share/doc/HTML/en/knode/knode-edit-header1.png -share/doc/HTML/en/knode/knode-edit-header2.png -share/doc/HTML/en/knode/knode-filters.png -share/doc/HTML/en/knode/knode-followup.png -share/doc/HTML/en/knode/knode-header-settings.png -share/doc/HTML/en/knode/knode-identity.png -share/doc/HTML/en/knode/knode-mail-account.png -share/doc/HTML/en/knode/knode-new-article.png -share/doc/HTML/en/knode/knode-news-account.png -share/doc/HTML/en/knode/knode-post-settings.png -share/doc/HTML/en/knode/knode-read-news-settings.png -share/doc/HTML/en/knode/knode-reply.png -share/doc/HTML/en/knode/knode-search.png -share/doc/HTML/en/knode/knode-start.png -share/doc/HTML/en/knode/knode-subscribe.png -share/doc/HTML/en/knode/knode-views.png -share/doc/HTML/en/knode/newsubs.png -share/doc/HTML/en/knode/redball.png -share/doc/HTML/en/knode/redballchk.png -share/doc/HTML/en/knode/translation.po -share/doc/HTML/en/korn/common -share/doc/HTML/en/korn/index.docbook -share/doc/HTML/en/kppp/accounting.docbook -share/doc/HTML/en/kppp/callback.docbook -share/doc/HTML/en/kppp/chap.docbook -share/doc/HTML/en/kppp/common -share/doc/HTML/en/kppp/costsgraphs.fig -share/doc/HTML/en/kppp/costsgraphs.png -share/doc/HTML/en/kppp/dialog-setup.docbook -share/doc/HTML/en/kppp/getting-online.docbook -share/doc/HTML/en/kppp/global-settings.docbook -share/doc/HTML/en/kppp/hayes.docbook -share/doc/HTML/en/kppp/index.docbook -share/doc/HTML/en/kppp/kppp-account-accounting-tab.png -share/doc/HTML/en/kppp/kppp-account-dial-tab.png -share/doc/HTML/en/kppp/kppp-account-dns-tab.png -share/doc/HTML/en/kppp/kppp-account-execute-tab.png -share/doc/HTML/en/kppp/kppp-account-gateway-tab.png -share/doc/HTML/en/kppp/kppp-account-ip-tab.png -share/doc/HTML/en/kppp/kppp-account-login-script-tab.png -share/doc/HTML/en/kppp/kppp-config.png -share/doc/HTML/en/kppp/kppp-device-tab.png -share/doc/HTML/en/kppp/kppp-dialler-tab.png -share/doc/HTML/en/kppp/kppp-faq.docbook -share/doc/HTML/en/kppp/kppp-graph-tab.png -share/doc/HTML/en/kppp/kppp-misc-tab.png -share/doc/HTML/en/kppp/kppp-modem-tab.png -share/doc/HTML/en/kppp/kppp-wizard.png -share/doc/HTML/en/kppp/kppp.faq.question -share/doc/HTML/en/kppp/security.docbook -share/doc/HTML/en/kppp/tricks.docbook -share/doc/HTML/en/kppp/ttyS-cua.txt -share/doc/HTML/en/kppp/wizard.docbook -share/doc/HTML/en/ksirc/common -share/doc/HTML/en/ksirc/index.docbook -share/doc/HTML/en/ktalkd/common -share/doc/HTML/en/ktalkd/index.docbook -share/doc/HTML/en/lisa/common -share/doc/HTML/en/lisa/index.docbook -share/icons/hicolor/16x16/apps/kdict.png -share/icons/hicolor/16x16/apps/kit.png -share/icons/hicolor/16x16/apps/kmail.png -share/icons/hicolor/16x16/apps/kmailcvt.png -share/icons/hicolor/16x16/apps/knewsticker.png -share/icons/hicolor/16x16/apps/knode.png -share/icons/hicolor/16x16/apps/korn.png -share/icons/hicolor/16x16/apps/kppp.png -share/icons/hicolor/16x16/apps/ksirc.png -share/icons/hicolor/16x16/apps/ktalkd.png -share/icons/hicolor/32x32/apps/kdict.png -share/icons/hicolor/32x32/apps/kit.png -share/icons/hicolor/32x32/apps/kmail.png -share/icons/hicolor/32x32/apps/kmailcvt.png -share/icons/hicolor/32x32/apps/knewsticker.png -share/icons/hicolor/32x32/apps/knode.png -share/icons/hicolor/32x32/apps/korn.png -share/icons/hicolor/32x32/apps/kppp.png -share/icons/hicolor/32x32/apps/ksirc.png -share/icons/hicolor/32x32/apps/ktalkd.png -share/icons/hicolor/48x48/apps/kdict.png -share/icons/hicolor/48x48/apps/kit.png -share/icons/hicolor/48x48/apps/kmail.png -share/icons/hicolor/48x48/apps/kmailcvt.png -share/icons/hicolor/48x48/apps/knewsticker.png -share/icons/hicolor/48x48/apps/knode.png -share/icons/hicolor/48x48/apps/korn.png -share/icons/hicolor/48x48/apps/kppp.png -share/icons/hicolor/48x48/apps/ksirc.png -share/icons/hicolor/48x48/apps/ktalkd.png -share/services/knewsservice.protocol -share/services/kntsrcfilepropsdlg.desktop -share/services/lan.protocol -share/services/rlan.protocol -share/sounds/ktalkd.wav -@dirrm share/icons/hicolor/48x48/apps -@dirrm share/icons/hicolor/32x32/apps -@dirrm share/icons/hicolor/16x16/apps -@dirrm share/doc/HTML/en/lisa -@dirrm share/doc/HTML/en/ktalkd -@dirrm share/doc/HTML/en/ksirc -@dirrm share/doc/HTML/en/kppp -@dirrm share/doc/HTML/en/korn -@dirrm share/doc/HTML/en/knode -@dirrm share/doc/HTML/en/knewsticker -@dirrm share/doc/HTML/en/kmail -@dirrm share/doc/HTML/en/kit -@dirrm share/doc/HTML/en/kdict -@dirrm share/doc/HTML/en -@dirrm share/config -@dirrm share/apps/lisa -@dirrm share/apps/ksirc/pics -@dirrm share/apps/ksirc -@dirrm share/apps/kppp/pics -@dirrm share/apps/kppp/Rules/Uruguay -@dirrm share/apps/kppp/Rules/United_Kingdom -@dirrm share/apps/kppp/Rules/Turkey -@dirrm share/apps/kppp/Rules/Switzerland -@dirrm share/apps/kppp/Rules/Sweden -@dirrm share/apps/kppp/Rules/Spain -@dirrm share/apps/kppp/Rules/South_Afrika -@dirrm share/apps/kppp/Rules/Slovakia -@dirrm share/apps/kppp/Rules/Singapore -@dirrm share/apps/kppp/Rules/Romania -@dirrm share/apps/kppp/Rules/Portugal -@dirrm share/apps/kppp/Rules/Poland -@dirrm share/apps/kppp/Rules/Norway -@dirrm share/apps/kppp/Rules/Netherlands -@dirrm share/apps/kppp/Rules/Malaysia -@dirrm share/apps/kppp/Rules/Macedonia -@dirrm share/apps/kppp/Rules/Luxembourg -@dirrm share/apps/kppp/Rules/Kazakhstan -@dirrm share/apps/kppp/Rules/Japan -@dirrm share/apps/kppp/Rules/Jamaica -@dirrm share/apps/kppp/Rules/Italy -@dirrm share/apps/kppp/Rules/Israel -@dirrm share/apps/kppp/Rules/Ireland -@dirrm share/apps/kppp/Rules/Indonesia -@dirrm share/apps/kppp/Rules/India -@dirrm share/apps/kppp/Rules/Iceland -@dirrm share/apps/kppp/Rules/Hungary -@dirrm share/apps/kppp/Rules/Hong_Kong -@dirrm share/apps/kppp/Rules/Greece -@dirrm share/apps/kppp/Rules/Germany -@dirrm share/apps/kppp/Rules/France -@dirrm share/apps/kppp/Rules/Finland -@dirrm share/apps/kppp/Rules/Estonia -@dirrm share/apps/kppp/Rules/Denmark -@dirrm share/apps/kppp/Rules/Czechia -@dirrm share/apps/kppp/Rules/Croatia -@dirrm share/apps/kppp/Rules/Brasil -@dirrm share/apps/kppp/Rules/Belgium -@dirrm share/apps/kppp/Rules/Bangladesh -@dirrm share/apps/kppp/Rules/Austria/Standard -@dirrm share/apps/kppp/Rules/Austria/Minimum -@dirrm share/apps/kppp/Rules/Austria/Business_2 -@dirrm share/apps/kppp/Rules/Austria/Business_1 -@dirrm share/apps/kppp/Rules/Austria -@dirrm share/apps/kppp/Rules/Australia -@dirrm share/apps/kppp/Rules/Argentina -@dirrm share/apps/kppp/Rules -@dirrm share/apps/kppp/Provider/Yugoslavia -@dirrm share/apps/kppp/Provider/United_Kingdom -@dirrm share/apps/kppp/Provider/Taiwan -@dirrm share/apps/kppp/Provider/Sweden -@dirrm share/apps/kppp/Provider/Portugal -@dirrm share/apps/kppp/Provider/Norway -@dirrm share/apps/kppp/Provider/NewZealand -@dirrm share/apps/kppp/Provider/Netherlands -@dirrm share/apps/kppp/Provider/Germany -@dirrm share/apps/kppp/Provider/Denmark -@dirrm share/apps/kppp/Provider/Czech_Republic -@dirrm share/apps/kppp/Provider/Austria -@dirrm share/apps/kppp/Provider -@dirrm share/apps/kppp -@dirrm share/apps/konqueror/dirtree/remote -@dirrm share/apps/knode/pics -@dirrm share/apps/knode/icons/hicolor/32x32/actions -@dirrm share/apps/knode/icons/hicolor/32x32 -@dirrm share/apps/knode/icons/hicolor/22x22/actions -@dirrm share/apps/knode/icons/hicolor/22x22 -@dirrm share/apps/knode/icons/hicolor/16x16/actions -@dirrm share/apps/knode/icons/hicolor/16x16 -@dirrm share/apps/knode/filters -@dirrm share/apps/knode -@dirrm share/apps/knewsticker -@dirrm share/apps/kmail/pics -@dirrm share/apps/kmail/about -@dirrm share/apps/kmail -@dirrm share/apps/kit/icons/hicolor/16x16/actions -@dirrm share/apps/kit/icons/hicolor/16x16 -@dirrm share/apps/kit/icons/hicolor -@dirrm share/apps/kit/icons -@dirrm share/apps/kit -@dirrm share/apps/kicker/applets -@dirrm share/apps/kdict/icons/hicolor/32x32/actions -@dirrm share/apps/kdict/icons/hicolor/32x32 -@dirrm share/apps/kdict/icons/hicolor/22x22/actions -@dirrm share/apps/kdict/icons/hicolor/22x22 -@dirrm share/apps/kdict/icons/hicolor/16x16/actions -@dirrm share/apps/kdict/icons/hicolor/16x16 -@dirrm share/apps/kdict/icons/hicolor -@dirrm share/apps/kdict/icons -@dirrm share/apps/kdict -@dirrm share/apps/kconf_update -@dirrm share/apps -@dirrm share/applnk/Utilities -@dirrm share/applnk/Settings/Personalization -@dirrm share/applnk/Settings/Network -@dirrm share/applnk/Internet -@dirrm share/applnk/.hidden -@dirrm lib/kde2 -@dirrm include/mimelib diff --git a/net/kdenetwork4/Makefile b/net/kdenetwork4/Makefile deleted file mode 100644 index 0bbeea35a78c..000000000000 --- a/net/kdenetwork4/Makefile +++ /dev/null @@ -1,30 +0,0 @@ -# New ports collection makefile for: kdenetwork2 -# Date created: Sun May 14 00:55:45 -# Whom: Will Andrews <will@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= kdenetwork -PORTVERSION= 2.2 -CATEGORIES?= net news kde -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src -DIST_SUBDIR= KDE - -MAINTAINER?= kde@FreeBSD.org - -LIB_DEPENDS= uu.1:${PORTSDIR}/converters/uulib - -USE_KDELIBS_VER=2 -USE_BZIP2= yes -INSTALLS_SHLIB= yes -USE_AUTOCONF= yes -USE_GMAKE= yes - -pre-configure: - ${PERL} -pi -e "s:-lpthread:${PTHREAD_LIBS}:g" ${WRKSRC}/knode/Makefile.in - ${PERL} -pi -e "s@all_includes=\"@all_includes=\"-I/usr/include @g" ${WRKSRC}/acinclude.m4 ${WRKSRC}/aclocal.m4 - ${PERL} -pi -e "s@^AC_CHECK_UTMP_FILE@# AC_CHECK_UTMP_FILE@g" ${WRKSRC}/configure.in - -.include <bsd.port.mk> diff --git a/net/kdenetwork4/distinfo b/net/kdenetwork4/distinfo deleted file mode 100644 index d02f3292bef1..000000000000 --- a/net/kdenetwork4/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (KDE/kdenetwork-2.2.tar.bz2) = 8b83592546aa96ce69fb80dffde32f68 diff --git a/net/kdenetwork4/pkg-comment b/net/kdenetwork4/pkg-comment deleted file mode 100644 index bf5dcda48324..000000000000 --- a/net/kdenetwork4/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Network modules for KDE2 diff --git a/net/kdenetwork4/pkg-descr b/net/kdenetwork4/pkg-descr deleted file mode 100644 index f7425da6373d..000000000000 --- a/net/kdenetwork4/pkg-descr +++ /dev/null @@ -1,6 +0,0 @@ -KDE provides an integrated X11 based environment, much like CDE. -This particular port installs the networking components of KDE, -which includes applications for Internet things like email, web, -irc, and so forth. Note that this is for KDE2, not KDE 1.x. - -WWW: http://www.kde.org/ diff --git a/net/kdenetwork4/pkg-plist b/net/kdenetwork4/pkg-plist deleted file mode 100644 index 531f5ea826cf..000000000000 --- a/net/kdenetwork4/pkg-plist +++ /dev/null @@ -1,852 +0,0 @@ -bin/dsirc -bin/kdict -bin/kit -bin/kmail -bin/kmailcvt -bin/knewstickerstub -bin/knode -bin/korn -bin/kotalkd -bin/kppp -bin/kppplogview -bin/ksirc -bin/ksticker -bin/ktalkd -bin/ktalkdlg -bin/lisa -bin/mail.local -bin/reslisa -include/kmailIface.h -include/mimelib/binhex.h -include/mimelib/bodypart.h -include/mimelib/boyermor.h -include/mimelib/config.h -include/mimelib/datetime.h -include/mimelib/debug.h -include/mimelib/disptype.h -include/mimelib/entity.h -include/mimelib/enum.h -include/mimelib/field.h -include/mimelib/fieldbdy.h -include/mimelib/group.h -include/mimelib/headers.h -include/mimelib/mailbox.h -include/mimelib/mboxlist.h -include/mimelib/mechansm.h -include/mimelib/mediatyp.h -include/mimelib/message.h -include/mimelib/mimepp.h -include/mimelib/msgcmp.h -include/mimelib/msgid.h -include/mimelib/nntp.h -include/mimelib/param.h -include/mimelib/pop.h -include/mimelib/protocol.h -include/mimelib/smtp.h -include/mimelib/string.h -include/mimelib/text.h -include/mimelib/token.h -include/mimelib/utility.h -include/mimelib/uuencode.h -lib/kde2/libkcm_ktalkd.la -lib/kde2/libkcm_ktalkd.so -lib/kio_lan.la -lib/kio_lan.so -lib/ksirc.la -lib/ksirc.so -lib/libkcm_lanbrowser.la -lib/libkcm_lanbrowser.so -lib/libkcm_newsticker.la -lib/libkcm_newsticker.so -lib/libkdenetwork.la -lib/libkdenetwork.so -lib/libkdenetwork.so.1 -lib/libkdictapplet.la -lib/libkdictapplet.so -lib/libkdictapplet.so.1 -lib/libknewstickerapplet.la -lib/libknewstickerapplet.so -lib/libkntsrcfilepropsdlg.la -lib/libkntsrcfilepropsdlg.so -lib/libmimelib.la -lib/libmimelib.so -lib/libmimelib.so.1 -share/applnk/.hidden/knewstickerstub.desktop -share/applnk/Internet/KMail.desktop -share/applnk/Internet/KNode.desktop -share/applnk/Internet/KOrn.desktop -share/applnk/Internet/Kppp.desktop -share/applnk/Internet/kit.desktop -share/applnk/Internet/kppplogview.desktop -share/applnk/Internet/ksirc.desktop -share/applnk/Settings/Network/kcmktalkd.desktop -share/applnk/Settings/Network/kcmnewsticker.desktop -share/applnk/Settings/Network/lanbrowser.desktop -share/applnk/Settings/Personalization/kcmnewsticker.desktop -share/applnk/Utilities/kdict.desktop -share/applnk/Utilities/kmailcvt.desktop -share/apps/kconf_update/knewsticker.upd -share/apps/kconf_update/knt-0.1-0.2.pl -share/apps/kdict/icons/hicolor/16x16/actions/define_clip.png -share/apps/kdict/icons/hicolor/16x16/actions/query_erase.png -share/apps/kdict/icons/hicolor/22x22/actions/define_clip.png -share/apps/kdict/icons/hicolor/32x32/actions/define_clip.png -share/apps/kdict/kdictui.rc -share/apps/kicker/applets/kdictapplet.desktop -share/apps/kicker/applets/knewsticker.desktop -share/apps/kit/eventsrc -share/apps/kit/icons/hicolor/16x16/actions/kit_anonwarning.png -share/apps/kit/icons/hicolor/16x16/actions/kit_away.png -share/apps/kit/icons/hicolor/16x16/actions/kit_bold.png -share/apps/kit/icons/hicolor/16x16/actions/kit_group.png -share/apps/kit/icons/hicolor/16x16/actions/kit_info.png -share/apps/kit/icons/hicolor/16x16/actions/kit_logging.png -share/apps/kit/icons/hicolor/16x16/actions/kit_offline.png -share/apps/kit/icons/hicolor/16x16/actions/kit_online.png -share/apps/kit/icons/hicolor/16x16/actions/kit_sound.png -share/apps/kit/icons/hicolor/16x16/actions/kit_status.png -share/apps/kit/icons/hicolor/16x16/actions/kit_timestamping.png -share/apps/kit/icons/hicolor/16x16/actions/kit_warning.png -share/apps/kmail/about/background.png -share/apps/kmail/about/bgtable.png -share/apps/kmail/about/kdelogo2.png -share/apps/kmail/about/kmail.png -share/apps/kmail/about/konq.css -share/apps/kmail/about/lines.png -share/apps/kmail/about/lines2.png -share/apps/kmail/about/main.html -share/apps/kmail/about/pointers.png -share/apps/kmail/about/shadow1.png -share/apps/kmail/kmcomposerui.rc -share/apps/kmail/kmmainwin.rc -share/apps/kmail/pics/abdown.png -share/apps/kmail/pics/abup.png -share/apps/kmail/pics/closed.png -share/apps/kmail/pics/feather_white.png -share/apps/kmail/pics/green-bullet.png -share/apps/kmail/pics/kdelogo.xpm -share/apps/kmail/pics/kmfldin.png -share/apps/kmail/pics/kmfldout.png -share/apps/kmail/pics/kmfldsent.png -share/apps/kmail/pics/kmfolder.png -share/apps/kmail/pics/kmfolderfull.png -share/apps/kmail/pics/kminsorgmsg.png -share/apps/kmail/pics/kmmsgdel.png -share/apps/kmail/pics/kmmsgflag.png -share/apps/kmail/pics/kmmsgforwarded.png -share/apps/kmail/pics/kmmsgnew.png -share/apps/kmail/pics/kmmsgold.png -share/apps/kmail/pics/kmmsgqueued.png -share/apps/kmail/pics/kmmsgreplied.png -share/apps/kmail/pics/kmmsgsent.png -share/apps/kmail/pics/kmmsgunseen.png -share/apps/kmail/pics/kmtrash.png -share/apps/kmail/pics/pgp-keys.png -share/apps/kmail/pics/pub_key_red.png -share/apps/kmail/pics/red-bullet.png -share/apps/kmail/pics/stopwatch.xbm -share/apps/kmail/pics/stopwatchMask.xbm -share/apps/knewsticker/eventsrc -share/apps/knode/filters/1.fltr -share/apps/knode/filters/2.fltr -share/apps/knode/filters/3.fltr -share/apps/knode/filters/4.fltr -share/apps/knode/filters/5.fltr -share/apps/knode/filters/6.fltr -share/apps/knode/filters/7.fltr -share/apps/knode/filters/8.fltr -share/apps/knode/filters/filters.rc -share/apps/knode/headers.rc -share/apps/knode/icons/hicolor/16x16/actions/message_reply.png -share/apps/knode/icons/hicolor/22x22/actions/message_reply.png -share/apps/knode/icons/hicolor/32x32/actions/message_reply.png -share/apps/knode/kncomposerui.rc -share/apps/knode/knodeui.rc -share/apps/knode/knreaderui.rc -share/apps/knode/pics/ctlart.png -share/apps/knode/pics/eyes.png -share/apps/knode/pics/greyball.png -share/apps/knode/pics/greyballchk.png -share/apps/knode/pics/group.png -share/apps/knode/pics/group_big.png -share/apps/knode/pics/ignore.png -share/apps/knode/pics/mail.png -share/apps/knode/pics/newsubs.png -share/apps/knode/pics/pgp-keys.png -share/apps/knode/pics/posting.png -share/apps/knode/pics/server.png -share/apps/knode/pics/server_big.png -share/apps/knode/pics/snderr.png -share/apps/knode/pics/stat_cncl.png -share/apps/knode/pics/stat_edit.png -share/apps/knode/pics/stat_saved.png -share/apps/knode/pics/stat_sent.png -share/apps/konqueror/dirtree/remote/lan.desktop -share/apps/kppp/Provider/Austria/.directory -share/apps/kppp/Provider/Austria/Simon%032Media -share/apps/kppp/Provider/Czech_Republic/.directory -share/apps/kppp/Provider/Czech_Republic/AICOM -share/apps/kppp/Provider/Czech_Republic/ARsystem -share/apps/kppp/Provider/Czech_Republic/ASYS -share/apps/kppp/Provider/Czech_Republic/ApexNet -share/apps/kppp/Provider/Czech_Republic/BohemiaNet -share/apps/kppp/Provider/Czech_Republic/Brailcom -share/apps/kppp/Provider/Czech_Republic/CITYNET -share/apps/kppp/Provider/Czech_Republic/Contactel -share/apps/kppp/Provider/Czech_Republic/ES-servis -share/apps/kppp/Provider/Czech_Republic/Econnect -share/apps/kppp/Provider/Czech_Republic/Falco_computer -share/apps/kppp/Provider/Czech_Republic/Fortech -share/apps/kppp/Provider/Czech_Republic/HP-NET -share/apps/kppp/Provider/Czech_Republic/INTERNET_OnLine -share/apps/kppp/Provider/Czech_Republic/INTERNEXT -share/apps/kppp/Provider/Czech_Republic/IQNET -share/apps/kppp/Provider/Czech_Republic/KPNQuest -share/apps/kppp/Provider/Czech_Republic/M-soft -share/apps/kppp/Provider/Czech_Republic/Nextra -share/apps/kppp/Provider/Czech_Republic/ProfiNet -share/apps/kppp/Provider/Czech_Republic/SeverNET -share/apps/kppp/Provider/Czech_Republic/Video_OnLine -share/apps/kppp/Provider/Czech_Republic/Volny -share/apps/kppp/Provider/Denmark/.directory -share/apps/kppp/Provider/Denmark/Get2Net -share/apps/kppp/Provider/Germany/.directory -share/apps/kppp/Provider/Germany/CityWeb -share/apps/kppp/Provider/Germany/FH%032Rhein%032Sieg%032%040Informatik%041 -share/apps/kppp/Provider/Germany/MUC%046DE -share/apps/kppp/Provider/Germany/Netsurf -share/apps/kppp/Provider/Netherlands/.directory -share/apps/kppp/Provider/Netherlands/12Move -share/apps/kppp/Provider/Netherlands/Cistron -share/apps/kppp/Provider/Netherlands/Concepts%032ICT -share/apps/kppp/Provider/Netherlands/Cybercomm -share/apps/kppp/Provider/Netherlands/Dataweb -share/apps/kppp/Provider/Netherlands/Daxis%032Internet -share/apps/kppp/Provider/Netherlands/Freeler -share/apps/kppp/Provider/Netherlands/HetNet -share/apps/kppp/Provider/Netherlands/IAE -share/apps/kppp/Provider/Netherlands/InterNLnet%032met%0323-cijferig%032kengetal -share/apps/kppp/Provider/Netherlands/InterNLnet%032met%0324-cijferig%032kengetal -share/apps/kppp/Provider/Netherlands/Internet%032Acces%032Facilities -share/apps/kppp/Provider/Netherlands/Interstroom -share/apps/kppp/Provider/Netherlands/IntroWeb%032Hengelo%032e.o. -share/apps/kppp/Provider/Netherlands/IntroWeb%032met%0323-cijferig%032kengetal -share/apps/kppp/Provider/Netherlands/IntroWeb%032met%0324-cijferig%032kengetal -share/apps/kppp/Provider/Netherlands/Kabelfoon -share/apps/kppp/Provider/Netherlands/Popin -share/apps/kppp/Provider/Netherlands/Solcon -share/apps/kppp/Provider/Netherlands/Sonera%032Plaza -share/apps/kppp/Provider/Netherlands/TIP -share/apps/kppp/Provider/Netherlands/Trefpunt%032Acces -share/apps/kppp/Provider/Netherlands/Wish -share/apps/kppp/Provider/Netherlands/Zonnet -share/apps/kppp/Provider/NewZealand/.directory -share/apps/kppp/Provider/NewZealand/OrconInternet -share/apps/kppp/Provider/NewZealand/Paradise -share/apps/kppp/Provider/NewZealand/Voyager -share/apps/kppp/Provider/NewZealand/XTRA -share/apps/kppp/Provider/NewZealand/ihug -share/apps/kppp/Provider/Norway/.directory -share/apps/kppp/Provider/Norway/BGNett -share/apps/kppp/Provider/Norway/Institutt%032for%032informatikk -share/apps/kppp/Provider/Portugal/.directory -share/apps/kppp/Provider/Portugal/Clix -share/apps/kppp/Provider/Portugal/Netc -share/apps/kppp/Provider/Portugal/OniNet -share/apps/kppp/Provider/Sweden/.directory -share/apps/kppp/Provider/Sweden/Tiscali -share/apps/kppp/Provider/Sweden/Utfors -share/apps/kppp/Provider/Taiwan/.directory -share/apps/kppp/Provider/Taiwan/EraNet -share/apps/kppp/Provider/Taiwan/HiNet -share/apps/kppp/Provider/Taiwan/SeedNet -share/apps/kppp/Provider/United_Kingdom/.directory -share/apps/kppp/Provider/United_Kingdom/Demon%032Green%0322120666 -share/apps/kppp/Provider/United_Kingdom/Demon%032Purple%0322121666 -share/apps/kppp/Provider/United_Kingdom/Demon%032Red%0320798666 -share/apps/kppp/Provider/United_Kingdom/FreeServe -share/apps/kppp/Provider/Yugoslavia/041Net -share/apps/kppp/Provider/Yugoslavia/041Net.rst -share/apps/kppp/Provider/Yugoslavia/9819 -share/apps/kppp/Provider/Yugoslavia/9819.rst -share/apps/kppp/Provider/Yugoslavia/BeoTelNet -share/apps/kppp/Provider/Yugoslavia/CG.Bar.yu -share/apps/kppp/Provider/Yugoslavia/CG.Berane.yu -share/apps/kppp/Provider/Yugoslavia/CG.BijeloPolje.CG.yu -share/apps/kppp/Provider/Yugoslavia/CG.Budva.yu -share/apps/kppp/Provider/Yugoslavia/CG.Cetinje.yu -share/apps/kppp/Provider/Yugoslavia/CG.HercegNovi.yu -share/apps/kppp/Provider/Yugoslavia/CG.Kotor.yu -share/apps/kppp/Provider/Yugoslavia/CG.Niksic.yu -share/apps/kppp/Provider/Yugoslavia/CG.Pljevlja.yu -share/apps/kppp/Provider/Yugoslavia/CG.Podgorica.yu -share/apps/kppp/Provider/Yugoslavia/CG.Tivat.yu -share/apps/kppp/Provider/Yugoslavia/CG.Ulcinj.yu -share/apps/kppp/Provider/Yugoslavia/CG.yu -share/apps/kppp/Provider/Yugoslavia/DrenikNet -share/apps/kppp/Provider/Yugoslavia/EUnet@Full -share/apps/kppp/Provider/Yugoslavia/EUnet@Lite -share/apps/kppp/Provider/Yugoslavia/EUnetBeograd -share/apps/kppp/Provider/Yugoslavia/EUnetCacak -share/apps/kppp/Provider/Yugoslavia/EUnetKragujevac -share/apps/kppp/Provider/Yugoslavia/EUnetNis -share/apps/kppp/Provider/Yugoslavia/EUnetNoviSad -share/apps/kppp/Provider/Yugoslavia/EUnetPristina -share/apps/kppp/Provider/Yugoslavia/EUnetSombor -share/apps/kppp/Provider/Yugoslavia/EUnetSubotica -share/apps/kppp/Provider/Yugoslavia/InfoSKY -share/apps/kppp/Provider/Yugoslavia/PTT -share/apps/kppp/Provider/Yugoslavia/SCnet -share/apps/kppp/Provider/Yugoslavia/Sezampro -share/apps/kppp/Provider/Yugoslavia/TelefonZona1.rst -share/apps/kppp/Provider/Yugoslavia/TelefonZona2.rst -share/apps/kppp/Provider/Yugoslavia/TelefonZona3.rst -share/apps/kppp/Provider/Yugoslavia/VeratNet -share/apps/kppp/Provider/Yugoslavia/YUBCnet -share/apps/kppp/Rules/Argentina/Argentina_0610.rst -share/apps/kppp/Rules/Argentina/Argentina_Local.rst -share/apps/kppp/Rules/Australia/Local.rst -share/apps/kppp/Rules/Australia/Optus_Residential.rst -share/apps/kppp/Rules/Australia/STD_Zone_1_-_25-50_kms.rst -share/apps/kppp/Rules/Australia/STD_Zone_2_-_50-85_kms.rst -share/apps/kppp/Rules/Australia/STD_Zone_3_-_85-165_kms.rst -share/apps/kppp/Rules/Australia/STD_Zone_4_-_165+_kms.rst -share/apps/kppp/Rules/Austria/Business_1/Local.rst -share/apps/kppp/Rules/Austria/Business_1/Long_Distance.rst -share/apps/kppp/Rules/Austria/Business_1/Online.rst -share/apps/kppp/Rules/Austria/Business_2/Local.rst -share/apps/kppp/Rules/Austria/Business_2/Long_Distance.rst -share/apps/kppp/Rules/Austria/Business_2/Online.rst -share/apps/kppp/Rules/Austria/Minimum/Local.rst -share/apps/kppp/Rules/Austria/Minimum/Long_Distance.rst -share/apps/kppp/Rules/Austria/Minimum/Online.rst -share/apps/kppp/Rules/Austria/Standard/Local.rst -share/apps/kppp/Rules/Austria/Standard/Long_Distance.rst -share/apps/kppp/Rules/Austria/Standard/Online.rst -share/apps/kppp/Rules/Austria/Standard/UTA_easyinternet.rst -share/apps/kppp/Rules/Bangladesh/ATT00007.rst -share/apps/kppp/Rules/Bangladesh/ATT00010.rst -share/apps/kppp/Rules/Belgium/Belgium_internet_euro.rst -share/apps/kppp/Rules/Belgium/Belgium_internet_frank.rst -share/apps/kppp/Rules/Belgium/Belgium_interzonal.rst -share/apps/kppp/Rules/Belgium/Belgium_zonal.rst -share/apps/kppp/Rules/Brasil/Brasil.rst -share/apps/kppp/Rules/Brasil/SaoPaulo.rst -share/apps/kppp/Rules/Croatia/CARNet_lokalni_poziv.rst -share/apps/kppp/Rules/Croatia/CARNet_medjugradski_poziv.rst -share/apps/kppp/Rules/Croatia/hinet_anonimni_ulaz.rst -share/apps/kppp/Rules/Croatia/hinet_hpt.rst -share/apps/kppp/Rules/Croatia/ibm_net.rst -share/apps/kppp/Rules/Croatia/iskon_lokalni_poziv.rst -share/apps/kppp/Rules/Croatia/iskon_medjugradski_poziv.rst -share/apps/kppp/Rules/Croatia/iskon_optimal.rst -share/apps/kppp/Rules/Croatia/iskon_zagrebacka_zupanija.rst -share/apps/kppp/Rules/Czechia/Czech_Telecom_City.rst -share/apps/kppp/Rules/Czechia/Czech_Telecom_Internet.rst -share/apps/kppp/Rules/Denmark/12Move_Analog.rst -share/apps/kppp/Rules/Denmark/12Move_ISDN.rst -share/apps/kppp/Rules/Denmark/Cybercity_Friabonnement.rst -share/apps/kppp/Rules/Denmark/Get2net_Betaling.rst -share/apps/kppp/Rules/Denmark/Get2net_Gratis.rst -share/apps/kppp/Rules/Denmark/Mobilix_Wanadoo.rst -share/apps/kppp/Rules/Denmark/Teledanmark_Basis.rst -share/apps/kppp/Rules/Denmark/Teledanmark_Favoritinternet.rst -share/apps/kppp/Rules/Denmark/Worldonline-Analog.rst -share/apps/kppp/Rules/Denmark/Worldonline-ISDN.rst -share/apps/kppp/Rules/Estonia/Eesti_Telefon.rst -share/apps/kppp/Rules/Finland/Vaasan_LP.rst -share/apps/kppp/Rules/France/France_Telecom_Local.rst -share/apps/kppp/Rules/France/France_Telecom_Local_Area.rst -share/apps/kppp/Rules/France/France_Telecom_Local_Primaliste_Internet.rst -share/apps/kppp/Rules/France/France_Telecom_National.rst -share/apps/kppp/Rules/Germany/2.5min.rst -share/apps/kppp/Rules/Germany/2.5s.rst -share/apps/kppp/Rules/Germany/AddCom_by_Call.rst -share/apps/kppp/Rules/Germany/Addcom.rst -share/apps/kppp/Rules/Germany/CallOkaynet.rst -share/apps/kppp/Rules/Germany/Callino_Surf_Basic.rst -share/apps/kppp/Rules/Germany/Callino_Surf_Plus.rst -share/apps/kppp/Rules/Germany/City_Activ_Plus_Option.rst -share/apps/kppp/Rules/Germany/Cityweb.rst -share/apps/kppp/Rules/Germany/Freenet_Enterprise.rst -share/apps/kppp/Rules/Germany/MSN.rst -share/apps/kppp/Rules/Germany/Mobilcom_Freenet.rst -share/apps/kppp/Rules/Germany/NGI_Call_By_Call.rst -share/apps/kppp/Rules/Germany/Netcom_Kassel.rst -share/apps/kppp/Rules/Germany/Nikoma.rst -share/apps/kppp/Rules/Germany/Nikoma_Internet_by_Call.rst -share/apps/kppp/Rules/Germany/Nikoma_Study_and_Surf.rst -share/apps/kppp/Rules/Germany/Planet-Interkom_Internet_by_call.rst -share/apps/kppp/Rules/Germany/Telekom_City_Select_5_30.rst -share/apps/kppp/Rules/Germany/expressnet.rst -share/apps/kppp/Rules/Germany/knUUt-by-Call.rst -share/apps/kppp/Rules/Germany/talkline_by_call.rst -share/apps/kppp/Rules/Germany/vossnet_fun.rst -share/apps/kppp/Rules/Germany/vossnet_fun_light.rst -share/apps/kppp/Rules/Germany/vossnet_kompl.rst -share/apps/kppp/Rules/Greece/Hellas_EPAK_Zone1_in_drs.rst -share/apps/kppp/Rules/Greece/Hellas_EPAK_Zone1_in_euro.rst -share/apps/kppp/Rules/Greece/Hellas_EPAK_Zone2_in_drs.rst -share/apps/kppp/Rules/Greece/Hellas_EPAK_Zone2_in_euro.rst -share/apps/kppp/Rules/Greece/Hellas_EPAK_local_in_drs.rst -share/apps/kppp/Rules/Greece/Hellas_EPAK_local_in_euro.rst -share/apps/kppp/Rules/Greece/Hellas_analog_local_in_drs.rst -share/apps/kppp/Rules/Greece/Hellas_analog_local_in_euro.rst -share/apps/kppp/Rules/Greece/Hellas_digital_local_in_drs.rst -share/apps/kppp/Rules/Greece/Hellas_digital_local_in_euro.rst -share/apps/kppp/Rules/Hong_Kong/Hong_Kong_Telecom.rst -share/apps/kppp/Rules/Hungary/Local.rst -share/apps/kppp/Rules/Hungary/LocalTop_MATAV.rst -share/apps/kppp/Rules/Hungary/Local_MATAV.rst -share/apps/kppp/Rules/Iceland/Iceland_general.rst -share/apps/kppp/Rules/India/BSNL_Local.rst -share/apps/kppp/Rules/India/BSNL_Long_101_To_200.rst -share/apps/kppp/Rules/India/BSNL_Medium_51_To_100.rst -share/apps/kppp/Rules/India/Vsnl_local.rst -share/apps/kppp/Rules/Indonesia/Lokal_1_Metropolitan.rst -share/apps/kppp/Rules/Indonesia/Lokal_2_Metropolitan.rst -share/apps/kppp/Rules/Indonesia/Lokal_non_metropolitan.rst -share/apps/kppp/Rules/Ireland/Eircom_Internet.rst -share/apps/kppp/Rules/Ireland/Eircom_Local.rst -share/apps/kppp/Rules/Ireland/Eircom_National.rst -share/apps/kppp/Rules/Ireland/Eircom_Special.rst -share/apps/kppp/Rules/Israel/Bezeq_Interurban.rst -share/apps/kppp/Rules/Israel/Bezeq_Local.rst -share/apps/kppp/Rules/Italy/Infostrada_Libero@Sogno.rst -share/apps/kppp/Rules/Italy/Infostrada_Libero@Sogno_Prima_del_24.10.2000.rst -share/apps/kppp/Rules/Italy/Infostrada_Locali.rst -share/apps/kppp/Rules/Italy/Infostrada_Nazionali.rst -share/apps/kppp/Rules/Italy/Infostrada_Regionali.rst -share/apps/kppp/Rules/Italy/Infostrada_SpazioZero.rst -share/apps/kppp/Rules/Italy/Infostrada_SpazioZero_Ridotta.rst -share/apps/kppp/Rules/Italy/TAT_Distrettuale.rst -share/apps/kppp/Rules/Italy/TAT_Formula_Urbana.rst -share/apps/kppp/Rules/Italy/TAT_Interdistrettuale_0-15.rst -share/apps/kppp/Rules/Italy/TAT_Interdistrettuale_15-30.rst -share/apps/kppp/Rules/Italy/TAT_Interdistrettuale_30+.rst -share/apps/kppp/Rules/Italy/TAT_Urbana.rst -share/apps/kppp/Rules/Italy/Tele2_Urbana.rst -share/apps/kppp/Rules/Italy/Teleconomy_24.rst -share/apps/kppp/Rules/Italy/Teleconomy_24_Ridotta.rst -share/apps/kppp/Rules/Italy/Teleconomy_No_Stop.rst -share/apps/kppp/Rules/Italy/Wind_Internet_Light_1088.rst -share/apps/kppp/Rules/Italy/Wind_Internet_Light_1088_24ore.rst -share/apps/kppp/Rules/Italy/Wind_Regionale_1088_Light.rst -share/apps/kppp/Rules/Italy/Wind_Urbana.rst -share/apps/kppp/Rules/Italy/Wind_Urbana_1088_Light.rst -share/apps/kppp/Rules/Jamaica/CWJ_InterParish.rst -share/apps/kppp/Rules/Jamaica/CWJ_Local.rst -share/apps/kppp/Rules/Japan/NTT_Local.rst -share/apps/kppp/Rules/Kazakhstan/Akparat_Sprint.rst -share/apps/kppp/Rules/Luxembourg/Local.rst -share/apps/kppp/Rules/Macedonia/Macedonia_GenericISP_interurban.rst -share/apps/kppp/Rules/Macedonia/Macedonia_GenericISP_local.rst -share/apps/kppp/Rules/Macedonia/Macedonia_MTnet.rst -share/apps/kppp/Rules/Malaysia/TMNet_Jaring.rst -share/apps/kppp/Rules/Malaysia/malaysia.rst -share/apps/kppp/Rules/Netherlands/BelBasis_Buiten_Regio.rst -share/apps/kppp/Rules/Netherlands/BelBasis_Buiten_Regio_Nummervoordeel.rst -share/apps/kppp/Rules/Netherlands/BelBasis_Lokaal.rst -share/apps/kppp/Rules/Netherlands/BelBasis_Regio_Nummervoordeel.rst -share/apps/kppp/Rules/Netherlands/BelBudget_Buiten_Regio.rst -share/apps/kppp/Rules/Netherlands/BelBudget_Regio.rst -share/apps/kppp/Rules/Netherlands/BelPlus_Buiten_Regio.rst -share/apps/kppp/Rules/Netherlands/BelPlus_Regio.rst -share/apps/kppp/Rules/Netherlands/BelPlus_Regio_Nummervoordeel.rst -share/apps/kppp/Rules/Netherlands/NedpointBasis_Lokaal.rst -share/apps/kppp/Rules/Netherlands/NedpointBelBespaar_Lokaal.rst -share/apps/kppp/Rules/Norway/Local_Area.rst -share/apps/kppp/Rules/Norway/Long_Distance.rst -share/apps/kppp/Rules/Poland/Internetia.rst -share/apps/kppp/Rules/Poland/Netia_100km_Niebieska.rst -share/apps/kppp/Rules/Poland/Netia_100km_Zielona.rst -share/apps/kppp/Rules/Poland/Netia_Lokalne_Niebieska.rst -share/apps/kppp/Rules/Poland/Netia_Lokalne_Zielona.rst -share/apps/kppp/Rules/Poland/TPSA.rst -share/apps/kppp/Rules/Poland/TP_100km.rst -share/apps/kppp/Rules/Poland/TP_Lokalne.rst -share/apps/kppp/Rules/Portugal/PT_Local.rst -share/apps/kppp/Rules/Portugal/PT_Local_Ilhas.rst -share/apps/kppp/Rules/Portugal/PT_Regional.rst -share/apps/kppp/Rules/Portugal/PT_Regional_Ilhas.rst -share/apps/kppp/Rules/Portugal/PT_YesNET.rst -share/apps/kppp/Rules/Portugal/PT_YesNET_Ilhas.rst -share/apps/kppp/Rules/Romania/Telecom_GSM.rst -share/apps/kppp/Rules/Romania/Telecom_Interurban.rst -share/apps/kppp/Rules/Romania/Telecom_Local.rst -share/apps/kppp/Rules/Singapore/SingTel_Local.rst -share/apps/kppp/Rules/Slovakia/Internetovy_tarif_019XY.rst -share/apps/kppp/Rules/Slovakia/ST_medzimesto.rst -share/apps/kppp/Rules/Slovakia/ST_mesto.rst -share/apps/kppp/Rules/South_Afrika/South_Afrika.rst -share/apps/kppp/Rules/Spain/Infovia.rst -share/apps/kppp/Rules/Spain/Infovia_IVA.rst -share/apps/kppp/Rules/Spain/Telefonica_Interprovincial.rst -share/apps/kppp/Rules/Spain/Telefonica_Interprovincial_IVA.rst -share/apps/kppp/Rules/Spain/Telefonica_Local.rst -share/apps/kppp/Rules/Spain/Telefonica_Metropolitana.rst -share/apps/kppp/Rules/Spain/Telefonica_Metropolitana_IVA.rst -share/apps/kppp/Rules/Spain/Telefonica_Nacional.rst -share/apps/kppp/Rules/Spain/Telefonica_Provincial.rst -share/apps/kppp/Rules/Spain/Telefonica_Provincial_IVA.rst -share/apps/kppp/Rules/Sweden/ACN.rst -share/apps/kppp/Rules/Sweden/Abonnera_com.rst -share/apps/kppp/Rules/Sweden/CNEAB-Route66.rst -share/apps/kppp/Rules/Sweden/Crossnet-Affinity.rst -share/apps/kppp/Rules/Sweden/Glocalnet.rst -share/apps/kppp/Rules/Sweden/Gts.rst -share/apps/kppp/Rules/Sweden/Home_se.rst -share/apps/kppp/Rules/Sweden/Nemtel.rst -share/apps/kppp/Rules/Sweden/Plusenergi.rst -share/apps/kppp/Rules/Sweden/RSLCom.rst -share/apps/kppp/Rules/Sweden/Rix_Telecom.rst -share/apps/kppp/Rules/Sweden/Supertel.rst -share/apps/kppp/Rules/Sweden/Svensk_Telekom.rst -share/apps/kppp/Rules/Sweden/Tele1_Europe.rst -share/apps/kppp/Rules/Sweden/Tele2.rst -share/apps/kppp/Rules/Sweden/Tele8.rst -share/apps/kppp/Rules/Sweden/Teleman.rst -share/apps/kppp/Rules/Sweden/Telenordia.rst -share/apps/kppp/Rules/Sweden/Telerian.rst -share/apps/kppp/Rules/Sweden/Telia.rst -share/apps/kppp/Rules/Sweden/Telia_Telebonus1.rst -share/apps/kppp/Rules/Sweden/Telia_Telebonus2.rst -share/apps/kppp/Rules/Sweden/Telitel.rst -share/apps/kppp/Rules/Sweden/Tiscali.rst -share/apps/kppp/Rules/Sweden/Transnet.rst -share/apps/kppp/Rules/Sweden/Universal_Telecom.rst -share/apps/kppp/Rules/Sweden/Utfors.rst -share/apps/kppp/Rules/Sweden/Vattenfall.rst -share/apps/kppp/Rules/Switzerland/Sunrise_Freetime.rst -share/apps/kppp/Rules/Switzerland/Sunrise_Local.rst -share/apps/kppp/Rules/Switzerland/Sunrise_Select_Internet.rst -share/apps/kppp/Rules/Switzerland/Swisscom_Local.rst -share/apps/kppp/Rules/Switzerland/Swisscom_Remote.rst -share/apps/kppp/Rules/Switzerland/Swisscom_Surf.rst -share/apps/kppp/Rules/TEMPLATE -share/apps/kppp/Rules/Turkey/Turk_Telekom_Internet.rst -share/apps/kppp/Rules/United_Kingdom/BirminghamCable_Local.rst -share/apps/kppp/Rules/United_Kingdom/BirminghamCable_National.rst -share/apps/kppp/Rules/United_Kingdom/BirminghamCable_SameTelco.rst -share/apps/kppp/Rules/United_Kingdom/BritishTelecom_Local.rst -share/apps/kppp/Rules/United_Kingdom/BritishTelecom_National.rst -share/apps/kppp/Rules/United_Kingdom/BritishTelecom_Regional.rst -share/apps/kppp/Rules/United_Kingdom/British_OneTel.rst -share/apps/kppp/Rules/United_Kingdom/Connaught_Telecom.rst -share/apps/kppp/Rules/Uruguay/Adinet_cIVA.rst -share/apps/kppp/Rules/checkrules -share/apps/kppp/pics/dock_both.png -share/apps/kppp/pics/dock_left.png -share/apps/kppp/pics/dock_none.png -share/apps/kppp/pics/dock_right.png -share/apps/kppp/pics/folder.png -share/apps/kppp/pics/modemboth.png -share/apps/kppp/pics/modemleft.png -share/apps/kppp/pics/modemnone.png -share/apps/kppp/pics/modemright.png -share/apps/kppp/pics/phone.png -share/apps/ksirc/commands-handler.pl -share/apps/ksirc/commands-perl.pl -share/apps/ksirc/convert_commands.pl -share/apps/ksirc/dcc_progress.pm -share/apps/ksirc/dcc_status.pm -share/apps/ksirc/filters.pl -share/apps/ksirc/ksirc.pl -share/apps/ksirc/ksirclistbox.pm -share/apps/ksirc/load_all.pm -share/apps/ksirc/palistbox.pm -share/apps/ksirc/pbase.pm -share/apps/ksirc/pboxlayout.pm -share/apps/ksirc/pbutton.pm -share/apps/ksirc/pframe.pm -share/apps/ksirc/pics/arrow.png -share/apps/ksirc/pics/blueball.png -share/apps/ksirc/pics/bluepin.png -share/apps/ksirc/pics/channel.xpm -share/apps/ksirc/pics/channels.xpm -share/apps/ksirc/pics/greenpin.png -share/apps/ksirc/pics/info.png -share/apps/ksirc/pics/info1.png -share/apps/ksirc/pics/ksirc.png -share/apps/ksirc/pics/ksirc_a.xpm -share/apps/ksirc/pics/ksirc_b.xpm -share/apps/ksirc/pics/ksirc_dock.xpm -share/apps/ksirc/pics/madsmiley.png -share/apps/ksirc/pics/mini-run.png -share/apps/ksirc/pics/server.xpm -share/apps/ksirc/pics/smiley.png -share/apps/ksirc/pics/star.png -share/apps/ksirc/pkfiledialog.pm -share/apps/ksirc/plabel.pm -share/apps/ksirc/plined.pm -share/apps/ksirc/plistbox.pm -share/apps/ksirc/pmenudta.pm -share/apps/ksirc/pobjfinder.pm -share/apps/ksirc/ppopmenu.pm -share/apps/ksirc/pprogress.pm -share/apps/ksirc/ppushbt.pm -share/apps/ksirc/ptabdialog.pm -share/apps/ksirc/ptablevw.pm -share/apps/ksirc/puke.pl -share/apps/ksirc/pwidget.pm -share/apps/ksirc/relnotes -share/apps/ksirc/servers.ini -share/apps/ksirc/servers.txt -share/apps/ksirc/sirc.help.gz -share/apps/ksirc/small.pl -share/apps/ksirc/test.pl -share/apps/ksirc/tester.pl -share/apps/lisa/README -share/config/ksircrc -share/doc/HTML/en/kdict/applet.png -share/doc/HTML/en/kdict/common -share/doc/HTML/en/kdict/conf.png -share/doc/HTML/en/kdict/index.docbook -share/doc/HTML/en/kdict/mainwin.png -share/doc/HTML/en/kdict/seteditor.png -share/doc/HTML/en/kit/common -share/doc/HTML/en/kit/index.docbook -share/doc/HTML/en/kmail/common -share/doc/HTML/en/kmail/index.docbook -share/doc/HTML/en/knewsticker/TODO -share/doc/HTML/en/knewsticker/about-icon.png -share/doc/HTML/en/knewsticker/checknews-icon.png -share/doc/HTML/en/knewsticker/common -share/doc/HTML/en/knewsticker/contextmenu.png -share/doc/HTML/en/knewsticker/downarrow-icon.png -share/doc/HTML/en/knewsticker/help-icon.png -share/doc/HTML/en/knewsticker/index.docbook -share/doc/HTML/en/knewsticker/kcmnewsticker-general.png -share/doc/HTML/en/knewsticker/kcmnewsticker-newssources.png -share/doc/HTML/en/knewsticker/kcontrol-icon.png -share/doc/HTML/en/knewsticker/knewsticker-childpanel.png -share/doc/HTML/en/knewsticker/knewsticker-kicker.png -share/doc/HTML/en/knewsticker/newarticle-icon.png -share/doc/HTML/en/knewsticker/newssite-icon.png -share/doc/HTML/en/knewsticker/noarticles-icon.png -share/doc/HTML/en/knewsticker/oldarticle-icon.png -share/doc/HTML/en/knewsticker/preferences-icon.png -share/doc/HTML/en/knewsticker/uparrow-icon.png -share/doc/HTML/en/knode/common -share/doc/HTML/en/knode/eyes.png -share/doc/HTML/en/knode/german_original.docbook -share/doc/HTML/en/knode/greyball.png -share/doc/HTML/en/knode/greyballchk.png -share/doc/HTML/en/knode/index.docbook -share/doc/HTML/en/knode/knode-cleanup.png -share/doc/HTML/en/knode/knode-colors-fonts.png -share/doc/HTML/en/knode/knode-composer-attachments.png -share/doc/HTML/en/knode/knode-composer-settings.png -share/doc/HTML/en/knode/knode-edit-filter.png -share/doc/HTML/en/knode/knode-edit-header1.png -share/doc/HTML/en/knode/knode-edit-header2.png -share/doc/HTML/en/knode/knode-filters.png -share/doc/HTML/en/knode/knode-followup.png -share/doc/HTML/en/knode/knode-header-settings.png -share/doc/HTML/en/knode/knode-identity.png -share/doc/HTML/en/knode/knode-mail-account.png -share/doc/HTML/en/knode/knode-new-article.png -share/doc/HTML/en/knode/knode-news-account.png -share/doc/HTML/en/knode/knode-post-settings.png -share/doc/HTML/en/knode/knode-read-news-settings.png -share/doc/HTML/en/knode/knode-reply.png -share/doc/HTML/en/knode/knode-search.png -share/doc/HTML/en/knode/knode-start.png -share/doc/HTML/en/knode/knode-subscribe.png -share/doc/HTML/en/knode/knode-views.png -share/doc/HTML/en/knode/newsubs.png -share/doc/HTML/en/knode/redball.png -share/doc/HTML/en/knode/redballchk.png -share/doc/HTML/en/knode/translation.po -share/doc/HTML/en/korn/common -share/doc/HTML/en/korn/index.docbook -share/doc/HTML/en/kppp/accounting.docbook -share/doc/HTML/en/kppp/callback.docbook -share/doc/HTML/en/kppp/chap.docbook -share/doc/HTML/en/kppp/common -share/doc/HTML/en/kppp/costsgraphs.fig -share/doc/HTML/en/kppp/costsgraphs.png -share/doc/HTML/en/kppp/dialog-setup.docbook -share/doc/HTML/en/kppp/getting-online.docbook -share/doc/HTML/en/kppp/global-settings.docbook -share/doc/HTML/en/kppp/hayes.docbook -share/doc/HTML/en/kppp/index.docbook -share/doc/HTML/en/kppp/kppp-account-accounting-tab.png -share/doc/HTML/en/kppp/kppp-account-dial-tab.png -share/doc/HTML/en/kppp/kppp-account-dns-tab.png -share/doc/HTML/en/kppp/kppp-account-execute-tab.png -share/doc/HTML/en/kppp/kppp-account-gateway-tab.png -share/doc/HTML/en/kppp/kppp-account-ip-tab.png -share/doc/HTML/en/kppp/kppp-account-login-script-tab.png -share/doc/HTML/en/kppp/kppp-config.png -share/doc/HTML/en/kppp/kppp-device-tab.png -share/doc/HTML/en/kppp/kppp-dialler-tab.png -share/doc/HTML/en/kppp/kppp-faq.docbook -share/doc/HTML/en/kppp/kppp-graph-tab.png -share/doc/HTML/en/kppp/kppp-misc-tab.png -share/doc/HTML/en/kppp/kppp-modem-tab.png -share/doc/HTML/en/kppp/kppp-wizard.png -share/doc/HTML/en/kppp/kppp.faq.question -share/doc/HTML/en/kppp/security.docbook -share/doc/HTML/en/kppp/tricks.docbook -share/doc/HTML/en/kppp/ttyS-cua.txt -share/doc/HTML/en/kppp/wizard.docbook -share/doc/HTML/en/ksirc/common -share/doc/HTML/en/ksirc/index.docbook -share/doc/HTML/en/ktalkd/common -share/doc/HTML/en/ktalkd/index.docbook -share/doc/HTML/en/lisa/common -share/doc/HTML/en/lisa/index.docbook -share/icons/hicolor/16x16/apps/kdict.png -share/icons/hicolor/16x16/apps/kit.png -share/icons/hicolor/16x16/apps/kmail.png -share/icons/hicolor/16x16/apps/kmailcvt.png -share/icons/hicolor/16x16/apps/knewsticker.png -share/icons/hicolor/16x16/apps/knode.png -share/icons/hicolor/16x16/apps/korn.png -share/icons/hicolor/16x16/apps/kppp.png -share/icons/hicolor/16x16/apps/ksirc.png -share/icons/hicolor/16x16/apps/ktalkd.png -share/icons/hicolor/32x32/apps/kdict.png -share/icons/hicolor/32x32/apps/kit.png -share/icons/hicolor/32x32/apps/kmail.png -share/icons/hicolor/32x32/apps/kmailcvt.png -share/icons/hicolor/32x32/apps/knewsticker.png -share/icons/hicolor/32x32/apps/knode.png -share/icons/hicolor/32x32/apps/korn.png -share/icons/hicolor/32x32/apps/kppp.png -share/icons/hicolor/32x32/apps/ksirc.png -share/icons/hicolor/32x32/apps/ktalkd.png -share/icons/hicolor/48x48/apps/kdict.png -share/icons/hicolor/48x48/apps/kit.png -share/icons/hicolor/48x48/apps/kmail.png -share/icons/hicolor/48x48/apps/kmailcvt.png -share/icons/hicolor/48x48/apps/knewsticker.png -share/icons/hicolor/48x48/apps/knode.png -share/icons/hicolor/48x48/apps/korn.png -share/icons/hicolor/48x48/apps/kppp.png -share/icons/hicolor/48x48/apps/ksirc.png -share/icons/hicolor/48x48/apps/ktalkd.png -share/services/knewsservice.protocol -share/services/kntsrcfilepropsdlg.desktop -share/services/lan.protocol -share/services/rlan.protocol -share/sounds/ktalkd.wav -@dirrm share/icons/hicolor/48x48/apps -@dirrm share/icons/hicolor/32x32/apps -@dirrm share/icons/hicolor/16x16/apps -@dirrm share/doc/HTML/en/lisa -@dirrm share/doc/HTML/en/ktalkd -@dirrm share/doc/HTML/en/ksirc -@dirrm share/doc/HTML/en/kppp -@dirrm share/doc/HTML/en/korn -@dirrm share/doc/HTML/en/knode -@dirrm share/doc/HTML/en/knewsticker -@dirrm share/doc/HTML/en/kmail -@dirrm share/doc/HTML/en/kit -@dirrm share/doc/HTML/en/kdict -@dirrm share/doc/HTML/en -@dirrm share/config -@dirrm share/apps/lisa -@dirrm share/apps/ksirc/pics -@dirrm share/apps/ksirc -@dirrm share/apps/kppp/pics -@dirrm share/apps/kppp/Rules/Uruguay -@dirrm share/apps/kppp/Rules/United_Kingdom -@dirrm share/apps/kppp/Rules/Turkey -@dirrm share/apps/kppp/Rules/Switzerland -@dirrm share/apps/kppp/Rules/Sweden -@dirrm share/apps/kppp/Rules/Spain -@dirrm share/apps/kppp/Rules/South_Afrika -@dirrm share/apps/kppp/Rules/Slovakia -@dirrm share/apps/kppp/Rules/Singapore -@dirrm share/apps/kppp/Rules/Romania -@dirrm share/apps/kppp/Rules/Portugal -@dirrm share/apps/kppp/Rules/Poland -@dirrm share/apps/kppp/Rules/Norway -@dirrm share/apps/kppp/Rules/Netherlands -@dirrm share/apps/kppp/Rules/Malaysia -@dirrm share/apps/kppp/Rules/Macedonia -@dirrm share/apps/kppp/Rules/Luxembourg -@dirrm share/apps/kppp/Rules/Kazakhstan -@dirrm share/apps/kppp/Rules/Japan -@dirrm share/apps/kppp/Rules/Jamaica -@dirrm share/apps/kppp/Rules/Italy -@dirrm share/apps/kppp/Rules/Israel -@dirrm share/apps/kppp/Rules/Ireland -@dirrm share/apps/kppp/Rules/Indonesia -@dirrm share/apps/kppp/Rules/India -@dirrm share/apps/kppp/Rules/Iceland -@dirrm share/apps/kppp/Rules/Hungary -@dirrm share/apps/kppp/Rules/Hong_Kong -@dirrm share/apps/kppp/Rules/Greece -@dirrm share/apps/kppp/Rules/Germany -@dirrm share/apps/kppp/Rules/France -@dirrm share/apps/kppp/Rules/Finland -@dirrm share/apps/kppp/Rules/Estonia -@dirrm share/apps/kppp/Rules/Denmark -@dirrm share/apps/kppp/Rules/Czechia -@dirrm share/apps/kppp/Rules/Croatia -@dirrm share/apps/kppp/Rules/Brasil -@dirrm share/apps/kppp/Rules/Belgium -@dirrm share/apps/kppp/Rules/Bangladesh -@dirrm share/apps/kppp/Rules/Austria/Standard -@dirrm share/apps/kppp/Rules/Austria/Minimum -@dirrm share/apps/kppp/Rules/Austria/Business_2 -@dirrm share/apps/kppp/Rules/Austria/Business_1 -@dirrm share/apps/kppp/Rules/Austria -@dirrm share/apps/kppp/Rules/Australia -@dirrm share/apps/kppp/Rules/Argentina -@dirrm share/apps/kppp/Rules -@dirrm share/apps/kppp/Provider/Yugoslavia -@dirrm share/apps/kppp/Provider/United_Kingdom -@dirrm share/apps/kppp/Provider/Taiwan -@dirrm share/apps/kppp/Provider/Sweden -@dirrm share/apps/kppp/Provider/Portugal -@dirrm share/apps/kppp/Provider/Norway -@dirrm share/apps/kppp/Provider/NewZealand -@dirrm share/apps/kppp/Provider/Netherlands -@dirrm share/apps/kppp/Provider/Germany -@dirrm share/apps/kppp/Provider/Denmark -@dirrm share/apps/kppp/Provider/Czech_Republic -@dirrm share/apps/kppp/Provider/Austria -@dirrm share/apps/kppp/Provider -@dirrm share/apps/kppp -@dirrm share/apps/konqueror/dirtree/remote -@dirrm share/apps/knode/pics -@dirrm share/apps/knode/icons/hicolor/32x32/actions -@dirrm share/apps/knode/icons/hicolor/32x32 -@dirrm share/apps/knode/icons/hicolor/22x22/actions -@dirrm share/apps/knode/icons/hicolor/22x22 -@dirrm share/apps/knode/icons/hicolor/16x16/actions -@dirrm share/apps/knode/icons/hicolor/16x16 -@dirrm share/apps/knode/filters -@dirrm share/apps/knode -@dirrm share/apps/knewsticker -@dirrm share/apps/kmail/pics -@dirrm share/apps/kmail/about -@dirrm share/apps/kmail -@dirrm share/apps/kit/icons/hicolor/16x16/actions -@dirrm share/apps/kit/icons/hicolor/16x16 -@dirrm share/apps/kit/icons/hicolor -@dirrm share/apps/kit/icons -@dirrm share/apps/kit -@dirrm share/apps/kicker/applets -@dirrm share/apps/kdict/icons/hicolor/32x32/actions -@dirrm share/apps/kdict/icons/hicolor/32x32 -@dirrm share/apps/kdict/icons/hicolor/22x22/actions -@dirrm share/apps/kdict/icons/hicolor/22x22 -@dirrm share/apps/kdict/icons/hicolor/16x16/actions -@dirrm share/apps/kdict/icons/hicolor/16x16 -@dirrm share/apps/kdict/icons/hicolor -@dirrm share/apps/kdict/icons -@dirrm share/apps/kdict -@dirrm share/apps/kconf_update -@dirrm share/apps -@dirrm share/applnk/Utilities -@dirrm share/applnk/Settings/Personalization -@dirrm share/applnk/Settings/Network -@dirrm share/applnk/Internet -@dirrm share/applnk/.hidden -@dirrm lib/kde2 -@dirrm include/mimelib diff --git a/net/kxicq-devel/Makefile b/net/kxicq-devel/Makefile deleted file mode 100644 index f8894397b174..000000000000 --- a/net/kxicq-devel/Makefile +++ /dev/null @@ -1,68 +0,0 @@ -# New ports collection makefile for: kxicq -# Date created: 10 March 2000 -# Whom: Andrey Novikov <andrey@novikov.com> -# -# $FreeBSD$ - -PORTNAME= kxicq -PORTVERSION= 0.3.97b -CATEGORIES= net kde -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= ${PORTNAME} -DISTNAME= ${PORTNAME}-03132000 - -MAINTAINER= andrey@novikov.com - -USE_KDELIBS_VER=1 -USE_GMAKE= yes -USE_LIBTOOL= yes - -DIST_SUBDIR= kxicq - -.if defined(ADDITIONAL_SKINS) -SKINS= GoldBlue blueplanet ciasa_boark_inc cyrus -PLIST= ${WRKDIR}/PLIST -DISTFILES= ${DISTNAME}${EXTRACT_SUFX} GoldBlue.tar.gz \ - blueplanet-0.1.tar.gz cyrustheme.tar.gz \ - ciasa_boark_inc-0.4.tar.gz -.endif - -pre-fetch: -.if !defined(ADDITIONAL_SKINS) - @${ECHO} - @${ECHO} "You may define INSTALL_ADDITIONAL_SKINS (make ADDITIONAL_SKINS=YES)" - @${ECHO} "to fetch and install additional skins for kxicq." - @${ECHO} - @sleep 1 -.endif - -post-extract: -.if defined(ADDITIONAL_SKINS) - @${MKDIR} ${WRKDIR}/ciasa_boark_inc - @${TAR} -xz -C ${WRKDIR}/ciasa_boark_inc -f ${WRKDIR}/ciasa_boark_inc-0.4.tar.gz -.endif - -pre-install: -.if defined(ADDITIONAL_SKINS) - @if [ -f ${PLIST} ] ; then \ - ${RM} ${PLIST} ; fi -.for skin in ${SKINS} - @for f in ${WRKDIR}/${skin}/* ; do \ - file=`${BASENAME} $$f`; \ - ${ECHO} share/apps/kxicq/skins/${skin}/$$file >> ${PLIST} ; done - @${ECHO} @dirrm share/apps/kxicq/skins/${skin} >> ${PLIST}.dirrm -.endfor - @${CAT} ${PLIST}.dirrm >> ${PLIST} && ${RM} ${PLIST}.dirrm - @${CAT} ${PKGDIR}/pkg-plist >> ${PLIST} -.endif - -post-install: -.if defined(ADDITIONAL_SKINS) - @${ECHO} "===> Installing kxicq additional skins" -.for skin in ${SKINS} - @${MKDIR} ${PREFIX}/share/apps/kxicq/skins/${skin} - ${INSTALL_DATA} ${WRKDIR}/${skin}/* ${PREFIX}/share/apps/kxicq/skins/${skin} -.endfor -.endif - -.include <bsd.port.mk> diff --git a/net/kxicq-devel/distinfo b/net/kxicq-devel/distinfo deleted file mode 100644 index e64887c60eaf..000000000000 --- a/net/kxicq-devel/distinfo +++ /dev/null @@ -1,5 +0,0 @@ -MD5 (kxicq/kxicq-03132000.tar.gz) = 0690a43dad83d89bbdff7c4143386300 -MD5 (kxicq/GoldBlue.tar.gz) = 401450e4710aebff4b2edad14c0f4cac -MD5 (kxicq/blueplanet-0.1.tar.gz) = db08ff114c24af4ff185c76820acb04d -MD5 (kxicq/ciasa_boark_inc-0.4.tar.gz) = b6759abce6e8fd9c69895d28738b63f2 -MD5 (kxicq/cyrustheme.tar.gz) = 0c514e3bdd67f2a2766de43976bc9c2a diff --git a/net/kxicq-devel/pkg-comment b/net/kxicq-devel/pkg-comment deleted file mode 100644 index 457c499afbd2..000000000000 --- a/net/kxicq-devel/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -ICQ client for KDE diff --git a/net/kxicq-devel/pkg-descr b/net/kxicq-devel/pkg-descr deleted file mode 100644 index 1f4fb0b91a55..000000000000 --- a/net/kxicq-devel/pkg-descr +++ /dev/null @@ -1,6 +0,0 @@ -The outstanding ICQ client for KDE having the most features -of MS Windows(tm) analog and even more. - -WWW: http://www.kxicq.org/ - -- Andrey Novikov <andrey@novikov.com> diff --git a/net/kxicq-devel/pkg-plist b/net/kxicq-devel/pkg-plist deleted file mode 100644 index 93d94d9418aa..000000000000 --- a/net/kxicq-devel/pkg-plist +++ /dev/null @@ -1,79 +0,0 @@ -bin/kxicq -lib/kxicq/plugins/liblastOnline.so -lib/kxicq/plugins/liblastOnline.so.0 -lib/kxicq/plugins/librussianConverter.so -lib/kxicq/plugins/librussianConverter.so.0 -share/locale/nl/LC_MESSAGES/kxicq.mo -share/locale/ja/LC_MESSAGES/kxicq.mo -share/locale/de/LC_MESSAGES/kxicq.mo -share/locale/sv/LC_MESSAGES/kxicq.mo -share/locale/hr/LC_MESSAGES/kxicq.mo -share/locale/it/LC_MESSAGES/kxicq.mo -share/doc/HTML/en/kxicq/index-1.html -share/doc/HTML/en/kxicq/index-2.html -share/doc/HTML/en/kxicq/index-3.html -share/doc/HTML/en/kxicq/index-4.html -share/doc/HTML/en/kxicq/index-5.html -share/doc/HTML/en/kxicq/index-6.html -share/doc/HTML/en/kxicq/index.html -share/doc/HTML/en/kxicq/index.sgml -share/doc/HTML/en/kxicq/registration-1.html -share/doc/HTML/en/kxicq/registration-2-KXicq.html -share/doc/HTML/en/kxicq/registration-3.html -share/doc/HTML/en/kxicq/registration-4.html -share/doc/HTML/en/kxicq/registration-5.html -share/doc/HTML/en/kxicq/index-7.html -share/doc/HTML/en/kxicq/layout_default.gif -share/apps/kxicq/wavs/message.wav -share/apps/kxicq/icons/default/invisible.xpm -share/apps/kxicq/icons/default/available.xpm -share/apps/kxicq/icons/default/send.xpm -share/apps/kxicq/icons/default/away.xpm -share/apps/kxicq/icons/default/na.xpm -share/apps/kxicq/icons/default/dnd.xpm -share/apps/kxicq/icons/default/occupied.xpm -share/apps/kxicq/icons/default/ffc.xpm -share/apps/kxicq/icons/default/exit.xpm -share/apps/kxicq/icons/default/history.xpm -share/apps/kxicq/icons/default/newmsg.xpm -share/apps/kxicq/icons/default/offline.xpm -share/apps/kxicq/icons/default/online.xpm -share/apps/kxicq/icons/default/selecttext.xpm -share/apps/kxicq/icons/default/selectcolor.xpm -share/apps/kxicq/icons/icq/invisible.xpm -share/apps/kxicq/icons/icq/available.xpm -share/apps/kxicq/icons/icq/send.xpm -share/apps/kxicq/icons/icq/away.xpm -share/apps/kxicq/icons/icq/na.xpm -share/apps/kxicq/icons/icq/dnd.xpm -share/apps/kxicq/icons/icq/occupied.xpm -share/apps/kxicq/icons/icq/ffc.xpm -share/apps/kxicq/icons/icq/exit.xpm -share/apps/kxicq/icons/icq/history.xpm -share/apps/kxicq/icons/icq/newmsg.xpm -share/apps/kxicq/icons/icq/offline.xpm -share/apps/kxicq/icons/icq/online.xpm -share/apps/kxicq/icons/icq/selecttext.xpm -share/apps/kxicq/icons/icq/selectcolor.xpm -share/apps/kxicq/pics/startlogo.bmp -share/apps/kxicq/skins/computer/computer.kxskin -share/apps/kxicq/skins/computer/Frame.xpm -share/apps/kxicq/skins/computer/MenuButtonDown.xpm -share/apps/kxicq/skins/computer/MenuButtonUp.xpm -share/apps/kxicq/skins/computer/field.xpm -share/apps/kxicq/utils/ping.kxutil -share/apps/kxicq/utils/pine.kxutil -share/applnk/Applications/kxicq.kdelnk -include/ltdl.h -@dirrm share/doc/HTML/en/kxicq -@dirrm share/apps/kxicq/wavs -@dirrm share/apps/kxicq/icons/default -@dirrm share/apps/kxicq/icons/icq -@dirrm share/apps/kxicq/icons -@dirrm share/apps/kxicq/utils -@dirrm share/apps/kxicq/skins/computer -@dirrm share/apps/kxicq/skins -@dirrm share/apps/kxicq/pics -@dirrm share/apps/kxicq -@dirrm lib/kxicq/plugins -@dirrm lib/kxicq diff --git a/net/libnet10/Makefile b/net/libnet10/Makefile deleted file mode 100644 index 91f477bfa0f7..000000000000 --- a/net/libnet10/Makefile +++ /dev/null @@ -1,39 +0,0 @@ -# Ports collection makefile for: libnet -# Date created: Sun Feb 3, 1999 -# Whom: shipley@dis.org -# -# $FreeBSD$ -# - -PORTNAME= libnet -PORTVERSION= 1.0.2a -CATEGORIES= net -MASTER_SITES= http://www.packetfactory.net/libnet/dist/ - -MAINTAINER= shipley@dis.org - -MAN3= libnet.3 - -USE_AUTOCONF= yes - -WRKSRC= ${WRKDIR}/Libnet-${PORTVERSION} -MAN3= libnet.3 - -post-install: - ${INSTALL_MAN} ${WRKSRC}/doc/libnet.3 ${PREFIX}/man/man3 -.if !defined(NOPORTDOCS) - @${MKDIR} ${PREFIX}/share/doc/libnet - @${MKDIR} ${PREFIX}/share/doc/libnet/examples - @${MKDIR} ${PREFIX}/share/doc/libnet/ancillary -.for i in CHANGELOG CHANGELOG-NEWFUNCTIONS COPYING README TODO-1.0 TODO-1.1 - ${INSTALL_DATA} ${WRKSRC}/doc/${i} ${PREFIX}/share/doc/libnet -.endfor -.for i in README.asn.1 README.bpf README.legacy-applications README.libnet-config README.linux README.rawsockets - ${INSTALL_DATA} ${WRKSRC}/doc/Ancillary/${i} ${PREFIX}/share/doc/libnet/ancillary -.endfor -.for i in libnet-example-1.c libnet-example-2.c libnet-example-3.c libnet-example-4.c - ${INSTALL_DATA} ${WRKSRC}/example/${i} ${PREFIX}/share/doc/libnet/examples -.endfor -.endif - -.include <bsd.port.mk> diff --git a/net/libnet10/distinfo b/net/libnet10/distinfo deleted file mode 100644 index 301a594219c1..000000000000 --- a/net/libnet10/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (libnet-1.0.2a.tar.gz) = ddf53f0f484184390e8c2a1bd0853667 diff --git a/net/libnet10/files/patch-aa b/net/libnet10/files/patch-aa deleted file mode 100644 index 57137897cbc7..000000000000 --- a/net/libnet10/files/patch-aa +++ /dev/null @@ -1,29 +0,0 @@ ---- configure.in.orig Wed Jan 17 12:59:30 2001 -+++ configure.in Mon Jul 2 19:18:50 2001 -@@ -50,10 +50,10 @@ - dnl Use these compiler flags if we have gcc. - dnl - if test $ac_cv_prog_gcc = yes; then --dnl if test -z $CFLAGS; then -- CCOPTS='-O2 -funroll-loops -fomit-frame-pointer -Wall' -- CFLAGS="$CCOPTS" --dnl fi -+ if test -z "$CFLAGS"; then -+ CCOPTS='-O2 -funroll-loops -fomit-frame-pointer -Wall' -+ CFLAGS="$CCOPTS" -+ fi - fi - - dnl -@@ -163,8 +163,9 @@ - LIB_PREFIX="$prefix/lib/aout" - INC_PREFIX="$prefix/include/" - BIN_PREFIX="$prefix/bin/" -- AC_MSG_RESULT(Note: support/bpf-lkm/etherspoof contains the lkm source \ --required to spoof ethernet frames) -+dnl etherspoof lkm is horrible and only necesary on < RELENG_4 -+dnl AC_MSG_RESULT(Note: support/bpf-lkm/etherspoof contains the lkm source \ -+dnl required to spoof ethernet frames) - ln -sf FreeBSD support/bpf-lkm/etherspoof - ;; - diff --git a/net/libnet10/files/patch-ab b/net/libnet10/files/patch-ab deleted file mode 100644 index 9106f9921b2a..000000000000 --- a/net/libnet10/files/patch-ab +++ /dev/null @@ -1,20 +0,0 @@ ---- Makefile.in.orig Mon Feb 5 09:51:41 2001 -+++ Makefile.in Mon Jul 2 19:41:27 2001 -@@ -96,7 +96,7 @@ - $(ENSUREDIR) $(DESTDIR)$(LIB_PREFIX) 755 - $(ENSUREDIR) $(DESTDIR)$(INC_PREFIX)$(LIBNET) 755 - $(ENSUREDIR) $(DESTDIR)$(INC_PREFIX) 755 -- $(ENSUREDIR) $(DESTDIR)$(MAN_PREFIX) 755 -+# $(ENSUREDIR) $(DESTDIR)$(MAN_PREFIX) 755 - $(ENSUREDIR) $(DESTDIR)$(BIN_PREFIX) 755 - $(INSTALL_DATA) $(LIB) $(DESTDIR)$(LIB_PREFIX) - rm -f $(DESTDIR)$(LIB_PREFIX)$(LIBPWRITE).a -@@ -108,7 +108,7 @@ - $(INSTALL_DATA) $(INCLUDE-M) $(DESTDIR)$(INC_PREFIX)$(LIBNET) - $(INSTALL_DATA) $(INCLUDE-A) $(DESTDIR)$(INC_PREFIX)$(LIBNET) - $(INSTALL_DATA) $(INCLUDE-O) $(DESTDIR)$(INC_PREFIX)$(LIBNET) -- $(INSTALL_DATA) $(MAN) $(DESTDIR)$(MAN_PREFIX) -+# $(INSTALL_DATA) $(MAN) $(DESTDIR)$(MAN_PREFIX) - $(INSTALL_DATA) $(CONFIG) $(DESTDIR)$(BIN_PREFIX) - - diff --git a/net/libnet10/pkg-comment b/net/libnet10/pkg-comment deleted file mode 100644 index 92b86b073725..000000000000 --- a/net/libnet10/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -A C library for creating IP packets diff --git a/net/libnet10/pkg-descr b/net/libnet10/pkg-descr deleted file mode 100644 index f0db50505d08..000000000000 --- a/net/libnet10/pkg-descr +++ /dev/null @@ -1,17 +0,0 @@ -Libnet A C library for portable packet creation - -domains of sockets and protocols. - -A C library for portable packet creation - -Included are also simple example test programs - -Libnet is a collection of routines to help with the construction -and handling of network packets. It provides a portable framework -for low-level network packet writing and handling. - -Libnet features portable packet creation interfaces at the IP layer -and link layer, as well as a host of supplementary and complementary -functionality. - -WWW: http://www.infonexus.com/~daemon9/Projects/Libnet/ diff --git a/net/libnet10/pkg-plist b/net/libnet10/pkg-plist deleted file mode 100644 index 212baac7b536..000000000000 --- a/net/libnet10/pkg-plist +++ /dev/null @@ -1,30 +0,0 @@ -bin/libnet-config -include/libnet.h -include/libnet/libnet-asn1.h -include/libnet/libnet-functions.h -include/libnet/libnet-headers.h -include/libnet/libnet-macros.h -include/libnet/libnet-ospf.h -include/libnet/libnet-structures.h -lib/libnet.a -lib/libpwrite.a -share/doc/libnet/CHANGELOG -share/doc/libnet/CHANGELOG-NEWFUNCTIONS -share/doc/libnet/COPYING -share/doc/libnet/README -share/doc/libnet/TODO-1.0 -share/doc/libnet/TODO-1.1 -share/doc/libnet/examples/libnet-example-1.c -share/doc/libnet/examples/libnet-example-2.c -share/doc/libnet/examples/libnet-example-3.c -share/doc/libnet/examples/libnet-example-4.c -share/doc/libnet/ancillary/README.asn.1 -share/doc/libnet/ancillary/README.bpf -share/doc/libnet/ancillary/README.legacy-applications -share/doc/libnet/ancillary/README.libnet-config -share/doc/libnet/ancillary/README.linux -share/doc/libnet/ancillary/README.rawsockets -@dirrm share/doc/libnet/ancillary -@dirrm share/doc/libnet/examples -@dirrm share/doc/libnet -@dirrm include/libnet diff --git a/net/licq-devel/Makefile b/net/licq-devel/Makefile deleted file mode 100644 index 33173d5ff041..000000000000 --- a/net/licq-devel/Makefile +++ /dev/null @@ -1,35 +0,0 @@ -# New ports collection makefile for: licq -# Date created: 2 July 1998 -# Whom: Brian Feldman & Matt Heckaman -# -# $FreeBSD$ -# - -PORTNAME= base -PORTVERSION= ${LICQ_VER} -CATEGORIES= net -.if defined(WITH_SOCKS) -PKGNAMESUFFIX= -socks -.endif - -MAINTAINER= green@FreeBSD.org - -.if defined(WITH_SOCKS) -BUILD_DEPENDS= ${LOCALBASE}/lib/libsocks5.a:${PORTSDIR}/net/socks5 -.endif - -USE_OPENSSL= yes -WRKSRC= ${WRKDIR}/${DISTNAME} -.if defined(WITH_SOCKS) -CONFIGURE_ARGS+=--enable-socks5 -.endif - -post-patch: - @${PERL5} -pi -e 's|<wait.h>|<sys/wait.h>|g' \ - ${WRKSRC}/src/sighandler.c - -post-install: - @${CAT} ${PKGMESSAGE} - -.include "${.CURDIR}/Makefile.inc" -.include <bsd.port.mk> diff --git a/net/licq-devel/Makefile.inc b/net/licq-devel/Makefile.inc deleted file mode 100644 index 5cea43e6b04c..000000000000 --- a/net/licq-devel/Makefile.inc +++ /dev/null @@ -1,28 +0,0 @@ -# Common stuff for Licq-based ports -# $FreeBSD$ - -PKGNAMEPREFIX= licq- -LICQ_VER= 1.0.3 -QT_LICQ_VER= ${LICQ_VER} -RMS_LICQ_VER= 0.22 -CONSOLE_LICQ_VER= 1.0.2 -AUTO_REPLY_LICQ_VER= 1.0.1 -FORWARDER_LICQ_VER= 1.0.1 -.if ${PORTNAME} != "base" -RUN_DEPENDS+= licq:${PORTSDIR}/net/licq -.endif -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \ - ftp://ftp.wibble.net/pub/licq/srcs/ \ - ftp://licq.darkorb.net/srcs/ \ - ftp://ftp.fanfic.org/pub/licq/srcs/ \ - ftp://ftp.inter-i.uni-mainz.de/pub/licq/srcs/ -MASTER_SITE_SUBDIR= licq -DISTNAME= ${PKGNAMEPREFIX}${LICQ_VER} -DISTFILES= ${DISTNAME}.tar.gz -GNU_CONFIGURE= yes -MD5_FILE= ${PORTSDIR}/net/licq/distinfo -# USE_LIBTOOL doesn't work for these ports -#USE_LIBTOOL= yes -USE_GMAKE= yes -USE_NEWGCC= yes -WRKSRC?= ${WRKDIR}/${DISTNAME}/plugins/${PORTNAME}-${PORTVERSION} diff --git a/net/licq-devel/distinfo b/net/licq-devel/distinfo deleted file mode 100644 index 9e8c439fb449..000000000000 --- a/net/licq-devel/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (licq-1.0.3.tar.gz) = 894d7c27c0799c8b31dda134fe14b257 diff --git a/net/licq-devel/files/patch-ad b/net/licq-devel/files/patch-ad deleted file mode 100644 index 7bf734c85ce6..000000000000 --- a/net/licq-devel/files/patch-ad +++ /dev/null @@ -1,48 +0,0 @@ ---- src/socket.cpp.orig Tue Jul 4 20:51:50 2000 -+++ src/socket.cpp Mon Jul 24 03:32:56 2000 -@@ -12,6 +12,7 @@ - #include <netdb.h> - #include <fcntl.h> - #include <unistd.h> -+#include <osreldate.h> - - #ifndef MSG_DONTWAIT - #define MSG_DONTWAIT 0 -@@ -288,7 +289,12 @@ - bool INetSocket::SetLocalAddress(bool bIp) - { - // Setup the local structure -+ -+#if __FreeBSD_version < 400013 -+ int sizeofSockaddr = sizeof(struct sockaddr_in); -+#else - socklen_t sizeofSockaddr = sizeof(struct sockaddr_in); -+#endif - if (getsockname(m_nDescriptor, (struct sockaddr *)&m_sLocalAddr, &sizeofSockaddr) < 0) - { - m_nErrorType = SOCK_ERROR_errno; -@@ -372,7 +378,11 @@ - m_sRemoteAddr.sin_family = AF_INET; - - // if connect fails then call CloseConnection to clean up before returning -+#if __FreeBSD_version < 400013 -+ int sizeofSockaddr = sizeof(struct sockaddr); -+#else - socklen_t sizeofSockaddr = sizeof(struct sockaddr); -+#endif - if (connect(m_nDescriptor, (struct sockaddr *)&m_sRemoteAddr, sizeofSockaddr) < 0) - { - // errno has been set -@@ -504,7 +514,11 @@ - *---------------------------------------------------------------------------*/ - void TCPSocket::RecvConnection(TCPSocket &newSocket) - { -- socklen_t sizeofSockaddr = sizeof(struct sockaddr_in); -+#if __FreeBSD_version < 400013 -+ int sizeofSockaddr = sizeof(struct sockaddr_in); -+#else -+ socklen_t sizeofSockaddr = sizeof(struct sockaddr_in); -+#endif - newSocket.m_nDescriptor = accept(m_nDescriptor, (struct sockaddr *)&newSocket.m_sRemoteAddr, &sizeofSockaddr); - newSocket.SetLocalAddress(); - } diff --git a/net/licq-devel/pkg-comment b/net/licq-devel/pkg-comment deleted file mode 100644 index 772acc2f8c54..000000000000 --- a/net/licq-devel/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -A popular ICQ-compatible plugin-based program diff --git a/net/licq-devel/pkg-descr b/net/licq-devel/pkg-descr deleted file mode 100644 index d0fcb6465b59..000000000000 --- a/net/licq-devel/pkg-descr +++ /dev/null @@ -1,5 +0,0 @@ -This is an unofficial ICQ clone, written in C++. -It is in no way endorsed by Mirabilis, and now is the most full-featured -ICQ-compatible program with the exception of Java ICQ. - -WWW: http://www.licq.org/ diff --git a/net/licq-devel/pkg-message b/net/licq-devel/pkg-message deleted file mode 100644 index 953f4e101753..000000000000 --- a/net/licq-devel/pkg-message +++ /dev/null @@ -1,3 +0,0 @@ -In order to actually use licq, at least one plugin port needs to be installed. -Currently they include: licq-qt-gui, gtk+licq, licq-console, and several others. -Check the net category to find them. diff --git a/net/licq-devel/pkg-plist b/net/licq-devel/pkg-plist deleted file mode 100644 index ae5ddc74ce01..000000000000 --- a/net/licq-devel/pkg-plist +++ /dev/null @@ -1,107 +0,0 @@ -bin/licq -bin/viewurl-lynx.sh -bin/viewurl-ncftp.sh -bin/viewurl-netscape.sh -bin/viewurl-w3m.sh -include/licq/licq_buffer.h -include/licq/licq_chat.h -include/licq/licq_color.h -include/licq/licq_constants.h -include/licq/licq_countrycodes.h -include/licq/licq_events.h -include/licq/licq_file.h -include/licq/licq_filetransfer.h -include/licq/licq_history.h -include/licq/licq_icq.h -include/licq/licq_icqd.h -include/licq/licq_languagecodes.h -include/licq/licq_log.h -include/licq/licq_message.h -include/licq/licq_onevent.h -include/licq/licq_packets.h -include/licq/licq_plugin.h -include/licq/licq_plugind.h -include/licq/licq_remoteserver.h -include/licq/licq_sar.h -include/licq/licq_sighandler.h -include/licq/licq_socket.h -include/licq/licq_translate.h -include/licq/licq_user.h -include/licq/licq_utility.h -include/licq/pthread_rdwr.h -share/licq/sounds/Monty-Python.wav -share/licq/sounds/fun/Auth.wav -share/licq/sounds/fun/Chat.wav -share/licq/sounds/fun/Contact.wav -share/licq/sounds/fun/File.wav -share/licq/sounds/fun/Message.wav -share/licq/sounds/fun/Online.wav -share/licq/sounds/fun/System.wav -share/licq/sounds/fun/URL.wav -share/licq/sounds/icq/Auth.wav -share/licq/sounds/icq/Chat.wav -share/licq/sounds/icq/Contact.wav -share/licq/sounds/icq/File.wav -share/licq/sounds/icq/Message.wav -share/licq/sounds/icq/Online.wav -share/licq/sounds/icq/System.wav -share/licq/sounds/icq/URL.wav -share/licq/translations/ASCII -share/licq/translations/CP437 -share/licq/translations/CP850 -share/licq/translations/DANISH -share/licq/translations/DEC_MCS -share/licq/translations/DG_MCS -share/licq/translations/DUTCH -share/licq/translations/FINNISH -share/licq/translations/FRENCH -share/licq/translations/FRENCH_CANADIAN -share/licq/translations/GERMAN -share/licq/translations/HP_MCS -share/licq/translations/IRV -share/licq/translations/ITALIAN -share/licq/translations/JIS -share/licq/translations/LATIN_2 -share/licq/translations/MACINTOSH -share/licq/translations/NEXT -share/licq/translations/NORWEGIAN_1 -share/licq/translations/NORWEGIAN_2 -share/licq/translations/POLISH -share/licq/translations/POLISH_NOPL -share/licq/translations/PORTUGUESE -share/licq/translations/PORTUGUESE_COM -share/licq/translations/RUSSIAN -share/licq/translations/RUSSIAN_ALT -share/licq/translations/RUSSIAN_WIN -share/licq/translations/SPANISH -share/licq/translations/SWEDISH -share/licq/translations/SWEDISH_NAMES -share/licq/translations/SWEDISH_NAMES_COM -share/licq/translations/SWISS -share/licq/translations/UNITED_KINGDOM -share/licq/translations/UNITED_KINGDOM_COM -share/licq/utilities/BackOrifice.utility -share/licq/utilities/finger.utility -share/licq/utilities/ftp.utility -share/licq/utilities/gftp.utility -share/licq/utilities/hostname.utility -share/licq/utilities/kmail.utility -share/licq/utilities/mutt.utility -share/licq/utilities/netscape.utility -share/licq/utilities/nmap.utility -share/licq/utilities/pine.utility -share/licq/utilities/ping.utility -share/licq/utilities/queso.utility -share/licq/utilities/speakfreely.utility -share/licq/utilities/talk.utility -share/licq/utilities/traceroute.utility -share/licq/utilities/vnc.utility -share/licq/utilities/xtraceroute.utility -@dirrm include/licq -@dirrm lib/licq -@dirrm share/licq/sounds/fun -@dirrm share/licq/sounds/icq -@dirrm share/licq/sounds -@dirrm share/licq/translations -@dirrm share/licq/utilities -@dirrm share/licq diff --git a/net/linux-agsatellite/Makefile b/net/linux-agsatellite/Makefile deleted file mode 100644 index c69d336ac8ac..000000000000 --- a/net/linux-agsatellite/Makefile +++ /dev/null @@ -1,46 +0,0 @@ -# New ports collection makefile for: audiogalaxy satellite -# Date created: Thu Aug 30 15:59:04 GMT 2001 -# Whom: Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= agsatellite -PORTVERSION= 0.520 -CATEGORIES= audio net -MASTER_SITES= http://www.audiogalaxy.com/downloads/ -DISTNAME= AGSatellite${PORTVERSION:S/.//}-glibc21 - -MAINTAINER= lioux@FreeBSD.org - -WRKSRC= ${WRKDIR}/${DISTNAME:C/-.*//} - -USE_LINUX= yes -NO_BUILD= yes -STRIP= -RESTRICTED= no response from developer on licensing issues - -DOCS= german_readme.txt license.txt readme.txt - -BRANDELF= /usr/bin/brandelf - -post-patch: - @${PERL} -pi -e "s|
||" ${WRKSRC}/*.txt - @${SED} -e "s|%%PREFIX%%|${PREFIX}|" ${FILESDIR}/wrapper.sh > \ - ${WRKDIR}/wrapper.sh - -pre-install: - @${BRANDELF} -t Linux ${WRKSRC}/AGSatellite - -do-install: - @${INSTALL_PROGRAM} ${WRKSRC}/AGSatellite ${PREFIX}/bin/AGSatellite-real - @${INSTALL_SCRIPT} ${WRKDIR}/wrapper.sh ${PREFIX}/bin/AGSatellite -.ifndef(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} -. for doc in ${DOCS} - @${INSTALL_DATA} ${WRKSRC}/${doc} ${DOCSDIR} -. endfor -.endif - @${CAT} ${PKGMESSAGE} - -.include <bsd.port.mk> diff --git a/net/linux-agsatellite/distinfo b/net/linux-agsatellite/distinfo deleted file mode 100644 index 99a75c74089c..000000000000 --- a/net/linux-agsatellite/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (AGSatellite0520-glibc21.tar.gz) = 3876f43497acde0474809a752a076cbf diff --git a/net/linux-agsatellite/files/wrapper.sh b/net/linux-agsatellite/files/wrapper.sh deleted file mode 100644 index e2daaee83078..000000000000 --- a/net/linux-agsatellite/files/wrapper.sh +++ /dev/null @@ -1,28 +0,0 @@ -#!/bin/sh - -PREFIX="%%PREFIX%%" -PROGRAM="${0}" - -if [ ${#} -gt 1 ] -then - shift -fi - -if [ ! -d ${HOME}/.agsatellite ] -then - mkdir -p ${HOME}/.agsatellite -fi - -if [ ! -h ${HOME}/.agsatellite/${PROGRAM##*/} ] -then - ln -sf ${PREFIX}/bin/${PROGRAM##*/}-real ${HOME}/.agsatellite/${PROGRAM##*/} -fi - -echo " ${*} " | grep " \-createdironly " || -{ - cd ${HOME}/.agsatellite && - echo Running Audio Galaxy Satellite under ${HOME}/.agsatellite && - echo Create both account.txt and shares.txt files under ${HOME}/.agsatellite && - exec ./${PROGRAM##*/} ${*} || - echo PROBLEM. Cannot create directory ${HOME}/.agsatellite, make sure you have the proper permissions to create itnd try again -} diff --git a/net/linux-agsatellite/pkg-comment b/net/linux-agsatellite/pkg-comment deleted file mode 100644 index 5505062aa192..000000000000 --- a/net/linux-agsatellite/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Client that allows you to share your music on Audiogalaxy(TM) diff --git a/net/linux-agsatellite/pkg-descr b/net/linux-agsatellite/pkg-descr deleted file mode 100644 index 7749f35e202f..000000000000 --- a/net/linux-agsatellite/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -The Audiogalaxy Satellite is a small and simple program that allows -you to share your music with friends and other users on Audiogalaxy. - -WWW: http://www.audiogalaxy.com/ diff --git a/net/linux-agsatellite/pkg-message b/net/linux-agsatellite/pkg-message deleted file mode 100644 index 855c074f8ad3..000000000000 --- a/net/linux-agsatellite/pkg-message +++ /dev/null @@ -1,20 +0,0 @@ -[obtained from developers site, edited a bit] -* Accounts are now created FIRST on the website. To create a new -account and use the software go to http://www.audiogalaxy.com/betatest -and signup (login). Then use the SAME login information you used -on the web when the Satellite asks you for it. - -* Feel free to edit the file called shares.txt. Each line in the -text file should specify a directory where your files are. The -first directory is where the files you request are downloaded to. -FreeBSD users must create account.txt and shares.txt in their -favorite text editor before the Satellite will run. The format of -account.txt is simply email that you used to create an account from -the web site on the first line. The second line will be your password - -> account.txt -first_line_with_Email_you_have_subscribed -second_line_with_Password_you_have_subscribed - -* Create both account.txt and shares.txt files under the directory -.agsatellite in your HOME directory diff --git a/net/linux-agsatellite/pkg-plist b/net/linux-agsatellite/pkg-plist deleted file mode 100644 index 1fec4aea1310..000000000000 --- a/net/linux-agsatellite/pkg-plist +++ /dev/null @@ -1,6 +0,0 @@ -bin/AGSatellite -bin/AGSatellite-real -%%PORTDOCS%%share/doc/agsatellite/german_readme.txt -%%PORTDOCS%%share/doc/agsatellite/license.txt -%%PORTDOCS%%share/doc/agsatellite/readme.txt -%%PORTDOCS%%@dirrm share/doc/agsatellite diff --git a/net/mpich2/Makefile b/net/mpich2/Makefile deleted file mode 100644 index 02d7bb806b67..000000000000 --- a/net/mpich2/Makefile +++ /dev/null @@ -1,163 +0,0 @@ -# New ports collection makefile for: mpich (portable mpi standard imp.) -# Date created: 2 May 1998 -# Whom: dbader@eece.unm.edu -# -# $FreeBSD$ -# - -PORTNAME= mpich -PORTVERSION= 1.2.2 -CATEGORIES= net -MASTER_SITES= ftp://ftp.mcs.anl.gov/pub/mpi/ -DIST_SUBDIR= mpich - -PATCH_SITES= ftp://ftp.mcs.anl.gov/pub/mpi/patch/${PORTVERSION}/ -PATCHFILES= 6187 - -MAINTAINER= dbader@eece.unm.edu - -RUN_DEPENDS= wish8.0:${PORTSDIR}/x11-toolkits/tk80 -BUILD_DEPENDS= wish8.0:${PORTSDIR}/x11-toolkits/tk80 - -HAS_CONFIGURE= yes -CONFIGURE_ARGS= -cflags="${CFLAGS}" -prefix=${PREFIX}/mpich \ - -mpe_opts="--with-wishloc=wish8.0" - -.include <bsd.port.pre.mk> - -# To disable ssh client support, build with WITHOUT_SSH set. -# Use ssh instead of rsh -.if !defined(WITHOUT_SSH) -.if ${OSVERSION} >= 400016 && exists(/usr/bin/ssh) -CONFIGURE_ARGS+= -rsh="/usr/bin/ssh" -.elif defined(WITH_SSH) || exists(${LOCALBASE}/bin/ssh) -RUN_DEPENDS+= ssh:${PORTSDIR}/security/ssh -CONFIGURE_ARGS+= -rsh="${LOCALBASE}/bin/ssh" -.endif -.endif - -ALL_TARGET= -MANPREFIX= ${PREFIX}/mpich - -MAN1= MPI.1 cleanipcs.1 mpiCC.1 mpicc.1 mpif77.1 mpif90.1 mpiman.1 \ - mpireconfig.1 mpirun.1 Jumpshots.1 chp4_servs.1 tstmachines.1 -MAN3= MPI_File_get_position.3 MPI_File_preallocate.3 \ - MPI_2DOUBLE_PRECISION.3 MPI_2INT.3 MPI_2INTEGER.3 MPI_2REAL.3 \ - MPI_ANY_SOURCE.3 MPI_ANY_TAG.3 MPI_Abort.3 MPI_Address.3 MPI_Aint.3 \ - MPI_Allgatherv.3 MPI_Allreduce.3 MPI_Alltoall.3 MPI_Alltoallv.3 \ - MPI_ERR_REQUEST.3 MPIO_Wait.3 MPI_Attr_get.3 MPI_Attr_put.3 MPI_BAND.3 \ - MPI_BOR.3 MPI_BOTTOM.3 MPI_BSEND_OVERHEAD.3 MPI_BXOR.3 MPI_BYTE.3 \ - MPI_Barrier.3 MPI_Bcast.3 MPI_Bsend_init.3 MPI_Buffer_attach.3 \ - MPI_Buffer_detach.3 MPI_CART.3 MPI_CHAR.3 MPI_COMM_SELF.3 \ - MPI_COMM_WORLD.3 MPI_COMPLEX.3 MPI_CONGRUENT.3 MPI_Cancel.3 \ - MPI_Cart_coords.3 MPI_Cart_create.3 MPI_Cart_get.3 MPI_Cart_map.3 \ - MPI_Cart_rank.3 MPI_Cart_shift.3 MPI_Cart_sub.3 MPI_Comm_compare.3 \ - MPI_Comm_create.3 MPI_Comm_dup.3 MPI_Comm_free.3 MPI_Comm_group.3 \ - MPI_Comm_get_name.3 MPI_Comm_rank.3 MPI_Comm_remote_size.3 \ - MPI_Comm_size.3 MPI_Comm_split.3 MPI_Comm_set_name.3 \ - MPI_Comm_test_inter.3 MPI_Copy_function.3 MPI_DATATYPE_NULL.3 \ - MPI_DOUBLE.3 MPI_DOUBLE_COMPLEX.3 MPI_DOUBLE_INT.3 \ - MPI_DOUBLE_PRECISION.3 MPI_DUP_FN.3 MPI_Delete_function.3 \ - MPI_Dims_create.3 MPI_ERROR.3 MPI_ERRORS_ARE_FATAL.3 \ - MPI_ERRORS_RETURN.3 MPI_ERR_ARG.3 MPI_IO.3 MPI_ERR_BUFFER.3 \ - MPI_ERR_BUFFER_EXISTS.3 MPI_ERR_COMM.3 MPI_ERR_COMM_INTER.3 \ - MPI_ERR_COMM_INTRA.3 MPI_ERR_COMM_NULL.3 MPI_ERR_COUNT.3 \ - MPI_ERR_DIMS.3 MPI_ERR_ERRORCODE.3 MPI_ERR_GROUP.3 MPI_ERR_INIT.3 \ - MPI_ERR_INTERN.3 MPI_ERR_IN_STATUS.3 MPI_ERR_LASTCODE.3 \ - MPI_ERR_LIMIT.3 MPI_ERR_NOMATCH.3 MPI_ERR_OP.3 MPI_ERR_NULL.3 \ - MPI_ERR_PERM_KEY.3 MPI_ERR_PERM_OP.3 MPI_ERR_PERM_TYPE.3 \ - MPI_ERR_PRE_INIT.3 MPI_ERR_RANK.3 MPI_ERR_ROOT.3 MPI_ERR_TAG.3 \ - MPI_ERR_TOPOLOGY.3 MPI_ERR_TRUNCATE.3 MPI_ERR_TYPE.3 MPI_ERR_UNKNOWN.3 \ - MPI_Errhandler_free.3 MPI_Errhandler_get.3 MPI_Errhandler_set.3 \ - MPI_FLOAT.3 MPI_GRAPH.3 MPI_Error_class.3 MPI_FLOAT_INT.3 \ - MPI_Finalize.3 MPI_Gather.3 MPI_File_delete.3 MPI_File_f2c.3 \ - MPI_File_get_amode.3 MPI_File_get_atomicity.3 \ - MPI_File_get_byte_offset.3 MPI_File_get_group.3 \ - MPI_File_set_errhandler.3 MPI_File_get_info.3 MPI_File_iread.3 \ - MPI_File_set_size.3 MPI_File_get_size.3 MPI_File_read.3 \ - MPI_File_get_view.3 MPI_File_iread_at.3 MPI_File_iread_shared.3 \ - MPI_File_iwrite.3 MPI_File_iwrite_at.3 MPI_File_iwrite_shared.3 \ - MPI_File_open.3 MPI_File_read_all.3 MPI_File_read_at_all_begin.3 \ - MPI_File_read_all_begin.3 MPI_File_read_all_end.3 MPI_File_read_at.3 \ - MPI_File_read_at_all.3 MPI_File_read_ordered.3 MPI_Info_get_nthkey.3 \ - MPI_File_read_ordered_begin.3 MPI_File_read_ordered_end.3 \ - MPI_File_read_shared.3 MPI_File_seek.3 MPI_File_set_atomicity.3 \ - MPI_File_set_info.3 MPI_File_write.3 MPI_File_sync.3 \ - MPI_File_write_all.3 MPI_File_write_all_begin.3 \ - MPI_File_write_all_end.3 MPI_HOST.3 MPI_File_write_at.3 \ - MPI_File_write_at_all.3 MPI_File_write_at_all_end.3 \ - MPI_Type_create_subarray.3 MPI_File_write_ordered.3 \ - MPI_File_write_ordered_end.3 MPI_File_write_shared.3 MPI_Info_c2f.3 \ - MPI_Info_create.3 MPI_GROUP_EMPTY.3 MPI_GROUP_NULL.3 MPI_Gatherv.3 \ - MPI_Get_count.3 MPI_Get_elements.3 MPI_Get_processor_name.3 \ - MPI_Get_version.3 MPI_Graph_create.3 MPI_Graph_get.3 MPI_Graph_map.3 \ - MPI_Graph_neighbors.3 MPI_Graphdims_get.3 MPI_Group_compare.3 \ - MPI_Group_difference.3 MPI_Group_excl.3 MPI_Group_free.3 \ - MPI_Group_incl.3 MPI_Group_intersection.3 MPI_Group_range_excl.3 \ - MPI_Group_range_incl.3 MPI_Group_rank.3 MPI_Group_size.3 \ - MPI_Group_translate_ranks.3 MPI_Group_union.3 MPI_Handler_function.3 \ - MPI_IDENT.3 MPI_INT.3 MPI_INTEGER.3 MPI_INTEGER1.3 MPI_INTEGER2.3 \ - MPI_INTEGER4.3 MPI_Ibsend.3 MPI_Info_delete.3 MPI_Info_dup.3 \ - MPIO_Request_c2f.3 MPI_Info_f2c.3 MPI_Info_free.3 MPI_LB.3 \ - MPI_Info_get_nkeys.3 MPI_Info_get_valuelen.3 MPI_File_get_errhandler.3 \ - MPI_Info_set.3 MPI_Init.3 MPI_Initialized.3 MPI_Int2handle.3 \ - MPI_Intercomm_create.3 MPI_Intercomm_merge.3 MPI_Iprobe.3 MPI_Irecv.3 \ - MPI_Irsend.3 MPI_Isend.3 MPI_Issend.3 MPI_KEYVAL_INVALID.3 \ - MPI_Keyval_create.3 MPI_Keyval_free.3 MPI_LAND.3 MPI_LOGICAL.3 \ - MPI_LONG.3 MPI_LONG_DOUBLE.3 MPI_LONG_INT.3 MPI_LONG_LONG_INT.3 \ - MPI_LOR.3 MPI_LXOR.3 MPI_MAX.3 MPI_MAXLOC.3 MPI_MAX_ERROR_STRING.3 \ - MPI_MAX_PROCESSOR_NAME.3 MPI_MIN.3 MPI_MINLOC.3 MPI_NULL_COPY_FN.3 \ - MPI_NULL_DELETE_FN.3 MPI_OP_NULL.3 MPI_Op_create.3 MPI_PACKED.3 \ - MPI_PROC_NULL.3 MPI_PROD.3 MPI_Pack.3 MPI_Pack_size.3 MPI_Pcontrol.3 \ - MPI_Probe.3 MPI_REAL.3 MPI_REAL8.3 MPI_REQUEST_NULL.3 MPI_Recv.3 \ - MPI_Recv_init.3 MPI_Reduce.3 MPI_Rsend.3 MPI_Request_c2f.3 \ - MPI_Rsend_init.3 MPI_SHORT.3 MPI_SHORT_INT.3 MPI_SIMILAR.3 \ - MPI_SOURCE.3 MPI_SUCCESS.3 MPI_SUM.3 MPI_Scan.3 MPI_Scatter.3 \ - MPI_Scatterv.3 MPI_Send.3 MPI_Send_init.3 MPI_Sendrecv.3 \ - MPI_Sendrecv_replace.3 MPI_Ssend.3 MPI_Ssend_init.3 MPI_Start.3 \ - MPI_Status_c2f.3 MPI_Status_set_cancelled.3 MPI_Status_set_elements.3 \ - MPI_TAG.3 MPI_TAG_UB.3 MPI_Test.3 MPI_Test_cancelled.3 MPI_Testall.3 \ - MPI_Testany.3 MPI_Testsome.3 MPI_Topo_test.3 MPI_Type_contiguous.3 \ - MPI_Type_create_indexed_block.3 MPI_Init_thread.3 MPI_UB.3 \ - MPI_Unpack.3 MPI_Type_free.3 MPI_Type_get_envelope.3 \ - MPI_Type_hindexed.3 MPI_Type_hvector.3 MPI_Type_lb.3 MPI_Type_size.3 \ - MPI_Type_struct.3 MPI_Type_ub.3 MPI_Type_vector.3 MPI_UNDEFINED.3 \ - MPI_UNDEFINED_RANK.3 MPI_UNEQUAL.3 MPI_UNSIGNED.3 MPI_UNSIGNED_CHAR.3 \ - MPI_UNSIGNED_LONG.3 MPI_UNSIGNED_SHORT.3 MPI_User_function.3 \ - MPI_WTIME_IS_GLOBAL.3 MPI_Wait.3 MPI_Waitall.3 MPI_Waitany.3 \ - MPI_Waitsome.3 MPI_Wtick.3 MPI_Wtime.3 MPIO_Test.3 Constants.3 \ - MPI_2COMPLEX.3 MPI_2DOUBLE_COMPLEX.3 MPI_Allgather.3 MPI_Attr_delete.3 \ - MPI_Bsend.3 MPI_COMM_NULL.3 MPI_Cartdim_get.3 MPI_Comm_remote_group.3 \ - MPI_ERRHANDLER_NULL.3 MPI_ERR_BAD_ARGS.3 MPI_ERR_EXHAUSTED.3 \ - MPI_ERR_OTHER.3 MPI_Errhandler_create.3 MPI_Error_string.3 \ - MPI_Finalized.3 MPI_Graph_neighbors_count.3 MPI_Info_get.3 \ - MPI_Type_create_darray.3 MPI_LONG_DOUBLE_INT.3 MPI_Op_free.3 \ - MPI_REAL4.3 MPI_Reduce_scatter.3 MPI_Request_free.3 MPI_Startall.3 \ - MPI_Type_commit.3 MPI_Type_extent.3 MPI_Type_get_contents.3 \ - MPI_Type_indexed.3 MPI_File_c2f.3 MPI_File_close.3 \ - MPI_File_get_position_shared.3 MPI_File_get_type_extent.3 \ - MPI_File_read_at_all_end.3 MPI_File_seek_shared.3 MPI_File_set_view.3 \ - MPI_File_write_ordered_begin.3 MPIO_Request_f2c.3 \ - MPI_File_write_at_all_begin.3 -MAN4= CLOG_Init.4 CLOG_commtype.4 CLOG_cput.4 CLOG_csync.4 \ - CLOG_get_new_event.4 CLOG_get_new_state.4 CLOG_init_buffers.4 \ - CLOG_mergelogs.4 CLOG_mergend.4 CLOG_msgtype.4 CLOG_procbuf.4 MPE.4 \ - CLOG_newbuff.4 CLOG_reclen.4 CLOG_reinit_buff.4 CLOG_treesetup.4 \ - MPE_Add_RGB_color.4 MPE_CaptureFile.4 MPE_Close_graphics.4 \ - MPE_Comm_global_rank.4 MPE_Counter_create.4 MPE_Counter_free.4 \ - MPE_Counter_nxtval.4 MPE_Decomp1d.4 MPE_Describe_state.4 \ - MPE_Draw_circle.4 MPE_Draw_line.4 MPE_Draw_logic.4 MPE_Draw_point.4 \ - MPE_Draw_points.4 MPE_Draw_string.4 MPE_Fill_circle.4 \ - MPE_Fill_rectangle.4 MPE_Finish_log.4 MPE_GetTags.4 \ - MPE_IO_Stdout_to_file.4 MPE_Iget_mouse_press.4 MPE_Init_log.4 \ - MPE_Initialized_logging.4 MPE_Line_thickness.4 MPE_Log_event.4 \ - MPE_Log_get_event_number.4 MPE_Log_receive.4 MPE_Log_send.4 \ - MPE_Num_colors.4 MPE_Open_graphics.4 MPE_Print_datatype_pack_action.4 \ - MPE_Seq_begin.4 MPE_Update.4 MPE_ReturnTags.4 MPE_Seq_end.4 \ - MPE_Start_log.4 MPE_Stop_log.4 MPE_TagsEnd.4 CLOG_Finalize.4 \ - CLOG_Output.4 CLOG_nodebuffer2disk.4 CLOG_rectype.4 \ - MPE_Describe_event.4 MPE_Get_mouse_press.4 MPE_Make_color_array.4 \ - MPE_Print_datatype_unpack_action.4 -INSTALL_TARGET= install - -.include <bsd.port.post.mk> diff --git a/net/mpich2/distinfo b/net/mpich2/distinfo deleted file mode 100644 index b0ed6e6b8ea2..000000000000 --- a/net/mpich2/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (mpich/mpich-1.2.2.tar.gz) = 9e9062a016f14af1560f55150761f0a0 -MD5 (mpich/6187) = 8a2f5fc104b3946ca713a08ce5d587b8 diff --git a/net/mpich2/files/patch-ab b/net/mpich2/files/patch-ab deleted file mode 100644 index 67d06a0ffd25..000000000000 --- a/net/mpich2/files/patch-ab +++ /dev/null @@ -1,13 +0,0 @@ ---- mpid/server/configure.orig Tue Sep 12 07:57:09 2000 -+++ mpid/server/configure Tue Sep 12 08:01:11 2000 -@@ -1589,8 +1589,8 @@ - ac_find_inc_dir=$dir - break - fi -- if test -r $dir/include/ssl.h ; then -- ac_find_inc_dir=$dir/include -+ if test -r $dir/include/openssl/ssl.h ; then -+ ac_find_inc_dir=$dir/include/openssl - break - fi - done diff --git a/net/mpich2/files/patch-mpid::ch2::chtick.c b/net/mpich2/files/patch-mpid::ch2::chtick.c deleted file mode 100644 index a12aee39f11f..000000000000 --- a/net/mpich2/files/patch-mpid::ch2::chtick.c +++ /dev/null @@ -1,10 +0,0 @@ ---- mpid/ch2/chtick.c-orig Wed Apr 4 09:16:05 2001 -+++ mpid/ch2/chtick.c Sat Aug 25 08:49:10 2001 -@@ -14,6 +14,7 @@ - !defined(MPID_CH_Wtime) - #define USING_POSIX_CLOCK - #include <time.h> -+#include <sys/time.h> - #endif - /* - This returns a value that is correct but not the best value that diff --git a/net/mpich2/pkg-comment b/net/mpich2/pkg-comment deleted file mode 100644 index efdcf10dd90c..000000000000 --- a/net/mpich2/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Message Passing Interface (MPI) Library diff --git a/net/mpich2/pkg-descr b/net/mpich2/pkg-descr deleted file mode 100644 index fac61bdd06fb..000000000000 --- a/net/mpich2/pkg-descr +++ /dev/null @@ -1,8 +0,0 @@ -MPICH is a portable implementation of the MPI (Message Passing -Interface) standard. The goal of MPI, simply stated, is to develop a -widely used standard for writing message-passing programs. As such the -interface should establish a practical, portable, efficient, and -flexible standard for message passing. Included are a full set of -documents and parallel programming examples. - -WWW: http://www.mcs.anl.gov/mpi/mpich/ diff --git a/net/mpich2/pkg-plist b/net/mpich2/pkg-plist deleted file mode 100644 index 8f9929976123..000000000000 --- a/net/mpich2/pkg-plist +++ /dev/null @@ -1,480 +0,0 @@ -mpich/bin/clog2alog -mpich/bin/clog2slog -mpich/bin/clog_print -mpich/bin/logviewer -mpich/bin/mpereconfig -mpich/bin/mpereconfig.dat -mpich/bin/mpereconfig.in -mpich/bin/mpiCC -mpich/bin/mpicc -mpich/bin/mpif77 -mpich/bin/mpif90 -mpich/bin/mpiman -mpich/bin/mpireconfig -mpich/bin/mpireconfig.dat -mpich/bin/mpirun -mpich/bin/mpirun.args -mpich/bin/mpirun.ch_p4 -mpich/bin/mpirun.ch_p4.args -mpich/bin/mpirun.p4shmem -mpich/bin/mpirun.pg -mpich/bin/mpirun.rand -mpich/bin/mpirun_dbg.dbx -mpich/bin/mpirun_dbg.ddd -mpich/bin/mpirun_dbg.gdb -mpich/bin/mpirun_dbg.totalview -mpich/bin/mpirun_dbg.xxgdb -mpich/bin/serv_p4 -mpich/bin/slog_print -mpich/bin/tarch -mpich/bin/tdevice -mpich/doc/guide.ps.gz -mpich/doc/install.ps.gz -mpich/etc/mpichconf.h.dat -mpich/etc/mpichlib.conf -mpich/etc/mpif77.conf -mpich/etc/mpif90.conf -mpich/examples/Makefile -mpich/examples/Makefile.in -mpich/examples/README -mpich/examples/cpi.c -mpich/examples/cpilog.c -mpich/examples/cpip.c -mpich/examples/hello++.cc -mpich/examples/mpirun -mpich/examples/pi3.f -mpich/examples/pi3f90.f90 -mpich/examples/pi3p.f -mpich/examples/simpleio.c -mpich/include/basex11.h -mpich/include/mpe.h -mpich/include/mpe_graphics.h -mpich/include/mpe_log.h -mpich/include/mpeexten.h -mpich/include/mpef.h -mpich/include/mpetools.h -mpich/include/mpi.h -mpich/include/mpi2c++/comm.h -mpich/include/mpi2c++/comm_inln.h -mpich/include/mpi2c++/constants.h -mpich/include/mpi2c++/datatype.h -mpich/include/mpi2c++/datatype_inln.h -mpich/include/mpi2c++/errhandler.h -mpich/include/mpi2c++/errhandler_inln.h -mpich/include/mpi2c++/exception.h -mpich/include/mpi2c++/functions.h -mpich/include/mpi2c++/functions_inln.h -mpich/include/mpi2c++/group.h -mpich/include/mpi2c++/group_inln.h -mpich/include/mpi2c++/intercomm.h -mpich/include/mpi2c++/intercomm_inln.h -mpich/include/mpi2c++/intracomm.h -mpich/include/mpi2c++/intracomm_inln.h -mpich/include/mpi2c++/mpi++.h -mpich/include/mpi2c++/mpi2c++_config.h -mpich/include/mpi2c++/mpi2c++_list.h -mpich/include/mpi2c++/mpi2c++_map.h -mpich/include/mpi2c++/op.h -mpich/include/mpi2c++/op_inln.h -mpich/include/mpi2c++/pcomm.h -mpich/include/mpi2c++/pdatatype.h -mpich/include/mpi2c++/perrhandler.h -mpich/include/mpi2c++/pexception.h -mpich/include/mpi2c++/pgroup.h -mpich/include/mpi2c++/pgroup_inln.h -mpich/include/mpi2c++/pintercomm.h -mpich/include/mpi2c++/pintracomm.h -mpich/include/mpi2c++/pmpi++.h -mpich/include/mpi2c++/pop.h -mpich/include/mpi2c++/pop_inln.h -mpich/include/mpi2c++/prequest.h -mpich/include/mpi2c++/prequest_inln.h -mpich/include/mpi2c++/pstatus.h -mpich/include/mpi2c++/pstatus_inln.h -mpich/include/mpi2c++/ptopology.h -mpich/include/mpi2c++/request.h -mpich/include/mpi2c++/request_inln.h -mpich/include/mpi2c++/status.h -mpich/include/mpi2c++/status_inln.h -mpich/include/mpi2c++/topology.h -mpich/include/mpi2c++/topology_inln.h -mpich/include/mpi_errno.h -mpich/include/mpi_fortdefs.h -mpich/include/mpidefs.h -mpich/include/mpif.h -mpich/include/mpio.h -mpich/include/mpiof.h -mpich/include/protofix.h -mpich/lib/libampe.a -mpich/lib/libfmpich.a -mpich/lib/liblmpe.a -mpich/lib/libmpe.a -mpich/lib/libmpe_nompi.a -mpich/lib/libmpich.a -mpich/lib/libmpichfsup.a -mpich/lib/libpmpich++.a -mpich/lib/libpmpich.a -mpich/lib/libtmpe.a -mpich/lib/mpe_prof.o -mpich/man/mandesc -mpich/sbin/chkserv -mpich/sbin/chp4_servs -mpich/sbin/cleanipcs -mpich/sbin/mpiuninstall -mpich/sbin/tstmachines -mpich/share/Makefile.sample -mpich/share/examples/Makefile -mpich/share/examples/Makefile.in -mpich/share/examples/cpi.c -mpich/share/examples/cpilog.c -mpich/share/examples/cxgraphics.c -mpich/share/examples/fpi.f -mpich/share/examples/fxgraphics.f -mpich/share/examples/mpirun -mpich/share/examples/srtest.c -mpich/share/machines.freebsd -mpich/share/machines.sample -mpich/share/upshot/bin/upshot -mpich/share/upshot/bitmaps/2x2 -mpich/share/upshot/bitmaps/black -mpich/share/upshot/bitmaps/boxes -mpich/share/upshot/bitmaps/dimple3 -mpich/share/upshot/bitmaps/dllines3 -mpich/share/upshot/bitmaps/dllines4 -mpich/share/upshot/bitmaps/drlines3 -mpich/share/upshot/bitmaps/drlines4 -mpich/share/upshot/bitmaps/gray -mpich/share/upshot/bitmaps/gray2 -mpich/share/upshot/bitmaps/gray3 -mpich/share/upshot/bitmaps/hlines2 -mpich/share/upshot/bitmaps/hlines3 -mpich/share/upshot/bitmaps/hlines4 -mpich/share/upshot/bitmaps/light_gray -mpich/share/upshot/bitmaps/vlines2 -mpich/share/upshot/bitmaps/vlines3 -mpich/share/upshot/bitmaps/vlines4 -mpich/share/upshot/bitmaps/white -mpich/share/upshot/logfiles/fft.trf -mpich/share/upshot/logfiles/sam_hyp.16.log -mpich/www/index.html -mpich/www/www1/Jumpshots.html -mpich/www/www1/MPI.html -mpich/www/www1/chp4_servs.html -mpich/www/www1/cleanipcs.html -mpich/www/www1/index.html -mpich/www/www1/mpiCC.html -mpich/www/www1/mpicc.html -mpich/www/www1/mpif77.html -mpich/www/www1/mpif90.html -mpich/www/www1/mpiman.html -mpich/www/www1/mpireconfig.html -mpich/www/www1/mpirun.html -mpich/www/www1/tstmachines.html -mpich/www/www3/Constants.html -mpich/www/www3/MPIO_Request_c2f.html -mpich/www/www3/MPIO_Request_f2c.html -mpich/www/www3/MPIO_Test.html -mpich/www/www3/MPIO_Wait.html -mpich/www/www3/MPI_Abort.html -mpich/www/www3/MPI_Address.html -mpich/www/www3/MPI_Allgather.html -mpich/www/www3/MPI_Allgatherv.html -mpich/www/www3/MPI_Allreduce.html -mpich/www/www3/MPI_Alltoall.html -mpich/www/www3/MPI_Alltoallv.html -mpich/www/www3/MPI_Attr_delete.html -mpich/www/www3/MPI_Attr_get.html -mpich/www/www3/MPI_Attr_put.html -mpich/www/www3/MPI_Barrier.html -mpich/www/www3/MPI_Bcast.html -mpich/www/www3/MPI_Bsend.html -mpich/www/www3/MPI_Bsend_init.html -mpich/www/www3/MPI_Buffer_attach.html -mpich/www/www3/MPI_Buffer_detach.html -mpich/www/www3/MPI_CHAR.html -mpich/www/www3/MPI_Cancel.html -mpich/www/www3/MPI_Cart_coords.html -mpich/www/www3/MPI_Cart_create.html -mpich/www/www3/MPI_Cart_get.html -mpich/www/www3/MPI_Cart_map.html -mpich/www/www3/MPI_Cart_rank.html -mpich/www/www3/MPI_Cart_shift.html -mpich/www/www3/MPI_Cart_sub.html -mpich/www/www3/MPI_Cartdim_get.html -mpich/www/www3/MPI_Comm_compare.html -mpich/www/www3/MPI_Comm_create.html -mpich/www/www3/MPI_Comm_dup.html -mpich/www/www3/MPI_Comm_free.html -mpich/www/www3/MPI_Comm_get_name.html -mpich/www/www3/MPI_Comm_group.html -mpich/www/www3/MPI_Comm_rank.html -mpich/www/www3/MPI_Comm_remote_group.html -mpich/www/www3/MPI_Comm_remote_size.html -mpich/www/www3/MPI_Comm_set_name.html -mpich/www/www3/MPI_Comm_size.html -mpich/www/www3/MPI_Comm_split.html -mpich/www/www3/MPI_Comm_test_inter.html -mpich/www/www3/MPI_DUP_FN.html -mpich/www/www3/MPI_Dims_create.html -mpich/www/www3/MPI_Errhandler_create.html -mpich/www/www3/MPI_Errhandler_free.html -mpich/www/www3/MPI_Errhandler_get.html -mpich/www/www3/MPI_Errhandler_set.html -mpich/www/www3/MPI_Error_class.html -mpich/www/www3/MPI_Error_string.html -mpich/www/www3/MPI_File_c2f.html -mpich/www/www3/MPI_File_close.html -mpich/www/www3/MPI_File_delete.html -mpich/www/www3/MPI_File_f2c.html -mpich/www/www3/MPI_File_get_amode.html -mpich/www/www3/MPI_File_get_atomicity.html -mpich/www/www3/MPI_File_get_byte_offset.html -mpich/www/www3/MPI_File_get_errhandler.html -mpich/www/www3/MPI_File_get_group.html -mpich/www/www3/MPI_File_get_info.html -mpich/www/www3/MPI_File_get_position.html -mpich/www/www3/MPI_File_get_position_shared.html -mpich/www/www3/MPI_File_get_size.html -mpich/www/www3/MPI_File_get_type_extent.html -mpich/www/www3/MPI_File_get_view.html -mpich/www/www3/MPI_File_iread.html -mpich/www/www3/MPI_File_iread_at.html -mpich/www/www3/MPI_File_iread_shared.html -mpich/www/www3/MPI_File_iwrite.html -mpich/www/www3/MPI_File_iwrite_at.html -mpich/www/www3/MPI_File_iwrite_shared.html -mpich/www/www3/MPI_File_open.html -mpich/www/www3/MPI_File_preallocate.html -mpich/www/www3/MPI_File_read.html -mpich/www/www3/MPI_File_read_all.html -mpich/www/www3/MPI_File_read_all_begin.html -mpich/www/www3/MPI_File_read_all_end.html -mpich/www/www3/MPI_File_read_at.html -mpich/www/www3/MPI_File_read_at_all.html -mpich/www/www3/MPI_File_read_at_all_begin.html -mpich/www/www3/MPI_File_read_at_all_end.html -mpich/www/www3/MPI_File_read_ordered.html -mpich/www/www3/MPI_File_read_ordered_begin.html -mpich/www/www3/MPI_File_read_ordered_end.html -mpich/www/www3/MPI_File_read_shared.html -mpich/www/www3/MPI_File_seek.html -mpich/www/www3/MPI_File_seek_shared.html -mpich/www/www3/MPI_File_set_atomicity.html -mpich/www/www3/MPI_File_set_errhandler.html -mpich/www/www3/MPI_File_set_info.html -mpich/www/www3/MPI_File_set_size.html -mpich/www/www3/MPI_File_set_view.html -mpich/www/www3/MPI_File_sync.html -mpich/www/www3/MPI_File_write.html -mpich/www/www3/MPI_File_write_all.html -mpich/www/www3/MPI_File_write_all_begin.html -mpich/www/www3/MPI_File_write_all_end.html -mpich/www/www3/MPI_File_write_at.html -mpich/www/www3/MPI_File_write_at_all.html -mpich/www/www3/MPI_File_write_at_all_begin.html -mpich/www/www3/MPI_File_write_at_all_end.html -mpich/www/www3/MPI_File_write_ordered.html -mpich/www/www3/MPI_File_write_ordered_begin.html -mpich/www/www3/MPI_File_write_ordered_end.html -mpich/www/www3/MPI_File_write_shared.html -mpich/www/www3/MPI_Finalize.html -mpich/www/www3/MPI_Finalized.html -mpich/www/www3/MPI_Gather.html -mpich/www/www3/MPI_Gatherv.html -mpich/www/www3/MPI_Get_count.html -mpich/www/www3/MPI_Get_elements.html -mpich/www/www3/MPI_Get_processor_name.html -mpich/www/www3/MPI_Get_version.html -mpich/www/www3/MPI_Graph_create.html -mpich/www/www3/MPI_Graph_get.html -mpich/www/www3/MPI_Graph_map.html -mpich/www/www3/MPI_Graph_neighbors.html -mpich/www/www3/MPI_Graph_neighbors_count.html -mpich/www/www3/MPI_Graphdims_get.html -mpich/www/www3/MPI_Group_compare.html -mpich/www/www3/MPI_Group_difference.html -mpich/www/www3/MPI_Group_excl.html -mpich/www/www3/MPI_Group_free.html -mpich/www/www3/MPI_Group_incl.html -mpich/www/www3/MPI_Group_intersection.html -mpich/www/www3/MPI_Group_range_excl.html -mpich/www/www3/MPI_Group_range_incl.html -mpich/www/www3/MPI_Group_rank.html -mpich/www/www3/MPI_Group_size.html -mpich/www/www3/MPI_Group_translate_ranks.html -mpich/www/www3/MPI_Group_union.html -mpich/www/www3/MPI_Ibsend.html -mpich/www/www3/MPI_Info_c2f.html -mpich/www/www3/MPI_Info_create.html -mpich/www/www3/MPI_Info_delete.html -mpich/www/www3/MPI_Info_dup.html -mpich/www/www3/MPI_Info_f2c.html -mpich/www/www3/MPI_Info_free.html -mpich/www/www3/MPI_Info_get.html -mpich/www/www3/MPI_Info_get_nkeys.html -mpich/www/www3/MPI_Info_get_nthkey.html -mpich/www/www3/MPI_Info_get_valuelen.html -mpich/www/www3/MPI_Info_set.html -mpich/www/www3/MPI_Init.html -mpich/www/www3/MPI_Init_thread.html -mpich/www/www3/MPI_Initialized.html -mpich/www/www3/MPI_Int2handle.html -mpich/www/www3/MPI_Intercomm_create.html -mpich/www/www3/MPI_Intercomm_merge.html -mpich/www/www3/MPI_Iprobe.html -mpich/www/www3/MPI_Irecv.html -mpich/www/www3/MPI_Irsend.html -mpich/www/www3/MPI_Isend.html -mpich/www/www3/MPI_Issend.html -mpich/www/www3/MPI_Keyval_create.html -mpich/www/www3/MPI_Keyval_free.html -mpich/www/www3/MPI_NULL_COPY_FN.html -mpich/www/www3/MPI_NULL_DELETE_FN.html -mpich/www/www3/MPI_Op_create.html -mpich/www/www3/MPI_Op_free.html -mpich/www/www3/MPI_Pack.html -mpich/www/www3/MPI_Pack_size.html -mpich/www/www3/MPI_Pcontrol.html -mpich/www/www3/MPI_Probe.html -mpich/www/www3/MPI_Recv.html -mpich/www/www3/MPI_Recv_init.html -mpich/www/www3/MPI_Reduce.html -mpich/www/www3/MPI_Reduce_scatter.html -mpich/www/www3/MPI_Request_c2f.html -mpich/www/www3/MPI_Request_free.html -mpich/www/www3/MPI_Rsend.html -mpich/www/www3/MPI_Rsend_init.html -mpich/www/www3/MPI_Scan.html -mpich/www/www3/MPI_Scatter.html -mpich/www/www3/MPI_Scatterv.html -mpich/www/www3/MPI_Send.html -mpich/www/www3/MPI_Send_init.html -mpich/www/www3/MPI_Sendrecv.html -mpich/www/www3/MPI_Sendrecv_replace.html -mpich/www/www3/MPI_Ssend.html -mpich/www/www3/MPI_Ssend_init.html -mpich/www/www3/MPI_Start.html -mpich/www/www3/MPI_Startall.html -mpich/www/www3/MPI_Status_c2f.html -mpich/www/www3/MPI_Status_set_cancelled.html -mpich/www/www3/MPI_Status_set_elements.html -mpich/www/www3/MPI_Test.html -mpich/www/www3/MPI_Test_cancelled.html -mpich/www/www3/MPI_Testall.html -mpich/www/www3/MPI_Testany.html -mpich/www/www3/MPI_Testsome.html -mpich/www/www3/MPI_Topo_test.html -mpich/www/www3/MPI_Type_commit.html -mpich/www/www3/MPI_Type_contiguous.html -mpich/www/www3/MPI_Type_create_darray.html -mpich/www/www3/MPI_Type_create_indexed_block.html -mpich/www/www3/MPI_Type_create_subarray.html -mpich/www/www3/MPI_Type_extent.html -mpich/www/www3/MPI_Type_free.html -mpich/www/www3/MPI_Type_get_contents.html -mpich/www/www3/MPI_Type_get_envelope.html -mpich/www/www3/MPI_Type_hindexed.html -mpich/www/www3/MPI_Type_hvector.html -mpich/www/www3/MPI_Type_indexed.html -mpich/www/www3/MPI_Type_lb.html -mpich/www/www3/MPI_Type_size.html -mpich/www/www3/MPI_Type_struct.html -mpich/www/www3/MPI_Type_ub.html -mpich/www/www3/MPI_Type_vector.html -mpich/www/www3/MPI_Unpack.html -mpich/www/www3/MPI_Wait.html -mpich/www/www3/MPI_Waitall.html -mpich/www/www3/MPI_Waitany.html -mpich/www/www3/MPI_Waitsome.html -mpich/www/www3/MPI_Wtick.html -mpich/www/www3/MPI_Wtime.html -mpich/www/www3/index.html -mpich/www/www4/CLOG_Finalize.html -mpich/www/www4/CLOG_Init.html -mpich/www/www4/CLOG_Output.html -mpich/www/www4/CLOG_commtype.html -mpich/www/www4/CLOG_cput.html -mpich/www/www4/CLOG_csync.html -mpich/www/www4/CLOG_get_new_event.html -mpich/www/www4/CLOG_get_new_state.html -mpich/www/www4/CLOG_init_buffers.html -mpich/www/www4/CLOG_mergelogs.html -mpich/www/www4/CLOG_mergend.html -mpich/www/www4/CLOG_msgtype.html -mpich/www/www4/CLOG_newbuff.html -mpich/www/www4/CLOG_nodebuffer2disk.html -mpich/www/www4/CLOG_procbuf.html -mpich/www/www4/CLOG_reclen.html -mpich/www/www4/CLOG_rectype.html -mpich/www/www4/CLOG_reinit_buff.html -mpich/www/www4/CLOG_treesetup.html -mpich/www/www4/MPE.html -mpich/www/www4/MPE_Add_RGB_color.html -mpich/www/www4/MPE_CaptureFile.html -mpich/www/www4/MPE_Close_graphics.html -mpich/www/www4/MPE_Comm_global_rank.html -mpich/www/www4/MPE_Counter_create.html -mpich/www/www4/MPE_Counter_free.html -mpich/www/www4/MPE_Counter_nxtval.html -mpich/www/www4/MPE_Decomp1d.html -mpich/www/www4/MPE_Describe_event.html -mpich/www/www4/MPE_Describe_state.html -mpich/www/www4/MPE_Draw_circle.html -mpich/www/www4/MPE_Draw_line.html -mpich/www/www4/MPE_Draw_logic.html -mpich/www/www4/MPE_Draw_point.html -mpich/www/www4/MPE_Draw_points.html -mpich/www/www4/MPE_Draw_string.html -mpich/www/www4/MPE_Fill_circle.html -mpich/www/www4/MPE_Fill_rectangle.html -mpich/www/www4/MPE_Finish_log.html -mpich/www/www4/MPE_GetTags.html -mpich/www/www4/MPE_Get_mouse_press.html -mpich/www/www4/MPE_IO_Stdout_to_file.html -mpich/www/www4/MPE_Iget_mouse_press.html -mpich/www/www4/MPE_Init_log.html -mpich/www/www4/MPE_Initialized_logging.html -mpich/www/www4/MPE_Line_thickness.html -mpich/www/www4/MPE_Log_event.html -mpich/www/www4/MPE_Log_get_event_number.html -mpich/www/www4/MPE_Log_receive.html -mpich/www/www4/MPE_Log_send.html -mpich/www/www4/MPE_Make_color_array.html -mpich/www/www4/MPE_Num_colors.html -mpich/www/www4/MPE_Open_graphics.html -mpich/www/www4/MPE_Print_datatype_pack_action.html -mpich/www/www4/MPE_Print_datatype_unpack_action.html -mpich/www/www4/MPE_ReturnTags.html -mpich/www/www4/MPE_Seq_begin.html -mpich/www/www4/MPE_Seq_end.html -mpich/www/www4/MPE_Start_log.html -mpich/www/www4/MPE_Stop_log.html -mpich/www/www4/MPE_TagsEnd.html -mpich/www/www4/MPE_Update.html -mpich/www/www4/index.html -@dirrm mpich/www/www4 -@dirrm mpich/www/www3 -@dirrm mpich/www/www1 -@dirrm mpich/www -@dirrm mpich/share/upshot/sbin -@dirrm mpich/share/upshot/logfiles -@dirrm mpich/share/upshot/bitmaps -@dirrm mpich/share/upshot/bin -@dirrm mpich/share/upshot -@dirrm mpich/share/examples -@dirrm mpich/share -@dirrm mpich/sbin -@dirrm mpich/man/man4 -@dirrm mpich/man/man3 -@dirrm mpich/man/man1 -@dirrm mpich/man -@dirrm mpich/lib/shared -@dirrm mpich/lib -@dirrm mpich/include/mpi2c++ -@dirrm mpich/include -@dirrm mpich/examples/MPI-2-C++ -@dirrm mpich/examples -@dirrm mpich/etc -@dirrm mpich/doc -@dirrm mpich/bin -@dirrm mpich diff --git a/net/nagios-plugins/Makefile b/net/nagios-plugins/Makefile deleted file mode 100644 index e51dcaa91299..000000000000 --- a/net/nagios-plugins/Makefile +++ /dev/null @@ -1,36 +0,0 @@ -# New ports collection makefile for: netsaint-plugins -# Date created: Wed 12 Jul 2000 -# Whom: will -# -# $FreeBSD$ -# - -PORTNAME= netsaint-plugins -PORTVERSION= 1.2.9.4 -CATEGORIES= net -MASTER_SITES= http://download.sourceforge.net/netsaintplug/ -DISTNAME= ${PORTNAME}-1.2.9-4 - -MAINTAINER= blaz@si.FreeBSD.org - -GNU_CONFIGURE= yes -CONFIGURE_ARGS= --sbindir=${PREFIX}/share/netsaint/sbin \ - --libexecdir=${PREFIX}/libexec/netsaint \ - --datadir=${PREFIX}/share/netsaint \ - --sysconfdir=${PREFIX}/etc/netsaint \ - --localstatedir=${PREFIX}/var/netsaint -CONFIGURE_ENV= LOCALBASE=${LOCALBASE} -USE_AUTOMAKE= yes -USE_GMAKE= yes - -pre-fetch: - @${SETENV} ${SCRIPTS_ENV} ${SH} ${SCRIPTDIR}/configure - -.if exists(${WRKDIRPREFIX}${.CURDIR}/Makefile.inc) -.include "${WRKDIRPREFIX}${.CURDIR}/Makefile.inc" -.endif - -post-clean: - @${RM} -f ${WRKDIRPREFIX}${.CURDIR}/Makefile.inc - -.include <bsd.port.mk> diff --git a/net/nagios-plugins/distinfo b/net/nagios-plugins/distinfo deleted file mode 100644 index f83d420d0c14..000000000000 --- a/net/nagios-plugins/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (netsaint-plugins-1.2.9-4.tar.gz) = ef4adb2b9e77abebd3797e5ebe093014 diff --git a/net/nagios-plugins/files/patch-ab b/net/nagios-plugins/files/patch-ab deleted file mode 100644 index 126c8b052a54..000000000000 --- a/net/nagios-plugins/files/patch-ab +++ /dev/null @@ -1,284 +0,0 @@ ---- configure.in.orig Thu Apr 26 16:00:26 2001 -+++ configure.in Tue May 1 18:28:01 2001 -@@ -7,7 +7,7 @@ - dnl AM_INIT_AUTOMAKE(netsaint-plugins,$VERSION) - AM_CONFIG_HEADER(plugins/config.h plugins/common.h plugins/version.h plugins/netutils.h plugins/utils.h plugins/popen.h) - --AC_PREFIX_DEFAULT(/usr/local/netsaint) -+dnl AC_PREFIX_DEFAULT(/usr/local/netsaint) - - dnl Figure out how to invoke "install" and what install options to use. - -@@ -99,8 +99,8 @@ - AC_CHECK_HEADERS(postgresql/libpq-fe.h) - AC_CHECK_HEADERS(libpq-fe.h) - if test "$ac_cv_header_pgsql_libpq_fe_h" = "yes"; then -- PGLIBS="-lpq -lcrypt" -- PGINCLUDE="-I/usr/include/pgsql" -+ PGLIBS="-L$PGSQL/lib -lpq -lcrypt" -+ PGINCLUDE="-I$PGSQL/include/pgsql" - elif test "$ac_cv_header_postgresql_libpq_fe_h" = "yes"; then - PGLIBS="-L$PGSQL/lib -lpq -lcrypt" - PGINCLUDE="-I/usr/include/postgresql" -@@ -128,25 +128,37 @@ - LIBS="$_SAVEDLIBS" - CPPFLAGS="$_SAVEDCPPFLAGS" - -+AC_ARG_ENABLE(radius,--enable-radius compile check_radius) -+if test $enableval; then -+dnl Check for radiusclient header file -+_SAVEDCPPFLAGS="$CPPFLAGS" -+CPPFLAGS="-I${LOCALBASE}/include" -+AC_CHECK_HEADERS(radiusclient.h,RADIUSINCLUDE="-I${LOCALBASE}/include") -+AC_SUBST(RADIUSINCLUDE) -+CPPFLAGS="$_SAVEDCPPFLAGS $RADIUSINCLUDE" -+ - dnl Check for radius libraries - _SAVEDLIBS="$LIBS" --AC_CHECK_LIB(radiusclient,rc_read_config) -+AC_CHECK_LIB(radiusclient,rc_read_config,,,-L${LOCALBASE}/lib) - if test "$ac_cv_lib_radiusclient_rc_read_config" = "yes"; then - EXTRAS="$EXTRAS check_radius" -- RADIUSLIBS="-lradiusclient" -+ RADIUSLIBS="-L${LOCALBASE}/lib -lradiusclient" - AC_SUBST(RADIUSLIBS) - else - AC_MSG_WARN([Skipping radius plugin]) - AC_MSG_WARN([install radius libs to compile this plugin (see Requirements).]) - fi - LIBS="$_SAVEDLIBS" -+fi - -+AC_ARG_ENABLE(ldap,--enable-ldap compile check_ldap) -+if test $enableval; then - dnl Check for LDAP libraries - _SAVEDLIBS="$LIBS" --AC_CHECK_LIB(ldap,main,,,-llber) --if test "$ac_cv_lib_ldap_main" = "yes"; then -- LDAPLIBS="-lldap -llber"\ -- LDAPINCLUDE="-I/usr/include/ldap" -+AC_CHECK_LIB(ldap,ldap_simple_bind,,,-L${LOCALBASE}/lib -llber) -+if test "$ac_cv_lib_ldap_ldap_simple_bind" = "yes"; then -+ LDAPLIBS="-L${LOCALBASE}/lib -lldap -llber"\ -+ LDAPINCLUDE="-I${LOCALBASE}/include" - AC_SUBST(LDAPLIBS) - AC_SUBST(LDAPINCLUDE) - EXTRAS="$EXTRAS check_ldap" -@@ -155,13 +167,14 @@ - AC_MSG_WARN([install LDAP libs to compile this plugin (see Requirements).]) - fi - LIBS="$_SAVEDLIBS" -+fi - - dnl Check for mysql libraries - _SAVEDLIBS="$LIBS" - _SAVEDCPPFLAGS="$CPPFLAGS" --CPPFLAGS="-I/usr/include" -+CPPFLAGS="-I${LOCALBASE}/include" - AC_ARG_WITH(mysqllibdir,--with-mysqllibdir=<dir> sets path to mysql libraries,[MYSQLLIBDIR=$withval]) --if test -n "$MYSQLLIBS"; then -+if test -n "$MYSQLLIBDIR"; then - AC_CHECK_LIB(mysqlclient,mysql_init,MYSQLLIBS="-lmysqlclient -lz" check_mysql_LDFLAGS="-L$MYSQLLIBDIR",,-L$MYSQLLIBDIR -lz) - elif test -f /usr/lib/libmysqlclient.so; then - AC_CHECK_LIB(mysqlclient,mysql_init,MYSQLLIBS="-lmysqlclient -lz",,-lz) -@@ -177,7 +190,8 @@ - AC_CHECK_LIB(mysqlclient,mysql_close,MYSQLLIBS="-lmysqlclient" check_mysql_LDFLAGS="-L/usr/lib/mysql",,-L/usr/lib/mysql) - fi - if test "$ac_cv_lib_mysqlclient_mysql_init" = "yes" -o "$ac_cv_lib_mysqlclient_mysql_close" = "yes"; then -- AC_CHECK_HEADERS(mysql/mysql.h mysql/errmsg.h) -+ AC_CHECK_HEADERS(mysql/mysql.h mysql/errmsg.h,MYSQLINCLUDE="-I${LOCALBASE}/include") -+ AC_SUBST(MYSQLINCLUDE) - if test "$ac_cv_header_mysql_mysql_h" = "yes" -a "$ac_cv_header_mysql_errmsg_h" = "yes"; then - EXTRAS="$EXTRAS check_mysql" - AC_SUBST(MYSQLLIBS) -@@ -191,7 +205,7 @@ - AC_MSG_WARN([install mysql client libs to compile this plugin (see Requirements).]) - fi - LIBS="$_SAVEDLIBS" --CPPFLAGS="$_SAVEDCPPFLAGS" -+CPPFLAGS="$_SAVEDCPPFLAGS $MYSQLINCLUDE" - - dnl Check for OpenSSL location - AC_PATH_PROG(OPENSSL,openssl) -@@ -270,16 +284,16 @@ - dnl AC_SUBST(libgetopt_a_DEPENDENCIES) - dnl AC_SUBST(libsnprintf_a_SOURCES) - --AC_MSG_CHECKING(for getopt_long) --AC_TRY_COMPILE([#include <getopt.h> --#include <stdlib.h>], --[int option_index=0; --static struct option *long_options; --getopt_long(0,NULL,"+h",long_options,&option_index);], --[AC_DEFINE(HAVE_GETOPT_H) AC_DEFINE(HAVE_GETOPT_LONG) AC_MSG_RESULT(yes)], --[AC_DEFINE(HAVE_GETOPT_H) AC_DEFINE(HAVE_GETOPT_LONG) AC_MSG_RESULT(no) import_sources=getopt]) -+dnl AC_MSG_CHECKING(for getopt_long) -+dnl AC_TRY_COMPILE([#include <getopt.h> -+dnl #include <stdlib.h>], -+dnl [int option_index=0; -+dnl static struct option *long_options; -+dnl getopt_long(0,NULL,"+h",long_options,&option_index);], -+dnl [AC_DEFINE(HAVE_GETOPT_H) AC_DEFINE(HAVE_GETOPT_LONG) AC_MSG_RESULT(yes)], -+dnl [AC_DEFINE(HAVE_GETOPT_H) AC_DEFINE(HAVE_GETOPT_LONG) AC_MSG_RESULT(no) import_sources=getopt]) - --AC_CHECK_FUNCS(getopt_long_only,,LIBS="$LIBS -lgetopt" DEPLIBS="$DEPLIBS libgetopt.a") -+dnl AC_CHECK_FUNCS(getopt_long_only,,LIBS="$LIBS -lgetopt" DEPLIBS="$DEPLIBS libgetopt.a") - - AC_CHECK_FUNC(vsnprintf,,LIBS="$LIBS -lsnprintf" DEPLIBS="$DEPLIBS libsnprintf.a") - -@@ -330,72 +344,72 @@ - AC_DEFINE_UNQUOTED(RSS_COMMAND,"$PATH_TO_PS -eo 'rss comm'") - AC_DEFINE_UNQUOTED(RSS_FORMAT,"%d %s") - echo " ps syntax... $PATH_TO_PS -eo 's comm vsz rss user ppid args'" --elif [ps -Ao 's comm vsz rss uid user ppid args' 2>/dev/null | egrep -i "^S[TAUES]* +C[OMDNA]+ +V[SIZE]+ +RSS +UID +USER +PPID +[RGSCOMDNA]+" >/dev/null] -+elif [ps -axo 's comm vsz rss uid user ppid args' 2>/dev/null | egrep -i "^S[TAUES]* +C[OMDNA]+ +V[SIZE]+ +RSS +UID +USER +PPID +[RGSCOMDNA]+" >/dev/null] - then - AC_DEFINE(USE_PS_VARS) - AC_DEFINE_UNQUOTED(PS_VARLIST,[procstat,&procuid,&procppid,procprog,&pos]) -- AC_DEFINE_UNQUOTED(PS_RAW_COMMAND,"$PATH_TO_PS -Ao 's user ppid args'") -+ AC_DEFINE_UNQUOTED(PS_RAW_COMMAND,"$PATH_TO_PS -axo 's user ppid args'") - EXTRAS="$EXTRAS check_netsaint" -- AC_DEFINE_UNQUOTED(PS_COMMAND,"$PATH_TO_PS -Ao 's uid ppid comm args'") -+ AC_DEFINE_UNQUOTED(PS_COMMAND,"$PATH_TO_PS -axo 's uid ppid comm args'") - AC_DEFINE_UNQUOTED(PS_FORMAT,"%s %d %d %s %n") -- AC_DEFINE_UNQUOTED(VSZ_COMMAND,"$PATH_TO_PS -Ao 'vsz comm'") -+ AC_DEFINE_UNQUOTED(VSZ_COMMAND,"$PATH_TO_PS -axo 'vsz comm'") - AC_DEFINE_UNQUOTED(VSZ_FORMAT,"%d %s") -- AC_DEFINE_UNQUOTED(RSS_COMMAND,"$PATH_TO_PS -Ao 'rss comm'") -+ AC_DEFINE_UNQUOTED(RSS_COMMAND,"$PATH_TO_PS -axo 'rss comm'") - AC_DEFINE_UNQUOTED(RSS_FORMAT,"%d %s") -- echo " ps syntax... $PATH_TO_PS -Ao 's comm vsz rss'" --elif [ps -Ao 'status comm vsz rss uid user ppid args' 2>/dev/null | egrep -i "^S[TAUES]* +C[OMDNA]+ +V[SIZE]+ +RSS +UID +USER +PPID +[RGSCOMDNA]+" >/dev/null] -+ echo " ps syntax... $PATH_TO_PS -axo 's comm vsz rss'" -+elif [ps -axo 'status comm vsz rss uid user ppid args' 2>/dev/null | egrep -i "^S[TAUES]* +C[OMDNA]+ +V[SIZE]+ +RSS +UID +USER +PPID +[RGSCOMDNA]+" >/dev/null] - then - AC_DEFINE(USE_PS_VARS) - AC_DEFINE_UNQUOTED(PS_VARLIST,[procstat,&procuid,&procppid,procprog,&pos]) -- AC_DEFINE_UNQUOTED(PS_RAW_COMMAND,"$PATH_TO_PS -Ao 'status user ppid args'") -+ AC_DEFINE_UNQUOTED(PS_RAW_COMMAND,"$PATH_TO_PS -axo 'status user ppid args'") - EXTRAS="$EXTRAS check_netsaint" -- AC_DEFINE_UNQUOTED(PS_COMMAND,"$PATH_TO_PS -Ao 'status uid ppid comm args'") -+ AC_DEFINE_UNQUOTED(PS_COMMAND,"$PATH_TO_PS -axo 'status uid ppid comm args'") - AC_DEFINE_UNQUOTED(PS_FORMAT,"%s %d %d %s %n") -- AC_DEFINE_UNQUOTED(VSZ_COMMAND,"$PATH_TO_PS -Ao 'vsz comm'") -+ AC_DEFINE_UNQUOTED(VSZ_COMMAND,"$PATH_TO_PS -axo 'vsz comm'") - AC_DEFINE_UNQUOTED(VSZ_FORMAT,"%d %s") -- AC_DEFINE_UNQUOTED(RSS_COMMAND,"$PATH_TO_PS -Ao 'rss comm'") -+ AC_DEFINE_UNQUOTED(RSS_COMMAND,"$PATH_TO_PS -axo 'rss comm'") - AC_DEFINE_UNQUOTED(RSS_FORMAT,"%d %s") -- echo " ps syntax... $PATH_TO_PS -Ao 'status comm vsz rss'" --elif [ps -Ao 'state comm vsz rss uid user ppid args' 2>/dev/null | egrep -i "^S[TAUES]* +C[OMDNA]+ +V[SIZE]+ +RSS +UID +USER +PPID +[RGSCOMDNA]+" >/dev/null] -+ echo " ps syntax... $PATH_TO_PS -axo 'status comm vsz rss'" -+elif [ps -axo 'state comm vsz rss uid user ppid args' 2>/dev/null | egrep -i "^S[TAUES]* +C[OMDNA]+ +V[SIZE]+ +RSS +UID +USER +PPID +[RGSCOMDNA]+" >/dev/null] - then - AC_DEFINE(USE_PS_VARS) - AC_DEFINE_UNQUOTED(PS_VARLIST,[procstat,&procuid,&procppid,procprog,&pos]) -- AC_DEFINE_UNQUOTED(PS_RAW_COMMAND,"$PATH_TO_PS -Ao 'state user ppid args'") -+ AC_DEFINE_UNQUOTED(PS_RAW_COMMAND,"$PATH_TO_PS -axo 'state user ppid args'") - EXTRAS="$EXTRAS check_netsaint" -- AC_DEFINE_UNQUOTED(PS_COMMAND,"$PATH_TO_PS -Ao 'state uid ppid comm args'") -+ AC_DEFINE_UNQUOTED(PS_COMMAND,"$PATH_TO_PS -axo 'state uid ppid comm args'") - AC_DEFINE_UNQUOTED(PS_FORMAT,"%s %d %d %s %n") -- AC_DEFINE_UNQUOTED(VSZ_COMMAND,"$PATH_TO_PS -Ao 'vsz comm'") -+ AC_DEFINE_UNQUOTED(VSZ_COMMAND,"$PATH_TO_PS -axo 'vsz comm'") - AC_DEFINE_UNQUOTED(VSZ_FORMAT,"%d %s") -- AC_DEFINE_UNQUOTED(RSS_COMMAND,"$PATH_TO_PS -Ao 'rss comm'") -+ AC_DEFINE_UNQUOTED(RSS_COMMAND,"$PATH_TO_PS -axo 'rss comm'") - AC_DEFINE_UNQUOTED(RSS_FORMAT,"%d %s") -- echo " ps syntax... $PATH_TO_PS -Ao 'state comm vsz rss'" --elif [ps -ao 'state command vsz rss user ppid args' 2>/dev/null | egrep -i "^S[TAUES]* +C[OMDNA]+ +V[SIZE]+ +RSS +UID +USER +PPID +[RGSCOMDNA]+" >/dev/null] -+ echo " ps syntax... $PATH_TO_PS -axo 'state comm vsz rss'" -+elif [ps -axo 'state command vsz rss user ppid args' 2>/dev/null | egrep -i "^S[TAUES]* +C[OMDNA]+ +V[SIZE]+ +RSS +UID +USER +PPID +[RGSCOMDNA]+" >/dev/null] - then - AC_DEFINE(USE_PS_VARS) - AC_DEFINE_UNQUOTED(PS_VARLIST,[procstat,&procuid,&procppid,procprog,&pos]) -- AC_DEFINE_UNQUOTED(PS_RAW_COMMAND,"$PATH_TO_PS -ao 'state user ppid args'") -+ AC_DEFINE_UNQUOTED(PS_RAW_COMMAND,"$PATH_TO_PS -axo 'state user ppid args'") - EXTRAS="$EXTRAS check_netsaint" -- AC_DEFINE_UNQUOTED(PS_COMMAND,"$PATH_TO_PS -ao 'state uid ppid command args'") -+ AC_DEFINE_UNQUOTED(PS_COMMAND,"$PATH_TO_PS -axo 'state uid ppid command args'") - AC_DEFINE_UNQUOTED(PS_FORMAT,"%s %d %d %s %n") -- AC_DEFINE_UNQUOTED(VSZ_COMMAND,"$PATH_TO_PS -ao 'vsz command'") -+ AC_DEFINE_UNQUOTED(VSZ_COMMAND,"$PATH_TO_PS -axo 'vsz command'") - AC_DEFINE_UNQUOTED(VSZ_FORMAT,"%d %s") -- AC_DEFINE_UNQUOTED(RSS_COMMAND,"$PATH_TO_PS -ao 'rss command'") -+ AC_DEFINE_UNQUOTED(RSS_COMMAND,"$PATH_TO_PS -axo 'rss command'") - AC_DEFINE_UNQUOTED(RSS_FORMAT,"%d %s") -- echo " ps syntax... $PATH_TO_PS -ao 'state command vsz rss'" -+ echo " ps syntax... $PATH_TO_PS -axo 'state command vsz rss'" - dnl FreeBSD --elif [ps waxco 'state command vsz rss uid user ppid' 2>/dev/null | egrep -i "^STAT +COMMAND +VSZ +RSS +UID +USER +PPID" >/dev/null] -+elif [ps waxo 'state command vsz rss uid user ppid' 2>/dev/null | egrep -i "^STAT +COMMAND +VSZ +RSS +UID +USER +PPID" >/dev/null] - then - AC_DEFINE(USE_PS_VARS) - AC_DEFINE_UNQUOTED(PS_VARLIST,[procstat,&procuid,&procppid,procprog,&pos]) - AC_DEFINE_UNQUOTED(PS_RAW_COMMAND,"$PATH_TO_PS waxo 'state uid ppid command'") - EXTRAS="$EXTRAS check_netsaint" -- AC_DEFINE_UNQUOTED(PS_COMMAND,"$PATH_TO_PS waxco 'state uid ppid command command'") -+ AC_DEFINE_UNQUOTED(PS_COMMAND,"$PATH_TO_PS waxo 'state uid ppid command'") - AC_DEFINE_UNQUOTED(PS_FORMAT,"%s %d %d %s %n") -- AC_DEFINE_UNQUOTED(VSZ_COMMAND,"$PATH_TO_PS waxco 'vsz command'") -+ AC_DEFINE_UNQUOTED(VSZ_COMMAND,"$PATH_TO_PS waxo 'vsz command'") - AC_DEFINE_UNQUOTED(VSZ_FORMAT,"%d %s") -- AC_DEFINE_UNQUOTED(RSS_COMMAND,"$PATH_TO_PS waxco 'rss command'") -+ AC_DEFINE_UNQUOTED(RSS_COMMAND,"$PATH_TO_PS waxo 'rss command'") - AC_DEFINE_UNQUOTED(RSS_FORMAT,"%d %s") -- echo " ps syntax... $PATH_TO_PS -Ao 'state command vsz rss'" -+ echo " ps syntax... $PATH_TO_PS -axo 'state command vsz rss'" - dnl BSD-like mode in RH 6.1 - elif [ps waxno 'state comm vsz rss uid user ppid args' 2>/dev/null | egrep -i "^S +COMMAND +VSZ +RSS +UID +USER +PPID +[RGSCOMDNA]+" >/dev/null] - then -@@ -409,7 +423,7 @@ - AC_DEFINE_UNQUOTED(VSZ_FORMAT,"%d %s") - AC_DEFINE_UNQUOTED(RSS_COMMAND,"$PATH_TO_PS waxno 'rss comm'") - AC_DEFINE_UNQUOTED(RSS_FORMAT,"%d %s") -- echo " ps syntax... $PATH_TO_PS -waxco 'state comm vsz rss'" -+ echo " ps syntax... $PATH_TO_PS -waxo 'state comm vsz rss'" - dnl IRIX 53 - elif [ps -el 2>/dev/null | egrep -i "^ *F +S +UID +PID +PPID +C +PRI +NI +P +SZ +RSS +WCHAN +TTY +TIME +[RGSCOMDNA]+" >/dev/null] - then -@@ -620,6 +634,8 @@ - AC_DEFINE_UNQUOTED(WHO_COMMAND,"$PATH_TO_WHO") - fi - -+AC_ARG_ENABLE(snmp,--enable-snmp compile check_hpjd and check_snmp) -+if test $enableval; then - AC_PATH_PROG(PATH_TO_SNMPGET,snmpget) - if test -f "$PATH_TO_SNMPGET" - then -@@ -628,6 +644,7 @@ - else - echo "** Get snmpget from http://ucd-snmp.ucdavis.edu to make check_hpjd and check_snmp plugins" - fi -+fi - - AC_PATH_PROG(PATH_TO_SNMPGETNEXT,snmpgetnext) - if test -f "$PATH_TO_SNMPGETNEXT" -@@ -635,6 +652,8 @@ - AC_DEFINE_UNQUOTED(PATH_TO_SNMPGETNEXT,"$PATH_TO_SNMPGETNEXT") - fi - -+AC_ARG_ENABLE(qstat,--enable-qstat compile check_game) -+if test $enableval; then - AC_PATH_PROG(PATH_TO_QUAKESTAT,quakestat) - AC_PATH_PROG(PATH_TO_QSTAT,qstat) - if test -n "$PATH_TO_QUAKESTAT" -@@ -648,7 +667,10 @@ - else - echo "** Get qstat from http://www.activesw.com/people/steve/qstat.html in order to make check_game plugin" - fi -+fi - -+AC_ARG_ENABLE(fping,--enable-fping compile check_fping) -+if test $enableval; then - AC_PATH_PROG(PATH_TO_FPING,fping) - if test -n "$PATH_TO_FPING" - then -@@ -656,6 +678,7 @@ - EXTRAS="$EXTRAS check_fping" - else - echo "** Get fping from http://www.stanford.edu/~schemers/docs/fping/fping.html in order to make check_fping plugin" -+fi - fi - - AC_PATH_PROG(PATH_TO_SSH,ssh) diff --git a/net/nagios-plugins/files/patch-ac b/net/nagios-plugins/files/patch-ac deleted file mode 100644 index 796ee76bcc2a..000000000000 --- a/net/nagios-plugins/files/patch-ac +++ /dev/null @@ -1,12 +0,0 @@ ---- plugins-scripts/check_ntp.pl.orig Mon Apr 23 19:43:00 2001 -+++ plugins-scripts/check_ntp.pl Sun Apr 29 18:38:26 2001 -@@ -154,7 +154,8 @@ - ### - ### - --if (open(NTPDC,"/usr/sbin/xntpdc -c peers $host 2>&1 |") ) { -+if (open(NTPDC,"/usr/sbin/xntpdc -c peers $host 2>&1 |") || -+ open(NTPDC,"/usr/sbin/ntpdc -c peers $host 2>&1 |")) { - while (<NTPDC>) { - print if ($verbose); - if (/([^\s]+)\s+([-0-9.]+)\s+([-0-9.]+)\s+([-0-9.]+)\s+([-0-9.]+)\s+([-0-9.]+)\s+([-0-9.]+)\s+([-0-9.]+)/) { diff --git a/net/nagios-plugins/pkg-comment b/net/nagios-plugins/pkg-comment deleted file mode 100644 index e5f08464789b..000000000000 --- a/net/nagios-plugins/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Plugins for netsaint diff --git a/net/nagios-plugins/pkg-descr b/net/nagios-plugins/pkg-descr deleted file mode 100644 index da28433b287c..000000000000 --- a/net/nagios-plugins/pkg-descr +++ /dev/null @@ -1,16 +0,0 @@ -This is a plugin package for Netsaint. Quoting from the -main Netsaint package: - -NetSaint is a program that will monitor hosts and services -on your network. It has the ability to email or page you -when a problem arises and when it gets resolved. NetSaint -is written in C and is designed to run under Linux, although -it should work under most other *NIX variants. It can run -either as a normal process or as a daemon, intermittently -running checks on various services that you specify. The -actual service checks are performed by external "plugins" -which return service information to NetSaint. Several CGI -programs are included with NetSaint in order to allow you -to view the current service status, history, etc. via a web browser. - -WWW: http://www.netsaint.org/ diff --git a/net/nagios-plugins/pkg-plist b/net/nagios-plugins/pkg-plist deleted file mode 100644 index 2fc85698322f..000000000000 --- a/net/nagios-plugins/pkg-plist +++ /dev/null @@ -1,52 +0,0 @@ -libexec/netsaint/check_breeze -libexec/netsaint/check_by_ssh -libexec/netsaint/check_dig -libexec/netsaint/check_disk -libexec/netsaint/check_disk_smb -libexec/netsaint/check_dns -libexec/netsaint/check_dummy -libexec/netsaint/check_flexlm -%%SUB_FPING%%libexec/netsaint/check_fping -libexec/netsaint/check_ftp -%%SUB_QSTAT%%libexec/netsaint/check_game -%%SUB_SNMP%%libexec/netsaint/check_hpjd -libexec/netsaint/check_http -libexec/netsaint/check_imap -libexec/netsaint/check_ircd -%%SUB_LDAP%%libexec/netsaint/check_ldap -libexec/netsaint/check_load -libexec/netsaint/check_log -libexec/netsaint/check_mrtg -libexec/netsaint/check_mrtgtraf -%%SUB_MYSQL%%libexec/netsaint/check_mysql -libexec/netsaint/check_netdns -libexec/netsaint/check_netsaint -libexec/netsaint/check_nntp -libexec/netsaint/check_nt -libexec/netsaint/check_ntp -libexec/netsaint/check_nwstat -libexec/netsaint/check_oracle -libexec/netsaint/check_overcr -%%SUB_PGSQL%%libexec/netsaint/check_pgsql -libexec/netsaint/check_ping -libexec/netsaint/check_pop -libexec/netsaint/check_procs -%%SUB_RADIUS%%libexec/netsaint/check_radius -libexec/netsaint/check_real -libexec/netsaint/check_rpc -libexec/netsaint/check_sensors -libexec/netsaint/check_smtp -%%SUB_SNMP%%libexec/netsaint/check_snmp -libexec/netsaint/check_ssh -libexec/netsaint/check_swap -libexec/netsaint/check_tcp -libexec/netsaint/check_time -libexec/netsaint/check_udp -libexec/netsaint/check_ups -libexec/netsaint/check_users -libexec/netsaint/check_vsz -libexec/netsaint/check_wave -libexec/netsaint/urlize -libexec/netsaint/utils.pm -libexec/netsaint/utils.sh -@dirrm libexec/netsaint diff --git a/net/nagios-plugins/scripts/configure b/net/nagios-plugins/scripts/configure deleted file mode 100644 index 1a17d8fb4392..000000000000 --- a/net/nagios-plugins/scripts/configure +++ /dev/null @@ -1,107 +0,0 @@ -#!/bin/sh -# $FreeBSD$ - -if [ -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc ]; then - exit -fi - -tempfile=`mktemp -t checklist` - -if [ "${BATCH}" = "yes" ]; then -else - /usr/bin/dialog --title "NetSaint plugins configuration options" --clear \ - --checklist "\n\ -Please select desired options:" -1 -1 16 \ -QStat "Game server query support" OFF \ -FPing "Support for non-flooding fast ping" OFF \ -NetSNMP "SNMP support" OFF \ -Radiusclient "Radius support" OFF \ -MySQL "MySQL support" OFF \ -PostgreSQL "PostgreSQL support" OFF \ -OpenLDAP "OpenLDAP support" OFF \ -2> $tempfile - - retval=$? - - if [ -s $tempfile ]; then - set `cat $tempfile` - fi - rm -f $tempfile - - case $retval in - 0) if [ -z "$*" ]; then - echo "Nothing selected" - fi - ;; - 1) echo "Cancel pressed." - exit 1 - ;; - esac -fi - -exec > ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - -SUB_QSTAT="@comment " -SUB_FPING="@comment " -SUB_SNMP="@comment " -SUB_RADIUS="@comment " -SUB_MYSQL="@comment " -SUB_PGSQL="@comment " -SUB_LDAP="@comment " - -while [ "$1" ]; do - case $1 in - \"QStat\") - echo "BUILD_DEPENDS+= qstat:\${PORTSDIR}/games/qstat" - echo "RUN_DEPENDS+= qstat:\${PORTSDIR}/games/qstat" - echo "CONFIGURE_ARGS+= --enable-qstat" - SUB_QSTAT="" - ;; - \"FPing\") - echo "BUILD_DEPENDS+= fping:\${PORTSDIR}/net/fping" - echo "RUN_DEPENDS+= fping:\${PORTSDIR}/net/fping" - echo "CONFIGURE_ARGS+= --enable-fping" - SUB_FPING="" - ;; - \"NetSNMP\") - echo "BUILD_DEPENDS+= snmpcheck:\${PORTSDIR}/net/net-snmp" - echo "RUN_DEPENDS+= snmpcheck:\${PORTSDIR}/net/net-snmp" - echo "CONFIGURE_ARGS+= --enable-snmp" - SUB_SNMP="" - ;; - \"Radiusclient\") - echo "LIB_DEPENDS+= radiusclient.0:\${PORTSDIR}/net/radiusclient" - echo "CONFIGURE_ARGS+= --enable-radius" - SUB_RADIUS="" - ;; - \"MySQL\") - echo "LIB_DEPENDS+= mysqlclient.10:\${PORTSDIR}/databases/mysql323-client" - echo "CONFIGURE_ARGS+= --with-mysqllibdir=\${LOCALBASE}/lib/mysql" - SUB_MYSQL="" - ;; - \"PostgreSQL\") - echo "LIB_DEPENDS+= pq.2:\${PORTSDIR}/databases/postgresql7" - echo "CONFIGURE_ARGS+= --with-pgsql=\${LOCALBASE}" - SUB_PGSQL="" - ;; - \"OpenLDAP\") - echo "LIB_DEPENDS+= ldap.2:\${PORTSDIR}/net/openldap2" - echo "CONFIGURE_ARGS+= --enable-ldap" - SUB_LDAP="" - ;; - *) - echo "Invalid option(s): $*" > /dev/stderr - rm -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - exit 1 - ;; - esac - shift -done - -echo "PLIST_SUB+= SUB_QSTAT=\"${SUB_QSTAT}\"" -echo "PLIST_SUB+= SUB_FPING=\"${SUB_FPING}\"" -echo "PLIST_SUB+= SUB_SNMP=\"${SUB_SNMP}\"" -echo "PLIST_SUB+= SUB_RADIUS=\"${SUB_RADIUS}\"" -echo "PLIST_SUB+= SUB_MYSQL=\"${SUB_MYSQL}\"" -echo "PLIST_SUB+= SUB_PGSQL=\"${SUB_PGSQL}\"" -echo "PLIST_SUB+= SUB_LDAP=\"${SUB_LDAP}\"" diff --git a/net/nagios/Makefile b/net/nagios/Makefile deleted file mode 100644 index 58dcaa41eea1..000000000000 --- a/net/nagios/Makefile +++ /dev/null @@ -1,41 +0,0 @@ -# New ports collection makefile for: netsaint -# Date created: Wed 12 Jul 2000 -# Whom: will -# -# $FreeBSD$ -# - -PORTNAME= netsaint -PORTVERSION= 0.0.7b6 -CATEGORIES= net -MASTER_SITES= http://netsaint.sourceforge.net/download/ - -MAINTAINER= blaz@si.FreeBSD.org - -LIB_DEPENDS= gd.2:${PORTSDIR}/graphics/gd \ - gnugetopt.1:${PORTSDIR}/devel/libgnugetopt -RUN_DEPENDS= ${LOCALBASE}/libexec/netsaint/check_netsaint:${PORTSDIR}/net/netsaint-plugins - -GNU_CONFIGURE= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - CFLAGS="${CFLAGS} -I${LOCALBASE}/include" \ - LIBS="-L${LOCALBASE}/lib -lgd -lgnugetopt" -CONFIGURE_ARGS= --with-command-user=netsaint \ - --with-command-grp=nogroup \ - --with-netsaint-user=netsaint \ - --with-netsaint-grp=netsaint \ - --sbindir=${PREFIX}/share/netsaint/sbin \ - --libexecdir=${PREFIX}/libexec/netsaint \ - --datadir=${PREFIX}/share/netsaint \ - --sysconfdir=${PREFIX}/etc/netsaint \ - --localstatedir=${PREFIX}/var/netsaint - -INSTALL_TARGET= all install config install-config install-daemoninit install-commandmode - -pre-fetch: - @${SH} ${SCRIPTDIR}/checkps - -pre-install: - @PKG_PREFIX="${PREFIX}" ${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL - -.include <bsd.port.mk> diff --git a/net/nagios/distinfo b/net/nagios/distinfo deleted file mode 100644 index 71d8a704e864..000000000000 --- a/net/nagios/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (netsaint-0.0.7b6.tar.gz) = ff03fc4d440e4d368b87fe51aae75701 diff --git a/net/nagios/files/patch-aa b/net/nagios/files/patch-aa deleted file mode 100644 index 52e4d1752784..000000000000 --- a/net/nagios/files/patch-aa +++ /dev/null @@ -1,39 +0,0 @@ ---- Makefile.in.orig Mon Apr 30 17:22:35 2001 -+++ Makefile.in Tue May 1 19:58:50 2001 -@@ -27,7 +27,7 @@ - INSTALL_OPTS=@INSTALL_OPTS@ - COMMAND_OPTS=@COMMAND_OPTS@ - INIT_DIR=@init_dir@ --INIT_OPTS=-o root -g root -+INIT_OPTS=-o root -g wheel - CGICFGDIR=$(CGIDIR) - PERLDIR=@PERLDIR@ - -@@ -99,20 +99,20 @@ - - install-config: - $(INSTALL) -m 775 $(INSTALL_OPTS) -d $(DESTDIR)$(CFGDIR) -- $(INSTALL) -m 664 $(INSTALL_OPTS) netsaint.cfg $(DESTDIR)$(CFGDIR) -- $(INSTALL) -m 664 $(INSTALL_OPTS) hosts.cfg $(DESTDIR)$(CFGDIR) -- $(INSTALL) -m 664 $(INSTALL_OPTS) commands.cfg $(DESTDIR)$(CFGDIR) -- $(INSTALL) -m 664 $(INSTALL_OPTS) nscgi.cfg $(DESTDIR)$(CFGDIR) -- $(INSTALL) -m 660 $(INSTALL_OPTS) resource.cfg $(DESTDIR)$(CFGDIR) -+ $(INSTALL) -m 664 $(INSTALL_OPTS) netsaint.cfg $(DESTDIR)$(CFGDIR)/netsaint.cfg.dist -+ $(INSTALL) -m 664 $(INSTALL_OPTS) hosts.cfg $(DESTDIR)$(CFGDIR)/hosts.cfg.dist -+ $(INSTALL) -m 664 $(INSTALL_OPTS) commands.cfg $(DESTDIR)$(CFGDIR)/commands.cfg.dist -+ $(INSTALL) -m 664 $(INSTALL_OPTS) nscgi.cfg $(DESTDIR)$(CFGDIR)/nscgi.cfg.dist -+ $(INSTALL) -m 660 $(INSTALL_OPTS) resource.cfg $(DESTDIR)$(CFGDIR)/resource.cfg.dist - - install-init: install-daemoninit - - install-daemoninit: -- $(INSTALL) -m 774 $(INIT_OPTS) daemon-init $(DESTDIR)$(INIT_DIR)/netsaint -+ $(INSTALL) -m 774 $(INIT_OPTS) daemon-init $(DESTDIR)$(INIT_DIR)/netsaint.sh - - install-commandmode: - $(INSTALL) -m 775 $(COMMAND_OPTS) -d $(DESTDIR)$(LOGDIR)/rw -- chmod g+s $(DESTDIR)$(LOGDIR)/rw -+# chmod g+s $(DESTDIR)$(LOGDIR)/rw - - fullinstall: install install-init install-commandmode - diff --git a/net/nagios/files/patch-ab b/net/nagios/files/patch-ab deleted file mode 100644 index 52c154d64fd0..000000000000 --- a/net/nagios/files/patch-ab +++ /dev/null @@ -1,10 +0,0 @@ ---- base/Makefile.in.orig Sun Feb 18 22:33:22 2001 -+++ base/Makefile.in Thu Mar 1 21:58:39 2001 -@@ -86,7 +86,6 @@ - devclean: clean - - install: -- $(INSTALL) -m 775 $(INSTALL_OPTS) -d $(DESTDIR)$(BINDIR) - $(INSTALL) -m 774 $(INSTALL_OPTS) netsaint $(DESTDIR)$(BINDIR) - - diff --git a/net/nagios/files/patch-ad b/net/nagios/files/patch-ad deleted file mode 100644 index 6d8038c4bd21..000000000000 --- a/net/nagios/files/patch-ad +++ /dev/null @@ -1,42 +0,0 @@ ---- configure.orig Thu Mar 1 04:54:12 2001 -+++ configure Thu Mar 1 21:58:09 2001 -@@ -11,7 +11,7 @@ - ac_help= - ac_default_prefix=/usr/local - # Any additions from configure.in: --ac_default_prefix=/usr/local/netsaint -+#ac_default_prefix=/usr/local/netsaint - ac_help="$ac_help - --with-netsaint-user=<user> sets user name to run netsaint" - ac_help="$ac_help -@@ -562,9 +562,9 @@ - # Prefer explicitly selected file to automatically selected ones. - if test -z "$CONFIG_SITE"; then - if test "x$prefix" != xNONE; then -- CONFIG_SITE="$prefix/share/config.site $prefix/etc/config.site" -+ CONFIG_SITE="$prefix/share/netsaint/config.site $prefix/etc/netsaint/config.site" - else -- CONFIG_SITE="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site" -+ CONFIG_SITE="$ac_default_prefix/share/netsaint/config.site $ac_default_prefix/etc/netsaint/config.site" - fi - fi - for ac_site_file in $CONFIG_SITE; do -@@ -1298,6 +1298,9 @@ - LDFLAGS="${LDFLAGS} -L${withval}" - LD_RUN_PATH="${withval}${LD_RUN_PATH:+:}${LD_RUN_PATH}" - -+else -+ LDFLAGS="${LDFLAGS} -L/usr/local/lib" -+ LD_RUN_PATH="/usr/local/ib${LD_RUN_PATH:+:}${LD_RUN_PATH}" - fi - - # Check whether --with-gd-inc or --without-gd-inc was given. -@@ -1305,6 +1308,8 @@ - withval="$with_gd_inc" - - CFLAGS="${CFLAGS} -I${withval}" -+else -+ CFLAGS="${CFLAGS} -I/usr/local/include/gd" - - fi - diff --git a/net/nagios/files/patch-ae b/net/nagios/files/patch-ae deleted file mode 100644 index 37f2c6d96f62..000000000000 --- a/net/nagios/files/patch-ae +++ /dev/null @@ -1,11 +0,0 @@ ---- configure.in.orig Mon Apr 30 17:22:35 2001 -+++ configure.in Tue May 1 19:36:54 2001 -@@ -1,7 +1,7 @@ - dnl Process this -*-m4-*- file with autoconf to produce a configure script. - AC_INIT(base/netsaint.c) - AC_CONFIG_HEADER(common/config.h common/snprintf.h base/netsaint.h cgi/cgiutils.h) --AC_PREFIX_DEFAULT(/usr/local/netsaint) -+AC_PREFIX_DEFAULT(/usr/local) - - dnl Figure out how to invoke "install" and what install options to use. - AC_PROG_INSTALL diff --git a/net/nagios/files/patch-ag b/net/nagios/files/patch-ag deleted file mode 100644 index 14027c5d9cc9..000000000000 --- a/net/nagios/files/patch-ag +++ /dev/null @@ -1,31 +0,0 @@ ---- functions Fri Apr 7 11:11:34 2000 -+++ functions.new Sat Jun 10 13:31:31 2000 -@@ -11,7 +11,7 @@ - # - - # First set up a default search path. --PATH=/opt/gnu/bin:/sbin:/usr/sbin:/bin:/usr/bin:/usr/X11R6/bin -+PATH=/sbin:/usr/sbin:/bin:/usr/bin:/usr/X11R6/bin:/usr/local/bin:/usr/local/sbin - export PATH - - # Get a sane screen width -@@ -174,7 +174,7 @@ - # fi - - # Finally try to extract it from ps -- pid=`ps -eo pid,ppid,fname | egrep -v $$ | awk 'BEGIN { prog=ARGV[1]; ARGC=1 } { if ((prog == $3) || (("(" prog ")") == $3) || (("[" prog "]") == $3) || ((prog ":") == $3)) { print $1 ; exit 0 } }' $1` -+ pid=`ps -axco pid,ppid,command | egrep -v $$ | awk 'BEGIN { prog=ARGV[1]; ARGC=1 } { if ((prog == $3) || (("(" prog ")") == $3) || (("[" prog "]") == $3) || ((prog ":") == $3)) { print $1 ; exit 0 } }' $1` - if [ "$pid" != "" ] ; then - echo $pid - return 0 -@@ -206,8 +206,8 @@ - fi - fi - -- # See if /var/lock/subsys/$1 exists -- if [ -f /var/lock/subsys/$1 ]; then -+ # See if /var/spool/lock/$1 exists -+ if [ -f /var/spool/lock/$1 ]; then - echo "$1 dead but subsys locked" - return 2 - fi diff --git a/net/nagios/files/patch-ai b/net/nagios/files/patch-ai deleted file mode 100644 index 1820da920208..000000000000 --- a/net/nagios/files/patch-ai +++ /dev/null @@ -1,27 +0,0 @@ ---- daemon-init.in.orig Sat Mar 24 19:58:26 2001 -+++ daemon-init.in Tue May 1 19:38:52 2001 -@@ -68,12 +68,9 @@ - - - # Source function library --# Solaris doesn't have an rc.d directory, so do a test first --#if [ -f /etc/rc.d/init.d/functions ]; then --#. /etc/rc.d/init.d/functions --#elif [ -f /etc/init.d/functions ]; then --#. /etc/init.d/functions --#fi -+if [ -f @sysconfdir@/functions ]; then -+. @sysconfdir@/functions -+fi - - prefix=@prefix@ - exec_prefix=@exec_prefix@ -@@ -102,7 +99,7 @@ - - start) - echo "Starting network monitor: netsaint" -- su $Netsaint -c "touch $NetsaintVar/netsaint.log $NetsaintSav" -+ su -m $Netsaint -c "touch $NetsaintVar/netsaint.log $NetsaintSav" - rm -f $NetsaintCmd - $NetsaintBin -d $NetsaintCfg - if [ -d $NetsaintLckDir ]; then touch $NetsaintLckDir/$NetsaintLckFile; fi diff --git a/net/nagios/pkg-comment b/net/nagios/pkg-comment deleted file mode 100644 index 5641db14d8cc..000000000000 --- a/net/nagios/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Extremely powerful network monitoring system diff --git a/net/nagios/pkg-descr b/net/nagios/pkg-descr deleted file mode 100644 index ba87fff062b8..000000000000 --- a/net/nagios/pkg-descr +++ /dev/null @@ -1,12 +0,0 @@ -NetSaint is a program that will monitor hosts and services on your -network. It has the ability to email or page you when a problem arises -and when it gets resolved. NetSaint is written in C and is designed to -run under Linux, although it should work under most other *NIX variants. -It can run either as a normal process or as a daemon, intermittently -running checks on various services that you specify. The actual service -checks are performed by external "plugins" which return service -information to NetSaint. Several CGI programs are included with NetSaint -in order to allow you to view the current service status, history, etc. -via a web browser. - -WWW: http://www.netsaint.org/ diff --git a/net/nagios/pkg-install b/net/nagios/pkg-install deleted file mode 100644 index 52af9cc24d68..000000000000 --- a/net/nagios/pkg-install +++ /dev/null @@ -1,68 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# - -PKG_PREFIX=${PKG_PREFIX:=/usr/local} - -user=netsaint -group=netsaint - -ask() { - local question default answer - - question=$1 - default=$2 - if [ -z "${PACKAGE_BUILDING}" ]; then - read -p "${question} [${default}]? " answer - fi - if [ x${answer} = x ]; then - answer=${default} - fi - echo ${answer} -} - -yesno() { - local dflt question answer - - question=$1 - dflt=$2 - while :; do - answer=$(ask "${question}" "${dflt}") - case "${answer}" in - [Yy]*) return 0;; - [Nn]*) return 1;; - esac - echo "Please answer yes or no." - done -} - -if [ x"$2" = xPRE-INSTALL ]; then - if /usr/sbin/pw groupshow "${group}" 2>/dev/null; then - echo "You already have a group \"${group}\", so I will use it." - else - echo "You need a group \"${group}\"." - if yesno "Would you like me to create it" y; then - /usr/sbin/pw groupadd ${group} -h - || exit - echo "Done." - else - echo "Please create it, and try again." - exit 1 - fi - fi - - if /usr/sbin/pw user show "${user}" 2>/dev/null; then - echo "You already have a user \"${user}\", so I will use it." - else - echo "You need a user \"${user}\"." - if yesno "Would you like me to create it" y; then - /usr/sbin/pw useradd ${user} -g ${group} -h - -d ${PKG_PREFIX}/var/netsaint \ - -s /nonexistent -c "Netsaint pseudo-user" || exit - echo "Done." - else - echo "Please create it, and try again." - exit 1 - fi - fi - -fi diff --git a/net/nagios/pkg-plist b/net/nagios/pkg-plist deleted file mode 100644 index fd71eef30b88..000000000000 --- a/net/nagios/pkg-plist +++ /dev/null @@ -1,294 +0,0 @@ -@exec mkdir -p %D/var/netsaint/archives -@exec mkdir -p %D/var/netsaint/rw -@exec chmod 775 %D/var/netsaint %D/var/netsaint/archives %D/var/netsaint/rw -@exec chown netsaint:netsaint %D/var/netsaint %D/var/netsaint/archives -@exec chown netsaint:nogroup %D/var/netsaint/rw -bin/netsaint -etc/netsaint/commands.cfg.dist -etc/netsaint/hosts.cfg.dist -etc/netsaint/netsaint.cfg.dist -etc/netsaint/nscgi.cfg.dist -etc/netsaint/resource.cfg.dist -etc/rc.d/netsaint.sh -share/netsaint/docs/about.html -share/netsaint/docs/addons.html -share/netsaint/docs/cgiauth.html -share/netsaint/docs/cgis.html -share/netsaint/docs/checkscheduling.html -share/netsaint/docs/clusters.html -share/netsaint/docs/commandfile.html -share/netsaint/docs/config.html -share/netsaint/docs/configcgi.html -share/netsaint/docs/confighost.html -share/netsaint/docs/configmain.html -share/netsaint/docs/dependencies.html -share/netsaint/docs/developer/commentfile.html -share/netsaint/docs/developer/images/xcdapi.gif -share/netsaint/docs/developer/images/xedapi.gif -share/netsaint/docs/developer/images/xodapi.gif -share/netsaint/docs/developer/images/xrdapi.gif -share/netsaint/docs/developer/images/xsdapi.gif -share/netsaint/docs/developer/index.html -share/netsaint/docs/developer/pluginhowto.html -share/netsaint/docs/developer/stateretentionfile.html -share/netsaint/docs/developer/statusfile.html -share/netsaint/docs/developer/xcd.html -share/netsaint/docs/developer/xdata.html -share/netsaint/docs/developer/xed.html -share/netsaint/docs/developer/xod.html -share/netsaint/docs/developer/xrd.html -share/netsaint/docs/developer/xsd.html -share/netsaint/docs/distributed.html -share/netsaint/docs/downtime.html -share/netsaint/docs/escalations.html -share/netsaint/docs/eventhandlers.html -share/netsaint/docs/extcommands.html -share/netsaint/docs/faqs.html -share/netsaint/docs/flapping.html -share/netsaint/docs/funstuff.html -share/netsaint/docs/images/activepassive.gif -share/netsaint/docs/images/avail_cgi.gif -share/netsaint/docs/images/checktiming.gif -share/netsaint/docs/images/cmd_cgi.gif -share/netsaint/docs/images/config_cgi.gif -share/netsaint/docs/images/distributed.gif -share/netsaint/docs/images/extinfo_cgi_a.gif -share/netsaint/docs/images/extinfo_cgi_b.gif -share/netsaint/docs/images/extinfo_cgi_c.gif -share/netsaint/docs/images/extinfo_cgi_d.gif -share/netsaint/docs/images/extinfo_cgi_e.gif -share/netsaint/docs/images/history_cgi.gif -share/netsaint/docs/images/indirecthostcheck.gif -share/netsaint/docs/images/indirectsvccheck.gif -share/netsaint/docs/images/indirectsvccheck2.gif -share/netsaint/docs/images/interleaved1.gif -share/netsaint/docs/images/interleaved2.gif -share/netsaint/docs/images/network-heirarchy.gif -share/netsaint/docs/images/network-outage1.gif -share/netsaint/docs/images/network-outage2.gif -share/netsaint/docs/images/noninterleaved1.gif -share/netsaint/docs/images/noninterleaved2.gif -share/netsaint/docs/images/notification-process.gif -share/netsaint/docs/images/notifications_cgi.gif -share/netsaint/docs/images/outages_cgi.gif -share/netsaint/docs/images/physical-network.gif -share/netsaint/docs/images/plugintheory.gif -share/netsaint/docs/images/redundancy-1.gif -share/netsaint/docs/images/redundancy-2.gif -share/netsaint/docs/images/service-dependencies.gif -share/netsaint/docs/images/showlog_cgi.gif -share/netsaint/docs/images/statetransitions.gif -share/netsaint/docs/images/statetransitions2.gif -share/netsaint/docs/images/status_cgi_a.gif -share/netsaint/docs/images/status_cgi_b.gif -share/netsaint/docs/images/statusmap_cgi.gif -share/netsaint/docs/images/statuswml_cgi.gif -share/netsaint/docs/images/statuswrl_cgi.gif -share/netsaint/docs/images/tac_cgi.gif -share/netsaint/docs/images/trends_cgi.gif -share/netsaint/docs/index.html -share/netsaint/docs/indirectchecks.html -share/netsaint/docs/installing.html -share/netsaint/docs/installweb.html -share/netsaint/docs/macros.html -share/netsaint/docs/makehtml.html -share/netsaint/docs/networkoutages.html -share/netsaint/docs/networkreachability.html -share/netsaint/docs/notifications.html -share/netsaint/docs/oldplugins.html -share/netsaint/docs/parallelization.html -share/netsaint/docs/passivechecks.html -share/netsaint/docs/perfdata.html -share/netsaint/docs/pluginhowto.html -share/netsaint/docs/plugins.html -share/netsaint/docs/plugintheory.html -share/netsaint/docs/programmodes.html -share/netsaint/docs/redundancy.html -share/netsaint/docs/robots.txt -share/netsaint/docs/security.html -share/netsaint/docs/starting.html -share/netsaint/docs/statetypes.html -share/netsaint/docs/statuslevels.html -share/netsaint/docs/stoprestart.html -share/netsaint/docs/theory.html -share/netsaint/docs/timeperiods.html -share/netsaint/docs/tuning.html -share/netsaint/docs/verifyconfig.html -share/netsaint/docs/volatileservices.html -share/netsaint/docs/whatsnew.html -share/netsaint/docs/xdata-db.html -share/netsaint/images/ack.gif -share/netsaint/images/active.gif -share/netsaint/images/command.gif -share/netsaint/images/comment.gif -share/netsaint/images/config.gif -share/netsaint/images/contact.gif -share/netsaint/images/contactgroup.gif -share/netsaint/images/critical.gif -share/netsaint/images/delay.gif -share/netsaint/images/delete.gif -share/netsaint/images/disabled.gif -share/netsaint/images/down.gif -share/netsaint/images/downtime.gif -share/netsaint/images/enabled.gif -share/netsaint/images/extinfo.gif -share/netsaint/images/flapping.gif -share/netsaint/images/greendot.gif -share/netsaint/images/history.gif -share/netsaint/images/host.gif -share/netsaint/images/hostevent.gif -share/netsaint/images/info.gif -share/netsaint/images/left.gif -share/netsaint/images/logofullsize.gif -share/netsaint/images/logos/aix.gd2 -share/netsaint/images/logos/aix.gif -share/netsaint/images/logos/amiga.gd2 -share/netsaint/images/logos/amiga.gif -share/netsaint/images/logos/apple.gd2 -share/netsaint/images/logos/apple.gif -share/netsaint/images/logos/beos.gd2 -share/netsaint/images/logos/beos.gif -share/netsaint/images/logos/caldera.gd2 -share/netsaint/images/logos/caldera.gif -share/netsaint/images/logos/cat1900.gd2 -share/netsaint/images/logos/cat2900.gd2 -share/netsaint/images/logos/cat5000.gd2 -share/netsaint/images/logos/debian.gd2 -share/netsaint/images/logos/debian.gif -share/netsaint/images/logos/freebsd40.gd2 -share/netsaint/images/logos/freebsd40.gif -share/netsaint/images/logos/hp-printer40.gd2 -share/netsaint/images/logos/hp-printer40.gif -share/netsaint/images/logos/hpux.gd2 -share/netsaint/images/logos/hpux.gif -share/netsaint/images/logos/irix.gd2 -share/netsaint/images/logos/irix.gif -share/netsaint/images/logos/linux40.gd2 -share/netsaint/images/logos/linux40.gif -share/netsaint/images/logos/logo.gd2 -share/netsaint/images/logos/mac40.gd2 -share/netsaint/images/logos/mac40.gif -share/netsaint/images/logos/mandrake.gd2 -share/netsaint/images/logos/mandrake.gif -share/netsaint/images/logos/next.gd2 -share/netsaint/images/logos/next.gif -share/netsaint/images/logos/netsaint.gd2 -share/netsaint/images/logos/ng-switch40.gd2 -share/netsaint/images/logos/ng-switch40.gif -share/netsaint/images/logos/novell40.gd2 -share/netsaint/images/logos/novell40.gif -share/netsaint/images/logos/openbsd.gd2 -share/netsaint/images/logos/openbsd.gif -share/netsaint/images/logos/redhat.gd2 -share/netsaint/images/logos/redhat.gif -share/netsaint/images/logos/router40.gd2 -share/netsaint/images/logos/router40.gif -share/netsaint/images/logos/slackware.gd2 -share/netsaint/images/logos/slackware.gif -share/netsaint/images/logos/stampede.gd2 -share/netsaint/images/logos/stampede.gif -share/netsaint/images/logos/storm.gd2 -share/netsaint/images/logos/storm.gif -share/netsaint/images/logos/sun40.gd2 -share/netsaint/images/logos/sun40.gif -share/netsaint/images/logos/sunlogo.gd2 -share/netsaint/images/logos/sunlogo.gif -share/netsaint/images/logos/switch40.gd2 -share/netsaint/images/logos/switch40.gif -share/netsaint/images/logos/turbolinux.gd2 -share/netsaint/images/logos/turbolinux.gif -share/netsaint/images/logos/ultrapenguin.gd2 -share/netsaint/images/logos/ultrapenguin.gif -share/netsaint/images/logos/unicos.gd2 -share/netsaint/images/logos/unicos.gif -share/netsaint/images/logos/unknown.gd2 -share/netsaint/images/logos/win40.gd2 -share/netsaint/images/logos/win40.gif -share/netsaint/images/logos/yellowdog.gd2 -share/netsaint/images/logos/yellowdog.gif -share/netsaint/images/logrotate.gif -share/netsaint/images/logs.gif -share/netsaint/images/ndisabled.gif -share/netsaint/images/noack.gif -share/netsaint/images/notes.gif -share/netsaint/images/notify.gif -share/netsaint/images/orangedot.gif -share/netsaint/images/parentup.gif -share/netsaint/images/recovery.gif -share/netsaint/images/restart.gif -share/netsaint/images/right.gif -share/netsaint/images/sbbg.gif -share/netsaint/images/sbconfig.gif -share/netsaint/images/sbgeneral.gif -share/netsaint/images/sblogo.gif -share/netsaint/images/sbmonitor.gif -share/netsaint/images/serviceevent.gif -share/netsaint/images/sideback.jpg -share/netsaint/images/standby.gif -share/netsaint/images/start.gif -share/netsaint/images/status.gif -share/netsaint/images/status2.gif -share/netsaint/images/status3.gif -share/netsaint/images/status4.gif -share/netsaint/images/stop.gif -share/netsaint/images/tacdisabled.jpg -share/netsaint/images/tacenabled.jpg -share/netsaint/images/thermcrit.gif -share/netsaint/images/thermok.gif -share/netsaint/images/thermwarn.gif -share/netsaint/images/trends.gif -share/netsaint/images/trendshost.png -share/netsaint/images/trendssvc.png -share/netsaint/images/unknown.gif -share/netsaint/images/up.gif -share/netsaint/images/warning.gif -share/netsaint/images/zoom1.gif -share/netsaint/images/zoom2.gif -share/netsaint/index.html -share/netsaint/main.html -share/netsaint/media/critical.wav -share/netsaint/media/hostdown.wav -share/netsaint/media/warning.wav -share/netsaint/robots.txt -share/netsaint/sbin/avail.cgi -share/netsaint/sbin/cmd.cgi -share/netsaint/sbin/config.cgi -share/netsaint/sbin/extinfo.cgi -share/netsaint/sbin/history.cgi -share/netsaint/sbin/notifications.cgi -share/netsaint/sbin/outages.cgi -share/netsaint/sbin/showlog.cgi -share/netsaint/sbin/status.cgi -share/netsaint/sbin/statusmap.cgi -share/netsaint/sbin/statuswml.cgi -share/netsaint/sbin/statuswrl.cgi -share/netsaint/sbin/tac.cgi -share/netsaint/sbin/trends.cgi -share/netsaint/side.html -share/netsaint/stylesheets/avail.css -share/netsaint/stylesheets/cmd.css -share/netsaint/stylesheets/config.css -share/netsaint/stylesheets/extinfo.css -share/netsaint/stylesheets/history.css -share/netsaint/stylesheets/notifications.css -share/netsaint/stylesheets/outages.css -share/netsaint/stylesheets/showlog.css -share/netsaint/stylesheets/status.css -share/netsaint/stylesheets/statusmap.css -share/netsaint/stylesheets/tac.css -share/netsaint/stylesheets/trends.css -@unexec rmdir %D/etc/netsaint 2>/dev/null || true -@dirrm share/netsaint/docs/developer/images -@dirrm share/netsaint/docs/developer -@dirrm share/netsaint/docs/images -@dirrm share/netsaint/docs -@dirrm share/netsaint/images/logos -@dirrm share/netsaint/images -@dirrm share/netsaint/media -@dirrm share/netsaint/sbin -@dirrm share/netsaint/stylesheets -@dirrm share/netsaint -@unexec rmdir %D/var/netsaint/archives 2>/dev/null || true -@unexec rmdir %D/var/netsaint/rw 2>/dev/null || true -@unexec rmdir %D/var/netsaint 2>/dev/null || true -@unexec rmdir %D/var 2>/dev/null || true diff --git a/net/nagios/scripts/checkps b/net/nagios/scripts/checkps deleted file mode 100644 index 61a4d67baaa7..000000000000 --- a/net/nagios/scripts/checkps +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/sh -/bin/ps 999999 2>&1 >/dev/null -if [ $? = 0 ]; then - echo "You need to upgrade to RELENG_3, RELENG_4, or HEAD sometime" - echo "after July 8, 2000 around 5:15AM UTC, so that ps(1) will" - echo "return an error code if a PID does not exist. Netsaint needs this!" - exit -else - echo "Great, you have a working ps(1)! Netsaint can build." -fi diff --git a/net/net-snmp4/Makefile b/net/net-snmp4/Makefile deleted file mode 100644 index c5e8202cadbc..000000000000 --- a/net/net-snmp4/Makefile +++ /dev/null @@ -1,82 +0,0 @@ -# New ports collection makefile for: ucd-snmp -# Date created: 26 June 1996 -# Whom: gpalmer -# -# $FreeBSD$ -# - -PORTNAME= ucd-snmp -PORTVERSION= 4.2.1 -CATEGORIES= net ipv6 -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \ - ftp://ucd-snmp.ucdavis.edu/ \ - ftp://sunsite.cnlab-switch.ch/mirror/ucd-snmp/ \ - ftp://ftp.win.or.jp/pub/network/snmp/ucd-snmp/ -MASTER_SITE_SUBDIR= net-snmp - -MAINTAINER= billf@FreeBSD.org - -USE_AUTOCONF= yes -USE_LIBTOOL= yes -INSTALLS_SHLIB= yes -LIBTOOLFLAGS= --disable-ltlibs --release-ignore - -CONFIGURE_ARGS+= --enable-shared --with-mib-modules="host" --with-gnu-ld -.if defined(BATCH) -CONFIGURE_ARGS+= --with-defaults --with-sys-contact=nobody@no.where -.else -IS_INTERACTIVE= yes -.endif - -MAN1= snmpbulkget.1 snmpbulkwalk.1 snmpcmd.1 snmpconf.1 snmpd.1 \ - snmpdelta.1 snmpdf.1 snmpget.1 snmpgetnext.1 snmpinform.1 \ - snmpnetstat.1 snmpset.1 snmpstatus.1 snmptable.1 snmptest.1 \ - snmptranslate.1 snmptrap.1 snmpusm.1 snmpwalk.1 -MAN3= add_mibdir.3 add_module_replacement.3 default_store.3 \ - get_module_node.3 init_mib.3 init_mib_internals.3 mib_api.3 \ - print_description.3 print_mib.3 print_objid.3 print_value.3 \ - print_variable.3 read_all_mibs.3 read_config.3 read_mib.3 \ - read_module.3 read_module_node.3 read_objid.3 shutdown_mib.3 \ - snmp_agent_api.3 snmp_alarm.3 snmp_api.3 snmp_close.3 \ - snmp_free_pdu.3 snmp_open.3 snmp_read.3 snmp_select_info.3 \ - snmp_send.3 snmp_sess_api.3 snmp_sess_async_send.3 \ - snmp_sess_close.3 snmp_sess_error.3 snmp_sess_init.3 \ - snmp_sess_open.3 snmp_sess_read.3 snmp_sess_select_info.3 \ - snmp_sess_send.3 snmp_sess_session.3 snmp_sess_timeout.3 \ - snmp_set_mib_warnings.3 snmp_set_save_descriptions.3 \ - snmp_timeout.3 snmp_trap_api.3 -MAN5= snmp.conf.5 snmp_config.5 snmpd.conf.5 \ - snmptrapd.conf.5 variables.5 -MAN8= snmptrapd.8 -BIN= snmpbulkwalk snmpget snmpgetnext snmpnetstat snmpset \ - snmpstatus snmptest snmptranslate snmptrap snmpwalk -SBIN= snmpd snmptrapd - -STARTUP_FILE= ${PREFIX}/etc/rc.d/snmpd.sh - -.include <bsd.port.pre.mk> - -.if ${OSVERSION} >= 400014 -CONFIGURE_ARGS+= --enable-ipv6 -.endif - -SHLIB_VERSION= 4 -PLIST_SUB+= shlib=${SHLIB_VERSION} - -post-patch: - @${CP} ${FILESDIR}/freebsd4.h ${WRKSRC}/s - -post-install: - @( cd ${PREFIX}/bin && strip ${BIN} ) - @( cd ${PREFIX}/sbin && strip ${SBIN} ) - @( cd ${PREFIX}/include/ucd-snmp && ${CHMOD} 644 * ) - @( cd ${PREFIX}/share/snmp/mibs && ${CHMOD} 644 * ) - @${MKDIR} ${PREFIX}/share/examples/ucd-snmp - @for F in ${WRKSRC}/EXAMPLE.conf ${WRKSRC}/agent/mibgroup/examples/ucdDemoPublic.conf; do \ - ${INSTALL_DATA} $$F ${PREFIX}/share/examples/ucd-snmp ; done - @if [ ! -f ${STARTUP_FILE} ]; then \ - ${ECHO} "Creating ${PREFIX}/etc/rc.d/snmpd.sh startup file."; \ - ${INSTALL_SCRIPT} -m 751 ${FILESDIR}/snmpd.sh.sample ${STARTUP_FILE}; \ - fi - -.include <bsd.port.post.mk> diff --git a/net/net-snmp4/distinfo b/net/net-snmp4/distinfo deleted file mode 100644 index 3d3fe91c8098..000000000000 --- a/net/net-snmp4/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (ucd-snmp-4.2.1.tar.gz) = 192d467185c8e7142c155d5e162b1e97 diff --git a/net/net-snmp4/files/freebsd4.h b/net/net-snmp4/files/freebsd4.h deleted file mode 100644 index e0774c7e4cd6..000000000000 --- a/net/net-snmp4/files/freebsd4.h +++ /dev/null @@ -1 +0,0 @@ -#include "freebsd3.h" diff --git a/net/net-snmp4/files/patch-Makefile.top b/net/net-snmp4/files/patch-Makefile.top deleted file mode 100644 index 2ecdb3d91c59..000000000000 --- a/net/net-snmp4/files/patch-Makefile.top +++ /dev/null @@ -1,11 +0,0 @@ ---- Makefile.top.orig Mon Nov 20 05:58:05 2000 -+++ Makefile.top Thu Feb 8 01:21:42 2001 -@@ -51,7 +51,7 @@ - # Misc Compiling Stuff - CC = @CC@ - # version number is prefixed by a 0 for a better shared library version number --LIB_LD_CMD = $(LIBTOOL) --mode=link $(CC) $(CFLAGS) -rpath $(libdir) -release 0.$(VERSION) -o -+LIB_LD_CMD = $(LIBTOOL) --mode=link $(CC) $(CFLAGS) -rpath $(libdir) -release $(VERSION).0 -version-info 4 -o - LIB_EXTENSION = la - LIB_VERSION = - LIB_LDCONFIG_CMD = $(LIBTOOL) --mode=finish $(libdir) diff --git a/net/net-snmp4/files/patch-aa b/net/net-snmp4/files/patch-aa deleted file mode 100644 index 6c287d18ac93..000000000000 --- a/net/net-snmp4/files/patch-aa +++ /dev/null @@ -1,13 +0,0 @@ ---- snmplib/Makefile.in.orig Mon Oct 2 11:41:46 2000 -+++ snmplib/Makefile.in Wed Jan 17 18:29:44 2001 -@@ -70,6 +70,10 @@ - - libsnmp.$(LIB_EXTENSION)$(LIB_VERSION): ${TOBJS} - $(LIB_LD_CMD) libsnmp.$(LIB_EXTENSION)$(LIB_VERSION) ${TOBJS} -+ ld -Bshareable -soname libsnmp.so.4 \ -+ -o libsnmp.so ${OBJS} -+ ln -f libsnmp.so \ -+ ../libsnmp.so.4 - $(RANLIB) libsnmp.$(LIB_EXTENSION)$(LIB_VERSION) - - installdirs: diff --git a/net/net-snmp4/files/patch-ad b/net/net-snmp4/files/patch-ad deleted file mode 100644 index bd85f7453919..000000000000 --- a/net/net-snmp4/files/patch-ad +++ /dev/null @@ -1,47 +0,0 @@ ---- agent/mibgroup/mibII/interfaces.c.orig Fri Dec 1 14:17:21 2000 -+++ agent/mibgroup/mibII/interfaces.c Thu Jan 18 00:04:42 2001 -@@ -129,7 +129,7 @@ - #if HAVE_SYS_SYSCTL_H - #include <sys/sysctl.h> - --#ifdef freebsd3 -+#if defined(freebsd3) || defined(freebsd4) || defined(freebsd5) - # define USE_SYSCTL_IFLIST - #else - # if defined(CTL_NET) && !defined(freebsd2) -@@ -1842,10 +1842,18 @@ - physaddrbuf = 0; - } - ifm = (struct if_msghdr *)rtm; -+#if defined(freebsd3) || defined(freebsd4) || defined(freebsd5) -+ if (physaddrs != 0) physaddrs[naddrs] = (void*)(ifm + 1); -+ naddrs++; -+#endif - ilen -= ifm->ifm_msglen; - cp += ifm->ifm_msglen; - rtm = (struct rt_msghdr *)cp; - while (ilen > 0 && rtm->rtm_type == RTM_NEWADDR) { -+#if defined(freebsd3) || defined(freebsd4) || defined(freebsd5) -+ ilen -= rtm->rtm_msglen; -+ cp += rtm->rtm_msglen; -+#else - int is_alias = 0; - ifam = (struct ifa_msghdr *)rtm; - ilen -= sizeof(*ifam); -@@ -1868,6 +1876,7 @@ - } - sa = (struct sockaddr *)cp; - } -+#endif - rtm = (struct rt_msghdr *)cp; - } - } -@@ -1982,7 +1991,7 @@ - if (ifmd.ifmd_data.ifi_lastchange.tv_sec == 0 && - ifmd.ifmd_data.ifi_lastchange.tv_usec == 0) { - long_return = 0; -- else if (ifmd.ifmd_data.ifi_lastchange.tv_sec < starttime.tv_sec) -+ } else if (ifmd.ifmd_data.ifi_lastchange.tv_sec < starttime.tv_sec) { - long_return = 0; - } else { - long_return = (u_long) diff --git a/net/net-snmp4/files/patch-ah b/net/net-snmp4/files/patch-ah deleted file mode 100644 index 194cbf3574b9..000000000000 --- a/net/net-snmp4/files/patch-ah +++ /dev/null @@ -1,7 +0,0 @@ ---- local/tkmib~ Wed Jul 26 08:53:26 2000 -+++ local/tkmib Wed Jan 17 18:32:52 2001 -@@ -1,4 +1,3 @@ --#!/usr/bin/perl - #!/usr/bin/perl -w - - require 5; diff --git a/net/net-snmp4/files/patch-ak b/net/net-snmp4/files/patch-ak deleted file mode 100644 index 8a9d310cd7a0..000000000000 --- a/net/net-snmp4/files/patch-ak +++ /dev/null @@ -1,21 +0,0 @@ ---- agent/Makefile.in.orig Sun Nov 19 12:58:06 2000 -+++ agent/Makefile.in Wed Jan 17 18:37:02 2001 -@@ -68,10 +68,18 @@ - - libucdagent.$(LIB_EXTENSION)$(LIB_VERSION): ${LLIBAGENTOBJS} libucdmibs.$(LIB_EXTENSION)$(LIB_VERSION) - $(LIB_LD_CMD) libucdagent.$(LIB_EXTENSION)$(LIB_VERSION) ${LLIBAGENTOBJS} $(LIB_LD_LIBS) -+ ld -Bshareable -soname libucdagent.$(LIB_EXTENSION)$(LIB_VERSION) \ -+ -o libucdagent.so ${LIBAGENTOBJS} -+ ln -f libucdagent.so \ -+ ../libucdagent.so.4 - $(RANLIB) libucdmibs.$(LIB_EXTENSION)$(LIB_VERSION) - - libucdmibs.$(LIB_EXTENSION)$(LIB_VERSION): ${LMIBOBJS} - $(LIB_LD_CMD) libucdmibs.$(LIB_EXTENSION)$(LIB_VERSION) ${LMIBOBJS} $(LIB_LD_LIBS) -+ ld -Bshareable -soname libucdmibs.so.4 \ -+ -o libucdmibs.so ${MIBOBJS} -+ ln -f libucdmibs.so \ -+ ../libucdmibs.so.4 - $(RANLIB) libucdmibs.$(LIB_EXTENSION)$(LIB_VERSION) - - clean: diff --git a/net/net-snmp4/files/patch-al b/net/net-snmp4/files/patch-al deleted file mode 100644 index c2464056b6bc..000000000000 --- a/net/net-snmp4/files/patch-al +++ /dev/null @@ -1,29 +0,0 @@ ---- configure.in~ Sat May 6 01:46:26 2000 -+++ configure.in Wed May 17 11:09:08 2000 -@@ -1286,6 +1286,26 @@ - AC_CACHE_CHECK(type of rtentry structure,ac_cv_RTENTRY_TYPE, - [ - -+dnl 4.4 compatible but renamed on FreeBSD -+AC_TRY_COMPILE([ -+#include <sys/types.h> -+#define KERNEL -+#define _KERNEL -+#include <sys/socket.h> -+#undef KERNEL -+#undef _KERNEL -+#include <net/route.h> -+],[ -+ -+#ifndef STRUCT_RTENTRY_HAS_RT_DST -+#define rt_dst rt_nodes->rn_key -+#endif -+ -+ struct rtentry rt; -+ rt.rt_nodes[0].rn_bit = 1; -+ rt.rt_dst; -+ ], ac_cv_RTENTRY_TYPE="BSD-4.4") -+ - dnl 4.4 compat - AC_TRY_COMPILE([ - #include <sys/types.h> diff --git a/net/net-snmp4/files/patch-ao b/net/net-snmp4/files/patch-ao deleted file mode 100644 index 9ba64ec94695..000000000000 --- a/net/net-snmp4/files/patch-ao +++ /dev/null @@ -1,11 +0,0 @@ ---- agent/mibgroup/host/hr_filesys.c.orig Wed Jan 17 19:09:48 2001 -+++ agent/mibgroup/host/hr_filesys.c Wed Jan 17 19:10:22 2001 -@@ -38,7 +38,7 @@ - #include <stdlib.h> - #endif - --#if defined(freebsd3) || defined(bsdi4) -+#if defined(freebsd3) || defined(bsdi4) || defined(freebsd4) || defined(freebsd5) - #if HAVE_GETFSSTAT - #if defined(MFSNAMELEN) - #define MOUNT_NFS "nfs" diff --git a/net/net-snmp4/files/patch-hr_swrun.c b/net/net-snmp4/files/patch-hr_swrun.c deleted file mode 100644 index 554ac1e1daef..000000000000 --- a/net/net-snmp4/files/patch-hr_swrun.c +++ /dev/null @@ -1,84 +0,0 @@ ---- agent/mibgroup/host/hr_swrun.c~ Wed Mar 14 22:45:56 2001 -+++ agent/mibgroup/host/hr_swrun.c Tue Mar 27 12:37:57 2001 -@@ -365,7 +365,11 @@ - strcpy(string, proc_buf->p_user.u_comm); - #endif - #elif HAVE_KVM_GETPROCS -+#if defined(freebsd5) && __FreeBSD_version >= 500014 -+ strcpy(string, proc_table[LowProcIndex].ki_comm); -+#else - strcpy(string, proc_table[LowProcIndex].kp_proc.p_comm); -+#endif - #elif defined(linux) - sprintf( string, "/proc/%d/status", pid ); - if ((fp = fopen( string, "r")) == NULL) return NULL; -@@ -417,7 +421,11 @@ - *cp1 = 0; - #endif - #elif HAVE_KVM_GETPROCS -+#if defined(freebsd5) && __FreeBSD_version >= 500014 -+ strcpy(string, proc_table[LowProcIndex].ki_comm); -+#else - strcpy(string, proc_table[LowProcIndex].kp_proc.p_comm); -+#endif - #elif defined(linux) - sprintf( string, "/proc/%d/cmdline", pid ); - if ((fp = fopen( string, "r")) == NULL) return NULL; -@@ -550,7 +558,11 @@ - } - #else - #if HAVE_KVM_GETPROCS -+#if defined(freebsd5) && __FreeBSD_version >= 500014 -+ switch ( proc_table[LowProcIndex].ki_stat ) { -+#else - switch ( proc_table[LowProcIndex].kp_proc.p_stat ) { -+#endif - #elif defined(solaris2) - #if _SLASH_PROC_METHOD_ - switch (proc_buf ? proc_buf->pr_lwp.pr_state : SIDL) { -@@ -631,9 +643,17 @@ - proc_buf->p_stime*100; - #endif - #elif HAVE_KVM_GETPROCS -+#if defined(freebsd5) && __FreeBSD_version >= 500014 -+ /* XXX: Accessing ki_paddr causes sig10 ... -+ long_return = proc_table[LowProcIndex].ki_paddr->p_uticks + -+ proc_table[LowProcIndex].ki_paddr->p_sticks + -+ proc_table[LowProcIndex].ki_paddr->p_iticks; */ -+ long_return = 0; -+#else - long_return = proc_table[LowProcIndex].kp_proc.p_uticks + - proc_table[LowProcIndex].kp_proc.p_sticks + - proc_table[LowProcIndex].kp_proc.p_iticks; -+#endif - #elif defined(linux) - sprintf( string, "/proc/%d/stat", pid ); - if ((fp = fopen( string, "r")) == NULL) return NULL; -@@ -673,6 +693,13 @@ - #elif HAVE_KVM_GETPROCS - #ifdef freebsd3 - long_return = proc_table[LowProcIndex].kp_eproc.e_vm.vm_map.size/1024; -+#elif defined(freebsd5) && __FreeBSD_version >= 500014 -+ /* XXX -+ long_return = proc_table[LowProcIndex].ki_vmspace->vm_tsize + -+ proc_table[LowProcIndex].ki_vmspace->vm_ssize + -+ proc_table[LowProcIndex].ki_vmspace->vm_dsize; -+ long_return = long_return * (getpagesize() / 1024); */ -+ long_return = 0; - #else - long_return = proc_table[LowProcIndex].kp_eproc.e_vm.vm_tsize + - proc_table[LowProcIndex].kp_eproc.e_vm.vm_ssize + -@@ -819,8 +846,13 @@ - #elif defined(solaris2) - return proc_table[current_proc_entry++]; - #elif HAVE_KVM_GETPROCS -+#if defined(freebsd5) && __FreeBSD_version >= 500014 -+ if ( proc_table[current_proc_entry].ki_stat != 0 ) -+ return proc_table[current_proc_entry++].ki_pid; -+#else - if ( proc_table[current_proc_entry].kp_proc.p_stat != 0 ) - return proc_table[current_proc_entry++].kp_proc.p_pid; -+#endif - #else - if ( proc_table[current_proc_entry].p_stat != 0 ) - return proc_table[current_proc_entry++].p_pid; diff --git a/net/net-snmp4/files/snmpd.sh.sample b/net/net-snmp4/files/snmpd.sh.sample deleted file mode 100644 index 71f8b504ce81..000000000000 --- a/net/net-snmp4/files/snmpd.sh.sample +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/sh - -if ! PREFIX=$(expr $0 : "\(/.*\)/etc/rc\.d/$(basename $0)\$"); then - echo "$0: Cannot determine the PREFIX" >&2 - exit 1 -fi - -case "$1" in -start) - [ -x ${PREFIX}/sbin/snmpd ] && ${PREFIX}/sbin/snmpd && echo -n ' snmpd' - ;; -stop) - killall snmpd && echo -n ' snmpd' - ;; -*) - echo "Usage: `basename $0` {start|stop}" >&2 - ;; -esac - -exit 0 diff --git a/net/net-snmp4/pkg-comment b/net/net-snmp4/pkg-comment deleted file mode 100644 index 3cd33e88aced..000000000000 --- a/net/net-snmp4/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -An extendable SNMP implementation diff --git a/net/net-snmp4/pkg-descr b/net/net-snmp4/pkg-descr deleted file mode 100644 index d7c5d86a1b58..000000000000 --- a/net/net-snmp4/pkg-descr +++ /dev/null @@ -1,12 +0,0 @@ -This is UCD SNMP, a derivative of CMU's SNMP package. - -Various tools relating to the Simple Network Management Protocol including: - - An extensible agent - An SNMP library - tools to request or set information from SNMP agents - tools to generate and handle SNMP traps - a version of the unix 'netstat' command using SNMP - a Tk/perl mib browser - -WWW: http://net-snmp.sourceforge.net/ diff --git a/net/net-snmp4/pkg-plist b/net/net-snmp4/pkg-plist deleted file mode 100644 index aadf657f6f07..000000000000 --- a/net/net-snmp4/pkg-plist +++ /dev/null @@ -1,145 +0,0 @@ -bin/encode_keychange -bin/mib2c -bin/snmpbulkget -bin/snmpbulkwalk -bin/snmpcheck -bin/snmpconf -bin/snmpdelta -bin/snmpdf -bin/snmpget -bin/snmpgetnext -bin/snmpinform -bin/snmpnetstat -bin/snmpset -bin/snmpstatus -bin/snmptable -bin/snmptest -bin/snmptranslate -bin/snmptrap -bin/snmpusm -bin/snmpvacm -bin/snmpwalk -bin/tkmib -etc/rc.d/snmpd.sh -include/ucd-snmp/agent_index.h -include/ucd-snmp/agent_read_config.h -include/ucd-snmp/agent_registry.h -include/ucd-snmp/agent_trap.h -include/ucd-snmp/asn1.h -include/ucd-snmp/auto_nlist.h -include/ucd-snmp/callback.h -include/ucd-snmp/default_store.h -include/ucd-snmp/ds_agent.h -include/ucd-snmp/header_complex.h -include/ucd-snmp/int64.h -include/ucd-snmp/keytools.h -include/ucd-snmp/mib.h -include/ucd-snmp/mibincl.h -include/ucd-snmp/parse.h -include/ucd-snmp/read_config.h -include/ucd-snmp/scapi.h -include/ucd-snmp/snmp.h -include/ucd-snmp/snmp_agent.h -include/ucd-snmp/snmp_alarm.h -include/ucd-snmp/snmp_api.h -include/ucd-snmp/snmp_client.h -include/ucd-snmp/snmp_debug.h -include/ucd-snmp/snmp_impl.h -include/ucd-snmp/snmp_logging.h -include/ucd-snmp/snmp_parse_args.h -include/ucd-snmp/snmp_vars.h -include/ucd-snmp/snmpusm.h -include/ucd-snmp/snmpv3.h -include/ucd-snmp/struct.h -include/ucd-snmp/system.h -include/ucd-snmp/tools.h -include/ucd-snmp/transform_oids.h -include/ucd-snmp/ucd-snmp-agent-includes.h -include/ucd-snmp/ucd-snmp-config.h -include/ucd-snmp/ucd-snmp-includes.h -include/ucd-snmp/util_funcs.h -include/ucd-snmp/var_struct.h -include/ucd-snmp/version.h -@dirrm include/ucd-snmp -lib/libsnmp.a -lib/libsnmp.so -lib/libsnmp.so.%%shlib%% -lib/libucdagent.a -lib/libucdagent.so -lib/libucdagent.so.%%shlib%% -lib/libucdmibs.a -lib/libucdmibs.so -lib/libucdmibs.so.%%shlib%% -sbin/snmpd -sbin/snmptrapd -share/examples/ucd-snmp/EXAMPLE.conf -share/examples/ucd-snmp/ucdDemoPublic.conf -@dirrm share/examples/ucd-snmp -share/snmp/mib2c.conf -share/snmp/mib2c.storage.conf -share/snmp/mib2c.vartypes.conf -share/snmp/mibs/AGENTX-MIB.txt -share/snmp/mibs/DISMAN-SCHEDULE-MIB.txt -share/snmp/mibs/DISMAN-SCRIPT-MIB.txt -share/snmp/mibs/EtherLike-MIB.txt -share/snmp/mibs/HCNUM-TC.txt -share/snmp/mibs/HOST-RESOURCES-MIB.txt -share/snmp/mibs/HOST-RESOURCES-TYPES.txt -share/snmp/mibs/IANA-ADDRESS-FAMILY-NUMBERS-MIB.txt -share/snmp/mibs/IANA-LANGUAGE-MIB.txt -share/snmp/mibs/IANAifType-MIB.txt -share/snmp/mibs/IF-INVERTED-STACK-MIB.txt -share/snmp/mibs/IF-MIB.txt -share/snmp/mibs/INET-ADDRESS-MIB.txt -share/snmp/mibs/IP-MIB.txt -share/snmp/mibs/IP-FORWARD-MIB.txt -share/snmp/mibs/IPV6-ICMP-MIB.txt -share/snmp/mibs/IPV6-MIB.txt -share/snmp/mibs/IPV6-TC.txt -share/snmp/mibs/IPV6-TCP-MIB.txt -share/snmp/mibs/IPV6-UDP-MIB.txt -share/snmp/mibs/RFC1155-SMI.txt -share/snmp/mibs/RFC1213-MIB.txt -share/snmp/mibs/RFC-1215.txt -share/snmp/mibs/RMON-MIB.txt -share/snmp/mibs/SMUX-MIB.txt -share/snmp/mibs/SNMP-COMMUNITY-MIB.txt -share/snmp/mibs/SNMP-FRAMEWORK-MIB.txt -share/snmp/mibs/SNMP-MPD-MIB.txt -share/snmp/mibs/SNMP-NOTIFICATION-MIB.txt -share/snmp/mibs/SNMP-PROXY-MIB.txt -share/snmp/mibs/SNMP-TARGET-MIB.txt -share/snmp/mibs/SNMP-USER-BASED-SM-MIB.txt -share/snmp/mibs/SNMP-VIEW-BASED-ACM-MIB.txt -share/snmp/mibs/SNMPv2-CONF.txt -share/snmp/mibs/SNMPv2-MIB.txt -share/snmp/mibs/SNMPv2-SMI.txt -share/snmp/mibs/SNMPv2-TC.txt -share/snmp/mibs/SNMPv2-TM.txt -share/snmp/mibs/TCP-MIB.txt -share/snmp/mibs/UCD-DEMO-MIB.txt -share/snmp/mibs/UCD-DISKIO-MIB.txt -share/snmp/mibs/UCD-DLMOD-MIB.txt -share/snmp/mibs/UCD-IPFWACC-MIB.txt -share/snmp/mibs/UCD-SNMP-MIB.txt -share/snmp/mibs/UDP-MIB.txt -share/snmp/snmpconf/snmp.conf/authopts -share/snmp/snmpconf/snmp.conf/debugging -share/snmp/snmpconf/snmp.conf/mibs -share/snmp/snmpconf/snmp.conf/output -share/snmp/snmpconf/snmpd.conf/acl -share/snmp/snmpconf/snmpd.conf/basic_setup -share/snmp/snmpconf/snmpd.conf/extending -share/snmp/snmpconf/snmpd.conf/monitor -share/snmp/snmpconf/snmpd.conf/operation -share/snmp/snmpconf/snmpd.conf/system -share/snmp/snmpconf/snmpd.conf/trapsinks -share/snmp/snmpconf/snmptrapd.conf/formatting -share/snmp/snmpconf/snmptrapd.conf/traphandle -@unexec rm -f %D/share/snmp/mibs/.index -@dirrm share/snmp/mibs -@dirrm share/snmp/snmpconf/snmp.conf -@dirrm share/snmp/snmpconf/snmpd.conf -@dirrm share/snmp/snmpconf/snmptrapd.conf -@dirrm share/snmp/snmpconf -@dirrm share/snmp diff --git a/net/netatalk-devel/Makefile b/net/netatalk-devel/Makefile deleted file mode 100644 index b4e51a07dc1b..000000000000 --- a/net/netatalk-devel/Makefile +++ /dev/null @@ -1,87 +0,0 @@ -# Ports collection makefile for: netatalk -# Date created: 23 Jul 1997 -# Whom: stb -# -# $FreeBSD$ -# - -PORTNAME= netatalk -PORTVERSION= 1.5p7 -PORTREVISION= 2 -CATEGORIES= net print -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= netatalk -DISTNAME= netatalk-1.5pre7 - -MAINTAINER= marcus@marcuscom.com - -.if defined(WITH_CNID) -LIB_DEPENDS= db3.2:${PORTSDIR}/databases/db3 -.endif -.if !exists(/usr/include/tcpd.h) -LIB_DEPENDS+= wrap.7:${PORTSDIR}/security/tcp_wrapper -.endif - -CONFIGURE_ARGS+= --with-tcp-wrappers \ - --with-pkgconfdir=${PREFIX}/etc -.if defined(WITH_PAM) -PLIST_SUB+= NETATALKPAM="" -.else -CONFIGURE_ARGS+= --without-pam -PLIST_SUB+= NETATALKPAM="@comment " -.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.1. I have not gotten working on OS X. -CONFIGURE_ARGS+= --enable-cnid-db \ - --with-db3=/usr/local -.else -# This method of DID calculation is not persistent, but has been tested to -# work with MacOS X (10.0.4) as well as MacOS 7-9.2.1. -CONFIGURE_ARGS+= --with-did=last -.endif -USE_AUTOCONF= yes -USE_LIBTOOL= yes -LIBTOOLFILES= configure -USE_GMAKE= 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 -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 - -post-extract: - @${SED} -e "s=%%PREFIX%%=${PREFIX}=g" ${FILESDIR}/netatalk.sh \ - > ${WRKSRC}/netatalk.sh - -post-configure: - @${TOUCH} ${WRKSRC}/config/Makefile.in - -post-install: - @${RM} -f ${PREFIX}/bin/nu ${PREFIX}/bin/lp2pap.sh \ - ${PREFIX}/etc/netatalk.pamd.dist ${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 - ${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 640f609c812d..000000000000 --- a/net/netatalk-devel/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (netatalk-1.5pre7.tar.gz) = d8f93cd5a634497e1cdbe9f78c4f7240 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 15d4d58e6a76..000000000000 --- a/net/netatalk-devel/files/patch-Makefile.in +++ /dev/null @@ -1,18 +0,0 @@ ---- config/Makefile.in.orig Thu Aug 30 12:02:31 2001 -+++ config/Makefile.in Thu Aug 30 12:03:21 2001 -@@ -136,11 +136,11 @@ - $(mkinstalldirs) $(DESTDIR)$(pkgconfdir) - @list='$(pkgconf_DATA)'; for p in $$list; do \ - if test -f $(srcdir)/$$p; then \ -- echo " $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(pkgconfdir)/$$p"; \ -- $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(pkgconfdir)/$$p; \ -+ echo " $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(pkgconfdir)/$$p.dist"; \ -+ $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(pkgconfdir)/$$p.dist; \ - else if test -f $$p; then \ -- echo " $(INSTALL_DATA) $$p $(DESTDIR)$(pkgconfdir)/$$p"; \ -- $(INSTALL_DATA) $$p $(DESTDIR)$(pkgconfdir)/$$p; \ -+ echo " $(INSTALL_DATA) $$p $(DESTDIR)$(pkgconfdir)/$$p.dist"; \ -+ $(INSTALL_DATA) $$p $(DESTDIR)$(pkgconfdir)/$$p.dist; \ - fi; fi; \ - done - diff --git a/net/netatalk-devel/files/patch-aa b/net/netatalk-devel/files/patch-aa deleted file mode 100644 index c440f1393054..000000000000 --- a/net/netatalk-devel/files/patch-aa +++ /dev/null @@ -1,177 +0,0 @@ ---- libatalk/cnid/cnid_add.c.orig Thu Aug 16 10:30:29 2001 -+++ libatalk/cnid/cnid_add.c Sun Sep 2 03:15:54 2001 -@@ -13,6 +13,7 @@ - #include "config.h" - #endif /* HAVE_CONFIG_H */ - -+#ifdef CNID_DB - #include <stdio.h> - #include <sys/param.h> - #include <sys/stat.h> -@@ -41,23 +42,27 @@ - { - DBT altkey, altdata; - DB_TXN *tid; -+ /* We create rc here because using rc is bad. Why? Well, if you -+ * use rc once, then call another function which resets it, you're -+ * screwed. */ -+ int rc = 0; - - memset(&altkey, 0, sizeof(altkey)); - memset(&altdata, 0, sizeof(altdata)); - - retry: -- if ((errno = txn_begin(db->dbenv, ptid, &tid,0))) { -- return errno; -+ if ((rc = txn_begin(db->dbenv, ptid, &tid,0))) { -+ return rc; - } - - /* main database */ -- if ((errno = db->db_cnid->put(db->db_cnid, tid, -+ if ((rc = db->db_cnid->put(db->db_cnid, tid, - key, data, DB_NOOVERWRITE))) { - txn_abort(tid); -- if (errno == DB_LOCK_DEADLOCK) -+ if (rc == DB_LOCK_DEADLOCK) - goto retry; - -- return errno; -+ return rc; - } - - /* dev/ino database */ -@@ -65,25 +70,25 @@ - altkey.size = CNID_DEVINO_LEN; - altdata.data = key->data; - altdata.size = key->size; -- if ((errno = db->db_devino->put(db->db_devino, tid, -+ if ((rc = db->db_devino->put(db->db_devino, tid, - &altkey, &altdata, 0))) { - txn_abort(tid); -- if (errno == DB_LOCK_DEADLOCK) -+ if (rc == DB_LOCK_DEADLOCK) - goto retry; - -- return errno; -+ return rc; - } - - /* did/name database */ - altkey.data = (char *) data->data + CNID_DEVINO_LEN; - altkey.size = data->size - CNID_DEVINO_LEN; -- if ((errno = db->db_didname->put(db->db_didname, tid, -+ if ((rc = db->db_didname->put(db->db_didname, tid, - &altkey, &altdata, 0))) { - txn_abort(tid); -- if (errno == DB_LOCK_DEADLOCK) -+ if (rc == DB_LOCK_DEADLOCK) - goto retry; - -- return errno; -+ return rc; - } - - return txn_commit(tid, 0); -@@ -100,6 +105,7 @@ - DBT rootinfo_key, rootinfo_data; - DB_TXN *tid; - cnid_t id, save; -+ int rc = 0; - - int debug = 0; - -@@ -137,8 +143,8 @@ - * cnid's to the database. */ - if (ntohl(hint) >= CNID_START) { - /* if the key doesn't exist, add it in. don't fiddle with nextID. */ -- errno = add_cnid(db, NULL, &key, &data); -- switch (errno) { -+ rc = add_cnid(db, NULL, &key, &data); -+ switch (rc) { - case DB_KEYEXIST: /* need to use RootInfo after all. */ - break; - default: -@@ -153,14 +159,14 @@ - - /* Abort and retry the modification. */ - if (0) { --retry: if ((errno = txn_abort(tid)) != 0) -- syslog(LOG_ERR, "cnid_add: txn_begin failed (%d)", errno); -+retry: if ((rc = txn_abort(tid)) != 0) -+ syslog(LOG_ERR, "cnid_add: txn_begin failed (%d)", rc); - /* FALLTHROUGH */ - } - - /* Begin the transaction. */ -- if ((errno = txn_begin(db->dbenv, NULL, &tid, 0)) != 0) { -- syslog(LOG_ERR, "cnid_add: txn_begin failed (%d)", errno); -+ if ((rc = txn_begin(db->dbenv, NULL, &tid, 0)) != 0) { -+ syslog(LOG_ERR, "cnid_add: txn_begin failed (%d)", rc); - goto cleanup_err; - } - -@@ -172,7 +178,7 @@ - rootinfo_key.size = ROOTINFO_KEYLEN; - - /* Get the key. */ -- switch (errno = db->db_didname->get(db->db_didname, tid, &rootinfo_key, &rootinfo_data, 0)) { -+ switch (rc = db->db_didname->get(db->db_didname, tid, &rootinfo_key, &rootinfo_data, 0)) { - case DB_LOCK_DEADLOCK: - goto retry; - case 0: -@@ -186,7 +192,7 @@ - syslog(LOG_ERR, "cnid_add: using CNID_START for did %d, name %s as %d", did, name, hint); - break; - default: -- syslog(LOG_ERR, "cnid_add: unable to lookup rootinfo (%d)", errno); -+ syslog(LOG_ERR, "cnid_add: unable to lookup rootinfo (%d)", rc); - goto cleanup_abort; - } - -@@ -194,12 +200,12 @@ - * wrap-around. NOTE: i do it this way so that we can go back and - * fill in holes. */ - save = id = ntohl(hint); -- while ((errno = add_cnid(db, tid, &key, &data))) { -+ while ((rc = add_cnid(db, tid, &key, &data))) { - /* don't use any of the special CNIDs */ - if (++id < CNID_START) - id = CNID_START; - -- if ((errno != DB_KEYEXIST) || (save == id)) { -+ if ((rc != DB_KEYEXIST) || (save == id)) { - syslog(LOG_ERR, "cnid_add: unable to add CNID(%x)", hint); - hint = 0; - goto cleanup_abort; -@@ -211,21 +217,21 @@ - rootinfo_data.data = &hint; - rootinfo_data.size = sizeof(hint); - -- switch (errno = db->db_didname->put(db->db_didname, tid, &rootinfo_key, &rootinfo_data, 0)) { -+ switch (rc = db->db_didname->put(db->db_didname, tid, &rootinfo_key, &rootinfo_data, 0)) { - case DB_LOCK_DEADLOCK: - goto retry; - case 0: - break; - default: -- syslog(LOG_ERR, "cnid_add: unable to update rootinfo (%d)", errno); -+ syslog(LOG_ERR, "cnid_add: unable to update rootinfo (%d)", rc); - goto cleanup_abort; - } - - - cleanup_commit: - /* The transaction finished, commit it. */ -- if ((errno = txn_commit(tid, 0)) != 0) { -- syslog(LOG_ERR, "cnid_add: txn_commit failed (%d)", errno); -+ if ((rc = txn_commit(tid, 0)) != 0) { -+ syslog(LOG_ERR, "cnid_add: txn_commit failed (%d)", rc); - goto cleanup_err; - } - -@@ -239,3 +245,4 @@ - cleanup_err: - return 0; - } -+#endif /* CNID_DB */ diff --git a/net/netatalk-devel/files/patch-ab b/net/netatalk-devel/files/patch-ab deleted file mode 100644 index b21dfca602c7..000000000000 --- a/net/netatalk-devel/files/patch-ab +++ /dev/null @@ -1,16 +0,0 @@ ---- libatalk/cnid/cnid_close.c.orig Fri Aug 17 00:30:29 2001 -+++ libatalk/cnid/cnid_close.c Wed Aug 29 15:48:45 2001 -@@ -6,6 +6,7 @@ - #include "config.h" - #endif /* HAVE_CONFIG_H */ - -+#ifdef CNID_DB - #ifdef HAVE_UNISTD_H - #include <unistd.h> - #endif /* HAVE_UNISTD_H */ -@@ -69,3 +70,4 @@ - - free(db); - } -+#endif /* CNID_DB */ - diff --git a/net/netatalk-devel/files/patch-ac b/net/netatalk-devel/files/patch-ac deleted file mode 100644 index ac1c15feacd6..000000000000 --- a/net/netatalk-devel/files/patch-ac +++ /dev/null @@ -1,16 +0,0 @@ ---- libatalk/cnid/cnid_delete.c.orig Fri Aug 17 00:30:29 2001 -+++ libatalk/cnid/cnid_delete.c Wed Aug 29 15:49:49 2001 -@@ -11,6 +11,7 @@ - #include "config.h" - #endif /* HAVE_CONFIG_H */ - -+#ifdef CNID_DB - #include <stdio.h> - #include <string.h> - #include <errno.h> -@@ -111,3 +112,4 @@ - syslog(LOG_ERR, "cnid_del: unable to delete CNID(%x)", id); - return errno; - } -+#endif /* CNID_DB */ - diff --git a/net/netatalk-devel/files/patch-ad b/net/netatalk-devel/files/patch-ad deleted file mode 100644 index 7a77d36d9e30..000000000000 --- a/net/netatalk-devel/files/patch-ad +++ /dev/null @@ -1,16 +0,0 @@ ---- libatalk/cnid/cnid_get.c.orig Wed Aug 15 12:16:25 2001 -+++ libatalk/cnid/cnid_get.c Wed Aug 29 15:49:52 2001 -@@ -6,6 +6,7 @@ - #include "config.h" - #endif /* HAVE_CONFIG_H */ - -+#ifdef CNID_DB - #include <stdio.h> - #include <string.h> - #include <sys/param.h> -@@ -57,3 +58,4 @@ - memcpy(&id, data.data, sizeof(id)); - return id; - } -+#endif /* CNID_DB */ - diff --git a/net/netatalk-devel/files/patch-ae b/net/netatalk-devel/files/patch-ae deleted file mode 100644 index 7042d6670e6d..000000000000 --- a/net/netatalk-devel/files/patch-ae +++ /dev/null @@ -1,16 +0,0 @@ ---- libatalk/cnid/cnid_lookup.c.orig Fri Aug 17 00:30:29 2001 -+++ libatalk/cnid/cnid_lookup.c Wed Aug 29 15:49:55 2001 -@@ -6,6 +6,7 @@ - #include "config.h" - #endif /* HAVE_CONFIG_H */ - -+#ifdef CNID_DB - #include <stdio.h> - #include <string.h> - #include <sys/param.h> -@@ -115,3 +116,4 @@ - syslog(LOG_ERR, "cnid_lookup: looked up did %d, name %s as %d (needed update)", did, name, id); - return id; - } -+#endif /* CNID_DB */ - diff --git a/net/netatalk-devel/files/patch-af b/net/netatalk-devel/files/patch-af deleted file mode 100644 index 01cf664f2bdd..000000000000 --- a/net/netatalk-devel/files/patch-af +++ /dev/null @@ -1,18 +0,0 @@ ---- libatalk/cnid/cnid_nextid.c.orig Fri Aug 17 00:30:29 2001 -+++ libatalk/cnid/cnid_nextid.c Wed Aug 29 15:50:04 2001 -@@ -7,6 +7,7 @@ - #include "config.h" - #endif /* HAVE_CONFIG_H */ - -+#ifdef CNID_DB - #include <db.h> - - #include <atalk/adouble.h> -@@ -29,5 +30,6 @@ - memcpy(&id, ad_entry(&db->rootinfo, ADEID_DID), sizeof(id)); - return id; - } -+#endif /* CNID_DB */ - #endif - - diff --git a/net/netatalk-devel/files/patch-ag b/net/netatalk-devel/files/patch-ag deleted file mode 100644 index 39d8d3cdbd7a..000000000000 --- a/net/netatalk-devel/files/patch-ag +++ /dev/null @@ -1,50 +0,0 @@ ---- libatalk/cnid/cnid_open.c.orig Thu Aug 16 10:30:29 2001 -+++ libatalk/cnid/cnid_open.c Sun Sep 2 03:13:49 2001 -@@ -37,6 +37,7 @@ - #include "config.h" - #endif /* HAVE_CONFIG_H */ - -+#ifdef CNID_DB - #include <errno.h> - #include <stdlib.h> - #include <string.h> -@@ -83,7 +84,7 @@ - #define DBVERSION DBVERSION1 - - #define DBOPTIONS (DB_CREATE | DB_INIT_MPOOL | DB_INIT_LOCK | \ --DB_INIT_LOG | DB_INIT_TXN | DB_TXN_NOSYNC | DB_RECOVER) -+DB_INIT_LOG | DB_INIT_TXN | DB_RECOVER) - - #define MAXITER 0xFFFF /* maximum number of simultaneously open CNID - * databases. */ -@@ -100,7 +101,7 @@ - - /* sort did's and then names. this is for unix paths. - * i.e., did/unixname lookups. */ --static int compare_unix(const DBT *a, const DBT *b) -+static int compare_unix(DB* db, const DBT *a, const DBT *b) - { - u_int8_t *sa, *sb; - int len, ret; -@@ -214,6 +215,8 @@ - goto fail_lock; - } - -+ /* Check to see if a DBENV already exists. If it does, join it. */ -+ if (db->dbenv->open(db->dbenv, path, DB_JOINENV, 0666)) { - if (db->dbenv->open(db->dbenv, path, DBOPTIONS, 0666)) { - - /* try with a shared memory pool */ -@@ -229,6 +232,7 @@ - open_flag = DB_RDONLY; - syslog(LOG_INFO, "cnid_open: read-only CNID database"); - } -+ } - - /* did/name reverse mapping. we use a btree for this one. */ - if (db_create(&db->db_didname, db->dbenv, 0)) -@@ -358,3 +362,4 @@ - free(db); - return NULL; - } -+#endif /* CNID_DB */ diff --git a/net/netatalk-devel/files/patch-ah b/net/netatalk-devel/files/patch-ah deleted file mode 100644 index 445128d39fc5..000000000000 --- a/net/netatalk-devel/files/patch-ah +++ /dev/null @@ -1,16 +0,0 @@ ---- libatalk/cnid/cnid_resolve.c.orig Fri Aug 17 00:30:29 2001 -+++ libatalk/cnid/cnid_resolve.c Wed Aug 29 15:50:34 2001 -@@ -6,6 +6,7 @@ - #include "config.h" - #endif /* HAVE_CONFIG_H */ - -+#ifdef CNID_DB - #include <stdio.h> - #include <string.h> - #include <sys/param.h> -@@ -48,3 +49,4 @@ - memcpy(id, (char *) data.data + CNID_DEVINO_LEN, sizeof(*id)); - return (char *) data.data + CNID_HEADER_LEN; - } -+#endif /* CNID_DB */ - diff --git a/net/netatalk-devel/files/patch-ai b/net/netatalk-devel/files/patch-ai deleted file mode 100644 index bcf728a4193a..000000000000 --- a/net/netatalk-devel/files/patch-ai +++ /dev/null @@ -1,15 +0,0 @@ ---- libatalk/cnid/cnid_update.c.orig Fri Aug 17 00:30:30 2001 -+++ libatalk/cnid/cnid_update.c Wed Aug 29 15:50:39 2001 -@@ -6,6 +6,7 @@ - #include "config.h" - #endif /* HAVE_CONFIG_H */ - -+#ifdef CNID_DB - #include <stdio.h> - #include <string.h> - #include <sys/param.h> -@@ -136,3 +137,4 @@ - syslog(LOG_ERR, "cnid_update: can't update CNID(%x)", id); - return -1; - } -+#endif /* CNID_DB */ diff --git a/net/netatalk-devel/files/patch-configure.in b/net/netatalk-devel/files/patch-configure.in deleted file mode 100644 index 021e9fe9323f..000000000000 --- a/net/netatalk-devel/files/patch-configure.in +++ /dev/null @@ -1,25 +0,0 @@ ---- configure.in.orig Sat Sep 1 19:32:49 2001 -+++ configure.in Sat Sep 1 19:34:07 2001 -@@ -262,18 +262,18 @@ - db3_found=no - for db3dir in "" $trydb3dir /usr /usr /usr/local ; do - if test -f "$db3dir/include/db3/db.h" ; then -- LDFLAGS="$LDFLAGS -L$db3dir/lib -L$db3dir" -- CFLAGS="$CFLAGS -I$db3dir/include" -+ LDFLAGS="$LDFLAGS -L$db3dir/lib" -+ CFLAGS="$CFLAGS -I$db3dir/include/db3" - - dnl If we require DB3, die if we don't have it - if test "x$db3_required" != "xno"; then -- AC_CHECK_LIB(db, main, -+ AC_CHECK_LIB(db3, main, - dnl AC_MSG_RESULT([enabling db3 support]) - db3_found=yes - dnl -- also enable CNID DB when this is found - AC_DEFINE(CNID_DB, 1) - AC_MSG_RESULT([using persistent cnid database per volume]) -- LIBS="$LIBS -ldb", -+ LIBS="$LIBS -ldb3", - dnl Not Found - AC_MSG_ERROR([Berkeley DB3 library not found!]) - ) diff --git a/net/netatalk-devel/files/patch-macusers b/net/netatalk-devel/files/patch-macusers deleted file mode 100644 index 763e5ec339af..000000000000 --- a/net/netatalk-devel/files/patch-macusers +++ /dev/null @@ -1,54 +0,0 @@ ---- contrib/macusers/macusers.orig Wed Aug 29 12:20:32 2001 -+++ contrib/macusers/macusers Sun Jun 17 01:47:44 2001 -@@ -1,8 +1,8 @@ - #!/usr/bin/perl --# $Id: macusers,v 1.4 2001/06/29 14:14:46 rufustfirefly Exp $ - - use strict; --use vars qw($MAC_PROCESS $PS_STR $MATCH_STR $ASIP_PORT $LSOF); -+use Socket; -+use vars qw($MAC_PROCESS $PS_STR $MATCH_STR $ASIP_PORT_NO $ASIP_PORT $LSOF); - - # Written for linux; may have to be modified for your brand of Unix. - -@@ -25,10 +25,11 @@ - $PS_STR = "-ef"; - $MATCH_STR = '\s*(\w+)\s+(\d+)\s+(\d+)\s+\d+\s+([\d\w:]+)'; - } --$ASIP_PORT = "afpovertcp"; -+$ASIP_PORT = "afpovertcp"; -+$ASIP_PORT_NO = 548; - - # Change to 0 if you don't have lsof --$LSOF = 1; -+$LSOF = 0; - my %mac = (); - - if ( $LSOF == 1 ) { -@@ -43,8 +44,25 @@ - ($host) = ( $host =~ /(^[\w\d\-]+)/ ); - $mac{$pid} = $host; - } -- -+ print -+"PID UID Username Name Logintime Mac\n"; - close(LSOF); -+} -+elsif ( $^O eq "freebsd" ) { -+ open( SOCKSTAT, "sockstat -4 | grep $MAC_PROCESS | grep -v grep |" ); -+ -+ while (<SOCKSTAT>) { -+ next if ( $_ !~ /$MAC_PROCESS/ ); -+ $_ =~ -+ /\S+\s+\S+\s+(\d+)\s+\d+\s+[\w\d]+\s+[\d\.:]+\s+([\d\.]+)/; -+ my ( $pid, $addr, $host ); -+ $pid = $1; -+ $addr = $2; -+ $host = -+ gethostbyaddr( pack( 'C4', split ( /\./, $addr ) ), AF_INET ); -+ ($host) = ( $host =~ /(^[\w\d\-]+)/ ); -+ $mac{$pid} = $host; -+ } - print - "PID UID Username Name Logintime Mac\n"; - } 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 7e6ea5543c66..000000000000 --- a/net/netatalk-devel/pkg-plist +++ /dev/null @@ -1,144 +0,0 @@ -bin/achfile -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 -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 -@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 -etc/uams/uams_clrtxt.so -etc/uams/uams_dhx.so -%%NETATALKPAM%%etc/uams/uams_dhx_pam.so -%%NETATALKPAM%%etc/uams/uams_dhx_pam.a -%%NETATALKPAM%%etc/uams/uams_dhx_pam.la -etc/uams/uams_dhx_passwd.so -etc/uams/uams_dhx_passwd.a -etc/uams/uams_dhx_passwd.la -etc/uams/uams_guest.so -etc/uams/uams_guest.a -etc/uams/uams_guest.la -%%NETATALKPAM%%etc/uams/uams_pam.so -%%NETATALKPAM%%etc/uams/uams_pam.a -%%NETATALKPAM%%etc/uams/uams_pam.la -etc/uams/uams_passwd.so -etc/uams/uams_passwd.a -etc/uams/uams_passwd.la -etc/uams/uams_randnum.so -etc/uams/uams_randnum.a -etc/uams/uams_randnum.la -@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 -lib/libatalk.la -share/aclocal/netatalk.m4 -share/netatalk/pagecount.ps diff --git a/net/ns2/Makefile b/net/ns2/Makefile deleted file mode 100644 index b5f998397712..000000000000 --- a/net/ns2/Makefile +++ /dev/null @@ -1,34 +0,0 @@ -# New ports collection makefile for: ns-2 -# Date created: 26 April 1999 -# Whom: obonilla -# -# $FreeBSD$ -# - -PORTNAME= ns -PORTVERSION= 2.1.b7 -CATEGORIES= net -MASTER_SITES= http://www.isi.edu/nsnam/dist/ -DISTNAME= ns-src-2.1b7 - -MAINTAINER= obonilla@fisicc-ufm.edu - -BUILD_DEPENDS= ${LOCALBASE}/lib/libtclcl.a:${PORTSDIR}/devel/tclcl -RUN_DEPENDS= ${LOCALBASE}/bin/tclsh8.2:${PORTSDIR}/lang/tcl82 - -MAN1= ns.1 -MANCOMPRESSED= no - -WRKSRC= ${WRKDIR}/ns-2.1b7 - -GNU_CONFIGURE= yes -CONFIGURE_ARGS= --with-tcl-ver=8.2 --with-tk-ver=8.2 - -ALL_TARGET= - -do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/ns ${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/ns.1 ${PREFIX}/man/man1 - ${MKDIR} ${PREFIX}/share/examples/ns2 - ${INSTALL_DATA} ${WRKSRC}/tcl/ex/*.tcl ${PREFIX}/share/examples/ns2 -.include <bsd.port.mk> diff --git a/net/ns2/distinfo b/net/ns2/distinfo deleted file mode 100644 index 2207471521d4..000000000000 --- a/net/ns2/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (ns-src-2.1b7.tar.gz) = 6416e3e3f329997c407113e8cb2773b98 diff --git a/net/ns2/pkg-comment b/net/ns2/pkg-comment deleted file mode 100644 index 0c9bcd737961..000000000000 --- a/net/ns2/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -The UCB/LBNL Network Simulator Version 2 diff --git a/net/ns2/pkg-descr b/net/ns2/pkg-descr deleted file mode 100644 index 458652a19b35..000000000000 --- a/net/ns2/pkg-descr +++ /dev/null @@ -1,7 +0,0 @@ -NS is a discrete event simulator targeted at networking research. -Ns provides substantial support for simulation of TCP, routing, and multicast -protocols. - -WWW: http://www.isi.edu/nsnam/ns/ - --Oscar <obonilla@fisicc-ufm.edu> diff --git a/net/ns2/pkg-plist b/net/ns2/pkg-plist deleted file mode 100644 index 08f74e2d19eb..000000000000 --- a/net/ns2/pkg-plist +++ /dev/null @@ -1,104 +0,0 @@ -bin/ns -share/examples/ns2/agent-gen-script.tcl -share/examples/ns2/agent-gen.tcl -share/examples/ns2/callback_demo.tcl -share/examples/ns2/diffusion-prob-run.tcl -share/examples/ns2/diffusion-rate-run.tcl -share/examples/ns2/dumbbell.tcl -share/examples/ns2/flooding-run.tcl -share/examples/ns2/fq-cbr.tcl -share/examples/ns2/fq.tcl -share/examples/ns2/grid2.tcl -share/examples/ns2/gridkeeper.tcl -share/examples/ns2/hier-rtg-10.tcl -share/examples/ns2/hier-rtg-100.tcl -share/examples/ns2/hts100-0.tcl -share/examples/ns2/lantest.tcl -share/examples/ns2/large-scale-web-traffic-old.tcl -share/examples/ns2/large-scale-web-traffic.tcl -share/examples/ns2/mac-test.tcl -share/examples/ns2/many_tcp.tcl -share/examples/ns2/manytcp_trmodel.tcl -share/examples/ns2/mcast.tcl -share/examples/ns2/miptest.tcl -share/examples/ns2/nam-example-em.tcl -share/examples/ns2/nam-example.tcl -share/examples/ns2/nam-large-flowid.tcl -share/examples/ns2/nam-separate-trace.tcl -share/examples/ns2/nam-simplexlink.tcl -share/examples/ns2/omni-run.tcl -share/examples/ns2/ranvar.tcl -share/examples/ns2/rbp_demo.tcl -share/examples/ns2/rc.tcl -share/examples/ns2/route-gen.tcl -share/examples/ns2/sat-aloha.tcl -share/examples/ns2/sat-iridium-links.tcl -share/examples/ns2/sat-iridium-nodes.tcl -share/examples/ns2/sat-iridium.tcl -share/examples/ns2/sat-mixed.tcl -share/examples/ns2/sat-repeater.tcl -share/examples/ns2/sat-teledesic-links.tcl -share/examples/ns2/sat-teledesic-nodes.tcl -share/examples/ns2/sat-teledesic.tcl -share/examples/ns2/shuttle-mcast.tcl -share/examples/ns2/shuttle.tcl -share/examples/ns2/simple-dyn.tcl -share/examples/ns2/simple-eqp.tcl -share/examples/ns2/simple-eqp1.tcl -share/examples/ns2/simple-fsm-tcp.tcl -share/examples/ns2/simple-heap.tcl -share/examples/ns2/simple-plm.tcl -share/examples/ns2/simple-rtg.tcl -share/examples/ns2/simple-rtp.tcl -share/examples/ns2/simple-webcache-comp.tcl -share/examples/ns2/simple-webcache-trace.tcl -share/examples/ns2/simple-webcache.tcl -share/examples/ns2/simple-wireless.tcl -share/examples/ns2/simple.tcl -share/examples/ns2/srm-adapt-rep.tcl -share/examples/ns2/srm-adapt-rep-session.tcl -share/examples/ns2/srm-adapt-req-session.tcl -share/examples/ns2/srm-adapt-req.tcl -share/examples/ns2/srm-chain-session.tcl -share/examples/ns2/srm-chain.tcl -share/examples/ns2/srm-demo.tcl -share/examples/ns2/srm-session.tcl -share/examples/ns2/srm-star-session.tcl -share/examples/ns2/srm-star.tcl -share/examples/ns2/srm.tcl -share/examples/ns2/ss.tcl -share/examples/ns2/swp.tcl -share/examples/ns2/tcp-int.tcl -share/examples/ns2/tcpecn.tcl -share/examples/ns2/tcpsrm.tcl -share/examples/ns2/test-drr.tcl -share/examples/ns2/test-emulator.tcl -share/examples/ns2/test-rcvr.tcl -share/examples/ns2/test-rlm.tcl -share/examples/ns2/test-suite-intserv.tcl -share/examples/ns2/test-suite.tcl -share/examples/ns2/test-tbf.tcl -share/examples/ns2/tg.tcl -share/examples/ns2/topo-gen-script.tcl -share/examples/ns2/topo-gen.tcl -share/examples/ns2/topo-view.tcl -share/examples/ns2/trace-driven.tcl -share/examples/ns2/varybell.tcl -share/examples/ns2/virtual-classifier.tcl -share/examples/ns2/vlantest-flat.tcl -share/examples/ns2/vlantest-hier.tcl -share/examples/ns2/vlantest-mcst.tcl -share/examples/ns2/web-traffic-embobj.tcl -share/examples/ns2/web-traffic.tcl -share/examples/ns2/wired-cum-wireless-sim.tcl -share/examples/ns2/wireless-demo-csci694.tcl -share/examples/ns2/wireless-dsdv-newnode.tcl -share/examples/ns2/wireless-landmark.tcl -share/examples/ns2/wireless-mip-test.tcl -share/examples/ns2/wireless-mitf.tcl -share/examples/ns2/wireless-newnode-energy.tcl -share/examples/ns2/wireless-pkt-demo.tcl -share/examples/ns2/wireless-shadowing-test.tcl -share/examples/ns2/wireless-test.tcl -share/examples/ns2/wireless.tcl -@dirrm share/examples/ns2 diff --git a/net/ntp-devel/Makefile b/net/ntp-devel/Makefile deleted file mode 100644 index a0fa1354bfd2..000000000000 --- a/net/ntp-devel/Makefile +++ /dev/null @@ -1,31 +0,0 @@ -# New ports collection makefile for: ntp -# Date created: Di 5 Mai 1998 21:31:03 CEST -# Whom: andreas -# -# $FreeBSD$ -# - -PORTNAME= ntp -PORTVERSION= 4.1.0 -CATEGORIES= net -MASTER_SITES= ftp://ftp.udel.edu/pub/ntp/ntp4/ \ - http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ -DISTNAME= ${PORTNAME}-${PORTVERSION:S/.r/-rc/} - -MAINTAINER= Cy.Schubert@uumail.gov.bc.ca - -# ntp's configure script created by autoconf 2.14.1 doesn't work -# if GNU_CONFIGURE is defined -HAS_CONFIGURE= yes -CONFIGURE_ARGS= --prefix=${PREFIX} - -post-install: -.if !defined(NOPORTDOCS) - @${MKDIR} ${PREFIX}/share/doc/ntp - ${TAR} -C ${WRKSRC}/html --exclude '.*' -cf - . | \ - ${TAR} -C ${PREFIX}/share/doc/ntp --unlink -xf - - find ${PREFIX}/share/doc/ntp | xargs ${CHOWN} ${SHAREOWN}:${SHAREGRP} - find ${PREFIX}/share/doc/ntp -type f | xargs ${CHMOD} ${SHAREMODE} -.endif - -.include <bsd.port.mk> diff --git a/net/ntp-devel/distinfo b/net/ntp-devel/distinfo deleted file mode 100644 index 9eedef0df43c..000000000000 --- a/net/ntp-devel/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (ntp-4.1.0.tar.gz) = 5832eeeaa15f3bb66fff7d96da745f90 diff --git a/net/ntp-devel/files/patch-aa b/net/ntp-devel/files/patch-aa deleted file mode 100644 index 2b418488de44..000000000000 --- a/net/ntp-devel/files/patch-aa +++ /dev/null @@ -1,38 +0,0 @@ ---- ntpd/ntp_control.c.orig Mon Apr 9 13:19:56 2001 -+++ ntpd/ntp_control.c Wed Apr 11 20:53:28 2001 -@@ -1823,7 +1823,7 @@ - * Delete leading commas and white space - */ - while (reqpt < reqend && (*reqpt == ',' || -- isspace((int)*reqpt))) -+ isspace((unsigned char)*reqpt))) - reqpt++; - if (reqpt >= reqend) - return (0); -@@ -1846,7 +1846,7 @@ - tp++; - } - if ((*tp == '\0') || (*tp == '=')) { -- while (cp < reqend && isspace((int)*cp)) -+ while (cp < reqend && isspace((unsigned char)*cp)) - cp++; - if (cp == reqend || *cp == ',') { - buf[0] = '\0'; -@@ -1859,7 +1859,7 @@ - if (*cp == '=') { - cp++; - tp = buf; -- while (cp < reqend && isspace((int)*cp)) -+ while (cp < reqend && isspace((unsigned char)*cp)) - cp++; - while (cp < reqend && *cp != ',') { - *tp++ = *cp++; -@@ -1870,7 +1870,7 @@ - cp++; - while (tp > buf) { - *tp-- = '\0'; -- if (!isspace((int)(*tp))) -+ if (!isspace((unsigned char)(*tp))) - break; - } - reqpt = cp; diff --git a/net/ntp-devel/pkg-comment b/net/ntp-devel/pkg-comment deleted file mode 100644 index 28e419a84d98..000000000000 --- a/net/ntp-devel/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -The Network Time Protocol Distribution diff --git a/net/ntp-devel/pkg-descr b/net/ntp-devel/pkg-descr deleted file mode 100644 index 2603446f9d32..000000000000 --- a/net/ntp-devel/pkg-descr +++ /dev/null @@ -1,18 +0,0 @@ -The Network Time Protocol (NTP) is used to synchronize the time of a -computer client or server to another server or reference time source, -such as a radio or satellite receiver or modem. - -It provides client accuracies typically within a millisecond on LANs -and up to a few tens of milliseconds on WANs relative to a primary -server synchronized to Coordinated Universal Time (UTC) via a Global -Positioning Service (GPS) receiver, for example. - -Typical NTP configurations utilize multiple redundant servers and diverse -network paths, in order to achieve high accuracy and reliability. - -Some configurations include cryptographic authentication to prevent -accidental or malicious protocol attacks. - -See homepage for more infos: - -WWW: http://www.eecis.udel.edu/~ntp/ diff --git a/net/ntp-devel/pkg-plist b/net/ntp-devel/pkg-plist deleted file mode 100644 index f804d5d7eae0..000000000000 --- a/net/ntp-devel/pkg-plist +++ /dev/null @@ -1,171 +0,0 @@ -bin/ntpd -bin/ntpdate -bin/ntpdc -bin/ntpq -bin/ntptime -bin/ntptimeset -bin/ntptrace -bin/ntp-genkeys -bin/ntp-wait -bin/tickadj -%%PORTDOCS%%share/doc/ntp/Oncore-SHMEM.htm -%%PORTDOCS%%share/doc/ntp/accopt.htm -%%PORTDOCS%%share/doc/ntp/assoc.htm -%%PORTDOCS%%share/doc/ntp/audio.htm -%%PORTDOCS%%share/doc/ntp/authopt.htm -%%PORTDOCS%%share/doc/ntp/biblio.htm -%%PORTDOCS%%share/doc/ntp/build.htm -%%PORTDOCS%%share/doc/ntp/clockopt.htm -%%PORTDOCS%%share/doc/ntp/config.htm -%%PORTDOCS%%share/doc/ntp/confopt.htm -%%PORTDOCS%%share/doc/ntp/copyright.htm -%%PORTDOCS%%share/doc/ntp/debug.htm -%%PORTDOCS%%share/doc/ntp/driver1.htm -%%PORTDOCS%%share/doc/ntp/driver10.htm -%%PORTDOCS%%share/doc/ntp/driver11.htm -%%PORTDOCS%%share/doc/ntp/driver12.htm -%%PORTDOCS%%share/doc/ntp/driver16.htm -%%PORTDOCS%%share/doc/ntp/driver18.htm -%%PORTDOCS%%share/doc/ntp/driver19.htm -%%PORTDOCS%%share/doc/ntp/driver2.htm -%%PORTDOCS%%share/doc/ntp/driver20.htm -%%PORTDOCS%%share/doc/ntp/driver22.htm -%%PORTDOCS%%share/doc/ntp/driver23.htm -%%PORTDOCS%%share/doc/ntp/driver24.htm -%%PORTDOCS%%share/doc/ntp/driver26.htm -%%PORTDOCS%%share/doc/ntp/driver27.htm -%%PORTDOCS%%share/doc/ntp/driver28.htm -%%PORTDOCS%%share/doc/ntp/driver29.htm -%%PORTDOCS%%share/doc/ntp/driver3.htm -%%PORTDOCS%%share/doc/ntp/driver30.htm -%%PORTDOCS%%share/doc/ntp/driver32.htm -%%PORTDOCS%%share/doc/ntp/driver33.htm -%%PORTDOCS%%share/doc/ntp/driver34.htm -%%PORTDOCS%%share/doc/ntp/driver35.htm -%%PORTDOCS%%share/doc/ntp/driver36.htm -%%PORTDOCS%%share/doc/ntp/driver37.htm -%%PORTDOCS%%share/doc/ntp/driver38.htm -%%PORTDOCS%%share/doc/ntp/driver39.htm -%%PORTDOCS%%share/doc/ntp/driver4.htm -%%PORTDOCS%%share/doc/ntp/driver5.htm -%%PORTDOCS%%share/doc/ntp/driver6.htm -%%PORTDOCS%%share/doc/ntp/driver7.htm -%%PORTDOCS%%share/doc/ntp/driver8.htm -%%PORTDOCS%%share/doc/ntp/driver9.htm -%%PORTDOCS%%share/doc/ntp/exec.htm -%%PORTDOCS%%share/doc/ntp/extern.htm -%%PORTDOCS%%share/doc/ntp/gadget.htm -%%PORTDOCS%%share/doc/ntp/genkeys.htm -%%PORTDOCS%%share/doc/ntp/hints/a-ux -%%PORTDOCS%%share/doc/ntp/hints/aix -%%PORTDOCS%%share/doc/ntp/hints/bsdi -%%PORTDOCS%%share/doc/ntp/hints/changes -%%PORTDOCS%%share/doc/ntp/hints/decosf1 -%%PORTDOCS%%share/doc/ntp/hints/decosf2 -%%PORTDOCS%%share/doc/ntp/hints/freebsd -%%PORTDOCS%%share/doc/ntp/hints/hpux -%%PORTDOCS%%share/doc/ntp/hints/linux -%%PORTDOCS%%share/doc/ntp/hints/notes-xntp-v3 -%%PORTDOCS%%share/doc/ntp/hints/parse -%%PORTDOCS%%share/doc/ntp/hints/refclocks -%%PORTDOCS%%share/doc/ntp/hints/rs6000 -%%PORTDOCS%%share/doc/ntp/hints/sco.htm -%%PORTDOCS%%share/doc/ntp/hints/sgi -%%PORTDOCS%%share/doc/ntp/hints/solaris-dosynctodr.html -%%PORTDOCS%%share/doc/ntp/hints/solaris.html -%%PORTDOCS%%share/doc/ntp/hints/solaris.xtra.4023118 -%%PORTDOCS%%share/doc/ntp/hints/solaris.xtra.4095849 -%%PORTDOCS%%share/doc/ntp/hints/solaris.xtra.S99ntpd -%%PORTDOCS%%share/doc/ntp/hints/solaris.xtra.patchfreq -%%PORTDOCS%%share/doc/ntp/hints/sun4 -%%PORTDOCS%%share/doc/ntp/hints/svr4-dell -%%PORTDOCS%%share/doc/ntp/hints/svr4_package -%%PORTDOCS%%share/doc/ntp/hints/todo -%%PORTDOCS%%share/doc/ntp/hints/vxworks.htm -%%PORTDOCS%%share/doc/ntp/hints/vxworks.html -%%PORTDOCS%%share/doc/ntp/hints/winnt.htm -%%PORTDOCS%%share/doc/ntp/hints.htm -%%PORTDOCS%%share/doc/ntp/howto.htm -%%PORTDOCS%%share/doc/ntp/htmlprimer.htm -%%PORTDOCS%%share/doc/ntp/index.htm -%%PORTDOCS%%share/doc/ntp/kern.htm -%%PORTDOCS%%share/doc/ntp/kernpps.htm -%%PORTDOCS%%share/doc/ntp/ldisc.htm -%%PORTDOCS%%share/doc/ntp/leap.htm -%%PORTDOCS%%share/doc/ntp/measure.htm -%%PORTDOCS%%share/doc/ntp/miscopt.htm -%%PORTDOCS%%share/doc/ntp/monopt.htm -%%PORTDOCS%%share/doc/ntp/mx4200data.htm -%%PORTDOCS%%share/doc/ntp/notes.htm -%%PORTDOCS%%share/doc/ntp/ntpd.htm -%%PORTDOCS%%share/doc/ntp/ntpdate.htm -%%PORTDOCS%%share/doc/ntp/ntpdc.htm -%%PORTDOCS%%share/doc/ntp/ntpq.htm -%%PORTDOCS%%share/doc/ntp/ntptime.htm -%%PORTDOCS%%share/doc/ntp/ntptrace.htm -%%PORTDOCS%%share/doc/ntp/parsedata.htm -%%PORTDOCS%%share/doc/ntp/parsenew.htm -%%PORTDOCS%%share/doc/ntp/patches.htm -%%PORTDOCS%%share/doc/ntp/pic/9400n.jpg -%%PORTDOCS%%share/doc/ntp/pic/alice11.gif -%%PORTDOCS%%share/doc/ntp/pic/alice12.gif -%%PORTDOCS%%share/doc/ntp/pic/alice13.gif -%%PORTDOCS%%share/doc/ntp/pic/alice15.gif -%%PORTDOCS%%share/doc/ntp/pic/alice23.gif -%%PORTDOCS%%share/doc/ntp/pic/alice31.gif -%%PORTDOCS%%share/doc/ntp/pic/alice32.gif -%%PORTDOCS%%share/doc/ntp/pic/alice35.gif -%%PORTDOCS%%share/doc/ntp/pic/alice38.gif -%%PORTDOCS%%share/doc/ntp/pic/alice44.gif -%%PORTDOCS%%share/doc/ntp/pic/alice47.gif -%%PORTDOCS%%share/doc/ntp/pic/alice51.gif -%%PORTDOCS%%share/doc/ntp/pic/alice61.gif -%%PORTDOCS%%share/doc/ntp/pic/barnstable.gif -%%PORTDOCS%%share/doc/ntp/pic/beaver.gif -%%PORTDOCS%%share/doc/ntp/pic/boom3.gif -%%PORTDOCS%%share/doc/ntp/pic/boom3a.gif -%%PORTDOCS%%share/doc/ntp/pic/boom4.gif -%%PORTDOCS%%share/doc/ntp/pic/bustardfly.gif -%%PORTDOCS%%share/doc/ntp/pic/c51.jpg -%%PORTDOCS%%share/doc/ntp/pic/driver29.gif -%%PORTDOCS%%share/doc/ntp/pic/fg6021.gif -%%PORTDOCS%%share/doc/ntp/pic/fg6039.jpg -%%PORTDOCS%%share/doc/ntp/pic/flatheads.gif -%%PORTDOCS%%share/doc/ntp/pic/gadget.jpg -%%PORTDOCS%%share/doc/ntp/pic/gps167.jpg -%%PORTDOCS%%share/doc/ntp/pic/home.gif -%%PORTDOCS%%share/doc/ntp/pic/hornraba.gif -%%PORTDOCS%%share/doc/ntp/pic/igclock.gif -%%PORTDOCS%%share/doc/ntp/pic/oncore_evalbig.gif -%%PORTDOCS%%share/doc/ntp/pic/oncore_remoteant.jpg -%%PORTDOCS%%share/doc/ntp/pic/oncore_utplusbig.gif -%%PORTDOCS%%share/doc/ntp/pic/oz2.gif -%%PORTDOCS%%share/doc/ntp/pic/panda.gif -%%PORTDOCS%%share/doc/ntp/pic/pd_om006.gif -%%PORTDOCS%%share/doc/ntp/pic/pd_om011.gif -%%PORTDOCS%%share/doc/ntp/pic/pogo.gif -%%PORTDOCS%%share/doc/ntp/pic/pogo1a.gif -%%PORTDOCS%%share/doc/ntp/pic/pogo3a.gif -%%PORTDOCS%%share/doc/ntp/pic/pogo4.gif -%%PORTDOCS%%share/doc/ntp/pic/pogo5.gif -%%PORTDOCS%%share/doc/ntp/pic/pogo6.gif -%%PORTDOCS%%share/doc/ntp/pic/pogo8.gif -%%PORTDOCS%%share/doc/ntp/pic/pzf509.jpg -%%PORTDOCS%%share/doc/ntp/pic/rabbit.gif -%%PORTDOCS%%share/doc/ntp/pic/radio2.jpg -%%PORTDOCS%%share/doc/ntp/pic/sheepb.jpg -%%PORTDOCS%%share/doc/ntp/pic/stack1a.jpg -%%PORTDOCS%%share/doc/ntp/pic/tonea.gif -%%PORTDOCS%%share/doc/ntp/pic/wingdorothy.gif -%%PORTDOCS%%share/doc/ntp/porting.htm -%%PORTDOCS%%share/doc/ntp/pps.htm -%%PORTDOCS%%share/doc/ntp/prefer.htm -%%PORTDOCS%%share/doc/ntp/qth.htm -%%PORTDOCS%%share/doc/ntp/quick.htm -%%PORTDOCS%%share/doc/ntp/rdebug.htm -%%PORTDOCS%%share/doc/ntp/refclock.htm -%%PORTDOCS%%share/doc/ntp/release.htm -%%PORTDOCS%%share/doc/ntp/tickadj.htm -%%PORTDOCS%%@dirrm share/doc/ntp/pic -%%PORTDOCS%%@dirrm share/doc/ntp/hints -%%PORTDOCS%%@dirrm share/doc/ntp diff --git a/net/ntp-stable/Makefile b/net/ntp-stable/Makefile deleted file mode 100644 index a0fa1354bfd2..000000000000 --- a/net/ntp-stable/Makefile +++ /dev/null @@ -1,31 +0,0 @@ -# New ports collection makefile for: ntp -# Date created: Di 5 Mai 1998 21:31:03 CEST -# Whom: andreas -# -# $FreeBSD$ -# - -PORTNAME= ntp -PORTVERSION= 4.1.0 -CATEGORIES= net -MASTER_SITES= ftp://ftp.udel.edu/pub/ntp/ntp4/ \ - http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ -DISTNAME= ${PORTNAME}-${PORTVERSION:S/.r/-rc/} - -MAINTAINER= Cy.Schubert@uumail.gov.bc.ca - -# ntp's configure script created by autoconf 2.14.1 doesn't work -# if GNU_CONFIGURE is defined -HAS_CONFIGURE= yes -CONFIGURE_ARGS= --prefix=${PREFIX} - -post-install: -.if !defined(NOPORTDOCS) - @${MKDIR} ${PREFIX}/share/doc/ntp - ${TAR} -C ${WRKSRC}/html --exclude '.*' -cf - . | \ - ${TAR} -C ${PREFIX}/share/doc/ntp --unlink -xf - - find ${PREFIX}/share/doc/ntp | xargs ${CHOWN} ${SHAREOWN}:${SHAREGRP} - find ${PREFIX}/share/doc/ntp -type f | xargs ${CHMOD} ${SHAREMODE} -.endif - -.include <bsd.port.mk> diff --git a/net/ntp-stable/distinfo b/net/ntp-stable/distinfo deleted file mode 100644 index 9eedef0df43c..000000000000 --- a/net/ntp-stable/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (ntp-4.1.0.tar.gz) = 5832eeeaa15f3bb66fff7d96da745f90 diff --git a/net/ntp-stable/files/patch-aa b/net/ntp-stable/files/patch-aa deleted file mode 100644 index 2b418488de44..000000000000 --- a/net/ntp-stable/files/patch-aa +++ /dev/null @@ -1,38 +0,0 @@ ---- ntpd/ntp_control.c.orig Mon Apr 9 13:19:56 2001 -+++ ntpd/ntp_control.c Wed Apr 11 20:53:28 2001 -@@ -1823,7 +1823,7 @@ - * Delete leading commas and white space - */ - while (reqpt < reqend && (*reqpt == ',' || -- isspace((int)*reqpt))) -+ isspace((unsigned char)*reqpt))) - reqpt++; - if (reqpt >= reqend) - return (0); -@@ -1846,7 +1846,7 @@ - tp++; - } - if ((*tp == '\0') || (*tp == '=')) { -- while (cp < reqend && isspace((int)*cp)) -+ while (cp < reqend && isspace((unsigned char)*cp)) - cp++; - if (cp == reqend || *cp == ',') { - buf[0] = '\0'; -@@ -1859,7 +1859,7 @@ - if (*cp == '=') { - cp++; - tp = buf; -- while (cp < reqend && isspace((int)*cp)) -+ while (cp < reqend && isspace((unsigned char)*cp)) - cp++; - while (cp < reqend && *cp != ',') { - *tp++ = *cp++; -@@ -1870,7 +1870,7 @@ - cp++; - while (tp > buf) { - *tp-- = '\0'; -- if (!isspace((int)(*tp))) -+ if (!isspace((unsigned char)(*tp))) - break; - } - reqpt = cp; diff --git a/net/ntp-stable/pkg-comment b/net/ntp-stable/pkg-comment deleted file mode 100644 index 28e419a84d98..000000000000 --- a/net/ntp-stable/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -The Network Time Protocol Distribution diff --git a/net/ntp-stable/pkg-descr b/net/ntp-stable/pkg-descr deleted file mode 100644 index 2603446f9d32..000000000000 --- a/net/ntp-stable/pkg-descr +++ /dev/null @@ -1,18 +0,0 @@ -The Network Time Protocol (NTP) is used to synchronize the time of a -computer client or server to another server or reference time source, -such as a radio or satellite receiver or modem. - -It provides client accuracies typically within a millisecond on LANs -and up to a few tens of milliseconds on WANs relative to a primary -server synchronized to Coordinated Universal Time (UTC) via a Global -Positioning Service (GPS) receiver, for example. - -Typical NTP configurations utilize multiple redundant servers and diverse -network paths, in order to achieve high accuracy and reliability. - -Some configurations include cryptographic authentication to prevent -accidental or malicious protocol attacks. - -See homepage for more infos: - -WWW: http://www.eecis.udel.edu/~ntp/ diff --git a/net/ntp-stable/pkg-plist b/net/ntp-stable/pkg-plist deleted file mode 100644 index f804d5d7eae0..000000000000 --- a/net/ntp-stable/pkg-plist +++ /dev/null @@ -1,171 +0,0 @@ -bin/ntpd -bin/ntpdate -bin/ntpdc -bin/ntpq -bin/ntptime -bin/ntptimeset -bin/ntptrace -bin/ntp-genkeys -bin/ntp-wait -bin/tickadj -%%PORTDOCS%%share/doc/ntp/Oncore-SHMEM.htm -%%PORTDOCS%%share/doc/ntp/accopt.htm -%%PORTDOCS%%share/doc/ntp/assoc.htm -%%PORTDOCS%%share/doc/ntp/audio.htm -%%PORTDOCS%%share/doc/ntp/authopt.htm -%%PORTDOCS%%share/doc/ntp/biblio.htm -%%PORTDOCS%%share/doc/ntp/build.htm -%%PORTDOCS%%share/doc/ntp/clockopt.htm -%%PORTDOCS%%share/doc/ntp/config.htm -%%PORTDOCS%%share/doc/ntp/confopt.htm -%%PORTDOCS%%share/doc/ntp/copyright.htm -%%PORTDOCS%%share/doc/ntp/debug.htm -%%PORTDOCS%%share/doc/ntp/driver1.htm -%%PORTDOCS%%share/doc/ntp/driver10.htm -%%PORTDOCS%%share/doc/ntp/driver11.htm -%%PORTDOCS%%share/doc/ntp/driver12.htm -%%PORTDOCS%%share/doc/ntp/driver16.htm -%%PORTDOCS%%share/doc/ntp/driver18.htm -%%PORTDOCS%%share/doc/ntp/driver19.htm -%%PORTDOCS%%share/doc/ntp/driver2.htm -%%PORTDOCS%%share/doc/ntp/driver20.htm -%%PORTDOCS%%share/doc/ntp/driver22.htm -%%PORTDOCS%%share/doc/ntp/driver23.htm -%%PORTDOCS%%share/doc/ntp/driver24.htm -%%PORTDOCS%%share/doc/ntp/driver26.htm -%%PORTDOCS%%share/doc/ntp/driver27.htm -%%PORTDOCS%%share/doc/ntp/driver28.htm -%%PORTDOCS%%share/doc/ntp/driver29.htm -%%PORTDOCS%%share/doc/ntp/driver3.htm -%%PORTDOCS%%share/doc/ntp/driver30.htm -%%PORTDOCS%%share/doc/ntp/driver32.htm -%%PORTDOCS%%share/doc/ntp/driver33.htm -%%PORTDOCS%%share/doc/ntp/driver34.htm -%%PORTDOCS%%share/doc/ntp/driver35.htm -%%PORTDOCS%%share/doc/ntp/driver36.htm -%%PORTDOCS%%share/doc/ntp/driver37.htm -%%PORTDOCS%%share/doc/ntp/driver38.htm -%%PORTDOCS%%share/doc/ntp/driver39.htm -%%PORTDOCS%%share/doc/ntp/driver4.htm -%%PORTDOCS%%share/doc/ntp/driver5.htm -%%PORTDOCS%%share/doc/ntp/driver6.htm -%%PORTDOCS%%share/doc/ntp/driver7.htm -%%PORTDOCS%%share/doc/ntp/driver8.htm -%%PORTDOCS%%share/doc/ntp/driver9.htm -%%PORTDOCS%%share/doc/ntp/exec.htm -%%PORTDOCS%%share/doc/ntp/extern.htm -%%PORTDOCS%%share/doc/ntp/gadget.htm -%%PORTDOCS%%share/doc/ntp/genkeys.htm -%%PORTDOCS%%share/doc/ntp/hints/a-ux -%%PORTDOCS%%share/doc/ntp/hints/aix -%%PORTDOCS%%share/doc/ntp/hints/bsdi -%%PORTDOCS%%share/doc/ntp/hints/changes -%%PORTDOCS%%share/doc/ntp/hints/decosf1 -%%PORTDOCS%%share/doc/ntp/hints/decosf2 -%%PORTDOCS%%share/doc/ntp/hints/freebsd -%%PORTDOCS%%share/doc/ntp/hints/hpux -%%PORTDOCS%%share/doc/ntp/hints/linux -%%PORTDOCS%%share/doc/ntp/hints/notes-xntp-v3 -%%PORTDOCS%%share/doc/ntp/hints/parse -%%PORTDOCS%%share/doc/ntp/hints/refclocks -%%PORTDOCS%%share/doc/ntp/hints/rs6000 -%%PORTDOCS%%share/doc/ntp/hints/sco.htm -%%PORTDOCS%%share/doc/ntp/hints/sgi -%%PORTDOCS%%share/doc/ntp/hints/solaris-dosynctodr.html -%%PORTDOCS%%share/doc/ntp/hints/solaris.html -%%PORTDOCS%%share/doc/ntp/hints/solaris.xtra.4023118 -%%PORTDOCS%%share/doc/ntp/hints/solaris.xtra.4095849 -%%PORTDOCS%%share/doc/ntp/hints/solaris.xtra.S99ntpd -%%PORTDOCS%%share/doc/ntp/hints/solaris.xtra.patchfreq -%%PORTDOCS%%share/doc/ntp/hints/sun4 -%%PORTDOCS%%share/doc/ntp/hints/svr4-dell -%%PORTDOCS%%share/doc/ntp/hints/svr4_package -%%PORTDOCS%%share/doc/ntp/hints/todo -%%PORTDOCS%%share/doc/ntp/hints/vxworks.htm -%%PORTDOCS%%share/doc/ntp/hints/vxworks.html -%%PORTDOCS%%share/doc/ntp/hints/winnt.htm -%%PORTDOCS%%share/doc/ntp/hints.htm -%%PORTDOCS%%share/doc/ntp/howto.htm -%%PORTDOCS%%share/doc/ntp/htmlprimer.htm -%%PORTDOCS%%share/doc/ntp/index.htm -%%PORTDOCS%%share/doc/ntp/kern.htm -%%PORTDOCS%%share/doc/ntp/kernpps.htm -%%PORTDOCS%%share/doc/ntp/ldisc.htm -%%PORTDOCS%%share/doc/ntp/leap.htm -%%PORTDOCS%%share/doc/ntp/measure.htm -%%PORTDOCS%%share/doc/ntp/miscopt.htm -%%PORTDOCS%%share/doc/ntp/monopt.htm -%%PORTDOCS%%share/doc/ntp/mx4200data.htm -%%PORTDOCS%%share/doc/ntp/notes.htm -%%PORTDOCS%%share/doc/ntp/ntpd.htm -%%PORTDOCS%%share/doc/ntp/ntpdate.htm -%%PORTDOCS%%share/doc/ntp/ntpdc.htm -%%PORTDOCS%%share/doc/ntp/ntpq.htm -%%PORTDOCS%%share/doc/ntp/ntptime.htm -%%PORTDOCS%%share/doc/ntp/ntptrace.htm -%%PORTDOCS%%share/doc/ntp/parsedata.htm -%%PORTDOCS%%share/doc/ntp/parsenew.htm -%%PORTDOCS%%share/doc/ntp/patches.htm -%%PORTDOCS%%share/doc/ntp/pic/9400n.jpg -%%PORTDOCS%%share/doc/ntp/pic/alice11.gif -%%PORTDOCS%%share/doc/ntp/pic/alice12.gif -%%PORTDOCS%%share/doc/ntp/pic/alice13.gif -%%PORTDOCS%%share/doc/ntp/pic/alice15.gif -%%PORTDOCS%%share/doc/ntp/pic/alice23.gif -%%PORTDOCS%%share/doc/ntp/pic/alice31.gif -%%PORTDOCS%%share/doc/ntp/pic/alice32.gif -%%PORTDOCS%%share/doc/ntp/pic/alice35.gif -%%PORTDOCS%%share/doc/ntp/pic/alice38.gif -%%PORTDOCS%%share/doc/ntp/pic/alice44.gif -%%PORTDOCS%%share/doc/ntp/pic/alice47.gif -%%PORTDOCS%%share/doc/ntp/pic/alice51.gif -%%PORTDOCS%%share/doc/ntp/pic/alice61.gif -%%PORTDOCS%%share/doc/ntp/pic/barnstable.gif -%%PORTDOCS%%share/doc/ntp/pic/beaver.gif -%%PORTDOCS%%share/doc/ntp/pic/boom3.gif -%%PORTDOCS%%share/doc/ntp/pic/boom3a.gif -%%PORTDOCS%%share/doc/ntp/pic/boom4.gif -%%PORTDOCS%%share/doc/ntp/pic/bustardfly.gif -%%PORTDOCS%%share/doc/ntp/pic/c51.jpg -%%PORTDOCS%%share/doc/ntp/pic/driver29.gif -%%PORTDOCS%%share/doc/ntp/pic/fg6021.gif -%%PORTDOCS%%share/doc/ntp/pic/fg6039.jpg -%%PORTDOCS%%share/doc/ntp/pic/flatheads.gif -%%PORTDOCS%%share/doc/ntp/pic/gadget.jpg -%%PORTDOCS%%share/doc/ntp/pic/gps167.jpg -%%PORTDOCS%%share/doc/ntp/pic/home.gif -%%PORTDOCS%%share/doc/ntp/pic/hornraba.gif -%%PORTDOCS%%share/doc/ntp/pic/igclock.gif -%%PORTDOCS%%share/doc/ntp/pic/oncore_evalbig.gif -%%PORTDOCS%%share/doc/ntp/pic/oncore_remoteant.jpg -%%PORTDOCS%%share/doc/ntp/pic/oncore_utplusbig.gif -%%PORTDOCS%%share/doc/ntp/pic/oz2.gif -%%PORTDOCS%%share/doc/ntp/pic/panda.gif -%%PORTDOCS%%share/doc/ntp/pic/pd_om006.gif -%%PORTDOCS%%share/doc/ntp/pic/pd_om011.gif -%%PORTDOCS%%share/doc/ntp/pic/pogo.gif -%%PORTDOCS%%share/doc/ntp/pic/pogo1a.gif -%%PORTDOCS%%share/doc/ntp/pic/pogo3a.gif -%%PORTDOCS%%share/doc/ntp/pic/pogo4.gif -%%PORTDOCS%%share/doc/ntp/pic/pogo5.gif -%%PORTDOCS%%share/doc/ntp/pic/pogo6.gif -%%PORTDOCS%%share/doc/ntp/pic/pogo8.gif -%%PORTDOCS%%share/doc/ntp/pic/pzf509.jpg -%%PORTDOCS%%share/doc/ntp/pic/rabbit.gif -%%PORTDOCS%%share/doc/ntp/pic/radio2.jpg -%%PORTDOCS%%share/doc/ntp/pic/sheepb.jpg -%%PORTDOCS%%share/doc/ntp/pic/stack1a.jpg -%%PORTDOCS%%share/doc/ntp/pic/tonea.gif -%%PORTDOCS%%share/doc/ntp/pic/wingdorothy.gif -%%PORTDOCS%%share/doc/ntp/porting.htm -%%PORTDOCS%%share/doc/ntp/pps.htm -%%PORTDOCS%%share/doc/ntp/prefer.htm -%%PORTDOCS%%share/doc/ntp/qth.htm -%%PORTDOCS%%share/doc/ntp/quick.htm -%%PORTDOCS%%share/doc/ntp/rdebug.htm -%%PORTDOCS%%share/doc/ntp/refclock.htm -%%PORTDOCS%%share/doc/ntp/release.htm -%%PORTDOCS%%share/doc/ntp/tickadj.htm -%%PORTDOCS%%@dirrm share/doc/ntp/pic -%%PORTDOCS%%@dirrm share/doc/ntp/hints -%%PORTDOCS%%@dirrm share/doc/ntp diff --git a/net/opal/Makefile b/net/opal/Makefile deleted file mode 100644 index 1a78e7b9e606..000000000000 --- a/net/opal/Makefile +++ /dev/null @@ -1,34 +0,0 @@ -# New ports collection makefile for: openh323 -# Date created: Thu Feb 17 15:00:48 GMT 2000 -# Whom: Roger Hardiman <roger@freebsd.org> -# -# $FreeBSD$ -# - -PORTNAME= openh323 -PORTVERSION= 1.6.0 -CATEGORIES= net -MASTER_SITES= http://www.openh323.org/bin/ \ - http://www.de.openh323.org/bin/ \ - http://www.ru.openh323.org/bin/ -DISTFILES= openh323_1.6.0.tar.gz \ - pwlib_1.1.36.tar.gz - -MAINTAINER= roger@freebsd.org - -WRKSRC= ${WRKDIR}/${PORTNAME} - -USE_NEWGCC= yes -USE_BISON= yes - -USE_GMAKE= yes -ALL_TARGET= opt -MAKE_ENV= PWLIBDIR=${WRKDIR}/pwlib \ - OPENH323DIR=${WRKDIR}/openh323 -THE_MACHTYPE= ${ARCH:S/i386/x86/} -MAKE_ARGS= OSTYPE=${OPSYS} MACHTYPE=${THE_MACHTYPE} OSRELEASE=${OSVERSION} CPLUS=${CXX} - -do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/samples/simple/obj_${OPSYS}_${THE_MACHTYPE}_r/simph323 ${PREFIX}/bin - -.include <bsd.port.mk> diff --git a/net/opal/distinfo b/net/opal/distinfo deleted file mode 100644 index a31fb176d7b1..000000000000 --- a/net/opal/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (openh323_1.6.0.tar.gz) = 2c20c1cdfb41472843c06e2cc217be34 -MD5 (pwlib_1.1.36.tar.gz) = 9fac3aba1c58ec9f03bc74df7cd320e4 diff --git a/net/opal/files/patch-aa b/net/opal/files/patch-aa deleted file mode 100644 index 67185d92471a..000000000000 --- a/net/opal/files/patch-aa +++ /dev/null @@ -1,45 +0,0 @@ -*** ../pwlib/make/unix.mak.orig Fri Aug 10 07:35:55 2001 ---- ../pwlib/make/unix.mak Fri Aug 10 07:45:03 2001 -*************** ifeq ($(OSTYPE),FreeBSD) -*** 535,545 **** - - P_PTHREADS := 1 - -! ifeq ($(MACHTYPE),x86) -! ifdef CPUTYPE -! STDCCFLAGS += -mcpu=$(CPUTYPE) -! endif -! endif - - ifndef OSRELEASE - OSRELEASE := $(shell sysctl -n kern.osreldate) ---- 535,545 ---- - - P_PTHREADS := 1 - -! #ifeq ($(MACHTYPE),x86) -! #ifdef CPUTYPE -! #STDCCFLAGS += -mcpu=$(CPUTYPE) -! #endif -! #endif - - ifndef OSRELEASE - OSRELEASE := $(shell sysctl -n kern.osreldate) -*************** LDFLAGS += $(DEBLDFLAGS) -*** 962,968 **** - - else - -! OPTCCFLAGS += -O3 -DNDEBUG - #OPTCCFLAGS += -DP_USE_INLINES=1 - #OPTCCFLAGS += -fconserve-space - ifneq ($(OSTYPE),Darwin) ---- 962,969 ---- - - else - -! #OPTCCFLAGS += -O3 -DNDEBUG -! OPTCCFLAGS += -DNDEBUG - #OPTCCFLAGS += -DP_USE_INLINES=1 - #OPTCCFLAGS += -fconserve-space - ifneq ($(OSTYPE),Darwin) diff --git a/net/opal/pkg-comment b/net/opal/pkg-comment deleted file mode 100644 index cef461a24fb2..000000000000 --- a/net/opal/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -A H323 Video Conferencing library, used with OhPhone diff --git a/net/opal/pkg-descr b/net/opal/pkg-descr deleted file mode 100644 index ed8453ff507e..000000000000 --- a/net/opal/pkg-descr +++ /dev/null @@ -1,26 +0,0 @@ -OpenH323 is a multi-platform H323 Video Conferencing library. - -This can be used to make H323 Video Conferencing applications -and the port produces a sample application called simph323. - -However, a fully featured H323 client, including Video -as well as Audio can be found in the OhPhone Port. - -Simph323 and OhPhone can exchange full duplex audio with other H323 -compliant video conferencing programs including Microsoft NetMeeting. -OhPhone adds full Video support. - -The OpenH323 library makes use of PWLib. http://www.equival.com -PWLib is a multi-platform code library that can be used to write -applications that will compile and run on the BSD Unixes, Windows, Linux -and a few other Unix variants. It was developed by Equivalence Ltd Pty. - -By default, the OpenH323 library contains code to display video images -using X Windows. This is not needed in certain applications such -as gatekeepers, gateways or the OpenAM application. -You can compile the port with - make -DNO_XWINDOWS -to build the port without X Windows support. - - -WWW: http://www.openh323.org diff --git a/net/opal/pkg-plist b/net/opal/pkg-plist deleted file mode 100644 index 910567db261b..000000000000 --- a/net/opal/pkg-plist +++ /dev/null @@ -1 +0,0 @@ -bin/simph323 diff --git a/net/opal3/Makefile b/net/opal3/Makefile deleted file mode 100644 index 1a78e7b9e606..000000000000 --- a/net/opal3/Makefile +++ /dev/null @@ -1,34 +0,0 @@ -# New ports collection makefile for: openh323 -# Date created: Thu Feb 17 15:00:48 GMT 2000 -# Whom: Roger Hardiman <roger@freebsd.org> -# -# $FreeBSD$ -# - -PORTNAME= openh323 -PORTVERSION= 1.6.0 -CATEGORIES= net -MASTER_SITES= http://www.openh323.org/bin/ \ - http://www.de.openh323.org/bin/ \ - http://www.ru.openh323.org/bin/ -DISTFILES= openh323_1.6.0.tar.gz \ - pwlib_1.1.36.tar.gz - -MAINTAINER= roger@freebsd.org - -WRKSRC= ${WRKDIR}/${PORTNAME} - -USE_NEWGCC= yes -USE_BISON= yes - -USE_GMAKE= yes -ALL_TARGET= opt -MAKE_ENV= PWLIBDIR=${WRKDIR}/pwlib \ - OPENH323DIR=${WRKDIR}/openh323 -THE_MACHTYPE= ${ARCH:S/i386/x86/} -MAKE_ARGS= OSTYPE=${OPSYS} MACHTYPE=${THE_MACHTYPE} OSRELEASE=${OSVERSION} CPLUS=${CXX} - -do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/samples/simple/obj_${OPSYS}_${THE_MACHTYPE}_r/simph323 ${PREFIX}/bin - -.include <bsd.port.mk> diff --git a/net/opal3/distinfo b/net/opal3/distinfo deleted file mode 100644 index a31fb176d7b1..000000000000 --- a/net/opal3/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (openh323_1.6.0.tar.gz) = 2c20c1cdfb41472843c06e2cc217be34 -MD5 (pwlib_1.1.36.tar.gz) = 9fac3aba1c58ec9f03bc74df7cd320e4 diff --git a/net/opal3/files/patch-aa b/net/opal3/files/patch-aa deleted file mode 100644 index 67185d92471a..000000000000 --- a/net/opal3/files/patch-aa +++ /dev/null @@ -1,45 +0,0 @@ -*** ../pwlib/make/unix.mak.orig Fri Aug 10 07:35:55 2001 ---- ../pwlib/make/unix.mak Fri Aug 10 07:45:03 2001 -*************** ifeq ($(OSTYPE),FreeBSD) -*** 535,545 **** - - P_PTHREADS := 1 - -! ifeq ($(MACHTYPE),x86) -! ifdef CPUTYPE -! STDCCFLAGS += -mcpu=$(CPUTYPE) -! endif -! endif - - ifndef OSRELEASE - OSRELEASE := $(shell sysctl -n kern.osreldate) ---- 535,545 ---- - - P_PTHREADS := 1 - -! #ifeq ($(MACHTYPE),x86) -! #ifdef CPUTYPE -! #STDCCFLAGS += -mcpu=$(CPUTYPE) -! #endif -! #endif - - ifndef OSRELEASE - OSRELEASE := $(shell sysctl -n kern.osreldate) -*************** LDFLAGS += $(DEBLDFLAGS) -*** 962,968 **** - - else - -! OPTCCFLAGS += -O3 -DNDEBUG - #OPTCCFLAGS += -DP_USE_INLINES=1 - #OPTCCFLAGS += -fconserve-space - ifneq ($(OSTYPE),Darwin) ---- 962,969 ---- - - else - -! #OPTCCFLAGS += -O3 -DNDEBUG -! OPTCCFLAGS += -DNDEBUG - #OPTCCFLAGS += -DP_USE_INLINES=1 - #OPTCCFLAGS += -fconserve-space - ifneq ($(OSTYPE),Darwin) diff --git a/net/opal3/pkg-comment b/net/opal3/pkg-comment deleted file mode 100644 index cef461a24fb2..000000000000 --- a/net/opal3/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -A H323 Video Conferencing library, used with OhPhone diff --git a/net/opal3/pkg-descr b/net/opal3/pkg-descr deleted file mode 100644 index ed8453ff507e..000000000000 --- a/net/opal3/pkg-descr +++ /dev/null @@ -1,26 +0,0 @@ -OpenH323 is a multi-platform H323 Video Conferencing library. - -This can be used to make H323 Video Conferencing applications -and the port produces a sample application called simph323. - -However, a fully featured H323 client, including Video -as well as Audio can be found in the OhPhone Port. - -Simph323 and OhPhone can exchange full duplex audio with other H323 -compliant video conferencing programs including Microsoft NetMeeting. -OhPhone adds full Video support. - -The OpenH323 library makes use of PWLib. http://www.equival.com -PWLib is a multi-platform code library that can be used to write -applications that will compile and run on the BSD Unixes, Windows, Linux -and a few other Unix variants. It was developed by Equivalence Ltd Pty. - -By default, the OpenH323 library contains code to display video images -using X Windows. This is not needed in certain applications such -as gatekeepers, gateways or the OpenAM application. -You can compile the port with - make -DNO_XWINDOWS -to build the port without X Windows support. - - -WWW: http://www.openh323.org diff --git a/net/opal3/pkg-plist b/net/opal3/pkg-plist deleted file mode 100644 index 910567db261b..000000000000 --- a/net/opal3/pkg-plist +++ /dev/null @@ -1 +0,0 @@ -bin/simph323 diff --git a/net/openh323-112/Makefile b/net/openh323-112/Makefile deleted file mode 100644 index 1a78e7b9e606..000000000000 --- a/net/openh323-112/Makefile +++ /dev/null @@ -1,34 +0,0 @@ -# New ports collection makefile for: openh323 -# Date created: Thu Feb 17 15:00:48 GMT 2000 -# Whom: Roger Hardiman <roger@freebsd.org> -# -# $FreeBSD$ -# - -PORTNAME= openh323 -PORTVERSION= 1.6.0 -CATEGORIES= net -MASTER_SITES= http://www.openh323.org/bin/ \ - http://www.de.openh323.org/bin/ \ - http://www.ru.openh323.org/bin/ -DISTFILES= openh323_1.6.0.tar.gz \ - pwlib_1.1.36.tar.gz - -MAINTAINER= roger@freebsd.org - -WRKSRC= ${WRKDIR}/${PORTNAME} - -USE_NEWGCC= yes -USE_BISON= yes - -USE_GMAKE= yes -ALL_TARGET= opt -MAKE_ENV= PWLIBDIR=${WRKDIR}/pwlib \ - OPENH323DIR=${WRKDIR}/openh323 -THE_MACHTYPE= ${ARCH:S/i386/x86/} -MAKE_ARGS= OSTYPE=${OPSYS} MACHTYPE=${THE_MACHTYPE} OSRELEASE=${OSVERSION} CPLUS=${CXX} - -do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/samples/simple/obj_${OPSYS}_${THE_MACHTYPE}_r/simph323 ${PREFIX}/bin - -.include <bsd.port.mk> diff --git a/net/openh323-112/distinfo b/net/openh323-112/distinfo deleted file mode 100644 index a31fb176d7b1..000000000000 --- a/net/openh323-112/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (openh323_1.6.0.tar.gz) = 2c20c1cdfb41472843c06e2cc217be34 -MD5 (pwlib_1.1.36.tar.gz) = 9fac3aba1c58ec9f03bc74df7cd320e4 diff --git a/net/openh323-112/files/patch-aa b/net/openh323-112/files/patch-aa deleted file mode 100644 index 67185d92471a..000000000000 --- a/net/openh323-112/files/patch-aa +++ /dev/null @@ -1,45 +0,0 @@ -*** ../pwlib/make/unix.mak.orig Fri Aug 10 07:35:55 2001 ---- ../pwlib/make/unix.mak Fri Aug 10 07:45:03 2001 -*************** ifeq ($(OSTYPE),FreeBSD) -*** 535,545 **** - - P_PTHREADS := 1 - -! ifeq ($(MACHTYPE),x86) -! ifdef CPUTYPE -! STDCCFLAGS += -mcpu=$(CPUTYPE) -! endif -! endif - - ifndef OSRELEASE - OSRELEASE := $(shell sysctl -n kern.osreldate) ---- 535,545 ---- - - P_PTHREADS := 1 - -! #ifeq ($(MACHTYPE),x86) -! #ifdef CPUTYPE -! #STDCCFLAGS += -mcpu=$(CPUTYPE) -! #endif -! #endif - - ifndef OSRELEASE - OSRELEASE := $(shell sysctl -n kern.osreldate) -*************** LDFLAGS += $(DEBLDFLAGS) -*** 962,968 **** - - else - -! OPTCCFLAGS += -O3 -DNDEBUG - #OPTCCFLAGS += -DP_USE_INLINES=1 - #OPTCCFLAGS += -fconserve-space - ifneq ($(OSTYPE),Darwin) ---- 962,969 ---- - - else - -! #OPTCCFLAGS += -O3 -DNDEBUG -! OPTCCFLAGS += -DNDEBUG - #OPTCCFLAGS += -DP_USE_INLINES=1 - #OPTCCFLAGS += -fconserve-space - ifneq ($(OSTYPE),Darwin) diff --git a/net/openh323-112/pkg-comment b/net/openh323-112/pkg-comment deleted file mode 100644 index cef461a24fb2..000000000000 --- a/net/openh323-112/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -A H323 Video Conferencing library, used with OhPhone diff --git a/net/openh323-112/pkg-descr b/net/openh323-112/pkg-descr deleted file mode 100644 index ed8453ff507e..000000000000 --- a/net/openh323-112/pkg-descr +++ /dev/null @@ -1,26 +0,0 @@ -OpenH323 is a multi-platform H323 Video Conferencing library. - -This can be used to make H323 Video Conferencing applications -and the port produces a sample application called simph323. - -However, a fully featured H323 client, including Video -as well as Audio can be found in the OhPhone Port. - -Simph323 and OhPhone can exchange full duplex audio with other H323 -compliant video conferencing programs including Microsoft NetMeeting. -OhPhone adds full Video support. - -The OpenH323 library makes use of PWLib. http://www.equival.com -PWLib is a multi-platform code library that can be used to write -applications that will compile and run on the BSD Unixes, Windows, Linux -and a few other Unix variants. It was developed by Equivalence Ltd Pty. - -By default, the OpenH323 library contains code to display video images -using X Windows. This is not needed in certain applications such -as gatekeepers, gateways or the OpenAM application. -You can compile the port with - make -DNO_XWINDOWS -to build the port without X Windows support. - - -WWW: http://www.openh323.org diff --git a/net/openh323-112/pkg-plist b/net/openh323-112/pkg-plist deleted file mode 100644 index 910567db261b..000000000000 --- a/net/openh323-112/pkg-plist +++ /dev/null @@ -1 +0,0 @@ -bin/simph323 diff --git a/net/openldap12/Makefile b/net/openldap12/Makefile deleted file mode 100644 index a3330274b68c..000000000000 --- a/net/openldap12/Makefile +++ /dev/null @@ -1,88 +0,0 @@ -# New ports collection makefile for: OpenLDAP 1.x -# Date created: 20 Sep 1998 -# Whom: Lachlan O'Dea -# -# $FreeBSD$ -# - -PORTNAME= openldap -PORTVERSION= 1.2.11 -PORTREVISION= 2 -CATEGORIES= net databases -MASTER_SITES= ftp://ftp.OpenLDAP.org/pub/OpenLDAP/%SUBDIR%/ \ - ftp://ftp.net.lut.ac.uk/openldap/%SUBDIR%/ \ - ftp://sunsite.cnlab-switch.ch/mirror/OpenLDAP/%SUBDIR%/ \ - ftp://mirror.aarnet.edu.au/pub/OpenLDAP/%SUBDIR%/ \ - ftp://gd.tuwien.ac.at/infosys/network/OpenLDAP/%SUBDIR%/ \ - http://www.unibase.cz/ldapcz/Programy/Free/OpenLDAP/%SUBDIR%/ \ - ftp://ftp.ntua.gr/mirror/OpenLDAP/%SUBDIR%/ \ - ftp://ftp.loxinfo.co.th/pub/unix/LDAP/OpenLDAP/%SUBDIR%/ \ - ftp://ftp.zcu.cz/pub/network/openldap/%SUBDIR%/ -MASTER_SITE_SUBDIR= openldap-release -EXTRACT_SUFX= .tgz - -MAINTAINER= lodea@vet.com.au - -USE_LIBTOOL= yes - -CONFIGURE_ARGS= --localstatedir=/var/db \ - --enable-shared \ - --enable-dns - -# Include tcp-wrapper support -.if exists(/usr/include/tcpd.h) -CONFIGURE_ARGS+= --enable-wrappers -.endif - -.if defined(WITH_DB2) -BUILD_DEPENDS= ${LOCALBASE}/lib/libdb2.a:${PORTSDIR}/databases/db/ - -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include/db2 ${PTHREAD_CFLAGS}" \ - LDFLAGS="-L${LOCALBASE}/lib" -CONFIGURE_ARGS+= --enable-ldbm \ - --with-ldbm-api=db2 -.endif - -INSTALLS_SHLIB= yes - -BINS= bin/ldapadd \ - bin/ldapdelete \ - bin/ldapmodify \ - bin/ldapmodrdn \ - bin/ldappasswd \ - bin/ldapsearch \ - bin/ud \ - libexec/fax500 \ - libexec/go500 \ - libexec/go500gw \ - libexec/in.xfingerd \ - libexec/mail500 \ - libexec/rcpt500 \ - libexec/rp500 \ - libexec/slapd \ - libexec/slurpd \ - sbin/centipede \ - sbin/ldbmcat \ - sbin/ldbmtest \ - sbin/ldif \ - sbin/ldif2id2children \ - sbin/ldif2id2entry \ - sbin/ldif2index \ - sbin/ldif2ldbm - -.include <bsd.port.pre.mk> -.include "${FILESDIR}/manpages" - -pre-build: - cd ${WRKSRC} ; ${MAKE} depend - -post-build: - ${SED} 's,@@PREFIX@@,${PREFIX},g' ${FILESDIR}/slapd.sh >${WRKDIR}/slapd.sh - -post-install: -.for f in ${BINS} - strip ${PREFIX}/${f} -.endfor - ${INSTALL_SCRIPT} ${WRKDIR}/slapd.sh ${PREFIX}/etc/rc.d/slapd.sh.sample - -.include <bsd.port.post.mk> diff --git a/net/openldap12/distinfo b/net/openldap12/distinfo deleted file mode 100644 index bb58893239f9..000000000000 --- a/net/openldap12/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (openldap-1.2.11.tgz) = ac469c0fe66ece3893e96182f14b7886 diff --git a/net/openldap12/files/manpages b/net/openldap12/files/manpages deleted file mode 100644 index f36399dbc70a..000000000000 --- a/net/openldap12/files/manpages +++ /dev/null @@ -1,165 +0,0 @@ -MAN1+= ldapdelete.1 -MAN1+= ldapmodify.1 -MAN1+= ldapmodrdn.1 -MAN1+= ldappasswd.1 -MAN1+= ldapsearch.1 -MAN1+= ud.1 -MAN3+= cldap_close.3 -MAN3+= cldap_open.3 -MAN3+= cldap_search_s.3 -MAN3+= cldap_setretryinfo.3 -MAN3+= lber-decode.3 -MAN3+= lber-encode.3 -MAN3+= ldap.3 -MAN3+= ldap_abandon.3 -MAN3+= ldap_add.3 -MAN3+= ldap_bind.3 -MAN3+= ldap_cache.3 -MAN3+= ldap_charset.3 -MAN3+= ldap_compare.3 -MAN3+= ldap_delete.3 -MAN3+= ldap_disptmpl.3 -MAN3+= ldap_entry2text.3 -MAN3+= ldap_error.3 -MAN3+= ldap_first_attribute.3 -MAN3+= ldap_first_entry.3 -MAN3+= ldap_friendly.3 -MAN3+= ldap_get_dn.3 -MAN3+= ldap_get_values.3 -MAN3+= ldap_getfilter.3 -MAN3+= ldap_modify.3 -MAN3+= ldap_modrdn.3 -MAN3+= ldap_open.3 -MAN3+= ldap_result.3 -MAN3+= ldap_search.3 -MAN3+= ldap_searchprefs.3 -MAN3+= ldap_sort.3 -MAN3+= ldap_ufn.3 -MAN3+= ldap_url.3 -MAN5+= ldap.conf.5 -MAN5+= ldapfilter.conf.5 -MAN5+= ldapfriendly.5 -MAN5+= ldapsearchprefs.conf.5 -MAN5+= ldaptemplates.conf.5 -MAN5+= ldif.5 -MAN5+= slapd.conf.5 -MAN5+= slapd.replog.5 -MAN5+= ud.conf.5 -MAN8+= centipede.8 -MAN8+= chlog2replog.8 -MAN8+= edb2ldif.8 -MAN8+= go500.8 -MAN8+= go500gw.8 -MAN8+= in.xfingerd.8 -MAN8+= ldapd.8 -MAN8+= ldbmcat.8 -MAN8+= ldif.8 -MAN8+= ldif2ldbm.8 -MAN8+= mail500.8 -MAN8+= rcpt500.8 -MAN8+= slapd.8 -MAN8+= slurpd.8 -MLINKS+= ldapmodify.1 ldapadd.1 -MLINKS+= ldap.3 cldap.3 -MLINKS+= ldap_add.3 ldap_add_s.3 -MLINKS+= ldap_bind.3 ldap_bind_s.3 -MLINKS+= ldap_bind.3 ldap_kerberos_bind1.3 -MLINKS+= ldap_bind.3 ldap_kerberos_bind1_s.3 -MLINKS+= ldap_bind.3 ldap_kerberos_bind2.3 -MLINKS+= ldap_bind.3 ldap_kerberos_bind2_s.3 -MLINKS+= ldap_bind.3 ldap_kerberos_bind_s.3 -MLINKS+= ldap_bind.3 ldap_set_rebind_proc.3 -MLINKS+= ldap_bind.3 ldap_simple_bind.3 -MLINKS+= ldap_bind.3 ldap_simple_bind_s.3 -MLINKS+= ldap_bind.3 ldap_unbind.3 -MLINKS+= ldap_bind.3 ldap_unbind_s.3 -MLINKS+= ldap_cache.3 ldap_destroy_cache.3 -MLINKS+= ldap_cache.3 ldap_disable_cache.3 -MLINKS+= ldap_cache.3 ldap_enable_cache.3 -MLINKS+= ldap_cache.3 ldap_flush_cache.3 -MLINKS+= ldap_cache.3 ldap_set_cache_options.3 -MLINKS+= ldap_cache.3 ldap_uncache_entry.3 -MLINKS+= ldap_cache.3 ldap_uncache_request.3 -MLINKS+= ldap_charset.3 ldap_8859_to_t61.3 -MLINKS+= ldap_charset.3 ldap_enable_translation.3 -MLINKS+= ldap_charset.3 ldap_set_string_translators.3 -MLINKS+= ldap_charset.3 ldap_t61_to_8859.3 -MLINKS+= ldap_charset.3 ldap_translate_from_t61.3 -MLINKS+= ldap_charset.3 ldap_translate_to_t61.3 -MLINKS+= ldap_compare.3 ldap_compare_s.3 -MLINKS+= ldap_delete.3 ldap_delete_s.3 -MLINKS+= ldap_disptmpl.3 ldap_first_disptmpl.3 -MLINKS+= ldap_disptmpl.3 ldap_first_tmplcol.3 -MLINKS+= ldap_disptmpl.3 ldap_first_tmplrow.3 -MLINKS+= ldap_disptmpl.3 ldap_free_templates.3 -MLINKS+= ldap_disptmpl.3 ldap_init_templates.3 -MLINKS+= ldap_disptmpl.3 ldap_init_templates_buf.3 -MLINKS+= ldap_disptmpl.3 ldap_next_disptmpl.3 -MLINKS+= ldap_disptmpl.3 ldap_next_tmplcol.3 -MLINKS+= ldap_disptmpl.3 ldap_next_tmplrow.3 -MLINKS+= ldap_disptmpl.3 ldap_oc2template.3 -MLINKS+= ldap_disptmpl.3 ldap_tmplattrs.3 -MLINKS+= ldap_entry2text.3 ldap_entry2html.3 -MLINKS+= ldap_entry2text.3 ldap_entry2html_search.3 -MLINKS+= ldap_entry2text.3 ldap_entry2text_search.3 -MLINKS+= ldap_entry2text.3 ldap_vals2html.3 -MLINKS+= ldap_entry2text.3 ldap_vals2text.3 -MLINKS+= ldap_error.3 ld_errno.3 -MLINKS+= ldap_error.3 ldap_err2string.3 -MLINKS+= ldap_error.3 ldap_errlist.3 -MLINKS+= ldap_error.3 ldap_perror.3 -MLINKS+= ldap_error.3 ldap_result2error.3 -MLINKS+= ldap_first_attribute.3 ldap_next_attribute.3 -MLINKS+= ldap_first_entry.3 ldap_count_entries.3 -MLINKS+= ldap_first_entry.3 ldap_next_entry.3 -MLINKS+= ldap_friendly.3 ldap_free_friendlymap.3 -MLINKS+= ldap_friendly.3 ldap_friendly_name.3 -MLINKS+= ldap_get_dn.3 ldap_dn2ufn.3 -MLINKS+= ldap_get_dn.3 ldap_explode_dn.3 -MLINKS+= ldap_get_dn.3 ldap_explode_dns.3 -MLINKS+= ldap_get_dn.3 ldap_is_dns_dn.3 -MLINKS+= ldap_get_values.3 ldap_count_values.3 -MLINKS+= ldap_get_values.3 ldap_count_values_len.3 -MLINKS+= ldap_get_values.3 ldap_get_values_len.3 -MLINKS+= ldap_get_values.3 ldap_value_free.3 -MLINKS+= ldap_get_values.3 ldap_value_free_len.3 -MLINKS+= ldap_getfilter.3 ldap_build_filter.3 -MLINKS+= ldap_getfilter.3 ldap_getfilter_free.3 -MLINKS+= ldap_getfilter.3 ldap_getfirstfilter.3 -MLINKS+= ldap_getfilter.3 ldap_getnextfilter.3 -MLINKS+= ldap_getfilter.3 ldap_init_getfilter.3 -MLINKS+= ldap_getfilter.3 ldap_init_getfilter_buf.3 -MLINKS+= ldap_getfilter.3 ldap_setfilteraffixes.3 -MLINKS+= ldap_modify.3 ldap_modify_s.3 -MLINKS+= ldap_modify.3 ldap_mods_free.3 -MLINKS+= ldap_modrdn.3 ldap_modrdn2.3 -MLINKS+= ldap_modrdn.3 ldap_modrdn2_s.3 -MLINKS+= ldap_modrdn.3 ldap_modrdn_s.3 -MLINKS+= ldap_open.3 ldap_init.3 -MLINKS+= ldap_result.3 ldap_msgfree.3 -MLINKS+= ldap_search.3 ldap_search_s.3 -MLINKS+= ldap_search.3 ldap_search_st.3 -MLINKS+= ldap_searchprefs.3 ldap_first_searchobj.3 -MLINKS+= ldap_searchprefs.3 ldap_free_searchprefs.3 -MLINKS+= ldap_searchprefs.3 ldap_init_searchprefs.3 -MLINKS+= ldap_searchprefs.3 ldap_init_searchprefs_buf.3 -MLINKS+= ldap_searchprefs.3 ldap_next_searchobj.3 -MLINKS+= ldap_sort.3 ldap_sort_entries.3 -MLINKS+= ldap_sort.3 ldap_sort_strcasecmp.3 -MLINKS+= ldap_sort.3 ldap_sort_values.3 -MLINKS+= ldap_ufn.3 ldap_ufn_search_c.3 -MLINKS+= ldap_ufn.3 ldap_ufn_search_ct.3 -MLINKS+= ldap_ufn.3 ldap_ufn_search_s.3 -MLINKS+= ldap_ufn.3 ldap_ufn_setfilter.3 -MLINKS+= ldap_ufn.3 ldap_ufn_setprefix.3 -MLINKS+= ldap_ufn.3 ldap_ufn_timeout.3 -MLINKS+= ldap_url.3 ldap_free_urldesc.3 -MLINKS+= ldap_url.3 ldap_is_ldap_url.3 -MLINKS+= ldap_url.3 ldap_url_parse.3 -MLINKS+= ldap_url.3 ldap_url_search.3 -MLINKS+= ldap_url.3 ldap_url_search_s.3 -MLINKS+= ldap_url.3 ldap_url_search_st.3 -MLINKS+= ldif2ldbm.8 ldif2id2children.8 -MLINKS+= ldif2ldbm.8 ldif2id2entry.8 -MLINKS+= ldif2ldbm.8 ldif2index.8 -MLINKS+= mail500.8 fax500.8 diff --git a/net/openldap12/files/patch-aa b/net/openldap12/files/patch-aa deleted file mode 100644 index 22b7d8d94a70..000000000000 --- a/net/openldap12/files/patch-aa +++ /dev/null @@ -1,12 +0,0 @@ ---- build/lib-shared.mk~ Thu May 25 22:46:57 2000 -+++ build/lib-shared.mk Thu May 25 22:50:24 2000 -@@ -20,5 +20,9 @@ - (d=`$(PWD)` ; $(LN_S) `$(BASENAME) $$d`/$@ ../$@) - $(RM) ../`$(BASENAME) $@ .la`.a; \ - (d=`$(PWD)`; t=`$(BASENAME) $@ .la`.a; $(LN_S) `$(BASENAME) $$d`/.libs/$$t ../$$t) -+ # If we want our binaries to link dynamically with libldap{,_r} liblber... -+ # We also symlink the .so.# so we can run the tests without installing -+ (d=`$(PWD)`; t=`$(BASENAME) $@ .la`.so; $(LN_S) `$(BASENAME) $$d`/.libs/$$t ../$$t) -+ (d=`$(PWD)`; b=`$(BASENAME) $@ .la`; t=`ls $$d/.libs/$$b.so.?`; $(LN_S) `$(BASENAME) $$d`/.libs/`$(BASENAME) $$t` ../`$(BASENAME) $$t`) - - Makefile: $(top_srcdir)/build/lib-shared.mk diff --git a/net/openldap12/files/patch-ab b/net/openldap12/files/patch-ab deleted file mode 100644 index 0e6d89b746e0..000000000000 --- a/net/openldap12/files/patch-ab +++ /dev/null @@ -1,8 +0,0 @@ ---- tests/scripts/defines.sh~ Wed May 26 02:06:42 1999 -+++ tests/scripts/defines.sh Thu May 25 22:53:23 2000 -@@ -53,3 +53,5 @@ - ACLOUTMASTER=$DATADIR/acl.out.master - REPLOUTMASTER=$DATADIR/repl.out.master - MODSRCHFILTERS=$DATADIR/modify.search.filters -+# Just in case we linked the binaries dynamically -+export LD_LIBRARY_PATH=`pwd`/../libraries diff --git a/net/openldap12/files/patch-ac b/net/openldap12/files/patch-ac deleted file mode 100644 index e491cbc8c38d..000000000000 --- a/net/openldap12/files/patch-ac +++ /dev/null @@ -1,12 +0,0 @@ ---- build/lib.mk~ Thu Jan 7 18:36:30 1999 -+++ build/lib.mk Thu May 25 22:58:26 2000 -@@ -27,7 +27,8 @@ - clean-common: FORCE - $(RM) $(LIBRARY) ../$(LIBRARY) $(XLIBRARY) \ - $(PROGRAMS) $(XPROGRAMS) $(XSRCS) $(XXSRCS) \ -- *.o *.lo a.out core version.c .libs/* -+ *.o *.lo a.out core version.c .libs/* \ -+ ../`$(BASENAME) $(LIBRARY) .la`.so* - - depend-common: FORCE - $(MKDEP) $(DEFS) $(DEFINES) $(SRCS) $(XXSRCS) diff --git a/net/openldap12/files/patch-ae b/net/openldap12/files/patch-ae deleted file mode 100644 index 18f342c29a53..000000000000 --- a/net/openldap12/files/patch-ae +++ /dev/null @@ -1,8 +0,0 @@ ---- clients/ud/Makefile.in.orig Wed Jan 13 20:02:11 1999 -+++ clients/ud/Makefile.in Wed Jul 26 14:24:14 2000 -@@ -26,4 +26,4 @@ - install-local: FORCE - -$(MKDIR) $(bindir) - -mv -f $(bindir)/ud $(bindir)/ud- -- $(LTINSTALL) $(INSTALLFLAGS) -m 775 ud $(bindir) -+ $(LTINSTALL) $(INSTALLFLAGS) -m 755 ud $(bindir) diff --git a/net/openldap12/files/patch-db b/net/openldap12/files/patch-db deleted file mode 100644 index 9acf8388246d..000000000000 --- a/net/openldap12/files/patch-db +++ /dev/null @@ -1,29 +0,0 @@ ---- configure.orig Fri Jun 9 13:16:04 2000 -+++ configure Tue Jul 4 15:59:42 2000 -@@ -6170,14 +6170,14 @@ - echo $ac_n "(cached) $ac_c" 1>&6 - else - ol_LIBS="$LIBS" -- echo $ac_n "checking for db_open in -ldb""... $ac_c" 1>&6 --echo "configure:6175: checking for db_open in -ldb" >&5 -+ echo $ac_n "checking for db_open in -ldb2""... $ac_c" 1>&6 -+echo "configure:6175: checking for db_open in -ldb2" >&5 - ac_lib_var=`echo db'_'db_open | sed 'y%./+-:%__p__%'` - if eval "test \"\${ac_cv_lib_$ac_lib_var+set}\" = set"; then - echo $ac_n "(cached) $ac_c" 1>&6 - else - ac_save_LIBS="$LIBS" --LIBS="-ldb $LIBS" -+LIBS="-ldb2 $LIBS" - cat > conftest.$ac_ext <<EOF - #line 6183 "configure" - #include "confdefs.h" -@@ -6205,7 +6205,7 @@ - fi - if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then - echo "$ac_t""yes" 1>&6 -- ol_cv_lib_db2=-ldb -+ ol_cv_lib_db2=-ldb2 - else - echo "$ac_t""no" 1>&6 - ol_cv_lib_db2=no diff --git a/net/openldap12/files/slapd.sh b/net/openldap12/files/slapd.sh deleted file mode 100644 index 1704074b7968..000000000000 --- a/net/openldap12/files/slapd.sh +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ - -slapd=@@PREFIX@@/libexec/slapd -pidfile=/var/run/slapd.pid - -case "$1" in -start) - if [ -x $slapd ]; then - echo -n ' slapd' - $slapd - fi - ;; -stop) - if [ -f $pidfile ]; then - kill `cat $pidfile` - telnet localhost ldap </dev/null >/dev/null 2>&1 - echo -n ' slapd' - rm $pidfile - else - echo ' slapd: not running' - fi - ;; -*) - echo "Usage: `basename $0` {start|stop}" >&2 - exit 64 - ;; -esac - -exit 0 diff --git a/net/openldap12/pkg-comment b/net/openldap12/pkg-comment deleted file mode 100644 index 8c499c3923cf..000000000000 --- a/net/openldap12/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Open source LDAP client and server software diff --git a/net/openldap12/pkg-descr b/net/openldap12/pkg-descr deleted file mode 100644 index aec3ae0f7cf4..000000000000 --- a/net/openldap12/pkg-descr +++ /dev/null @@ -1,12 +0,0 @@ -OpenLDAP is a suite of Lightweight Directory Access Protocol (LDAP) servers, -clients, utilities and development tools. LDAP is an Internet standard -directory service protocol that can be used stand-alone, or as a front end -to an X.500 directory. LDAP is defined by RFCs 1777 through 1779. - -OpenLDAP is derived from the University of Michigan LDAP release 3.3 and is -distributed under an open source license. - -WWW: http://www.openldap.org/ - -Lachlan O'Dea -ulmo@earthling.net diff --git a/net/openldap12/pkg-plist b/net/openldap12/pkg-plist deleted file mode 100644 index 692835f547df..000000000000 --- a/net/openldap12/pkg-plist +++ /dev/null @@ -1,63 +0,0 @@ -bin/ldapadd -bin/ldapdelete -bin/ldapmodify -bin/ldapmodrdn -bin/ldappasswd -bin/ldapsearch -bin/ud -@unexec if cmp -s %D/etc/openldap/ldap.conf %D/etc/openldap/ldap.conf.default; then rm -f %D/etc/openldap/ldap.conf; fi -etc/openldap/ldap.conf.default -@exec [ ! -f %B/ldap.conf ] && cp %B/%f %B/ldap.conf -@unexec if cmp -s %D/etc/openldap/ldapfilter.conf %D/etc/openldap/ldapfilter.conf.default; then rm -f %D/etc/openldap/ldapfilter.conf; fi -etc/openldap/ldapfilter.conf.default -@exec [ ! -f %B/ldapfilter.conf ] && cp %B/%f %B/ldapfilter.conf -@unexec if cmp -s %D/etc/openldap/ldapsearchprefs.conf %D/etc/openldap/ldapsearchprefs.conf.default; then rm -f %D/etc/openldap/ldapsearchprefs.conf; fi -etc/openldap/ldapsearchprefs.conf.default -@exec [ ! -f %B/ldapsearchprefs.conf ] && cp %B/%f %B/ldapsearchprefs.conf -@unexec if cmp -s %D/etc/openldap/ldaptemplates.conf %D/etc/openldap/ldaptemplates.conf.default; then rm -f %D/etc/openldap/ldaptemplates.conf; fi -etc/openldap/ldaptemplates.conf.default -@exec [ ! -f %B/ldaptemplates.conf ] && cp %B/%f %B/ldaptemplates.conf -@unexec if cmp -s %D/etc/openldap/slapd.at.conf %D/etc/openldap/slapd.at.conf.default; then rm -f %D/etc/openldap/slapd.at.conf; fi -etc/openldap/slapd.at.conf.default -@exec [ ! -f %B/slapd.at.conf ] && cp %B/%f %B/slapd.at.conf -@unexec if cmp -s %D/etc/openldap/slapd.conf %D/etc/openldap/slapd.conf.default; then rm -f %D/etc/openldap/slapd.conf; fi -etc/openldap/slapd.conf.default -@exec [ ! -f %B/slapd.conf ] && cp %B/%f %B/slapd.conf -@unexec if cmp -s %D/etc/openldap/slapd.oc.conf %D/etc/openldap/slapd.oc.conf.default; then rm -f %D/etc/openldap/slapd.oc.conf; fi -etc/openldap/slapd.oc.conf.default -@exec [ ! -f %B/slapd.oc.conf ] && cp %B/%f %B/slapd.oc.conf -@dirrm etc/openldap -etc/rc.d/slapd.sh.sample -include/disptmpl.h -include/lber.h -include/ldap.h -include/ldap_cdefs.h -include/srchpref.h -lib/liblber.a -lib/liblber.so -lib/liblber.so.1 -lib/libldap.a -lib/libldap.so -lib/libldap.so.1 -libexec/fax500 -libexec/go500 -libexec/go500gw -libexec/in.xfingerd -libexec/mail500 -libexec/rcpt500 -libexec/rp500 -libexec/slapd -libexec/slurpd -libexec/xrpcomp -sbin/centipede -sbin/ldbmcat -sbin/ldbmtest -sbin/ldif -sbin/ldif2id2children -sbin/ldif2id2entry -sbin/ldif2index -sbin/ldif2ldbm -share/openldap/go500gw.help -share/openldap/ldapfriendly -share/openldap/rcpt500.help -@dirrm share/openldap diff --git a/net/openldap20-server/Makefile b/net/openldap20-server/Makefile deleted file mode 100644 index 42af69354389..000000000000 --- a/net/openldap20-server/Makefile +++ /dev/null @@ -1,104 +0,0 @@ -# New ports collection makefile for: OpenLDAP 2.x -# Date created: 20 Sep 1998 -# Whom: Lachlan O'Dea -# -# $FreeBSD$ -# - -PORTNAME= openldap -PORTVERSION= 2.0.14 -CATEGORIES= net databases -MASTER_SITES= ftp://ftp.OpenLDAP.org/pub/OpenLDAP/%SUBDIR%/ \ - ftp://ftp.net.lut.ac.uk/openldap/%SUBDIR%/ \ - ftp://sunsite.cnlab-switch.ch/mirror/OpenLDAP/%SUBDIR%/ \ - ftp://mirror.aarnet.edu.au/pub/OpenLDAP/%SUBDIR%/ \ - ftp://gd.tuwien.ac.at/infosys/network/OpenLDAP/%SUBDIR%/ \ - http://www.unibase.cz/ldapcz/Programy/Free/OpenLDAP/%SUBDIR%/ \ - ftp://ftp.ntua.gr/mirror/OpenLDAP/%SUBDIR%/ \ - ftp://ftp.loxinfo.co.th/pub/unix/LDAP/OpenLDAP/%SUBDIR%/ \ - ftp://ftp.zcu.cz/pub/network/openldap/%SUBDIR%/ -MASTER_SITE_SUBDIR= openldap-release -EXTRACT_SUFX= .tgz - -MAINTAINER= ports@FreeBSD.org - -LIB_DEPENDS= db3.2:${PORTSDIR}/databases/db3 - -USE_AUTOCONF= yes -USE_LIBTOOL= yes -USE_OPENSSL= yes - -CONFIGURE_ARGS= --localstatedir=/var/db \ - --with-threads \ - --enable-shared \ - --enable-dnssrv \ - --with-tls=openssl - -# Include tcp-wrapper support -.if exists(/usr/include/tcpd.h) -CONFIGURE_ARGS+= --enable-wrappers -.endif - -# math.h uses _REENTRANT and stdio.h uses _THREAD_SAFE, so define both. -CPPFLAGS+= -D_REENTRANT ${PTHREAD_CFLAGS} \ - -I${LOCALBASE}/include \ - -I${LOCALBASE}/include/db3 -LDFLAGS+= -L${LOCALBASE}/lib - -.if defined(WITH_SASL) -LIB_DEPENDS+= sasl.8:${PORTSDIR}/security/cyrus-sasl -CPPFLAGS+= -I${LOCALBASE}/include/sasl -.endif - -.if defined(WITH_ODBC) -LIB_DEPENDS+= iodbc.2:${PORTSDIR}/databases/libiodbc -CONFIGURE_ARGS+=--enable-sql -.endif - -CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" \ - LDFLAGS="${LDFLAGS}" - -INSTALLS_SHLIB= yes - -BINS= bin/ldapadd \ - bin/ldapdelete \ - bin/ldapmodify \ - bin/ldapmodrdn \ - bin/ldappasswd \ - bin/ldapsearch \ - bin/ud \ - libexec/fax500 \ - libexec/go500 \ - libexec/go500gw \ - libexec/in.xfingerd \ - libexec/mail500 \ - libexec/maildap \ - libexec/rcpt500 \ - libexec/rp500 \ - libexec/slapd \ - libexec/slurpd - -.include <bsd.port.pre.mk> -.include "${FILESDIR}/manpages" - -post-patch: - @${PERL} -pi.fbsd -e 's@pidfile\t\t%LOCALSTATEDIR%/slapd.pid@pidfile\t\t/var/run/slapd.pid@g; \ - s@argsfile\t%LOCALSTATEDIR%/slapd.args@argsfile\t/var/run/slapd.args@g' ${WRKSRC}/servers/slapd/slapd.conf - -post-configure: - @cd ${WRKSRC} ; ${PATCH} < ${FILESDIR}/libtool.diff - -pre-build: - @cd ${WRKSRC} ; ${MAKE} depend - -post-build: - @${SED} 's,@@PREFIX@@,${PREFIX},g' ${FILESDIR}/slapd.sh >${WRKDIR}/slapd.sh - -post-install: -.for f in ${BINS} - @strip ${PREFIX}/${f} -.endfor - @${INSTALL_SCRIPT} ${WRKDIR}/slapd.sh ${PREFIX}/etc/rc.d/slapd.sh.sample - @${CAT} ${PKGMESSAGE} - -.include <bsd.port.post.mk> diff --git a/net/openldap20-server/distinfo b/net/openldap20-server/distinfo deleted file mode 100644 index e839abb59db7..000000000000 --- a/net/openldap20-server/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (openldap-2.0.14.tgz) = d83ddb4b05b13eeb9eaa971427254659 diff --git a/net/openldap20-server/files/libtool.diff b/net/openldap20-server/files/libtool.diff deleted file mode 100644 index 0cf57bbee7ea..000000000000 --- a/net/openldap20-server/files/libtool.diff +++ /dev/null @@ -1,19 +0,0 @@ ---- libtool.orig Tue Oct 31 01:43:06 2000 -+++ libtool Tue Oct 31 01:44:42 2000 -@@ -448,6 +448,16 @@ - --mode) prevopt="--mode" prev=mode ;; - --mode=*) mode="$optarg" ;; - -+ --only-shared) -+ build_libtool_libs=yes -+ build_old_libs=no -+ ;; -+ -+ --only-static) -+ build_libtool_libs=no -+ build_old_libs=yes -+ ;; -+ - --quiet | --silent) - show=: - ;; diff --git a/net/openldap20-server/files/manpages b/net/openldap20-server/files/manpages deleted file mode 100644 index 1c39b81911fc..000000000000 --- a/net/openldap20-server/files/manpages +++ /dev/null @@ -1,219 +0,0 @@ -MAN1+= ldapdelete.1 -MAN1+= ldapmodify.1 -MAN1+= ldapmodrdn.1 -MAN1+= ldappasswd.1 -MAN1+= ldapsearch.1 -MAN1+= ud.1 -MAN3+= lber-decode.3 -MAN3+= lber-encode.3 -MAN3+= lber-memory.3 -MAN3+= lber-types.3 -MAN3+= ldap.3 -MAN3+= ldap_abandon.3 -MAN3+= ldap_add.3 -MAN3+= ldap_bind.3 -MAN3+= ldap_cache.3 -MAN3+= ldap_compare.3 -MAN3+= ldap_delete.3 -MAN3+= ldap_disptmpl.3 -MAN3+= ldap_entry2text.3 -MAN3+= ldap_error.3 -MAN3+= ldap_first_attribute.3 -MAN3+= ldap_first_entry.3 -MAN3+= ldap_friendly.3 -MAN3+= ldap_get_dn.3 -MAN3+= ldap_get_values.3 -MAN3+= ldap_getfilter.3 -MAN3+= ldap_modify.3 -MAN3+= ldap_modrdn.3 -MAN3+= ldap_open.3 -MAN3+= ldap_result.3 -MAN3+= ldap_schema.3 -MAN3+= ldap_search.3 -MAN3+= ldap_searchprefs.3 -MAN3+= ldap_sort.3 -MAN3+= ldap_ufn.3 -MAN3+= ldap_url.3 -MAN5+= ldap.conf.5 -MAN5+= ldapfilter.conf.5 -MAN5+= ldapfriendly.5 -MAN5+= ldapsearchprefs.conf.5 -MAN5+= ldaptemplates.conf.5 -MAN5+= ldif.5 -MAN5+= slapd.conf.5 -MAN5+= slapd.replog.5 -MAN5+= ud.conf.5 -MAN8+= go500.8 -MAN8+= go500gw.8 -MAN8+= in.xfingerd.8 -MAN8+= mail500.8 -MAN8+= rcpt500.8 -MAN8+= slapadd.8 -MAN8+= slapcat.8 -MAN8+= slapd.8 -MAN8+= slapindex.8 -MAN8+= slappasswd.8 -MAN8+= slurpd.8 -MLINKS+= lber-decode.3 ber_first_element.3 -MLINKS+= lber-decode.3 ber_get_bitstring.3 -MLINKS+= lber-decode.3 ber_get_boolean.3 -MLINKS+= lber-decode.3 ber_get_enum.3 -MLINKS+= lber-decode.3 ber_get_int.3 -MLINKS+= lber-decode.3 ber_get_next.3 -MLINKS+= lber-decode.3 ber_get_null.3 -MLINKS+= lber-decode.3 ber_get_stringa.3 -MLINKS+= lber-decode.3 ber_get_stringb.3 -MLINKS+= lber-decode.3 ber_next_element.3 -MLINKS+= lber-decode.3 ber_peek_tag.3 -MLINKS+= lber-decode.3 ber_scanf.3 -MLINKS+= lber-decode.3 ber_skip_tag.3 -MLINKS+= lber-encode.3 ber_alloc_t.3 -MLINKS+= lber-encode.3 ber_flush.3 -MLINKS+= lber-encode.3 ber_printf.3 -MLINKS+= lber-encode.3 ber_put_enum.3 -MLINKS+= lber-encode.3 ber_put_int.3 -MLINKS+= lber-encode.3 ber_put_null.3 -MLINKS+= lber-encode.3 ber_put_ostring.3 -MLINKS+= lber-encode.3 ber_put_seq.3 -MLINKS+= lber-encode.3 ber_put_set.3 -MLINKS+= lber-encode.3 ber_put_string.3 -MLINKS+= lber-decode.3 ber_start_set.3 -MLINKS+= ldap.3 cldap.3 -MLINKS+= ldap_add.3 ldap_add_s.3 -MLINKS+= ldap_bind.3 ldap_abandon_ext.3 -MLINKS+= ldap_bind.3 ldap_add_ext.3 -MLINKS+= ldap_bind.3 ldap_add_ext_s.3 -MLINKS+= ldap_bind.3 ldap_bind_s.3 -MLINKS+= ldap_bind.3 ldap_kerberos_bind1.3 -MLINKS+= ldap_bind.3 ldap_kerberos_bind1_s.3 -MLINKS+= ldap_bind.3 ldap_kerberos_bind2.3 -MLINKS+= ldap_bind.3 ldap_kerberos_bind2_s.3 -MLINKS+= ldap_bind.3 ldap_kerberos_bind_s.3 -MLINKS+= ldap_bind.3 ldap_sasl_bind.3 -MLINKS+= ldap_bind.3 ldap_sasl_bind_s.3 -MLINKS+= ldap_bind.3 ldap_set_rebind_proc.3 -MLINKS+= ldap_bind.3 ldap_simple_bind.3 -MLINKS+= ldap_bind.3 ldap_simple_bind_s.3 -MLINKS+= ldap_bind.3 ldap_unbind.3 -MLINKS+= ldap_bind.3 ldap_unbind_ext.3 -MLINKS+= ldap_bind.3 ldap_unbind_ext_s.3 -MLINKS+= ldap_bind.3 ldap_unbind_s.3 -MLINKS+= ldap_cache.3 ldap_destroy_cache.3 -MLINKS+= ldap_cache.3 ldap_disable_cache.3 -MLINKS+= ldap_cache.3 ldap_enable_cache.3 -MLINKS+= ldap_cache.3 ldap_flush_cache.3 -MLINKS+= ldap_cache.3 ldap_set_cache_options.3 -MLINKS+= ldap_cache.3 ldap_uncache_entry.3 -MLINKS+= ldap_cache.3 ldap_uncache_request.3 -MLINKS+= ldap_charset.3 ldap_8859_to_t61.3 -MLINKS+= ldap_charset.3 ldap_enable_translation.3 -MLINKS+= ldap_charset.3 ldap_set_string_translators.3 -MLINKS+= ldap_charset.3 ldap_t61_to_8859.3 -MLINKS+= ldap_charset.3 ldap_translate_from_t61.3 -MLINKS+= ldap_charset.3 ldap_translate_to_t61.3 -MLINKS+= ldap_compare.3 ldap_compare_ext.3 -MLINKS+= ldap_compare.3 ldap_compare_ext_s.3 -MLINKS+= ldap_compare.3 ldap_compare_s.3 -MLINKS+= ldap_delete.3 ldap_delete_ext.3 -MLINKS+= ldap_delete.3 ldap_delete_ext_s.3 -MLINKS+= ldap_delete.3 ldap_delete_s.3 -MLINKS+= ldap_disptmpl.3 ldap_first_disptmpl.3 -MLINKS+= ldap_disptmpl.3 ldap_first_tmplcol.3 -MLINKS+= ldap_disptmpl.3 ldap_first_tmplrow.3 -MLINKS+= ldap_disptmpl.3 ldap_free_templates.3 -MLINKS+= ldap_disptmpl.3 ldap_init_templates.3 -MLINKS+= ldap_disptmpl.3 ldap_init_templates_buf.3 -MLINKS+= ldap_disptmpl.3 ldap_next_disptmpl.3 -MLINKS+= ldap_disptmpl.3 ldap_next_tmplcol.3 -MLINKS+= ldap_disptmpl.3 ldap_next_tmplrow.3 -MLINKS+= ldap_disptmpl.3 ldap_oc2template.3 -MLINKS+= ldap_disptmpl.3 ldap_tmplattrs.3 -MLINKS+= ldap_entry2text.3 ldap_entry2html.3 -MLINKS+= ldap_entry2text.3 ldap_entry2html_search.3 -MLINKS+= ldap_entry2text.3 ldap_entry2text_search.3 -MLINKS+= ldap_entry2text.3 ldap_vals2html.3 -MLINKS+= ldap_entry2text.3 ldap_vals2text.3 -MLINKS+= ldap_error.3 ld_errno.3 -MLINKS+= ldap_error.3 ldap_err2string.3 -MLINKS+= ldap_error.3 ldap_errlist.3 -MLINKS+= ldap_error.3 ldap_perror.3 -MLINKS+= ldap_error.3 ldap_result2error.3 -MLINKS+= ldap_first_attribute.3 ldap_next_attribute.3 -MLINKS+= ldap_first_entry.3 ldap_count_entries.3 -MLINKS+= ldap_first_entry.3 ldap_next_entry.3 -MLINKS+= ldap_friendly.3 ldap_free_friendlymap.3 -MLINKS+= ldap_friendly.3 ldap_friendly_name.3 -MLINKS+= ldap_get_dn.3 ldap_dn2ufn.3 -MLINKS+= ldap_get_dn.3 ldap_explode_dn.3 -MLINKS+= ldap_get_dn.3 ldap_explode_dns.3 -MLINKS+= ldap_get_dn.3 ldap_explode_rdn.3 -MLINKS+= ldap_get_dn.3 ldap_is_dns_dn.3 -MLINKS+= ldap_get_values.3 ldap_count_values.3 -MLINKS+= ldap_get_values.3 ldap_count_values_len.3 -MLINKS+= ldap_get_values.3 ldap_get_values_len.3 -MLINKS+= ldap_get_values.3 ldap_value_free.3 -MLINKS+= ldap_get_values.3 ldap_value_free_len.3 -MLINKS+= ldap_getfilter.3 ldap_build_filter.3 -MLINKS+= ldap_getfilter.3 ldap_getfilter_free.3 -MLINKS+= ldap_getfilter.3 ldap_getfirstfilter.3 -MLINKS+= ldap_getfilter.3 ldap_getnextfilter.3 -MLINKS+= ldap_getfilter.3 ldap_init_getfilter.3 -MLINKS+= ldap_getfilter.3 ldap_init_getfilter_buf.3 -MLINKS+= ldap_getfilter.3 ldap_setfilteraffixes.3 -MLINKS+= ldap_modify.3 ldap_modify_ext.3 -MLINKS+= ldap_modify.3 ldap_modify_ext_s.3 -MLINKS+= ldap_modify.3 ldap_modify_s.3 -MLINKS+= ldap_modify.3 ldap_mods_free.3 -MLINKS+= ldap_modrdn.3 ldap_modrdn2.3 -MLINKS+= ldap_modrdn.3 ldap_modrdn2_s.3 -MLINKS+= ldap_modrdn.3 ldap_modrdn_s.3 -MLINKS+= ldap_open.3 ldap_init.3 -MLINKS+= ldap_result.3 ldap_msgfree.3 -MLINKS+= ldap_result.3 ldap_msgid.3 -MLINKS+= ldap_result.3 ldap_msgtype.3 -MLINKS+= ldap_schema.3 ldap_attributetype2name.3 -MLINKS+= ldap_schema.3 ldap_attributetype2str.3 -MLINKS+= ldap_schema.3 ldap_attributetype_free.3 -MLINKS+= ldap_schema.3 ldap_matchingrule2name.3 -MLINKS+= ldap_schema.3 ldap_matchingrule2str.3 -MLINKS+= ldap_schema.3 ldap_matchingrule_free.3 -MLINKS+= ldap_schema.3 ldap_objectclass2name.3 -MLINKS+= ldap_schema.3 ldap_objectclass2str.3 -MLINKS+= ldap_schema.3 ldap_objectclass_free.3 -MLINKS+= ldap_schema.3 ldap_scherr2str.3 -MLINKS+= ldap_schema.3 ldap_str2attributetype.3 -MLINKS+= ldap_schema.3 ldap_str2matchingrule.3 -MLINKS+= ldap_schema.3 ldap_str2objectclass.3 -MLINKS+= ldap_schema.3 ldap_str2syntax.3 -MLINKS+= ldap_schema.3 ldap_syntax2name.3 -MLINKS+= ldap_schema.3 ldap_syntax2str.3 -MLINKS+= ldap_schema.3 ldap_syntax_free.3 -MLINKS+= ldap_search.3 ldap_search_ext.3 -MLINKS+= ldap_search.3 ldap_search_ext_s.3 -MLINKS+= ldap_search.3 ldap_search_s.3 -MLINKS+= ldap_search.3 ldap_search_st.3 -MLINKS+= ldap_searchprefs.3 ldap_first_searchobj.3 -MLINKS+= ldap_searchprefs.3 ldap_free_searchprefs.3 -MLINKS+= ldap_searchprefs.3 ldap_init_searchprefs.3 -MLINKS+= ldap_searchprefs.3 ldap_init_searchprefs_buf.3 -MLINKS+= ldap_searchprefs.3 ldap_next_searchobj.3 -MLINKS+= ldap_sort.3 ldap_sort_entries.3 -MLINKS+= ldap_sort.3 ldap_sort_strcasecmp.3 -MLINKS+= ldap_sort.3 ldap_sort_values.3 -MLINKS+= ldap_ufn.3 ldap_ufn_search_c.3 -MLINKS+= ldap_ufn.3 ldap_ufn_search_ct.3 -MLINKS+= ldap_ufn.3 ldap_ufn_search_s.3 -MLINKS+= ldap_ufn.3 ldap_ufn_setfilter.3 -MLINKS+= ldap_ufn.3 ldap_ufn_setprefix.3 -MLINKS+= ldap_ufn.3 ldap_ufn_timeout.3 -MLINKS+= ldap_url.3 ldap_free_urldesc.3 -MLINKS+= ldap_url.3 ldap_is_ldap_url.3 -MLINKS+= ldap_url.3 ldap_url_parse.3 -MLINKS+= ldap_url.3 ldap_url_search.3 -MLINKS+= ldap_url.3 ldap_url_search_s.3 -MLINKS+= ldap_url.3 ldap_url_search_st.3 -MLINKS+= ldapmodify.1 ldapadd.1 -MLINKS+= ldif2ldbm.8 ldif2id2children.8 -MLINKS+= ldif2ldbm.8 ldif2id2entry.8 -MLINKS+= ldif2ldbm.8 ldif2index.8 -MLINKS+= mail500.8 fax500.8 diff --git a/net/openldap20-server/files/patch-clients_ud_Makefile.in b/net/openldap20-server/files/patch-clients_ud_Makefile.in deleted file mode 100644 index 18f342c29a53..000000000000 --- a/net/openldap20-server/files/patch-clients_ud_Makefile.in +++ /dev/null @@ -1,8 +0,0 @@ ---- clients/ud/Makefile.in.orig Wed Jan 13 20:02:11 1999 -+++ clients/ud/Makefile.in Wed Jul 26 14:24:14 2000 -@@ -26,4 +26,4 @@ - install-local: FORCE - -$(MKDIR) $(bindir) - -mv -f $(bindir)/ud $(bindir)/ud- -- $(LTINSTALL) $(INSTALLFLAGS) -m 775 ud $(bindir) -+ $(LTINSTALL) $(INSTALLFLAGS) -m 755 ud $(bindir) diff --git a/net/openldap20-server/files/patch-servers_slapd_schema b/net/openldap20-server/files/patch-servers_slapd_schema deleted file mode 100644 index 31969e8bb621..000000000000 --- a/net/openldap20-server/files/patch-servers_slapd_schema +++ /dev/null @@ -1,20 +0,0 @@ ---- servers/slapd/schema/krb5-kdc.schema.orig Tue Sep 5 13:28:34 2000 -+++ servers/slapd/schema/krb5-kdc.schema Mon Oct 30 13:09:19 2000 -@@ -96,7 +96,7 @@ - attributetype ( 1.3.6.1.4.1.5322.10.1.10 - NAME 'krb5Key' - DESC 'Encoded ASN1 Key as an octet string' -- SYNTAX 1.3.6.1.4.1.1466.115.121.1.5 ) -+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.40 ) - - attributetype ( 1.3.6.1.4.1.5322.10.1.11 - NAME 'krb5PrincipalRealm' -@@ -112,7 +112,7 @@ - - objectclass ( 1.3.6.1.4.1.5322.10.2.1 - NAME 'krb5Principal' -- SUP top -+ SUP person - AUXILIARY - MUST ( krb5PrincipalName ) - MAY ( cn $ krb5PrincipalRealm ) ) diff --git a/net/openldap20-server/files/slapd.sh b/net/openldap20-server/files/slapd.sh deleted file mode 100644 index 1704074b7968..000000000000 --- a/net/openldap20-server/files/slapd.sh +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ - -slapd=@@PREFIX@@/libexec/slapd -pidfile=/var/run/slapd.pid - -case "$1" in -start) - if [ -x $slapd ]; then - echo -n ' slapd' - $slapd - fi - ;; -stop) - if [ -f $pidfile ]; then - kill `cat $pidfile` - telnet localhost ldap </dev/null >/dev/null 2>&1 - echo -n ' slapd' - rm $pidfile - else - echo ' slapd: not running' - fi - ;; -*) - echo "Usage: `basename $0` {start|stop}" >&2 - exit 64 - ;; -esac - -exit 0 diff --git a/net/openldap20-server/pkg-comment b/net/openldap20-server/pkg-comment deleted file mode 100644 index 8c499c3923cf..000000000000 --- a/net/openldap20-server/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Open source LDAP client and server software diff --git a/net/openldap20-server/pkg-descr b/net/openldap20-server/pkg-descr deleted file mode 100644 index aec3ae0f7cf4..000000000000 --- a/net/openldap20-server/pkg-descr +++ /dev/null @@ -1,12 +0,0 @@ -OpenLDAP is a suite of Lightweight Directory Access Protocol (LDAP) servers, -clients, utilities and development tools. LDAP is an Internet standard -directory service protocol that can be used stand-alone, or as a front end -to an X.500 directory. LDAP is defined by RFCs 1777 through 1779. - -OpenLDAP is derived from the University of Michigan LDAP release 3.3 and is -distributed under an open source license. - -WWW: http://www.openldap.org/ - -Lachlan O'Dea -ulmo@earthling.net diff --git a/net/openldap20-server/pkg-message b/net/openldap20-server/pkg-message deleted file mode 100644 index 047bb0c9d5b4..000000000000 --- a/net/openldap20-server/pkg-message +++ /dev/null @@ -1,7 +0,0 @@ -************************************************************ -If you are upgrading an older (1.85) database, be sure to -convert the *.dbb files, e.g: - - mv file.dbb file.old - db_dump185 file.old | db_load file.dbb -************************************************************ diff --git a/net/openldap20-server/pkg-plist b/net/openldap20-server/pkg-plist deleted file mode 100644 index 778553d9d548..000000000000 --- a/net/openldap20-server/pkg-plist +++ /dev/null @@ -1,91 +0,0 @@ -bin/ldapadd -bin/ldapdelete -bin/ldapmodify -bin/ldapmodrdn -bin/ldappasswd -bin/ldapsearch -bin/ud -@unexec if cmp -s %D/etc/openldap/ldap.conf %D/etc/openldap/ldap.conf.default; then rm -f %D/etc/openldap/ldap.conf; fi -etc/openldap/ldap.conf.default -@exec [ -f %B/ldap.conf ] || cp %B/%f %B/ldap.conf -@unexec if cmp -s %D/etc/openldap/ldapfilter.conf %D/etc/openldap/ldapfilter.conf.default; then rm -f %D/etc/openldap/ldapfilter.conf; fi -etc/openldap/ldapfilter.conf.default -@exec [ -f %B/ldapfilter.conf ] || cp %B/%f %B/ldapfilter.conf -@unexec if cmp -s %D/etc/openldap/ldapsearchprefs.conf %D/etc/openldap/ldapsearchprefs.conf.default; then rm -f %D/etc/openldap/ldapsearchprefs.conf; fi -etc/openldap/ldapsearchprefs.conf.default -@exec [ -f %B/ldapsearchprefs.conf ] || cp %B/%f %B/ldapsearchprefs.conf -@unexec if cmp -s %D/etc/openldap/ldaptemplates.conf %D/etc/openldap/ldaptemplates.conf.default; then rm -f %D/etc/openldap/ldaptemplates.conf; fi -etc/openldap/ldaptemplates.conf.default -@exec [ -f %B/ldaptemplates.conf ] || cp %B/%f %B/ldaptemplates.conf -@unexec if cmp -s %D/etc/openldap/schema/corba.schema %D/etc/openldap/schema/corba.schema.default; then rm -f %D/etc/openldap/schema/corba.schema; fi -etc/openldap/schema/corba.schema.default -@exec [ -f %B/corba.schema ] || cp %B/%f %B/corba.schema -@unexec if cmp -s %D/etc/openldap/schema/core.schema %D/etc/openldap/schema/core.schema.default; then rm -f %D/etc/openldap/schema/core.schema; fi -etc/openldap/schema/core.schema.default -@exec [ -f %B/core.schema ] || cp %B/%f %B/core.schema -@unexec if cmp -s %D/etc/openldap/schema/cosine.schema %D/etc/openldap/schema/cosine.schema.default; then rm -f %D/etc/openldap/schema/cosine.schema; fi -etc/openldap/schema/cosine.schema.default -@exec [ -f %B/cosine.schema ] || cp %B/%f %B/cosine.schema -@unexec if cmp -s %D/etc/openldap/schema/inetorgperson.schema %D/etc/openldap/schema/inetorgperson.schema.default; then rm -f %D/etc/openldap/schema/inetorgperson.schema; fi -etc/openldap/schema/inetorgperson.schema.default -@exec [ -f %B/inetorgperson.schema ] || cp %B/%f %B/inetorgperson.schema -@unexec if cmp -s %D/etc/openldap/schema/java.schema %D/etc/openldap/schema/java.schema.default; then rm -f %D/etc/openldap/schema/java.schema; fi -etc/openldap/schema/java.schema.default -@exec [ -f %B/java.schema ] || cp %B/%f %B/java.schema -@unexec if cmp -s %D/etc/openldap/schema/krb5-kdc.schema %D/etc/openldap/schema/krb5-kdc.schema.default; then rm -f %D/etc/openldap/schema/krb5-kdc.schema; fi -etc/openldap/schema/krb5-kdc.schema.default -@exec [ -f %B/krb5-kdc.schema ] || cp %B/%f %B/krb5-kdc.schema -@unexec if cmp -s %D/etc/openldap/schema/misc.schema %D/etc/openldap/schema/misc.schema.default; then rm -f %D/etc/openldap/schema/misc.schema; fi -etc/openldap/schema/misc.schema.default -@exec [ -f %B/misc.schema ] || cp %B/%f %B/misc.schema -@unexec if cmp -s %D/etc/openldap/schema/nadf.schema %D/etc/openldap/schema/nadf.schema.default; then rm -f %D/etc/openldap/schema/nadf.schema; fi -etc/openldap/schema/nadf.schema.default -@exec [ -f %B/nadf.schema ] || cp %B/%f %B/nadf.schema -@unexec if cmp -s %D/etc/openldap/schema/nis.schema %D/etc/openldap/schema/nis.schema.default; then rm -f %D/etc/openldap/schema/nis.schema; fi -etc/openldap/schema/nis.schema.default -@exec [ -f %B/nis.schema ] || cp %B/%f %B/nis.schema -@unexec if cmp -s %D/etc/openldap/schema/openldap.schema %D/etc/openldap/schema/openldap.schema.default; then rm -f %D/etc/openldap/schema/openldap.schema; fi -etc/openldap/schema/openldap.schema.default -@exec [ -f %B/openldap.schema ] || cp %B/%f %B/openldap.schema -@unexec if cmp -s %D/etc/openldap/slapd.conf %D/etc/openldap/slapd.conf.default; then rm -f %D/etc/openldap/slapd.conf; fi -etc/openldap/slapd.conf.default -@exec [ -f %B/slapd.conf ] || cp %B/%f %B/slapd.conf -@unexec /bin/rmdir %D/etc/openldap/schema 2>/dev/null || true -@unexec /bin/rmdir %D/etc/openldap 2>/dev/null || true -etc/rc.d/slapd.sh.sample -include/disptmpl.h -include/lber.h -include/lber_types.h -include/ldap.h -include/ldap_cdefs.h -include/ldap_features.h -include/ldap_schema.h -include/srchpref.h -lib/liblber.a -lib/liblber.so -lib/liblber.so.2 -lib/libldap.a -lib/libldap.so -lib/libldap.so.2 -lib/libldap_r.a -lib/libldap_r.so -lib/libldap_r.so.2 -libexec/fax500 -libexec/go500 -libexec/go500gw -libexec/in.xfingerd -libexec/mail500 -libexec/maildap -libexec/rcpt500 -libexec/rp500 -libexec/slapd -libexec/slurpd -libexec/xrpcomp -sbin/slapadd -sbin/slapcat -sbin/slapindex -sbin/slappasswd -share/openldap/go500gw.help -share/openldap/ldapfriendly -share/openldap/rcpt500.help -@dirrm share/openldap diff --git a/net/openldap20/Makefile b/net/openldap20/Makefile deleted file mode 100644 index 42af69354389..000000000000 --- a/net/openldap20/Makefile +++ /dev/null @@ -1,104 +0,0 @@ -# New ports collection makefile for: OpenLDAP 2.x -# Date created: 20 Sep 1998 -# Whom: Lachlan O'Dea -# -# $FreeBSD$ -# - -PORTNAME= openldap -PORTVERSION= 2.0.14 -CATEGORIES= net databases -MASTER_SITES= ftp://ftp.OpenLDAP.org/pub/OpenLDAP/%SUBDIR%/ \ - ftp://ftp.net.lut.ac.uk/openldap/%SUBDIR%/ \ - ftp://sunsite.cnlab-switch.ch/mirror/OpenLDAP/%SUBDIR%/ \ - ftp://mirror.aarnet.edu.au/pub/OpenLDAP/%SUBDIR%/ \ - ftp://gd.tuwien.ac.at/infosys/network/OpenLDAP/%SUBDIR%/ \ - http://www.unibase.cz/ldapcz/Programy/Free/OpenLDAP/%SUBDIR%/ \ - ftp://ftp.ntua.gr/mirror/OpenLDAP/%SUBDIR%/ \ - ftp://ftp.loxinfo.co.th/pub/unix/LDAP/OpenLDAP/%SUBDIR%/ \ - ftp://ftp.zcu.cz/pub/network/openldap/%SUBDIR%/ -MASTER_SITE_SUBDIR= openldap-release -EXTRACT_SUFX= .tgz - -MAINTAINER= ports@FreeBSD.org - -LIB_DEPENDS= db3.2:${PORTSDIR}/databases/db3 - -USE_AUTOCONF= yes -USE_LIBTOOL= yes -USE_OPENSSL= yes - -CONFIGURE_ARGS= --localstatedir=/var/db \ - --with-threads \ - --enable-shared \ - --enable-dnssrv \ - --with-tls=openssl - -# Include tcp-wrapper support -.if exists(/usr/include/tcpd.h) -CONFIGURE_ARGS+= --enable-wrappers -.endif - -# math.h uses _REENTRANT and stdio.h uses _THREAD_SAFE, so define both. -CPPFLAGS+= -D_REENTRANT ${PTHREAD_CFLAGS} \ - -I${LOCALBASE}/include \ - -I${LOCALBASE}/include/db3 -LDFLAGS+= -L${LOCALBASE}/lib - -.if defined(WITH_SASL) -LIB_DEPENDS+= sasl.8:${PORTSDIR}/security/cyrus-sasl -CPPFLAGS+= -I${LOCALBASE}/include/sasl -.endif - -.if defined(WITH_ODBC) -LIB_DEPENDS+= iodbc.2:${PORTSDIR}/databases/libiodbc -CONFIGURE_ARGS+=--enable-sql -.endif - -CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" \ - LDFLAGS="${LDFLAGS}" - -INSTALLS_SHLIB= yes - -BINS= bin/ldapadd \ - bin/ldapdelete \ - bin/ldapmodify \ - bin/ldapmodrdn \ - bin/ldappasswd \ - bin/ldapsearch \ - bin/ud \ - libexec/fax500 \ - libexec/go500 \ - libexec/go500gw \ - libexec/in.xfingerd \ - libexec/mail500 \ - libexec/maildap \ - libexec/rcpt500 \ - libexec/rp500 \ - libexec/slapd \ - libexec/slurpd - -.include <bsd.port.pre.mk> -.include "${FILESDIR}/manpages" - -post-patch: - @${PERL} -pi.fbsd -e 's@pidfile\t\t%LOCALSTATEDIR%/slapd.pid@pidfile\t\t/var/run/slapd.pid@g; \ - s@argsfile\t%LOCALSTATEDIR%/slapd.args@argsfile\t/var/run/slapd.args@g' ${WRKSRC}/servers/slapd/slapd.conf - -post-configure: - @cd ${WRKSRC} ; ${PATCH} < ${FILESDIR}/libtool.diff - -pre-build: - @cd ${WRKSRC} ; ${MAKE} depend - -post-build: - @${SED} 's,@@PREFIX@@,${PREFIX},g' ${FILESDIR}/slapd.sh >${WRKDIR}/slapd.sh - -post-install: -.for f in ${BINS} - @strip ${PREFIX}/${f} -.endfor - @${INSTALL_SCRIPT} ${WRKDIR}/slapd.sh ${PREFIX}/etc/rc.d/slapd.sh.sample - @${CAT} ${PKGMESSAGE} - -.include <bsd.port.post.mk> diff --git a/net/openldap20/distinfo b/net/openldap20/distinfo deleted file mode 100644 index e839abb59db7..000000000000 --- a/net/openldap20/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (openldap-2.0.14.tgz) = d83ddb4b05b13eeb9eaa971427254659 diff --git a/net/openldap20/files/libtool.diff b/net/openldap20/files/libtool.diff deleted file mode 100644 index 0cf57bbee7ea..000000000000 --- a/net/openldap20/files/libtool.diff +++ /dev/null @@ -1,19 +0,0 @@ ---- libtool.orig Tue Oct 31 01:43:06 2000 -+++ libtool Tue Oct 31 01:44:42 2000 -@@ -448,6 +448,16 @@ - --mode) prevopt="--mode" prev=mode ;; - --mode=*) mode="$optarg" ;; - -+ --only-shared) -+ build_libtool_libs=yes -+ build_old_libs=no -+ ;; -+ -+ --only-static) -+ build_libtool_libs=no -+ build_old_libs=yes -+ ;; -+ - --quiet | --silent) - show=: - ;; diff --git a/net/openldap20/files/manpages b/net/openldap20/files/manpages deleted file mode 100644 index 1c39b81911fc..000000000000 --- a/net/openldap20/files/manpages +++ /dev/null @@ -1,219 +0,0 @@ -MAN1+= ldapdelete.1 -MAN1+= ldapmodify.1 -MAN1+= ldapmodrdn.1 -MAN1+= ldappasswd.1 -MAN1+= ldapsearch.1 -MAN1+= ud.1 -MAN3+= lber-decode.3 -MAN3+= lber-encode.3 -MAN3+= lber-memory.3 -MAN3+= lber-types.3 -MAN3+= ldap.3 -MAN3+= ldap_abandon.3 -MAN3+= ldap_add.3 -MAN3+= ldap_bind.3 -MAN3+= ldap_cache.3 -MAN3+= ldap_compare.3 -MAN3+= ldap_delete.3 -MAN3+= ldap_disptmpl.3 -MAN3+= ldap_entry2text.3 -MAN3+= ldap_error.3 -MAN3+= ldap_first_attribute.3 -MAN3+= ldap_first_entry.3 -MAN3+= ldap_friendly.3 -MAN3+= ldap_get_dn.3 -MAN3+= ldap_get_values.3 -MAN3+= ldap_getfilter.3 -MAN3+= ldap_modify.3 -MAN3+= ldap_modrdn.3 -MAN3+= ldap_open.3 -MAN3+= ldap_result.3 -MAN3+= ldap_schema.3 -MAN3+= ldap_search.3 -MAN3+= ldap_searchprefs.3 -MAN3+= ldap_sort.3 -MAN3+= ldap_ufn.3 -MAN3+= ldap_url.3 -MAN5+= ldap.conf.5 -MAN5+= ldapfilter.conf.5 -MAN5+= ldapfriendly.5 -MAN5+= ldapsearchprefs.conf.5 -MAN5+= ldaptemplates.conf.5 -MAN5+= ldif.5 -MAN5+= slapd.conf.5 -MAN5+= slapd.replog.5 -MAN5+= ud.conf.5 -MAN8+= go500.8 -MAN8+= go500gw.8 -MAN8+= in.xfingerd.8 -MAN8+= mail500.8 -MAN8+= rcpt500.8 -MAN8+= slapadd.8 -MAN8+= slapcat.8 -MAN8+= slapd.8 -MAN8+= slapindex.8 -MAN8+= slappasswd.8 -MAN8+= slurpd.8 -MLINKS+= lber-decode.3 ber_first_element.3 -MLINKS+= lber-decode.3 ber_get_bitstring.3 -MLINKS+= lber-decode.3 ber_get_boolean.3 -MLINKS+= lber-decode.3 ber_get_enum.3 -MLINKS+= lber-decode.3 ber_get_int.3 -MLINKS+= lber-decode.3 ber_get_next.3 -MLINKS+= lber-decode.3 ber_get_null.3 -MLINKS+= lber-decode.3 ber_get_stringa.3 -MLINKS+= lber-decode.3 ber_get_stringb.3 -MLINKS+= lber-decode.3 ber_next_element.3 -MLINKS+= lber-decode.3 ber_peek_tag.3 -MLINKS+= lber-decode.3 ber_scanf.3 -MLINKS+= lber-decode.3 ber_skip_tag.3 -MLINKS+= lber-encode.3 ber_alloc_t.3 -MLINKS+= lber-encode.3 ber_flush.3 -MLINKS+= lber-encode.3 ber_printf.3 -MLINKS+= lber-encode.3 ber_put_enum.3 -MLINKS+= lber-encode.3 ber_put_int.3 -MLINKS+= lber-encode.3 ber_put_null.3 -MLINKS+= lber-encode.3 ber_put_ostring.3 -MLINKS+= lber-encode.3 ber_put_seq.3 -MLINKS+= lber-encode.3 ber_put_set.3 -MLINKS+= lber-encode.3 ber_put_string.3 -MLINKS+= lber-decode.3 ber_start_set.3 -MLINKS+= ldap.3 cldap.3 -MLINKS+= ldap_add.3 ldap_add_s.3 -MLINKS+= ldap_bind.3 ldap_abandon_ext.3 -MLINKS+= ldap_bind.3 ldap_add_ext.3 -MLINKS+= ldap_bind.3 ldap_add_ext_s.3 -MLINKS+= ldap_bind.3 ldap_bind_s.3 -MLINKS+= ldap_bind.3 ldap_kerberos_bind1.3 -MLINKS+= ldap_bind.3 ldap_kerberos_bind1_s.3 -MLINKS+= ldap_bind.3 ldap_kerberos_bind2.3 -MLINKS+= ldap_bind.3 ldap_kerberos_bind2_s.3 -MLINKS+= ldap_bind.3 ldap_kerberos_bind_s.3 -MLINKS+= ldap_bind.3 ldap_sasl_bind.3 -MLINKS+= ldap_bind.3 ldap_sasl_bind_s.3 -MLINKS+= ldap_bind.3 ldap_set_rebind_proc.3 -MLINKS+= ldap_bind.3 ldap_simple_bind.3 -MLINKS+= ldap_bind.3 ldap_simple_bind_s.3 -MLINKS+= ldap_bind.3 ldap_unbind.3 -MLINKS+= ldap_bind.3 ldap_unbind_ext.3 -MLINKS+= ldap_bind.3 ldap_unbind_ext_s.3 -MLINKS+= ldap_bind.3 ldap_unbind_s.3 -MLINKS+= ldap_cache.3 ldap_destroy_cache.3 -MLINKS+= ldap_cache.3 ldap_disable_cache.3 -MLINKS+= ldap_cache.3 ldap_enable_cache.3 -MLINKS+= ldap_cache.3 ldap_flush_cache.3 -MLINKS+= ldap_cache.3 ldap_set_cache_options.3 -MLINKS+= ldap_cache.3 ldap_uncache_entry.3 -MLINKS+= ldap_cache.3 ldap_uncache_request.3 -MLINKS+= ldap_charset.3 ldap_8859_to_t61.3 -MLINKS+= ldap_charset.3 ldap_enable_translation.3 -MLINKS+= ldap_charset.3 ldap_set_string_translators.3 -MLINKS+= ldap_charset.3 ldap_t61_to_8859.3 -MLINKS+= ldap_charset.3 ldap_translate_from_t61.3 -MLINKS+= ldap_charset.3 ldap_translate_to_t61.3 -MLINKS+= ldap_compare.3 ldap_compare_ext.3 -MLINKS+= ldap_compare.3 ldap_compare_ext_s.3 -MLINKS+= ldap_compare.3 ldap_compare_s.3 -MLINKS+= ldap_delete.3 ldap_delete_ext.3 -MLINKS+= ldap_delete.3 ldap_delete_ext_s.3 -MLINKS+= ldap_delete.3 ldap_delete_s.3 -MLINKS+= ldap_disptmpl.3 ldap_first_disptmpl.3 -MLINKS+= ldap_disptmpl.3 ldap_first_tmplcol.3 -MLINKS+= ldap_disptmpl.3 ldap_first_tmplrow.3 -MLINKS+= ldap_disptmpl.3 ldap_free_templates.3 -MLINKS+= ldap_disptmpl.3 ldap_init_templates.3 -MLINKS+= ldap_disptmpl.3 ldap_init_templates_buf.3 -MLINKS+= ldap_disptmpl.3 ldap_next_disptmpl.3 -MLINKS+= ldap_disptmpl.3 ldap_next_tmplcol.3 -MLINKS+= ldap_disptmpl.3 ldap_next_tmplrow.3 -MLINKS+= ldap_disptmpl.3 ldap_oc2template.3 -MLINKS+= ldap_disptmpl.3 ldap_tmplattrs.3 -MLINKS+= ldap_entry2text.3 ldap_entry2html.3 -MLINKS+= ldap_entry2text.3 ldap_entry2html_search.3 -MLINKS+= ldap_entry2text.3 ldap_entry2text_search.3 -MLINKS+= ldap_entry2text.3 ldap_vals2html.3 -MLINKS+= ldap_entry2text.3 ldap_vals2text.3 -MLINKS+= ldap_error.3 ld_errno.3 -MLINKS+= ldap_error.3 ldap_err2string.3 -MLINKS+= ldap_error.3 ldap_errlist.3 -MLINKS+= ldap_error.3 ldap_perror.3 -MLINKS+= ldap_error.3 ldap_result2error.3 -MLINKS+= ldap_first_attribute.3 ldap_next_attribute.3 -MLINKS+= ldap_first_entry.3 ldap_count_entries.3 -MLINKS+= ldap_first_entry.3 ldap_next_entry.3 -MLINKS+= ldap_friendly.3 ldap_free_friendlymap.3 -MLINKS+= ldap_friendly.3 ldap_friendly_name.3 -MLINKS+= ldap_get_dn.3 ldap_dn2ufn.3 -MLINKS+= ldap_get_dn.3 ldap_explode_dn.3 -MLINKS+= ldap_get_dn.3 ldap_explode_dns.3 -MLINKS+= ldap_get_dn.3 ldap_explode_rdn.3 -MLINKS+= ldap_get_dn.3 ldap_is_dns_dn.3 -MLINKS+= ldap_get_values.3 ldap_count_values.3 -MLINKS+= ldap_get_values.3 ldap_count_values_len.3 -MLINKS+= ldap_get_values.3 ldap_get_values_len.3 -MLINKS+= ldap_get_values.3 ldap_value_free.3 -MLINKS+= ldap_get_values.3 ldap_value_free_len.3 -MLINKS+= ldap_getfilter.3 ldap_build_filter.3 -MLINKS+= ldap_getfilter.3 ldap_getfilter_free.3 -MLINKS+= ldap_getfilter.3 ldap_getfirstfilter.3 -MLINKS+= ldap_getfilter.3 ldap_getnextfilter.3 -MLINKS+= ldap_getfilter.3 ldap_init_getfilter.3 -MLINKS+= ldap_getfilter.3 ldap_init_getfilter_buf.3 -MLINKS+= ldap_getfilter.3 ldap_setfilteraffixes.3 -MLINKS+= ldap_modify.3 ldap_modify_ext.3 -MLINKS+= ldap_modify.3 ldap_modify_ext_s.3 -MLINKS+= ldap_modify.3 ldap_modify_s.3 -MLINKS+= ldap_modify.3 ldap_mods_free.3 -MLINKS+= ldap_modrdn.3 ldap_modrdn2.3 -MLINKS+= ldap_modrdn.3 ldap_modrdn2_s.3 -MLINKS+= ldap_modrdn.3 ldap_modrdn_s.3 -MLINKS+= ldap_open.3 ldap_init.3 -MLINKS+= ldap_result.3 ldap_msgfree.3 -MLINKS+= ldap_result.3 ldap_msgid.3 -MLINKS+= ldap_result.3 ldap_msgtype.3 -MLINKS+= ldap_schema.3 ldap_attributetype2name.3 -MLINKS+= ldap_schema.3 ldap_attributetype2str.3 -MLINKS+= ldap_schema.3 ldap_attributetype_free.3 -MLINKS+= ldap_schema.3 ldap_matchingrule2name.3 -MLINKS+= ldap_schema.3 ldap_matchingrule2str.3 -MLINKS+= ldap_schema.3 ldap_matchingrule_free.3 -MLINKS+= ldap_schema.3 ldap_objectclass2name.3 -MLINKS+= ldap_schema.3 ldap_objectclass2str.3 -MLINKS+= ldap_schema.3 ldap_objectclass_free.3 -MLINKS+= ldap_schema.3 ldap_scherr2str.3 -MLINKS+= ldap_schema.3 ldap_str2attributetype.3 -MLINKS+= ldap_schema.3 ldap_str2matchingrule.3 -MLINKS+= ldap_schema.3 ldap_str2objectclass.3 -MLINKS+= ldap_schema.3 ldap_str2syntax.3 -MLINKS+= ldap_schema.3 ldap_syntax2name.3 -MLINKS+= ldap_schema.3 ldap_syntax2str.3 -MLINKS+= ldap_schema.3 ldap_syntax_free.3 -MLINKS+= ldap_search.3 ldap_search_ext.3 -MLINKS+= ldap_search.3 ldap_search_ext_s.3 -MLINKS+= ldap_search.3 ldap_search_s.3 -MLINKS+= ldap_search.3 ldap_search_st.3 -MLINKS+= ldap_searchprefs.3 ldap_first_searchobj.3 -MLINKS+= ldap_searchprefs.3 ldap_free_searchprefs.3 -MLINKS+= ldap_searchprefs.3 ldap_init_searchprefs.3 -MLINKS+= ldap_searchprefs.3 ldap_init_searchprefs_buf.3 -MLINKS+= ldap_searchprefs.3 ldap_next_searchobj.3 -MLINKS+= ldap_sort.3 ldap_sort_entries.3 -MLINKS+= ldap_sort.3 ldap_sort_strcasecmp.3 -MLINKS+= ldap_sort.3 ldap_sort_values.3 -MLINKS+= ldap_ufn.3 ldap_ufn_search_c.3 -MLINKS+= ldap_ufn.3 ldap_ufn_search_ct.3 -MLINKS+= ldap_ufn.3 ldap_ufn_search_s.3 -MLINKS+= ldap_ufn.3 ldap_ufn_setfilter.3 -MLINKS+= ldap_ufn.3 ldap_ufn_setprefix.3 -MLINKS+= ldap_ufn.3 ldap_ufn_timeout.3 -MLINKS+= ldap_url.3 ldap_free_urldesc.3 -MLINKS+= ldap_url.3 ldap_is_ldap_url.3 -MLINKS+= ldap_url.3 ldap_url_parse.3 -MLINKS+= ldap_url.3 ldap_url_search.3 -MLINKS+= ldap_url.3 ldap_url_search_s.3 -MLINKS+= ldap_url.3 ldap_url_search_st.3 -MLINKS+= ldapmodify.1 ldapadd.1 -MLINKS+= ldif2ldbm.8 ldif2id2children.8 -MLINKS+= ldif2ldbm.8 ldif2id2entry.8 -MLINKS+= ldif2ldbm.8 ldif2index.8 -MLINKS+= mail500.8 fax500.8 diff --git a/net/openldap20/files/patch-clients_ud_Makefile.in b/net/openldap20/files/patch-clients_ud_Makefile.in deleted file mode 100644 index 18f342c29a53..000000000000 --- a/net/openldap20/files/patch-clients_ud_Makefile.in +++ /dev/null @@ -1,8 +0,0 @@ ---- clients/ud/Makefile.in.orig Wed Jan 13 20:02:11 1999 -+++ clients/ud/Makefile.in Wed Jul 26 14:24:14 2000 -@@ -26,4 +26,4 @@ - install-local: FORCE - -$(MKDIR) $(bindir) - -mv -f $(bindir)/ud $(bindir)/ud- -- $(LTINSTALL) $(INSTALLFLAGS) -m 775 ud $(bindir) -+ $(LTINSTALL) $(INSTALLFLAGS) -m 755 ud $(bindir) diff --git a/net/openldap20/files/patch-servers_slapd_schema b/net/openldap20/files/patch-servers_slapd_schema deleted file mode 100644 index 31969e8bb621..000000000000 --- a/net/openldap20/files/patch-servers_slapd_schema +++ /dev/null @@ -1,20 +0,0 @@ ---- servers/slapd/schema/krb5-kdc.schema.orig Tue Sep 5 13:28:34 2000 -+++ servers/slapd/schema/krb5-kdc.schema Mon Oct 30 13:09:19 2000 -@@ -96,7 +96,7 @@ - attributetype ( 1.3.6.1.4.1.5322.10.1.10 - NAME 'krb5Key' - DESC 'Encoded ASN1 Key as an octet string' -- SYNTAX 1.3.6.1.4.1.1466.115.121.1.5 ) -+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.40 ) - - attributetype ( 1.3.6.1.4.1.5322.10.1.11 - NAME 'krb5PrincipalRealm' -@@ -112,7 +112,7 @@ - - objectclass ( 1.3.6.1.4.1.5322.10.2.1 - NAME 'krb5Principal' -- SUP top -+ SUP person - AUXILIARY - MUST ( krb5PrincipalName ) - MAY ( cn $ krb5PrincipalRealm ) ) diff --git a/net/openldap20/files/slapd.sh b/net/openldap20/files/slapd.sh deleted file mode 100644 index 1704074b7968..000000000000 --- a/net/openldap20/files/slapd.sh +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ - -slapd=@@PREFIX@@/libexec/slapd -pidfile=/var/run/slapd.pid - -case "$1" in -start) - if [ -x $slapd ]; then - echo -n ' slapd' - $slapd - fi - ;; -stop) - if [ -f $pidfile ]; then - kill `cat $pidfile` - telnet localhost ldap </dev/null >/dev/null 2>&1 - echo -n ' slapd' - rm $pidfile - else - echo ' slapd: not running' - fi - ;; -*) - echo "Usage: `basename $0` {start|stop}" >&2 - exit 64 - ;; -esac - -exit 0 diff --git a/net/openldap20/pkg-comment b/net/openldap20/pkg-comment deleted file mode 100644 index 8c499c3923cf..000000000000 --- a/net/openldap20/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Open source LDAP client and server software diff --git a/net/openldap20/pkg-descr b/net/openldap20/pkg-descr deleted file mode 100644 index aec3ae0f7cf4..000000000000 --- a/net/openldap20/pkg-descr +++ /dev/null @@ -1,12 +0,0 @@ -OpenLDAP is a suite of Lightweight Directory Access Protocol (LDAP) servers, -clients, utilities and development tools. LDAP is an Internet standard -directory service protocol that can be used stand-alone, or as a front end -to an X.500 directory. LDAP is defined by RFCs 1777 through 1779. - -OpenLDAP is derived from the University of Michigan LDAP release 3.3 and is -distributed under an open source license. - -WWW: http://www.openldap.org/ - -Lachlan O'Dea -ulmo@earthling.net diff --git a/net/openldap20/pkg-message b/net/openldap20/pkg-message deleted file mode 100644 index 047bb0c9d5b4..000000000000 --- a/net/openldap20/pkg-message +++ /dev/null @@ -1,7 +0,0 @@ -************************************************************ -If you are upgrading an older (1.85) database, be sure to -convert the *.dbb files, e.g: - - mv file.dbb file.old - db_dump185 file.old | db_load file.dbb -************************************************************ diff --git a/net/openldap20/pkg-plist b/net/openldap20/pkg-plist deleted file mode 100644 index 778553d9d548..000000000000 --- a/net/openldap20/pkg-plist +++ /dev/null @@ -1,91 +0,0 @@ -bin/ldapadd -bin/ldapdelete -bin/ldapmodify -bin/ldapmodrdn -bin/ldappasswd -bin/ldapsearch -bin/ud -@unexec if cmp -s %D/etc/openldap/ldap.conf %D/etc/openldap/ldap.conf.default; then rm -f %D/etc/openldap/ldap.conf; fi -etc/openldap/ldap.conf.default -@exec [ -f %B/ldap.conf ] || cp %B/%f %B/ldap.conf -@unexec if cmp -s %D/etc/openldap/ldapfilter.conf %D/etc/openldap/ldapfilter.conf.default; then rm -f %D/etc/openldap/ldapfilter.conf; fi -etc/openldap/ldapfilter.conf.default -@exec [ -f %B/ldapfilter.conf ] || cp %B/%f %B/ldapfilter.conf -@unexec if cmp -s %D/etc/openldap/ldapsearchprefs.conf %D/etc/openldap/ldapsearchprefs.conf.default; then rm -f %D/etc/openldap/ldapsearchprefs.conf; fi -etc/openldap/ldapsearchprefs.conf.default -@exec [ -f %B/ldapsearchprefs.conf ] || cp %B/%f %B/ldapsearchprefs.conf -@unexec if cmp -s %D/etc/openldap/ldaptemplates.conf %D/etc/openldap/ldaptemplates.conf.default; then rm -f %D/etc/openldap/ldaptemplates.conf; fi -etc/openldap/ldaptemplates.conf.default -@exec [ -f %B/ldaptemplates.conf ] || cp %B/%f %B/ldaptemplates.conf -@unexec if cmp -s %D/etc/openldap/schema/corba.schema %D/etc/openldap/schema/corba.schema.default; then rm -f %D/etc/openldap/schema/corba.schema; fi -etc/openldap/schema/corba.schema.default -@exec [ -f %B/corba.schema ] || cp %B/%f %B/corba.schema -@unexec if cmp -s %D/etc/openldap/schema/core.schema %D/etc/openldap/schema/core.schema.default; then rm -f %D/etc/openldap/schema/core.schema; fi -etc/openldap/schema/core.schema.default -@exec [ -f %B/core.schema ] || cp %B/%f %B/core.schema -@unexec if cmp -s %D/etc/openldap/schema/cosine.schema %D/etc/openldap/schema/cosine.schema.default; then rm -f %D/etc/openldap/schema/cosine.schema; fi -etc/openldap/schema/cosine.schema.default -@exec [ -f %B/cosine.schema ] || cp %B/%f %B/cosine.schema -@unexec if cmp -s %D/etc/openldap/schema/inetorgperson.schema %D/etc/openldap/schema/inetorgperson.schema.default; then rm -f %D/etc/openldap/schema/inetorgperson.schema; fi -etc/openldap/schema/inetorgperson.schema.default -@exec [ -f %B/inetorgperson.schema ] || cp %B/%f %B/inetorgperson.schema -@unexec if cmp -s %D/etc/openldap/schema/java.schema %D/etc/openldap/schema/java.schema.default; then rm -f %D/etc/openldap/schema/java.schema; fi -etc/openldap/schema/java.schema.default -@exec [ -f %B/java.schema ] || cp %B/%f %B/java.schema -@unexec if cmp -s %D/etc/openldap/schema/krb5-kdc.schema %D/etc/openldap/schema/krb5-kdc.schema.default; then rm -f %D/etc/openldap/schema/krb5-kdc.schema; fi -etc/openldap/schema/krb5-kdc.schema.default -@exec [ -f %B/krb5-kdc.schema ] || cp %B/%f %B/krb5-kdc.schema -@unexec if cmp -s %D/etc/openldap/schema/misc.schema %D/etc/openldap/schema/misc.schema.default; then rm -f %D/etc/openldap/schema/misc.schema; fi -etc/openldap/schema/misc.schema.default -@exec [ -f %B/misc.schema ] || cp %B/%f %B/misc.schema -@unexec if cmp -s %D/etc/openldap/schema/nadf.schema %D/etc/openldap/schema/nadf.schema.default; then rm -f %D/etc/openldap/schema/nadf.schema; fi -etc/openldap/schema/nadf.schema.default -@exec [ -f %B/nadf.schema ] || cp %B/%f %B/nadf.schema -@unexec if cmp -s %D/etc/openldap/schema/nis.schema %D/etc/openldap/schema/nis.schema.default; then rm -f %D/etc/openldap/schema/nis.schema; fi -etc/openldap/schema/nis.schema.default -@exec [ -f %B/nis.schema ] || cp %B/%f %B/nis.schema -@unexec if cmp -s %D/etc/openldap/schema/openldap.schema %D/etc/openldap/schema/openldap.schema.default; then rm -f %D/etc/openldap/schema/openldap.schema; fi -etc/openldap/schema/openldap.schema.default -@exec [ -f %B/openldap.schema ] || cp %B/%f %B/openldap.schema -@unexec if cmp -s %D/etc/openldap/slapd.conf %D/etc/openldap/slapd.conf.default; then rm -f %D/etc/openldap/slapd.conf; fi -etc/openldap/slapd.conf.default -@exec [ -f %B/slapd.conf ] || cp %B/%f %B/slapd.conf -@unexec /bin/rmdir %D/etc/openldap/schema 2>/dev/null || true -@unexec /bin/rmdir %D/etc/openldap 2>/dev/null || true -etc/rc.d/slapd.sh.sample -include/disptmpl.h -include/lber.h -include/lber_types.h -include/ldap.h -include/ldap_cdefs.h -include/ldap_features.h -include/ldap_schema.h -include/srchpref.h -lib/liblber.a -lib/liblber.so -lib/liblber.so.2 -lib/libldap.a -lib/libldap.so -lib/libldap.so.2 -lib/libldap_r.a -lib/libldap_r.so -lib/libldap_r.so.2 -libexec/fax500 -libexec/go500 -libexec/go500gw -libexec/in.xfingerd -libexec/mail500 -libexec/maildap -libexec/rcpt500 -libexec/rp500 -libexec/slapd -libexec/slurpd -libexec/xrpcomp -sbin/slapadd -sbin/slapcat -sbin/slapindex -sbin/slappasswd -share/openldap/go500gw.help -share/openldap/ldapfriendly -share/openldap/rcpt500.help -@dirrm share/openldap diff --git a/net/openldap21-server/Makefile b/net/openldap21-server/Makefile deleted file mode 100644 index 42af69354389..000000000000 --- a/net/openldap21-server/Makefile +++ /dev/null @@ -1,104 +0,0 @@ -# New ports collection makefile for: OpenLDAP 2.x -# Date created: 20 Sep 1998 -# Whom: Lachlan O'Dea -# -# $FreeBSD$ -# - -PORTNAME= openldap -PORTVERSION= 2.0.14 -CATEGORIES= net databases -MASTER_SITES= ftp://ftp.OpenLDAP.org/pub/OpenLDAP/%SUBDIR%/ \ - ftp://ftp.net.lut.ac.uk/openldap/%SUBDIR%/ \ - ftp://sunsite.cnlab-switch.ch/mirror/OpenLDAP/%SUBDIR%/ \ - ftp://mirror.aarnet.edu.au/pub/OpenLDAP/%SUBDIR%/ \ - ftp://gd.tuwien.ac.at/infosys/network/OpenLDAP/%SUBDIR%/ \ - http://www.unibase.cz/ldapcz/Programy/Free/OpenLDAP/%SUBDIR%/ \ - ftp://ftp.ntua.gr/mirror/OpenLDAP/%SUBDIR%/ \ - ftp://ftp.loxinfo.co.th/pub/unix/LDAP/OpenLDAP/%SUBDIR%/ \ - ftp://ftp.zcu.cz/pub/network/openldap/%SUBDIR%/ -MASTER_SITE_SUBDIR= openldap-release -EXTRACT_SUFX= .tgz - -MAINTAINER= ports@FreeBSD.org - -LIB_DEPENDS= db3.2:${PORTSDIR}/databases/db3 - -USE_AUTOCONF= yes -USE_LIBTOOL= yes -USE_OPENSSL= yes - -CONFIGURE_ARGS= --localstatedir=/var/db \ - --with-threads \ - --enable-shared \ - --enable-dnssrv \ - --with-tls=openssl - -# Include tcp-wrapper support -.if exists(/usr/include/tcpd.h) -CONFIGURE_ARGS+= --enable-wrappers -.endif - -# math.h uses _REENTRANT and stdio.h uses _THREAD_SAFE, so define both. -CPPFLAGS+= -D_REENTRANT ${PTHREAD_CFLAGS} \ - -I${LOCALBASE}/include \ - -I${LOCALBASE}/include/db3 -LDFLAGS+= -L${LOCALBASE}/lib - -.if defined(WITH_SASL) -LIB_DEPENDS+= sasl.8:${PORTSDIR}/security/cyrus-sasl -CPPFLAGS+= -I${LOCALBASE}/include/sasl -.endif - -.if defined(WITH_ODBC) -LIB_DEPENDS+= iodbc.2:${PORTSDIR}/databases/libiodbc -CONFIGURE_ARGS+=--enable-sql -.endif - -CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" \ - LDFLAGS="${LDFLAGS}" - -INSTALLS_SHLIB= yes - -BINS= bin/ldapadd \ - bin/ldapdelete \ - bin/ldapmodify \ - bin/ldapmodrdn \ - bin/ldappasswd \ - bin/ldapsearch \ - bin/ud \ - libexec/fax500 \ - libexec/go500 \ - libexec/go500gw \ - libexec/in.xfingerd \ - libexec/mail500 \ - libexec/maildap \ - libexec/rcpt500 \ - libexec/rp500 \ - libexec/slapd \ - libexec/slurpd - -.include <bsd.port.pre.mk> -.include "${FILESDIR}/manpages" - -post-patch: - @${PERL} -pi.fbsd -e 's@pidfile\t\t%LOCALSTATEDIR%/slapd.pid@pidfile\t\t/var/run/slapd.pid@g; \ - s@argsfile\t%LOCALSTATEDIR%/slapd.args@argsfile\t/var/run/slapd.args@g' ${WRKSRC}/servers/slapd/slapd.conf - -post-configure: - @cd ${WRKSRC} ; ${PATCH} < ${FILESDIR}/libtool.diff - -pre-build: - @cd ${WRKSRC} ; ${MAKE} depend - -post-build: - @${SED} 's,@@PREFIX@@,${PREFIX},g' ${FILESDIR}/slapd.sh >${WRKDIR}/slapd.sh - -post-install: -.for f in ${BINS} - @strip ${PREFIX}/${f} -.endfor - @${INSTALL_SCRIPT} ${WRKDIR}/slapd.sh ${PREFIX}/etc/rc.d/slapd.sh.sample - @${CAT} ${PKGMESSAGE} - -.include <bsd.port.post.mk> diff --git a/net/openldap21-server/distinfo b/net/openldap21-server/distinfo deleted file mode 100644 index e839abb59db7..000000000000 --- a/net/openldap21-server/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (openldap-2.0.14.tgz) = d83ddb4b05b13eeb9eaa971427254659 diff --git a/net/openldap21-server/files/libtool.diff b/net/openldap21-server/files/libtool.diff deleted file mode 100644 index 0cf57bbee7ea..000000000000 --- a/net/openldap21-server/files/libtool.diff +++ /dev/null @@ -1,19 +0,0 @@ ---- libtool.orig Tue Oct 31 01:43:06 2000 -+++ libtool Tue Oct 31 01:44:42 2000 -@@ -448,6 +448,16 @@ - --mode) prevopt="--mode" prev=mode ;; - --mode=*) mode="$optarg" ;; - -+ --only-shared) -+ build_libtool_libs=yes -+ build_old_libs=no -+ ;; -+ -+ --only-static) -+ build_libtool_libs=no -+ build_old_libs=yes -+ ;; -+ - --quiet | --silent) - show=: - ;; diff --git a/net/openldap21-server/files/manpages b/net/openldap21-server/files/manpages deleted file mode 100644 index 1c39b81911fc..000000000000 --- a/net/openldap21-server/files/manpages +++ /dev/null @@ -1,219 +0,0 @@ -MAN1+= ldapdelete.1 -MAN1+= ldapmodify.1 -MAN1+= ldapmodrdn.1 -MAN1+= ldappasswd.1 -MAN1+= ldapsearch.1 -MAN1+= ud.1 -MAN3+= lber-decode.3 -MAN3+= lber-encode.3 -MAN3+= lber-memory.3 -MAN3+= lber-types.3 -MAN3+= ldap.3 -MAN3+= ldap_abandon.3 -MAN3+= ldap_add.3 -MAN3+= ldap_bind.3 -MAN3+= ldap_cache.3 -MAN3+= ldap_compare.3 -MAN3+= ldap_delete.3 -MAN3+= ldap_disptmpl.3 -MAN3+= ldap_entry2text.3 -MAN3+= ldap_error.3 -MAN3+= ldap_first_attribute.3 -MAN3+= ldap_first_entry.3 -MAN3+= ldap_friendly.3 -MAN3+= ldap_get_dn.3 -MAN3+= ldap_get_values.3 -MAN3+= ldap_getfilter.3 -MAN3+= ldap_modify.3 -MAN3+= ldap_modrdn.3 -MAN3+= ldap_open.3 -MAN3+= ldap_result.3 -MAN3+= ldap_schema.3 -MAN3+= ldap_search.3 -MAN3+= ldap_searchprefs.3 -MAN3+= ldap_sort.3 -MAN3+= ldap_ufn.3 -MAN3+= ldap_url.3 -MAN5+= ldap.conf.5 -MAN5+= ldapfilter.conf.5 -MAN5+= ldapfriendly.5 -MAN5+= ldapsearchprefs.conf.5 -MAN5+= ldaptemplates.conf.5 -MAN5+= ldif.5 -MAN5+= slapd.conf.5 -MAN5+= slapd.replog.5 -MAN5+= ud.conf.5 -MAN8+= go500.8 -MAN8+= go500gw.8 -MAN8+= in.xfingerd.8 -MAN8+= mail500.8 -MAN8+= rcpt500.8 -MAN8+= slapadd.8 -MAN8+= slapcat.8 -MAN8+= slapd.8 -MAN8+= slapindex.8 -MAN8+= slappasswd.8 -MAN8+= slurpd.8 -MLINKS+= lber-decode.3 ber_first_element.3 -MLINKS+= lber-decode.3 ber_get_bitstring.3 -MLINKS+= lber-decode.3 ber_get_boolean.3 -MLINKS+= lber-decode.3 ber_get_enum.3 -MLINKS+= lber-decode.3 ber_get_int.3 -MLINKS+= lber-decode.3 ber_get_next.3 -MLINKS+= lber-decode.3 ber_get_null.3 -MLINKS+= lber-decode.3 ber_get_stringa.3 -MLINKS+= lber-decode.3 ber_get_stringb.3 -MLINKS+= lber-decode.3 ber_next_element.3 -MLINKS+= lber-decode.3 ber_peek_tag.3 -MLINKS+= lber-decode.3 ber_scanf.3 -MLINKS+= lber-decode.3 ber_skip_tag.3 -MLINKS+= lber-encode.3 ber_alloc_t.3 -MLINKS+= lber-encode.3 ber_flush.3 -MLINKS+= lber-encode.3 ber_printf.3 -MLINKS+= lber-encode.3 ber_put_enum.3 -MLINKS+= lber-encode.3 ber_put_int.3 -MLINKS+= lber-encode.3 ber_put_null.3 -MLINKS+= lber-encode.3 ber_put_ostring.3 -MLINKS+= lber-encode.3 ber_put_seq.3 -MLINKS+= lber-encode.3 ber_put_set.3 -MLINKS+= lber-encode.3 ber_put_string.3 -MLINKS+= lber-decode.3 ber_start_set.3 -MLINKS+= ldap.3 cldap.3 -MLINKS+= ldap_add.3 ldap_add_s.3 -MLINKS+= ldap_bind.3 ldap_abandon_ext.3 -MLINKS+= ldap_bind.3 ldap_add_ext.3 -MLINKS+= ldap_bind.3 ldap_add_ext_s.3 -MLINKS+= ldap_bind.3 ldap_bind_s.3 -MLINKS+= ldap_bind.3 ldap_kerberos_bind1.3 -MLINKS+= ldap_bind.3 ldap_kerberos_bind1_s.3 -MLINKS+= ldap_bind.3 ldap_kerberos_bind2.3 -MLINKS+= ldap_bind.3 ldap_kerberos_bind2_s.3 -MLINKS+= ldap_bind.3 ldap_kerberos_bind_s.3 -MLINKS+= ldap_bind.3 ldap_sasl_bind.3 -MLINKS+= ldap_bind.3 ldap_sasl_bind_s.3 -MLINKS+= ldap_bind.3 ldap_set_rebind_proc.3 -MLINKS+= ldap_bind.3 ldap_simple_bind.3 -MLINKS+= ldap_bind.3 ldap_simple_bind_s.3 -MLINKS+= ldap_bind.3 ldap_unbind.3 -MLINKS+= ldap_bind.3 ldap_unbind_ext.3 -MLINKS+= ldap_bind.3 ldap_unbind_ext_s.3 -MLINKS+= ldap_bind.3 ldap_unbind_s.3 -MLINKS+= ldap_cache.3 ldap_destroy_cache.3 -MLINKS+= ldap_cache.3 ldap_disable_cache.3 -MLINKS+= ldap_cache.3 ldap_enable_cache.3 -MLINKS+= ldap_cache.3 ldap_flush_cache.3 -MLINKS+= ldap_cache.3 ldap_set_cache_options.3 -MLINKS+= ldap_cache.3 ldap_uncache_entry.3 -MLINKS+= ldap_cache.3 ldap_uncache_request.3 -MLINKS+= ldap_charset.3 ldap_8859_to_t61.3 -MLINKS+= ldap_charset.3 ldap_enable_translation.3 -MLINKS+= ldap_charset.3 ldap_set_string_translators.3 -MLINKS+= ldap_charset.3 ldap_t61_to_8859.3 -MLINKS+= ldap_charset.3 ldap_translate_from_t61.3 -MLINKS+= ldap_charset.3 ldap_translate_to_t61.3 -MLINKS+= ldap_compare.3 ldap_compare_ext.3 -MLINKS+= ldap_compare.3 ldap_compare_ext_s.3 -MLINKS+= ldap_compare.3 ldap_compare_s.3 -MLINKS+= ldap_delete.3 ldap_delete_ext.3 -MLINKS+= ldap_delete.3 ldap_delete_ext_s.3 -MLINKS+= ldap_delete.3 ldap_delete_s.3 -MLINKS+= ldap_disptmpl.3 ldap_first_disptmpl.3 -MLINKS+= ldap_disptmpl.3 ldap_first_tmplcol.3 -MLINKS+= ldap_disptmpl.3 ldap_first_tmplrow.3 -MLINKS+= ldap_disptmpl.3 ldap_free_templates.3 -MLINKS+= ldap_disptmpl.3 ldap_init_templates.3 -MLINKS+= ldap_disptmpl.3 ldap_init_templates_buf.3 -MLINKS+= ldap_disptmpl.3 ldap_next_disptmpl.3 -MLINKS+= ldap_disptmpl.3 ldap_next_tmplcol.3 -MLINKS+= ldap_disptmpl.3 ldap_next_tmplrow.3 -MLINKS+= ldap_disptmpl.3 ldap_oc2template.3 -MLINKS+= ldap_disptmpl.3 ldap_tmplattrs.3 -MLINKS+= ldap_entry2text.3 ldap_entry2html.3 -MLINKS+= ldap_entry2text.3 ldap_entry2html_search.3 -MLINKS+= ldap_entry2text.3 ldap_entry2text_search.3 -MLINKS+= ldap_entry2text.3 ldap_vals2html.3 -MLINKS+= ldap_entry2text.3 ldap_vals2text.3 -MLINKS+= ldap_error.3 ld_errno.3 -MLINKS+= ldap_error.3 ldap_err2string.3 -MLINKS+= ldap_error.3 ldap_errlist.3 -MLINKS+= ldap_error.3 ldap_perror.3 -MLINKS+= ldap_error.3 ldap_result2error.3 -MLINKS+= ldap_first_attribute.3 ldap_next_attribute.3 -MLINKS+= ldap_first_entry.3 ldap_count_entries.3 -MLINKS+= ldap_first_entry.3 ldap_next_entry.3 -MLINKS+= ldap_friendly.3 ldap_free_friendlymap.3 -MLINKS+= ldap_friendly.3 ldap_friendly_name.3 -MLINKS+= ldap_get_dn.3 ldap_dn2ufn.3 -MLINKS+= ldap_get_dn.3 ldap_explode_dn.3 -MLINKS+= ldap_get_dn.3 ldap_explode_dns.3 -MLINKS+= ldap_get_dn.3 ldap_explode_rdn.3 -MLINKS+= ldap_get_dn.3 ldap_is_dns_dn.3 -MLINKS+= ldap_get_values.3 ldap_count_values.3 -MLINKS+= ldap_get_values.3 ldap_count_values_len.3 -MLINKS+= ldap_get_values.3 ldap_get_values_len.3 -MLINKS+= ldap_get_values.3 ldap_value_free.3 -MLINKS+= ldap_get_values.3 ldap_value_free_len.3 -MLINKS+= ldap_getfilter.3 ldap_build_filter.3 -MLINKS+= ldap_getfilter.3 ldap_getfilter_free.3 -MLINKS+= ldap_getfilter.3 ldap_getfirstfilter.3 -MLINKS+= ldap_getfilter.3 ldap_getnextfilter.3 -MLINKS+= ldap_getfilter.3 ldap_init_getfilter.3 -MLINKS+= ldap_getfilter.3 ldap_init_getfilter_buf.3 -MLINKS+= ldap_getfilter.3 ldap_setfilteraffixes.3 -MLINKS+= ldap_modify.3 ldap_modify_ext.3 -MLINKS+= ldap_modify.3 ldap_modify_ext_s.3 -MLINKS+= ldap_modify.3 ldap_modify_s.3 -MLINKS+= ldap_modify.3 ldap_mods_free.3 -MLINKS+= ldap_modrdn.3 ldap_modrdn2.3 -MLINKS+= ldap_modrdn.3 ldap_modrdn2_s.3 -MLINKS+= ldap_modrdn.3 ldap_modrdn_s.3 -MLINKS+= ldap_open.3 ldap_init.3 -MLINKS+= ldap_result.3 ldap_msgfree.3 -MLINKS+= ldap_result.3 ldap_msgid.3 -MLINKS+= ldap_result.3 ldap_msgtype.3 -MLINKS+= ldap_schema.3 ldap_attributetype2name.3 -MLINKS+= ldap_schema.3 ldap_attributetype2str.3 -MLINKS+= ldap_schema.3 ldap_attributetype_free.3 -MLINKS+= ldap_schema.3 ldap_matchingrule2name.3 -MLINKS+= ldap_schema.3 ldap_matchingrule2str.3 -MLINKS+= ldap_schema.3 ldap_matchingrule_free.3 -MLINKS+= ldap_schema.3 ldap_objectclass2name.3 -MLINKS+= ldap_schema.3 ldap_objectclass2str.3 -MLINKS+= ldap_schema.3 ldap_objectclass_free.3 -MLINKS+= ldap_schema.3 ldap_scherr2str.3 -MLINKS+= ldap_schema.3 ldap_str2attributetype.3 -MLINKS+= ldap_schema.3 ldap_str2matchingrule.3 -MLINKS+= ldap_schema.3 ldap_str2objectclass.3 -MLINKS+= ldap_schema.3 ldap_str2syntax.3 -MLINKS+= ldap_schema.3 ldap_syntax2name.3 -MLINKS+= ldap_schema.3 ldap_syntax2str.3 -MLINKS+= ldap_schema.3 ldap_syntax_free.3 -MLINKS+= ldap_search.3 ldap_search_ext.3 -MLINKS+= ldap_search.3 ldap_search_ext_s.3 -MLINKS+= ldap_search.3 ldap_search_s.3 -MLINKS+= ldap_search.3 ldap_search_st.3 -MLINKS+= ldap_searchprefs.3 ldap_first_searchobj.3 -MLINKS+= ldap_searchprefs.3 ldap_free_searchprefs.3 -MLINKS+= ldap_searchprefs.3 ldap_init_searchprefs.3 -MLINKS+= ldap_searchprefs.3 ldap_init_searchprefs_buf.3 -MLINKS+= ldap_searchprefs.3 ldap_next_searchobj.3 -MLINKS+= ldap_sort.3 ldap_sort_entries.3 -MLINKS+= ldap_sort.3 ldap_sort_strcasecmp.3 -MLINKS+= ldap_sort.3 ldap_sort_values.3 -MLINKS+= ldap_ufn.3 ldap_ufn_search_c.3 -MLINKS+= ldap_ufn.3 ldap_ufn_search_ct.3 -MLINKS+= ldap_ufn.3 ldap_ufn_search_s.3 -MLINKS+= ldap_ufn.3 ldap_ufn_setfilter.3 -MLINKS+= ldap_ufn.3 ldap_ufn_setprefix.3 -MLINKS+= ldap_ufn.3 ldap_ufn_timeout.3 -MLINKS+= ldap_url.3 ldap_free_urldesc.3 -MLINKS+= ldap_url.3 ldap_is_ldap_url.3 -MLINKS+= ldap_url.3 ldap_url_parse.3 -MLINKS+= ldap_url.3 ldap_url_search.3 -MLINKS+= ldap_url.3 ldap_url_search_s.3 -MLINKS+= ldap_url.3 ldap_url_search_st.3 -MLINKS+= ldapmodify.1 ldapadd.1 -MLINKS+= ldif2ldbm.8 ldif2id2children.8 -MLINKS+= ldif2ldbm.8 ldif2id2entry.8 -MLINKS+= ldif2ldbm.8 ldif2index.8 -MLINKS+= mail500.8 fax500.8 diff --git a/net/openldap21-server/files/patch-clients_ud_Makefile.in b/net/openldap21-server/files/patch-clients_ud_Makefile.in deleted file mode 100644 index 18f342c29a53..000000000000 --- a/net/openldap21-server/files/patch-clients_ud_Makefile.in +++ /dev/null @@ -1,8 +0,0 @@ ---- clients/ud/Makefile.in.orig Wed Jan 13 20:02:11 1999 -+++ clients/ud/Makefile.in Wed Jul 26 14:24:14 2000 -@@ -26,4 +26,4 @@ - install-local: FORCE - -$(MKDIR) $(bindir) - -mv -f $(bindir)/ud $(bindir)/ud- -- $(LTINSTALL) $(INSTALLFLAGS) -m 775 ud $(bindir) -+ $(LTINSTALL) $(INSTALLFLAGS) -m 755 ud $(bindir) diff --git a/net/openldap21-server/files/patch-servers_slapd_schema b/net/openldap21-server/files/patch-servers_slapd_schema deleted file mode 100644 index 31969e8bb621..000000000000 --- a/net/openldap21-server/files/patch-servers_slapd_schema +++ /dev/null @@ -1,20 +0,0 @@ ---- servers/slapd/schema/krb5-kdc.schema.orig Tue Sep 5 13:28:34 2000 -+++ servers/slapd/schema/krb5-kdc.schema Mon Oct 30 13:09:19 2000 -@@ -96,7 +96,7 @@ - attributetype ( 1.3.6.1.4.1.5322.10.1.10 - NAME 'krb5Key' - DESC 'Encoded ASN1 Key as an octet string' -- SYNTAX 1.3.6.1.4.1.1466.115.121.1.5 ) -+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.40 ) - - attributetype ( 1.3.6.1.4.1.5322.10.1.11 - NAME 'krb5PrincipalRealm' -@@ -112,7 +112,7 @@ - - objectclass ( 1.3.6.1.4.1.5322.10.2.1 - NAME 'krb5Principal' -- SUP top -+ SUP person - AUXILIARY - MUST ( krb5PrincipalName ) - MAY ( cn $ krb5PrincipalRealm ) ) diff --git a/net/openldap21-server/files/slapd.sh b/net/openldap21-server/files/slapd.sh deleted file mode 100644 index 1704074b7968..000000000000 --- a/net/openldap21-server/files/slapd.sh +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ - -slapd=@@PREFIX@@/libexec/slapd -pidfile=/var/run/slapd.pid - -case "$1" in -start) - if [ -x $slapd ]; then - echo -n ' slapd' - $slapd - fi - ;; -stop) - if [ -f $pidfile ]; then - kill `cat $pidfile` - telnet localhost ldap </dev/null >/dev/null 2>&1 - echo -n ' slapd' - rm $pidfile - else - echo ' slapd: not running' - fi - ;; -*) - echo "Usage: `basename $0` {start|stop}" >&2 - exit 64 - ;; -esac - -exit 0 diff --git a/net/openldap21-server/pkg-comment b/net/openldap21-server/pkg-comment deleted file mode 100644 index 8c499c3923cf..000000000000 --- a/net/openldap21-server/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Open source LDAP client and server software diff --git a/net/openldap21-server/pkg-descr b/net/openldap21-server/pkg-descr deleted file mode 100644 index aec3ae0f7cf4..000000000000 --- a/net/openldap21-server/pkg-descr +++ /dev/null @@ -1,12 +0,0 @@ -OpenLDAP is a suite of Lightweight Directory Access Protocol (LDAP) servers, -clients, utilities and development tools. LDAP is an Internet standard -directory service protocol that can be used stand-alone, or as a front end -to an X.500 directory. LDAP is defined by RFCs 1777 through 1779. - -OpenLDAP is derived from the University of Michigan LDAP release 3.3 and is -distributed under an open source license. - -WWW: http://www.openldap.org/ - -Lachlan O'Dea -ulmo@earthling.net diff --git a/net/openldap21-server/pkg-message b/net/openldap21-server/pkg-message deleted file mode 100644 index 047bb0c9d5b4..000000000000 --- a/net/openldap21-server/pkg-message +++ /dev/null @@ -1,7 +0,0 @@ -************************************************************ -If you are upgrading an older (1.85) database, be sure to -convert the *.dbb files, e.g: - - mv file.dbb file.old - db_dump185 file.old | db_load file.dbb -************************************************************ diff --git a/net/openldap21-server/pkg-plist b/net/openldap21-server/pkg-plist deleted file mode 100644 index 778553d9d548..000000000000 --- a/net/openldap21-server/pkg-plist +++ /dev/null @@ -1,91 +0,0 @@ -bin/ldapadd -bin/ldapdelete -bin/ldapmodify -bin/ldapmodrdn -bin/ldappasswd -bin/ldapsearch -bin/ud -@unexec if cmp -s %D/etc/openldap/ldap.conf %D/etc/openldap/ldap.conf.default; then rm -f %D/etc/openldap/ldap.conf; fi -etc/openldap/ldap.conf.default -@exec [ -f %B/ldap.conf ] || cp %B/%f %B/ldap.conf -@unexec if cmp -s %D/etc/openldap/ldapfilter.conf %D/etc/openldap/ldapfilter.conf.default; then rm -f %D/etc/openldap/ldapfilter.conf; fi -etc/openldap/ldapfilter.conf.default -@exec [ -f %B/ldapfilter.conf ] || cp %B/%f %B/ldapfilter.conf -@unexec if cmp -s %D/etc/openldap/ldapsearchprefs.conf %D/etc/openldap/ldapsearchprefs.conf.default; then rm -f %D/etc/openldap/ldapsearchprefs.conf; fi -etc/openldap/ldapsearchprefs.conf.default -@exec [ -f %B/ldapsearchprefs.conf ] || cp %B/%f %B/ldapsearchprefs.conf -@unexec if cmp -s %D/etc/openldap/ldaptemplates.conf %D/etc/openldap/ldaptemplates.conf.default; then rm -f %D/etc/openldap/ldaptemplates.conf; fi -etc/openldap/ldaptemplates.conf.default -@exec [ -f %B/ldaptemplates.conf ] || cp %B/%f %B/ldaptemplates.conf -@unexec if cmp -s %D/etc/openldap/schema/corba.schema %D/etc/openldap/schema/corba.schema.default; then rm -f %D/etc/openldap/schema/corba.schema; fi -etc/openldap/schema/corba.schema.default -@exec [ -f %B/corba.schema ] || cp %B/%f %B/corba.schema -@unexec if cmp -s %D/etc/openldap/schema/core.schema %D/etc/openldap/schema/core.schema.default; then rm -f %D/etc/openldap/schema/core.schema; fi -etc/openldap/schema/core.schema.default -@exec [ -f %B/core.schema ] || cp %B/%f %B/core.schema -@unexec if cmp -s %D/etc/openldap/schema/cosine.schema %D/etc/openldap/schema/cosine.schema.default; then rm -f %D/etc/openldap/schema/cosine.schema; fi -etc/openldap/schema/cosine.schema.default -@exec [ -f %B/cosine.schema ] || cp %B/%f %B/cosine.schema -@unexec if cmp -s %D/etc/openldap/schema/inetorgperson.schema %D/etc/openldap/schema/inetorgperson.schema.default; then rm -f %D/etc/openldap/schema/inetorgperson.schema; fi -etc/openldap/schema/inetorgperson.schema.default -@exec [ -f %B/inetorgperson.schema ] || cp %B/%f %B/inetorgperson.schema -@unexec if cmp -s %D/etc/openldap/schema/java.schema %D/etc/openldap/schema/java.schema.default; then rm -f %D/etc/openldap/schema/java.schema; fi -etc/openldap/schema/java.schema.default -@exec [ -f %B/java.schema ] || cp %B/%f %B/java.schema -@unexec if cmp -s %D/etc/openldap/schema/krb5-kdc.schema %D/etc/openldap/schema/krb5-kdc.schema.default; then rm -f %D/etc/openldap/schema/krb5-kdc.schema; fi -etc/openldap/schema/krb5-kdc.schema.default -@exec [ -f %B/krb5-kdc.schema ] || cp %B/%f %B/krb5-kdc.schema -@unexec if cmp -s %D/etc/openldap/schema/misc.schema %D/etc/openldap/schema/misc.schema.default; then rm -f %D/etc/openldap/schema/misc.schema; fi -etc/openldap/schema/misc.schema.default -@exec [ -f %B/misc.schema ] || cp %B/%f %B/misc.schema -@unexec if cmp -s %D/etc/openldap/schema/nadf.schema %D/etc/openldap/schema/nadf.schema.default; then rm -f %D/etc/openldap/schema/nadf.schema; fi -etc/openldap/schema/nadf.schema.default -@exec [ -f %B/nadf.schema ] || cp %B/%f %B/nadf.schema -@unexec if cmp -s %D/etc/openldap/schema/nis.schema %D/etc/openldap/schema/nis.schema.default; then rm -f %D/etc/openldap/schema/nis.schema; fi -etc/openldap/schema/nis.schema.default -@exec [ -f %B/nis.schema ] || cp %B/%f %B/nis.schema -@unexec if cmp -s %D/etc/openldap/schema/openldap.schema %D/etc/openldap/schema/openldap.schema.default; then rm -f %D/etc/openldap/schema/openldap.schema; fi -etc/openldap/schema/openldap.schema.default -@exec [ -f %B/openldap.schema ] || cp %B/%f %B/openldap.schema -@unexec if cmp -s %D/etc/openldap/slapd.conf %D/etc/openldap/slapd.conf.default; then rm -f %D/etc/openldap/slapd.conf; fi -etc/openldap/slapd.conf.default -@exec [ -f %B/slapd.conf ] || cp %B/%f %B/slapd.conf -@unexec /bin/rmdir %D/etc/openldap/schema 2>/dev/null || true -@unexec /bin/rmdir %D/etc/openldap 2>/dev/null || true -etc/rc.d/slapd.sh.sample -include/disptmpl.h -include/lber.h -include/lber_types.h -include/ldap.h -include/ldap_cdefs.h -include/ldap_features.h -include/ldap_schema.h -include/srchpref.h -lib/liblber.a -lib/liblber.so -lib/liblber.so.2 -lib/libldap.a -lib/libldap.so -lib/libldap.so.2 -lib/libldap_r.a -lib/libldap_r.so -lib/libldap_r.so.2 -libexec/fax500 -libexec/go500 -libexec/go500gw -libexec/in.xfingerd -libexec/mail500 -libexec/maildap -libexec/rcpt500 -libexec/rp500 -libexec/slapd -libexec/slurpd -libexec/xrpcomp -sbin/slapadd -sbin/slapcat -sbin/slapindex -sbin/slappasswd -share/openldap/go500gw.help -share/openldap/ldapfriendly -share/openldap/rcpt500.help -@dirrm share/openldap diff --git a/net/openldap21/Makefile b/net/openldap21/Makefile deleted file mode 100644 index 42af69354389..000000000000 --- a/net/openldap21/Makefile +++ /dev/null @@ -1,104 +0,0 @@ -# New ports collection makefile for: OpenLDAP 2.x -# Date created: 20 Sep 1998 -# Whom: Lachlan O'Dea -# -# $FreeBSD$ -# - -PORTNAME= openldap -PORTVERSION= 2.0.14 -CATEGORIES= net databases -MASTER_SITES= ftp://ftp.OpenLDAP.org/pub/OpenLDAP/%SUBDIR%/ \ - ftp://ftp.net.lut.ac.uk/openldap/%SUBDIR%/ \ - ftp://sunsite.cnlab-switch.ch/mirror/OpenLDAP/%SUBDIR%/ \ - ftp://mirror.aarnet.edu.au/pub/OpenLDAP/%SUBDIR%/ \ - ftp://gd.tuwien.ac.at/infosys/network/OpenLDAP/%SUBDIR%/ \ - http://www.unibase.cz/ldapcz/Programy/Free/OpenLDAP/%SUBDIR%/ \ - ftp://ftp.ntua.gr/mirror/OpenLDAP/%SUBDIR%/ \ - ftp://ftp.loxinfo.co.th/pub/unix/LDAP/OpenLDAP/%SUBDIR%/ \ - ftp://ftp.zcu.cz/pub/network/openldap/%SUBDIR%/ -MASTER_SITE_SUBDIR= openldap-release -EXTRACT_SUFX= .tgz - -MAINTAINER= ports@FreeBSD.org - -LIB_DEPENDS= db3.2:${PORTSDIR}/databases/db3 - -USE_AUTOCONF= yes -USE_LIBTOOL= yes -USE_OPENSSL= yes - -CONFIGURE_ARGS= --localstatedir=/var/db \ - --with-threads \ - --enable-shared \ - --enable-dnssrv \ - --with-tls=openssl - -# Include tcp-wrapper support -.if exists(/usr/include/tcpd.h) -CONFIGURE_ARGS+= --enable-wrappers -.endif - -# math.h uses _REENTRANT and stdio.h uses _THREAD_SAFE, so define both. -CPPFLAGS+= -D_REENTRANT ${PTHREAD_CFLAGS} \ - -I${LOCALBASE}/include \ - -I${LOCALBASE}/include/db3 -LDFLAGS+= -L${LOCALBASE}/lib - -.if defined(WITH_SASL) -LIB_DEPENDS+= sasl.8:${PORTSDIR}/security/cyrus-sasl -CPPFLAGS+= -I${LOCALBASE}/include/sasl -.endif - -.if defined(WITH_ODBC) -LIB_DEPENDS+= iodbc.2:${PORTSDIR}/databases/libiodbc -CONFIGURE_ARGS+=--enable-sql -.endif - -CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" \ - LDFLAGS="${LDFLAGS}" - -INSTALLS_SHLIB= yes - -BINS= bin/ldapadd \ - bin/ldapdelete \ - bin/ldapmodify \ - bin/ldapmodrdn \ - bin/ldappasswd \ - bin/ldapsearch \ - bin/ud \ - libexec/fax500 \ - libexec/go500 \ - libexec/go500gw \ - libexec/in.xfingerd \ - libexec/mail500 \ - libexec/maildap \ - libexec/rcpt500 \ - libexec/rp500 \ - libexec/slapd \ - libexec/slurpd - -.include <bsd.port.pre.mk> -.include "${FILESDIR}/manpages" - -post-patch: - @${PERL} -pi.fbsd -e 's@pidfile\t\t%LOCALSTATEDIR%/slapd.pid@pidfile\t\t/var/run/slapd.pid@g; \ - s@argsfile\t%LOCALSTATEDIR%/slapd.args@argsfile\t/var/run/slapd.args@g' ${WRKSRC}/servers/slapd/slapd.conf - -post-configure: - @cd ${WRKSRC} ; ${PATCH} < ${FILESDIR}/libtool.diff - -pre-build: - @cd ${WRKSRC} ; ${MAKE} depend - -post-build: - @${SED} 's,@@PREFIX@@,${PREFIX},g' ${FILESDIR}/slapd.sh >${WRKDIR}/slapd.sh - -post-install: -.for f in ${BINS} - @strip ${PREFIX}/${f} -.endfor - @${INSTALL_SCRIPT} ${WRKDIR}/slapd.sh ${PREFIX}/etc/rc.d/slapd.sh.sample - @${CAT} ${PKGMESSAGE} - -.include <bsd.port.post.mk> diff --git a/net/openldap21/distinfo b/net/openldap21/distinfo deleted file mode 100644 index e839abb59db7..000000000000 --- a/net/openldap21/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (openldap-2.0.14.tgz) = d83ddb4b05b13eeb9eaa971427254659 diff --git a/net/openldap21/files/libtool.diff b/net/openldap21/files/libtool.diff deleted file mode 100644 index 0cf57bbee7ea..000000000000 --- a/net/openldap21/files/libtool.diff +++ /dev/null @@ -1,19 +0,0 @@ ---- libtool.orig Tue Oct 31 01:43:06 2000 -+++ libtool Tue Oct 31 01:44:42 2000 -@@ -448,6 +448,16 @@ - --mode) prevopt="--mode" prev=mode ;; - --mode=*) mode="$optarg" ;; - -+ --only-shared) -+ build_libtool_libs=yes -+ build_old_libs=no -+ ;; -+ -+ --only-static) -+ build_libtool_libs=no -+ build_old_libs=yes -+ ;; -+ - --quiet | --silent) - show=: - ;; diff --git a/net/openldap21/files/manpages b/net/openldap21/files/manpages deleted file mode 100644 index 1c39b81911fc..000000000000 --- a/net/openldap21/files/manpages +++ /dev/null @@ -1,219 +0,0 @@ -MAN1+= ldapdelete.1 -MAN1+= ldapmodify.1 -MAN1+= ldapmodrdn.1 -MAN1+= ldappasswd.1 -MAN1+= ldapsearch.1 -MAN1+= ud.1 -MAN3+= lber-decode.3 -MAN3+= lber-encode.3 -MAN3+= lber-memory.3 -MAN3+= lber-types.3 -MAN3+= ldap.3 -MAN3+= ldap_abandon.3 -MAN3+= ldap_add.3 -MAN3+= ldap_bind.3 -MAN3+= ldap_cache.3 -MAN3+= ldap_compare.3 -MAN3+= ldap_delete.3 -MAN3+= ldap_disptmpl.3 -MAN3+= ldap_entry2text.3 -MAN3+= ldap_error.3 -MAN3+= ldap_first_attribute.3 -MAN3+= ldap_first_entry.3 -MAN3+= ldap_friendly.3 -MAN3+= ldap_get_dn.3 -MAN3+= ldap_get_values.3 -MAN3+= ldap_getfilter.3 -MAN3+= ldap_modify.3 -MAN3+= ldap_modrdn.3 -MAN3+= ldap_open.3 -MAN3+= ldap_result.3 -MAN3+= ldap_schema.3 -MAN3+= ldap_search.3 -MAN3+= ldap_searchprefs.3 -MAN3+= ldap_sort.3 -MAN3+= ldap_ufn.3 -MAN3+= ldap_url.3 -MAN5+= ldap.conf.5 -MAN5+= ldapfilter.conf.5 -MAN5+= ldapfriendly.5 -MAN5+= ldapsearchprefs.conf.5 -MAN5+= ldaptemplates.conf.5 -MAN5+= ldif.5 -MAN5+= slapd.conf.5 -MAN5+= slapd.replog.5 -MAN5+= ud.conf.5 -MAN8+= go500.8 -MAN8+= go500gw.8 -MAN8+= in.xfingerd.8 -MAN8+= mail500.8 -MAN8+= rcpt500.8 -MAN8+= slapadd.8 -MAN8+= slapcat.8 -MAN8+= slapd.8 -MAN8+= slapindex.8 -MAN8+= slappasswd.8 -MAN8+= slurpd.8 -MLINKS+= lber-decode.3 ber_first_element.3 -MLINKS+= lber-decode.3 ber_get_bitstring.3 -MLINKS+= lber-decode.3 ber_get_boolean.3 -MLINKS+= lber-decode.3 ber_get_enum.3 -MLINKS+= lber-decode.3 ber_get_int.3 -MLINKS+= lber-decode.3 ber_get_next.3 -MLINKS+= lber-decode.3 ber_get_null.3 -MLINKS+= lber-decode.3 ber_get_stringa.3 -MLINKS+= lber-decode.3 ber_get_stringb.3 -MLINKS+= lber-decode.3 ber_next_element.3 -MLINKS+= lber-decode.3 ber_peek_tag.3 -MLINKS+= lber-decode.3 ber_scanf.3 -MLINKS+= lber-decode.3 ber_skip_tag.3 -MLINKS+= lber-encode.3 ber_alloc_t.3 -MLINKS+= lber-encode.3 ber_flush.3 -MLINKS+= lber-encode.3 ber_printf.3 -MLINKS+= lber-encode.3 ber_put_enum.3 -MLINKS+= lber-encode.3 ber_put_int.3 -MLINKS+= lber-encode.3 ber_put_null.3 -MLINKS+= lber-encode.3 ber_put_ostring.3 -MLINKS+= lber-encode.3 ber_put_seq.3 -MLINKS+= lber-encode.3 ber_put_set.3 -MLINKS+= lber-encode.3 ber_put_string.3 -MLINKS+= lber-decode.3 ber_start_set.3 -MLINKS+= ldap.3 cldap.3 -MLINKS+= ldap_add.3 ldap_add_s.3 -MLINKS+= ldap_bind.3 ldap_abandon_ext.3 -MLINKS+= ldap_bind.3 ldap_add_ext.3 -MLINKS+= ldap_bind.3 ldap_add_ext_s.3 -MLINKS+= ldap_bind.3 ldap_bind_s.3 -MLINKS+= ldap_bind.3 ldap_kerberos_bind1.3 -MLINKS+= ldap_bind.3 ldap_kerberos_bind1_s.3 -MLINKS+= ldap_bind.3 ldap_kerberos_bind2.3 -MLINKS+= ldap_bind.3 ldap_kerberos_bind2_s.3 -MLINKS+= ldap_bind.3 ldap_kerberos_bind_s.3 -MLINKS+= ldap_bind.3 ldap_sasl_bind.3 -MLINKS+= ldap_bind.3 ldap_sasl_bind_s.3 -MLINKS+= ldap_bind.3 ldap_set_rebind_proc.3 -MLINKS+= ldap_bind.3 ldap_simple_bind.3 -MLINKS+= ldap_bind.3 ldap_simple_bind_s.3 -MLINKS+= ldap_bind.3 ldap_unbind.3 -MLINKS+= ldap_bind.3 ldap_unbind_ext.3 -MLINKS+= ldap_bind.3 ldap_unbind_ext_s.3 -MLINKS+= ldap_bind.3 ldap_unbind_s.3 -MLINKS+= ldap_cache.3 ldap_destroy_cache.3 -MLINKS+= ldap_cache.3 ldap_disable_cache.3 -MLINKS+= ldap_cache.3 ldap_enable_cache.3 -MLINKS+= ldap_cache.3 ldap_flush_cache.3 -MLINKS+= ldap_cache.3 ldap_set_cache_options.3 -MLINKS+= ldap_cache.3 ldap_uncache_entry.3 -MLINKS+= ldap_cache.3 ldap_uncache_request.3 -MLINKS+= ldap_charset.3 ldap_8859_to_t61.3 -MLINKS+= ldap_charset.3 ldap_enable_translation.3 -MLINKS+= ldap_charset.3 ldap_set_string_translators.3 -MLINKS+= ldap_charset.3 ldap_t61_to_8859.3 -MLINKS+= ldap_charset.3 ldap_translate_from_t61.3 -MLINKS+= ldap_charset.3 ldap_translate_to_t61.3 -MLINKS+= ldap_compare.3 ldap_compare_ext.3 -MLINKS+= ldap_compare.3 ldap_compare_ext_s.3 -MLINKS+= ldap_compare.3 ldap_compare_s.3 -MLINKS+= ldap_delete.3 ldap_delete_ext.3 -MLINKS+= ldap_delete.3 ldap_delete_ext_s.3 -MLINKS+= ldap_delete.3 ldap_delete_s.3 -MLINKS+= ldap_disptmpl.3 ldap_first_disptmpl.3 -MLINKS+= ldap_disptmpl.3 ldap_first_tmplcol.3 -MLINKS+= ldap_disptmpl.3 ldap_first_tmplrow.3 -MLINKS+= ldap_disptmpl.3 ldap_free_templates.3 -MLINKS+= ldap_disptmpl.3 ldap_init_templates.3 -MLINKS+= ldap_disptmpl.3 ldap_init_templates_buf.3 -MLINKS+= ldap_disptmpl.3 ldap_next_disptmpl.3 -MLINKS+= ldap_disptmpl.3 ldap_next_tmplcol.3 -MLINKS+= ldap_disptmpl.3 ldap_next_tmplrow.3 -MLINKS+= ldap_disptmpl.3 ldap_oc2template.3 -MLINKS+= ldap_disptmpl.3 ldap_tmplattrs.3 -MLINKS+= ldap_entry2text.3 ldap_entry2html.3 -MLINKS+= ldap_entry2text.3 ldap_entry2html_search.3 -MLINKS+= ldap_entry2text.3 ldap_entry2text_search.3 -MLINKS+= ldap_entry2text.3 ldap_vals2html.3 -MLINKS+= ldap_entry2text.3 ldap_vals2text.3 -MLINKS+= ldap_error.3 ld_errno.3 -MLINKS+= ldap_error.3 ldap_err2string.3 -MLINKS+= ldap_error.3 ldap_errlist.3 -MLINKS+= ldap_error.3 ldap_perror.3 -MLINKS+= ldap_error.3 ldap_result2error.3 -MLINKS+= ldap_first_attribute.3 ldap_next_attribute.3 -MLINKS+= ldap_first_entry.3 ldap_count_entries.3 -MLINKS+= ldap_first_entry.3 ldap_next_entry.3 -MLINKS+= ldap_friendly.3 ldap_free_friendlymap.3 -MLINKS+= ldap_friendly.3 ldap_friendly_name.3 -MLINKS+= ldap_get_dn.3 ldap_dn2ufn.3 -MLINKS+= ldap_get_dn.3 ldap_explode_dn.3 -MLINKS+= ldap_get_dn.3 ldap_explode_dns.3 -MLINKS+= ldap_get_dn.3 ldap_explode_rdn.3 -MLINKS+= ldap_get_dn.3 ldap_is_dns_dn.3 -MLINKS+= ldap_get_values.3 ldap_count_values.3 -MLINKS+= ldap_get_values.3 ldap_count_values_len.3 -MLINKS+= ldap_get_values.3 ldap_get_values_len.3 -MLINKS+= ldap_get_values.3 ldap_value_free.3 -MLINKS+= ldap_get_values.3 ldap_value_free_len.3 -MLINKS+= ldap_getfilter.3 ldap_build_filter.3 -MLINKS+= ldap_getfilter.3 ldap_getfilter_free.3 -MLINKS+= ldap_getfilter.3 ldap_getfirstfilter.3 -MLINKS+= ldap_getfilter.3 ldap_getnextfilter.3 -MLINKS+= ldap_getfilter.3 ldap_init_getfilter.3 -MLINKS+= ldap_getfilter.3 ldap_init_getfilter_buf.3 -MLINKS+= ldap_getfilter.3 ldap_setfilteraffixes.3 -MLINKS+= ldap_modify.3 ldap_modify_ext.3 -MLINKS+= ldap_modify.3 ldap_modify_ext_s.3 -MLINKS+= ldap_modify.3 ldap_modify_s.3 -MLINKS+= ldap_modify.3 ldap_mods_free.3 -MLINKS+= ldap_modrdn.3 ldap_modrdn2.3 -MLINKS+= ldap_modrdn.3 ldap_modrdn2_s.3 -MLINKS+= ldap_modrdn.3 ldap_modrdn_s.3 -MLINKS+= ldap_open.3 ldap_init.3 -MLINKS+= ldap_result.3 ldap_msgfree.3 -MLINKS+= ldap_result.3 ldap_msgid.3 -MLINKS+= ldap_result.3 ldap_msgtype.3 -MLINKS+= ldap_schema.3 ldap_attributetype2name.3 -MLINKS+= ldap_schema.3 ldap_attributetype2str.3 -MLINKS+= ldap_schema.3 ldap_attributetype_free.3 -MLINKS+= ldap_schema.3 ldap_matchingrule2name.3 -MLINKS+= ldap_schema.3 ldap_matchingrule2str.3 -MLINKS+= ldap_schema.3 ldap_matchingrule_free.3 -MLINKS+= ldap_schema.3 ldap_objectclass2name.3 -MLINKS+= ldap_schema.3 ldap_objectclass2str.3 -MLINKS+= ldap_schema.3 ldap_objectclass_free.3 -MLINKS+= ldap_schema.3 ldap_scherr2str.3 -MLINKS+= ldap_schema.3 ldap_str2attributetype.3 -MLINKS+= ldap_schema.3 ldap_str2matchingrule.3 -MLINKS+= ldap_schema.3 ldap_str2objectclass.3 -MLINKS+= ldap_schema.3 ldap_str2syntax.3 -MLINKS+= ldap_schema.3 ldap_syntax2name.3 -MLINKS+= ldap_schema.3 ldap_syntax2str.3 -MLINKS+= ldap_schema.3 ldap_syntax_free.3 -MLINKS+= ldap_search.3 ldap_search_ext.3 -MLINKS+= ldap_search.3 ldap_search_ext_s.3 -MLINKS+= ldap_search.3 ldap_search_s.3 -MLINKS+= ldap_search.3 ldap_search_st.3 -MLINKS+= ldap_searchprefs.3 ldap_first_searchobj.3 -MLINKS+= ldap_searchprefs.3 ldap_free_searchprefs.3 -MLINKS+= ldap_searchprefs.3 ldap_init_searchprefs.3 -MLINKS+= ldap_searchprefs.3 ldap_init_searchprefs_buf.3 -MLINKS+= ldap_searchprefs.3 ldap_next_searchobj.3 -MLINKS+= ldap_sort.3 ldap_sort_entries.3 -MLINKS+= ldap_sort.3 ldap_sort_strcasecmp.3 -MLINKS+= ldap_sort.3 ldap_sort_values.3 -MLINKS+= ldap_ufn.3 ldap_ufn_search_c.3 -MLINKS+= ldap_ufn.3 ldap_ufn_search_ct.3 -MLINKS+= ldap_ufn.3 ldap_ufn_search_s.3 -MLINKS+= ldap_ufn.3 ldap_ufn_setfilter.3 -MLINKS+= ldap_ufn.3 ldap_ufn_setprefix.3 -MLINKS+= ldap_ufn.3 ldap_ufn_timeout.3 -MLINKS+= ldap_url.3 ldap_free_urldesc.3 -MLINKS+= ldap_url.3 ldap_is_ldap_url.3 -MLINKS+= ldap_url.3 ldap_url_parse.3 -MLINKS+= ldap_url.3 ldap_url_search.3 -MLINKS+= ldap_url.3 ldap_url_search_s.3 -MLINKS+= ldap_url.3 ldap_url_search_st.3 -MLINKS+= ldapmodify.1 ldapadd.1 -MLINKS+= ldif2ldbm.8 ldif2id2children.8 -MLINKS+= ldif2ldbm.8 ldif2id2entry.8 -MLINKS+= ldif2ldbm.8 ldif2index.8 -MLINKS+= mail500.8 fax500.8 diff --git a/net/openldap21/files/patch-clients_ud_Makefile.in b/net/openldap21/files/patch-clients_ud_Makefile.in deleted file mode 100644 index 18f342c29a53..000000000000 --- a/net/openldap21/files/patch-clients_ud_Makefile.in +++ /dev/null @@ -1,8 +0,0 @@ ---- clients/ud/Makefile.in.orig Wed Jan 13 20:02:11 1999 -+++ clients/ud/Makefile.in Wed Jul 26 14:24:14 2000 -@@ -26,4 +26,4 @@ - install-local: FORCE - -$(MKDIR) $(bindir) - -mv -f $(bindir)/ud $(bindir)/ud- -- $(LTINSTALL) $(INSTALLFLAGS) -m 775 ud $(bindir) -+ $(LTINSTALL) $(INSTALLFLAGS) -m 755 ud $(bindir) diff --git a/net/openldap21/files/patch-servers_slapd_schema b/net/openldap21/files/patch-servers_slapd_schema deleted file mode 100644 index 31969e8bb621..000000000000 --- a/net/openldap21/files/patch-servers_slapd_schema +++ /dev/null @@ -1,20 +0,0 @@ ---- servers/slapd/schema/krb5-kdc.schema.orig Tue Sep 5 13:28:34 2000 -+++ servers/slapd/schema/krb5-kdc.schema Mon Oct 30 13:09:19 2000 -@@ -96,7 +96,7 @@ - attributetype ( 1.3.6.1.4.1.5322.10.1.10 - NAME 'krb5Key' - DESC 'Encoded ASN1 Key as an octet string' -- SYNTAX 1.3.6.1.4.1.1466.115.121.1.5 ) -+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.40 ) - - attributetype ( 1.3.6.1.4.1.5322.10.1.11 - NAME 'krb5PrincipalRealm' -@@ -112,7 +112,7 @@ - - objectclass ( 1.3.6.1.4.1.5322.10.2.1 - NAME 'krb5Principal' -- SUP top -+ SUP person - AUXILIARY - MUST ( krb5PrincipalName ) - MAY ( cn $ krb5PrincipalRealm ) ) diff --git a/net/openldap21/files/slapd.sh b/net/openldap21/files/slapd.sh deleted file mode 100644 index 1704074b7968..000000000000 --- a/net/openldap21/files/slapd.sh +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ - -slapd=@@PREFIX@@/libexec/slapd -pidfile=/var/run/slapd.pid - -case "$1" in -start) - if [ -x $slapd ]; then - echo -n ' slapd' - $slapd - fi - ;; -stop) - if [ -f $pidfile ]; then - kill `cat $pidfile` - telnet localhost ldap </dev/null >/dev/null 2>&1 - echo -n ' slapd' - rm $pidfile - else - echo ' slapd: not running' - fi - ;; -*) - echo "Usage: `basename $0` {start|stop}" >&2 - exit 64 - ;; -esac - -exit 0 diff --git a/net/openldap21/pkg-comment b/net/openldap21/pkg-comment deleted file mode 100644 index 8c499c3923cf..000000000000 --- a/net/openldap21/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Open source LDAP client and server software diff --git a/net/openldap21/pkg-descr b/net/openldap21/pkg-descr deleted file mode 100644 index aec3ae0f7cf4..000000000000 --- a/net/openldap21/pkg-descr +++ /dev/null @@ -1,12 +0,0 @@ -OpenLDAP is a suite of Lightweight Directory Access Protocol (LDAP) servers, -clients, utilities and development tools. LDAP is an Internet standard -directory service protocol that can be used stand-alone, or as a front end -to an X.500 directory. LDAP is defined by RFCs 1777 through 1779. - -OpenLDAP is derived from the University of Michigan LDAP release 3.3 and is -distributed under an open source license. - -WWW: http://www.openldap.org/ - -Lachlan O'Dea -ulmo@earthling.net diff --git a/net/openldap21/pkg-message b/net/openldap21/pkg-message deleted file mode 100644 index 047bb0c9d5b4..000000000000 --- a/net/openldap21/pkg-message +++ /dev/null @@ -1,7 +0,0 @@ -************************************************************ -If you are upgrading an older (1.85) database, be sure to -convert the *.dbb files, e.g: - - mv file.dbb file.old - db_dump185 file.old | db_load file.dbb -************************************************************ diff --git a/net/openldap21/pkg-plist b/net/openldap21/pkg-plist deleted file mode 100644 index 778553d9d548..000000000000 --- a/net/openldap21/pkg-plist +++ /dev/null @@ -1,91 +0,0 @@ -bin/ldapadd -bin/ldapdelete -bin/ldapmodify -bin/ldapmodrdn -bin/ldappasswd -bin/ldapsearch -bin/ud -@unexec if cmp -s %D/etc/openldap/ldap.conf %D/etc/openldap/ldap.conf.default; then rm -f %D/etc/openldap/ldap.conf; fi -etc/openldap/ldap.conf.default -@exec [ -f %B/ldap.conf ] || cp %B/%f %B/ldap.conf -@unexec if cmp -s %D/etc/openldap/ldapfilter.conf %D/etc/openldap/ldapfilter.conf.default; then rm -f %D/etc/openldap/ldapfilter.conf; fi -etc/openldap/ldapfilter.conf.default -@exec [ -f %B/ldapfilter.conf ] || cp %B/%f %B/ldapfilter.conf -@unexec if cmp -s %D/etc/openldap/ldapsearchprefs.conf %D/etc/openldap/ldapsearchprefs.conf.default; then rm -f %D/etc/openldap/ldapsearchprefs.conf; fi -etc/openldap/ldapsearchprefs.conf.default -@exec [ -f %B/ldapsearchprefs.conf ] || cp %B/%f %B/ldapsearchprefs.conf -@unexec if cmp -s %D/etc/openldap/ldaptemplates.conf %D/etc/openldap/ldaptemplates.conf.default; then rm -f %D/etc/openldap/ldaptemplates.conf; fi -etc/openldap/ldaptemplates.conf.default -@exec [ -f %B/ldaptemplates.conf ] || cp %B/%f %B/ldaptemplates.conf -@unexec if cmp -s %D/etc/openldap/schema/corba.schema %D/etc/openldap/schema/corba.schema.default; then rm -f %D/etc/openldap/schema/corba.schema; fi -etc/openldap/schema/corba.schema.default -@exec [ -f %B/corba.schema ] || cp %B/%f %B/corba.schema -@unexec if cmp -s %D/etc/openldap/schema/core.schema %D/etc/openldap/schema/core.schema.default; then rm -f %D/etc/openldap/schema/core.schema; fi -etc/openldap/schema/core.schema.default -@exec [ -f %B/core.schema ] || cp %B/%f %B/core.schema -@unexec if cmp -s %D/etc/openldap/schema/cosine.schema %D/etc/openldap/schema/cosine.schema.default; then rm -f %D/etc/openldap/schema/cosine.schema; fi -etc/openldap/schema/cosine.schema.default -@exec [ -f %B/cosine.schema ] || cp %B/%f %B/cosine.schema -@unexec if cmp -s %D/etc/openldap/schema/inetorgperson.schema %D/etc/openldap/schema/inetorgperson.schema.default; then rm -f %D/etc/openldap/schema/inetorgperson.schema; fi -etc/openldap/schema/inetorgperson.schema.default -@exec [ -f %B/inetorgperson.schema ] || cp %B/%f %B/inetorgperson.schema -@unexec if cmp -s %D/etc/openldap/schema/java.schema %D/etc/openldap/schema/java.schema.default; then rm -f %D/etc/openldap/schema/java.schema; fi -etc/openldap/schema/java.schema.default -@exec [ -f %B/java.schema ] || cp %B/%f %B/java.schema -@unexec if cmp -s %D/etc/openldap/schema/krb5-kdc.schema %D/etc/openldap/schema/krb5-kdc.schema.default; then rm -f %D/etc/openldap/schema/krb5-kdc.schema; fi -etc/openldap/schema/krb5-kdc.schema.default -@exec [ -f %B/krb5-kdc.schema ] || cp %B/%f %B/krb5-kdc.schema -@unexec if cmp -s %D/etc/openldap/schema/misc.schema %D/etc/openldap/schema/misc.schema.default; then rm -f %D/etc/openldap/schema/misc.schema; fi -etc/openldap/schema/misc.schema.default -@exec [ -f %B/misc.schema ] || cp %B/%f %B/misc.schema -@unexec if cmp -s %D/etc/openldap/schema/nadf.schema %D/etc/openldap/schema/nadf.schema.default; then rm -f %D/etc/openldap/schema/nadf.schema; fi -etc/openldap/schema/nadf.schema.default -@exec [ -f %B/nadf.schema ] || cp %B/%f %B/nadf.schema -@unexec if cmp -s %D/etc/openldap/schema/nis.schema %D/etc/openldap/schema/nis.schema.default; then rm -f %D/etc/openldap/schema/nis.schema; fi -etc/openldap/schema/nis.schema.default -@exec [ -f %B/nis.schema ] || cp %B/%f %B/nis.schema -@unexec if cmp -s %D/etc/openldap/schema/openldap.schema %D/etc/openldap/schema/openldap.schema.default; then rm -f %D/etc/openldap/schema/openldap.schema; fi -etc/openldap/schema/openldap.schema.default -@exec [ -f %B/openldap.schema ] || cp %B/%f %B/openldap.schema -@unexec if cmp -s %D/etc/openldap/slapd.conf %D/etc/openldap/slapd.conf.default; then rm -f %D/etc/openldap/slapd.conf; fi -etc/openldap/slapd.conf.default -@exec [ -f %B/slapd.conf ] || cp %B/%f %B/slapd.conf -@unexec /bin/rmdir %D/etc/openldap/schema 2>/dev/null || true -@unexec /bin/rmdir %D/etc/openldap 2>/dev/null || true -etc/rc.d/slapd.sh.sample -include/disptmpl.h -include/lber.h -include/lber_types.h -include/ldap.h -include/ldap_cdefs.h -include/ldap_features.h -include/ldap_schema.h -include/srchpref.h -lib/liblber.a -lib/liblber.so -lib/liblber.so.2 -lib/libldap.a -lib/libldap.so -lib/libldap.so.2 -lib/libldap_r.a -lib/libldap_r.so -lib/libldap_r.so.2 -libexec/fax500 -libexec/go500 -libexec/go500gw -libexec/in.xfingerd -libexec/mail500 -libexec/maildap -libexec/rcpt500 -libexec/rp500 -libexec/slapd -libexec/slurpd -libexec/xrpcomp -sbin/slapadd -sbin/slapcat -sbin/slapindex -sbin/slappasswd -share/openldap/go500gw.help -share/openldap/ldapfriendly -share/openldap/rcpt500.help -@dirrm share/openldap diff --git a/net/openldap22-server/Makefile b/net/openldap22-server/Makefile deleted file mode 100644 index 42af69354389..000000000000 --- a/net/openldap22-server/Makefile +++ /dev/null @@ -1,104 +0,0 @@ -# New ports collection makefile for: OpenLDAP 2.x -# Date created: 20 Sep 1998 -# Whom: Lachlan O'Dea -# -# $FreeBSD$ -# - -PORTNAME= openldap -PORTVERSION= 2.0.14 -CATEGORIES= net databases -MASTER_SITES= ftp://ftp.OpenLDAP.org/pub/OpenLDAP/%SUBDIR%/ \ - ftp://ftp.net.lut.ac.uk/openldap/%SUBDIR%/ \ - ftp://sunsite.cnlab-switch.ch/mirror/OpenLDAP/%SUBDIR%/ \ - ftp://mirror.aarnet.edu.au/pub/OpenLDAP/%SUBDIR%/ \ - ftp://gd.tuwien.ac.at/infosys/network/OpenLDAP/%SUBDIR%/ \ - http://www.unibase.cz/ldapcz/Programy/Free/OpenLDAP/%SUBDIR%/ \ - ftp://ftp.ntua.gr/mirror/OpenLDAP/%SUBDIR%/ \ - ftp://ftp.loxinfo.co.th/pub/unix/LDAP/OpenLDAP/%SUBDIR%/ \ - ftp://ftp.zcu.cz/pub/network/openldap/%SUBDIR%/ -MASTER_SITE_SUBDIR= openldap-release -EXTRACT_SUFX= .tgz - -MAINTAINER= ports@FreeBSD.org - -LIB_DEPENDS= db3.2:${PORTSDIR}/databases/db3 - -USE_AUTOCONF= yes -USE_LIBTOOL= yes -USE_OPENSSL= yes - -CONFIGURE_ARGS= --localstatedir=/var/db \ - --with-threads \ - --enable-shared \ - --enable-dnssrv \ - --with-tls=openssl - -# Include tcp-wrapper support -.if exists(/usr/include/tcpd.h) -CONFIGURE_ARGS+= --enable-wrappers -.endif - -# math.h uses _REENTRANT and stdio.h uses _THREAD_SAFE, so define both. -CPPFLAGS+= -D_REENTRANT ${PTHREAD_CFLAGS} \ - -I${LOCALBASE}/include \ - -I${LOCALBASE}/include/db3 -LDFLAGS+= -L${LOCALBASE}/lib - -.if defined(WITH_SASL) -LIB_DEPENDS+= sasl.8:${PORTSDIR}/security/cyrus-sasl -CPPFLAGS+= -I${LOCALBASE}/include/sasl -.endif - -.if defined(WITH_ODBC) -LIB_DEPENDS+= iodbc.2:${PORTSDIR}/databases/libiodbc -CONFIGURE_ARGS+=--enable-sql -.endif - -CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" \ - LDFLAGS="${LDFLAGS}" - -INSTALLS_SHLIB= yes - -BINS= bin/ldapadd \ - bin/ldapdelete \ - bin/ldapmodify \ - bin/ldapmodrdn \ - bin/ldappasswd \ - bin/ldapsearch \ - bin/ud \ - libexec/fax500 \ - libexec/go500 \ - libexec/go500gw \ - libexec/in.xfingerd \ - libexec/mail500 \ - libexec/maildap \ - libexec/rcpt500 \ - libexec/rp500 \ - libexec/slapd \ - libexec/slurpd - -.include <bsd.port.pre.mk> -.include "${FILESDIR}/manpages" - -post-patch: - @${PERL} -pi.fbsd -e 's@pidfile\t\t%LOCALSTATEDIR%/slapd.pid@pidfile\t\t/var/run/slapd.pid@g; \ - s@argsfile\t%LOCALSTATEDIR%/slapd.args@argsfile\t/var/run/slapd.args@g' ${WRKSRC}/servers/slapd/slapd.conf - -post-configure: - @cd ${WRKSRC} ; ${PATCH} < ${FILESDIR}/libtool.diff - -pre-build: - @cd ${WRKSRC} ; ${MAKE} depend - -post-build: - @${SED} 's,@@PREFIX@@,${PREFIX},g' ${FILESDIR}/slapd.sh >${WRKDIR}/slapd.sh - -post-install: -.for f in ${BINS} - @strip ${PREFIX}/${f} -.endfor - @${INSTALL_SCRIPT} ${WRKDIR}/slapd.sh ${PREFIX}/etc/rc.d/slapd.sh.sample - @${CAT} ${PKGMESSAGE} - -.include <bsd.port.post.mk> diff --git a/net/openldap22-server/distinfo b/net/openldap22-server/distinfo deleted file mode 100644 index e839abb59db7..000000000000 --- a/net/openldap22-server/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (openldap-2.0.14.tgz) = d83ddb4b05b13eeb9eaa971427254659 diff --git a/net/openldap22-server/files/libtool.diff b/net/openldap22-server/files/libtool.diff deleted file mode 100644 index 0cf57bbee7ea..000000000000 --- a/net/openldap22-server/files/libtool.diff +++ /dev/null @@ -1,19 +0,0 @@ ---- libtool.orig Tue Oct 31 01:43:06 2000 -+++ libtool Tue Oct 31 01:44:42 2000 -@@ -448,6 +448,16 @@ - --mode) prevopt="--mode" prev=mode ;; - --mode=*) mode="$optarg" ;; - -+ --only-shared) -+ build_libtool_libs=yes -+ build_old_libs=no -+ ;; -+ -+ --only-static) -+ build_libtool_libs=no -+ build_old_libs=yes -+ ;; -+ - --quiet | --silent) - show=: - ;; diff --git a/net/openldap22-server/files/manpages b/net/openldap22-server/files/manpages deleted file mode 100644 index 1c39b81911fc..000000000000 --- a/net/openldap22-server/files/manpages +++ /dev/null @@ -1,219 +0,0 @@ -MAN1+= ldapdelete.1 -MAN1+= ldapmodify.1 -MAN1+= ldapmodrdn.1 -MAN1+= ldappasswd.1 -MAN1+= ldapsearch.1 -MAN1+= ud.1 -MAN3+= lber-decode.3 -MAN3+= lber-encode.3 -MAN3+= lber-memory.3 -MAN3+= lber-types.3 -MAN3+= ldap.3 -MAN3+= ldap_abandon.3 -MAN3+= ldap_add.3 -MAN3+= ldap_bind.3 -MAN3+= ldap_cache.3 -MAN3+= ldap_compare.3 -MAN3+= ldap_delete.3 -MAN3+= ldap_disptmpl.3 -MAN3+= ldap_entry2text.3 -MAN3+= ldap_error.3 -MAN3+= ldap_first_attribute.3 -MAN3+= ldap_first_entry.3 -MAN3+= ldap_friendly.3 -MAN3+= ldap_get_dn.3 -MAN3+= ldap_get_values.3 -MAN3+= ldap_getfilter.3 -MAN3+= ldap_modify.3 -MAN3+= ldap_modrdn.3 -MAN3+= ldap_open.3 -MAN3+= ldap_result.3 -MAN3+= ldap_schema.3 -MAN3+= ldap_search.3 -MAN3+= ldap_searchprefs.3 -MAN3+= ldap_sort.3 -MAN3+= ldap_ufn.3 -MAN3+= ldap_url.3 -MAN5+= ldap.conf.5 -MAN5+= ldapfilter.conf.5 -MAN5+= ldapfriendly.5 -MAN5+= ldapsearchprefs.conf.5 -MAN5+= ldaptemplates.conf.5 -MAN5+= ldif.5 -MAN5+= slapd.conf.5 -MAN5+= slapd.replog.5 -MAN5+= ud.conf.5 -MAN8+= go500.8 -MAN8+= go500gw.8 -MAN8+= in.xfingerd.8 -MAN8+= mail500.8 -MAN8+= rcpt500.8 -MAN8+= slapadd.8 -MAN8+= slapcat.8 -MAN8+= slapd.8 -MAN8+= slapindex.8 -MAN8+= slappasswd.8 -MAN8+= slurpd.8 -MLINKS+= lber-decode.3 ber_first_element.3 -MLINKS+= lber-decode.3 ber_get_bitstring.3 -MLINKS+= lber-decode.3 ber_get_boolean.3 -MLINKS+= lber-decode.3 ber_get_enum.3 -MLINKS+= lber-decode.3 ber_get_int.3 -MLINKS+= lber-decode.3 ber_get_next.3 -MLINKS+= lber-decode.3 ber_get_null.3 -MLINKS+= lber-decode.3 ber_get_stringa.3 -MLINKS+= lber-decode.3 ber_get_stringb.3 -MLINKS+= lber-decode.3 ber_next_element.3 -MLINKS+= lber-decode.3 ber_peek_tag.3 -MLINKS+= lber-decode.3 ber_scanf.3 -MLINKS+= lber-decode.3 ber_skip_tag.3 -MLINKS+= lber-encode.3 ber_alloc_t.3 -MLINKS+= lber-encode.3 ber_flush.3 -MLINKS+= lber-encode.3 ber_printf.3 -MLINKS+= lber-encode.3 ber_put_enum.3 -MLINKS+= lber-encode.3 ber_put_int.3 -MLINKS+= lber-encode.3 ber_put_null.3 -MLINKS+= lber-encode.3 ber_put_ostring.3 -MLINKS+= lber-encode.3 ber_put_seq.3 -MLINKS+= lber-encode.3 ber_put_set.3 -MLINKS+= lber-encode.3 ber_put_string.3 -MLINKS+= lber-decode.3 ber_start_set.3 -MLINKS+= ldap.3 cldap.3 -MLINKS+= ldap_add.3 ldap_add_s.3 -MLINKS+= ldap_bind.3 ldap_abandon_ext.3 -MLINKS+= ldap_bind.3 ldap_add_ext.3 -MLINKS+= ldap_bind.3 ldap_add_ext_s.3 -MLINKS+= ldap_bind.3 ldap_bind_s.3 -MLINKS+= ldap_bind.3 ldap_kerberos_bind1.3 -MLINKS+= ldap_bind.3 ldap_kerberos_bind1_s.3 -MLINKS+= ldap_bind.3 ldap_kerberos_bind2.3 -MLINKS+= ldap_bind.3 ldap_kerberos_bind2_s.3 -MLINKS+= ldap_bind.3 ldap_kerberos_bind_s.3 -MLINKS+= ldap_bind.3 ldap_sasl_bind.3 -MLINKS+= ldap_bind.3 ldap_sasl_bind_s.3 -MLINKS+= ldap_bind.3 ldap_set_rebind_proc.3 -MLINKS+= ldap_bind.3 ldap_simple_bind.3 -MLINKS+= ldap_bind.3 ldap_simple_bind_s.3 -MLINKS+= ldap_bind.3 ldap_unbind.3 -MLINKS+= ldap_bind.3 ldap_unbind_ext.3 -MLINKS+= ldap_bind.3 ldap_unbind_ext_s.3 -MLINKS+= ldap_bind.3 ldap_unbind_s.3 -MLINKS+= ldap_cache.3 ldap_destroy_cache.3 -MLINKS+= ldap_cache.3 ldap_disable_cache.3 -MLINKS+= ldap_cache.3 ldap_enable_cache.3 -MLINKS+= ldap_cache.3 ldap_flush_cache.3 -MLINKS+= ldap_cache.3 ldap_set_cache_options.3 -MLINKS+= ldap_cache.3 ldap_uncache_entry.3 -MLINKS+= ldap_cache.3 ldap_uncache_request.3 -MLINKS+= ldap_charset.3 ldap_8859_to_t61.3 -MLINKS+= ldap_charset.3 ldap_enable_translation.3 -MLINKS+= ldap_charset.3 ldap_set_string_translators.3 -MLINKS+= ldap_charset.3 ldap_t61_to_8859.3 -MLINKS+= ldap_charset.3 ldap_translate_from_t61.3 -MLINKS+= ldap_charset.3 ldap_translate_to_t61.3 -MLINKS+= ldap_compare.3 ldap_compare_ext.3 -MLINKS+= ldap_compare.3 ldap_compare_ext_s.3 -MLINKS+= ldap_compare.3 ldap_compare_s.3 -MLINKS+= ldap_delete.3 ldap_delete_ext.3 -MLINKS+= ldap_delete.3 ldap_delete_ext_s.3 -MLINKS+= ldap_delete.3 ldap_delete_s.3 -MLINKS+= ldap_disptmpl.3 ldap_first_disptmpl.3 -MLINKS+= ldap_disptmpl.3 ldap_first_tmplcol.3 -MLINKS+= ldap_disptmpl.3 ldap_first_tmplrow.3 -MLINKS+= ldap_disptmpl.3 ldap_free_templates.3 -MLINKS+= ldap_disptmpl.3 ldap_init_templates.3 -MLINKS+= ldap_disptmpl.3 ldap_init_templates_buf.3 -MLINKS+= ldap_disptmpl.3 ldap_next_disptmpl.3 -MLINKS+= ldap_disptmpl.3 ldap_next_tmplcol.3 -MLINKS+= ldap_disptmpl.3 ldap_next_tmplrow.3 -MLINKS+= ldap_disptmpl.3 ldap_oc2template.3 -MLINKS+= ldap_disptmpl.3 ldap_tmplattrs.3 -MLINKS+= ldap_entry2text.3 ldap_entry2html.3 -MLINKS+= ldap_entry2text.3 ldap_entry2html_search.3 -MLINKS+= ldap_entry2text.3 ldap_entry2text_search.3 -MLINKS+= ldap_entry2text.3 ldap_vals2html.3 -MLINKS+= ldap_entry2text.3 ldap_vals2text.3 -MLINKS+= ldap_error.3 ld_errno.3 -MLINKS+= ldap_error.3 ldap_err2string.3 -MLINKS+= ldap_error.3 ldap_errlist.3 -MLINKS+= ldap_error.3 ldap_perror.3 -MLINKS+= ldap_error.3 ldap_result2error.3 -MLINKS+= ldap_first_attribute.3 ldap_next_attribute.3 -MLINKS+= ldap_first_entry.3 ldap_count_entries.3 -MLINKS+= ldap_first_entry.3 ldap_next_entry.3 -MLINKS+= ldap_friendly.3 ldap_free_friendlymap.3 -MLINKS+= ldap_friendly.3 ldap_friendly_name.3 -MLINKS+= ldap_get_dn.3 ldap_dn2ufn.3 -MLINKS+= ldap_get_dn.3 ldap_explode_dn.3 -MLINKS+= ldap_get_dn.3 ldap_explode_dns.3 -MLINKS+= ldap_get_dn.3 ldap_explode_rdn.3 -MLINKS+= ldap_get_dn.3 ldap_is_dns_dn.3 -MLINKS+= ldap_get_values.3 ldap_count_values.3 -MLINKS+= ldap_get_values.3 ldap_count_values_len.3 -MLINKS+= ldap_get_values.3 ldap_get_values_len.3 -MLINKS+= ldap_get_values.3 ldap_value_free.3 -MLINKS+= ldap_get_values.3 ldap_value_free_len.3 -MLINKS+= ldap_getfilter.3 ldap_build_filter.3 -MLINKS+= ldap_getfilter.3 ldap_getfilter_free.3 -MLINKS+= ldap_getfilter.3 ldap_getfirstfilter.3 -MLINKS+= ldap_getfilter.3 ldap_getnextfilter.3 -MLINKS+= ldap_getfilter.3 ldap_init_getfilter.3 -MLINKS+= ldap_getfilter.3 ldap_init_getfilter_buf.3 -MLINKS+= ldap_getfilter.3 ldap_setfilteraffixes.3 -MLINKS+= ldap_modify.3 ldap_modify_ext.3 -MLINKS+= ldap_modify.3 ldap_modify_ext_s.3 -MLINKS+= ldap_modify.3 ldap_modify_s.3 -MLINKS+= ldap_modify.3 ldap_mods_free.3 -MLINKS+= ldap_modrdn.3 ldap_modrdn2.3 -MLINKS+= ldap_modrdn.3 ldap_modrdn2_s.3 -MLINKS+= ldap_modrdn.3 ldap_modrdn_s.3 -MLINKS+= ldap_open.3 ldap_init.3 -MLINKS+= ldap_result.3 ldap_msgfree.3 -MLINKS+= ldap_result.3 ldap_msgid.3 -MLINKS+= ldap_result.3 ldap_msgtype.3 -MLINKS+= ldap_schema.3 ldap_attributetype2name.3 -MLINKS+= ldap_schema.3 ldap_attributetype2str.3 -MLINKS+= ldap_schema.3 ldap_attributetype_free.3 -MLINKS+= ldap_schema.3 ldap_matchingrule2name.3 -MLINKS+= ldap_schema.3 ldap_matchingrule2str.3 -MLINKS+= ldap_schema.3 ldap_matchingrule_free.3 -MLINKS+= ldap_schema.3 ldap_objectclass2name.3 -MLINKS+= ldap_schema.3 ldap_objectclass2str.3 -MLINKS+= ldap_schema.3 ldap_objectclass_free.3 -MLINKS+= ldap_schema.3 ldap_scherr2str.3 -MLINKS+= ldap_schema.3 ldap_str2attributetype.3 -MLINKS+= ldap_schema.3 ldap_str2matchingrule.3 -MLINKS+= ldap_schema.3 ldap_str2objectclass.3 -MLINKS+= ldap_schema.3 ldap_str2syntax.3 -MLINKS+= ldap_schema.3 ldap_syntax2name.3 -MLINKS+= ldap_schema.3 ldap_syntax2str.3 -MLINKS+= ldap_schema.3 ldap_syntax_free.3 -MLINKS+= ldap_search.3 ldap_search_ext.3 -MLINKS+= ldap_search.3 ldap_search_ext_s.3 -MLINKS+= ldap_search.3 ldap_search_s.3 -MLINKS+= ldap_search.3 ldap_search_st.3 -MLINKS+= ldap_searchprefs.3 ldap_first_searchobj.3 -MLINKS+= ldap_searchprefs.3 ldap_free_searchprefs.3 -MLINKS+= ldap_searchprefs.3 ldap_init_searchprefs.3 -MLINKS+= ldap_searchprefs.3 ldap_init_searchprefs_buf.3 -MLINKS+= ldap_searchprefs.3 ldap_next_searchobj.3 -MLINKS+= ldap_sort.3 ldap_sort_entries.3 -MLINKS+= ldap_sort.3 ldap_sort_strcasecmp.3 -MLINKS+= ldap_sort.3 ldap_sort_values.3 -MLINKS+= ldap_ufn.3 ldap_ufn_search_c.3 -MLINKS+= ldap_ufn.3 ldap_ufn_search_ct.3 -MLINKS+= ldap_ufn.3 ldap_ufn_search_s.3 -MLINKS+= ldap_ufn.3 ldap_ufn_setfilter.3 -MLINKS+= ldap_ufn.3 ldap_ufn_setprefix.3 -MLINKS+= ldap_ufn.3 ldap_ufn_timeout.3 -MLINKS+= ldap_url.3 ldap_free_urldesc.3 -MLINKS+= ldap_url.3 ldap_is_ldap_url.3 -MLINKS+= ldap_url.3 ldap_url_parse.3 -MLINKS+= ldap_url.3 ldap_url_search.3 -MLINKS+= ldap_url.3 ldap_url_search_s.3 -MLINKS+= ldap_url.3 ldap_url_search_st.3 -MLINKS+= ldapmodify.1 ldapadd.1 -MLINKS+= ldif2ldbm.8 ldif2id2children.8 -MLINKS+= ldif2ldbm.8 ldif2id2entry.8 -MLINKS+= ldif2ldbm.8 ldif2index.8 -MLINKS+= mail500.8 fax500.8 diff --git a/net/openldap22-server/files/patch-clients_ud_Makefile.in b/net/openldap22-server/files/patch-clients_ud_Makefile.in deleted file mode 100644 index 18f342c29a53..000000000000 --- a/net/openldap22-server/files/patch-clients_ud_Makefile.in +++ /dev/null @@ -1,8 +0,0 @@ ---- clients/ud/Makefile.in.orig Wed Jan 13 20:02:11 1999 -+++ clients/ud/Makefile.in Wed Jul 26 14:24:14 2000 -@@ -26,4 +26,4 @@ - install-local: FORCE - -$(MKDIR) $(bindir) - -mv -f $(bindir)/ud $(bindir)/ud- -- $(LTINSTALL) $(INSTALLFLAGS) -m 775 ud $(bindir) -+ $(LTINSTALL) $(INSTALLFLAGS) -m 755 ud $(bindir) diff --git a/net/openldap22-server/files/patch-servers_slapd_schema b/net/openldap22-server/files/patch-servers_slapd_schema deleted file mode 100644 index 31969e8bb621..000000000000 --- a/net/openldap22-server/files/patch-servers_slapd_schema +++ /dev/null @@ -1,20 +0,0 @@ ---- servers/slapd/schema/krb5-kdc.schema.orig Tue Sep 5 13:28:34 2000 -+++ servers/slapd/schema/krb5-kdc.schema Mon Oct 30 13:09:19 2000 -@@ -96,7 +96,7 @@ - attributetype ( 1.3.6.1.4.1.5322.10.1.10 - NAME 'krb5Key' - DESC 'Encoded ASN1 Key as an octet string' -- SYNTAX 1.3.6.1.4.1.1466.115.121.1.5 ) -+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.40 ) - - attributetype ( 1.3.6.1.4.1.5322.10.1.11 - NAME 'krb5PrincipalRealm' -@@ -112,7 +112,7 @@ - - objectclass ( 1.3.6.1.4.1.5322.10.2.1 - NAME 'krb5Principal' -- SUP top -+ SUP person - AUXILIARY - MUST ( krb5PrincipalName ) - MAY ( cn $ krb5PrincipalRealm ) ) diff --git a/net/openldap22-server/files/slapd.sh b/net/openldap22-server/files/slapd.sh deleted file mode 100644 index 1704074b7968..000000000000 --- a/net/openldap22-server/files/slapd.sh +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ - -slapd=@@PREFIX@@/libexec/slapd -pidfile=/var/run/slapd.pid - -case "$1" in -start) - if [ -x $slapd ]; then - echo -n ' slapd' - $slapd - fi - ;; -stop) - if [ -f $pidfile ]; then - kill `cat $pidfile` - telnet localhost ldap </dev/null >/dev/null 2>&1 - echo -n ' slapd' - rm $pidfile - else - echo ' slapd: not running' - fi - ;; -*) - echo "Usage: `basename $0` {start|stop}" >&2 - exit 64 - ;; -esac - -exit 0 diff --git a/net/openldap22-server/pkg-comment b/net/openldap22-server/pkg-comment deleted file mode 100644 index 8c499c3923cf..000000000000 --- a/net/openldap22-server/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Open source LDAP client and server software diff --git a/net/openldap22-server/pkg-descr b/net/openldap22-server/pkg-descr deleted file mode 100644 index aec3ae0f7cf4..000000000000 --- a/net/openldap22-server/pkg-descr +++ /dev/null @@ -1,12 +0,0 @@ -OpenLDAP is a suite of Lightweight Directory Access Protocol (LDAP) servers, -clients, utilities and development tools. LDAP is an Internet standard -directory service protocol that can be used stand-alone, or as a front end -to an X.500 directory. LDAP is defined by RFCs 1777 through 1779. - -OpenLDAP is derived from the University of Michigan LDAP release 3.3 and is -distributed under an open source license. - -WWW: http://www.openldap.org/ - -Lachlan O'Dea -ulmo@earthling.net diff --git a/net/openldap22-server/pkg-message b/net/openldap22-server/pkg-message deleted file mode 100644 index 047bb0c9d5b4..000000000000 --- a/net/openldap22-server/pkg-message +++ /dev/null @@ -1,7 +0,0 @@ -************************************************************ -If you are upgrading an older (1.85) database, be sure to -convert the *.dbb files, e.g: - - mv file.dbb file.old - db_dump185 file.old | db_load file.dbb -************************************************************ diff --git a/net/openldap22-server/pkg-plist b/net/openldap22-server/pkg-plist deleted file mode 100644 index 778553d9d548..000000000000 --- a/net/openldap22-server/pkg-plist +++ /dev/null @@ -1,91 +0,0 @@ -bin/ldapadd -bin/ldapdelete -bin/ldapmodify -bin/ldapmodrdn -bin/ldappasswd -bin/ldapsearch -bin/ud -@unexec if cmp -s %D/etc/openldap/ldap.conf %D/etc/openldap/ldap.conf.default; then rm -f %D/etc/openldap/ldap.conf; fi -etc/openldap/ldap.conf.default -@exec [ -f %B/ldap.conf ] || cp %B/%f %B/ldap.conf -@unexec if cmp -s %D/etc/openldap/ldapfilter.conf %D/etc/openldap/ldapfilter.conf.default; then rm -f %D/etc/openldap/ldapfilter.conf; fi -etc/openldap/ldapfilter.conf.default -@exec [ -f %B/ldapfilter.conf ] || cp %B/%f %B/ldapfilter.conf -@unexec if cmp -s %D/etc/openldap/ldapsearchprefs.conf %D/etc/openldap/ldapsearchprefs.conf.default; then rm -f %D/etc/openldap/ldapsearchprefs.conf; fi -etc/openldap/ldapsearchprefs.conf.default -@exec [ -f %B/ldapsearchprefs.conf ] || cp %B/%f %B/ldapsearchprefs.conf -@unexec if cmp -s %D/etc/openldap/ldaptemplates.conf %D/etc/openldap/ldaptemplates.conf.default; then rm -f %D/etc/openldap/ldaptemplates.conf; fi -etc/openldap/ldaptemplates.conf.default -@exec [ -f %B/ldaptemplates.conf ] || cp %B/%f %B/ldaptemplates.conf -@unexec if cmp -s %D/etc/openldap/schema/corba.schema %D/etc/openldap/schema/corba.schema.default; then rm -f %D/etc/openldap/schema/corba.schema; fi -etc/openldap/schema/corba.schema.default -@exec [ -f %B/corba.schema ] || cp %B/%f %B/corba.schema -@unexec if cmp -s %D/etc/openldap/schema/core.schema %D/etc/openldap/schema/core.schema.default; then rm -f %D/etc/openldap/schema/core.schema; fi -etc/openldap/schema/core.schema.default -@exec [ -f %B/core.schema ] || cp %B/%f %B/core.schema -@unexec if cmp -s %D/etc/openldap/schema/cosine.schema %D/etc/openldap/schema/cosine.schema.default; then rm -f %D/etc/openldap/schema/cosine.schema; fi -etc/openldap/schema/cosine.schema.default -@exec [ -f %B/cosine.schema ] || cp %B/%f %B/cosine.schema -@unexec if cmp -s %D/etc/openldap/schema/inetorgperson.schema %D/etc/openldap/schema/inetorgperson.schema.default; then rm -f %D/etc/openldap/schema/inetorgperson.schema; fi -etc/openldap/schema/inetorgperson.schema.default -@exec [ -f %B/inetorgperson.schema ] || cp %B/%f %B/inetorgperson.schema -@unexec if cmp -s %D/etc/openldap/schema/java.schema %D/etc/openldap/schema/java.schema.default; then rm -f %D/etc/openldap/schema/java.schema; fi -etc/openldap/schema/java.schema.default -@exec [ -f %B/java.schema ] || cp %B/%f %B/java.schema -@unexec if cmp -s %D/etc/openldap/schema/krb5-kdc.schema %D/etc/openldap/schema/krb5-kdc.schema.default; then rm -f %D/etc/openldap/schema/krb5-kdc.schema; fi -etc/openldap/schema/krb5-kdc.schema.default -@exec [ -f %B/krb5-kdc.schema ] || cp %B/%f %B/krb5-kdc.schema -@unexec if cmp -s %D/etc/openldap/schema/misc.schema %D/etc/openldap/schema/misc.schema.default; then rm -f %D/etc/openldap/schema/misc.schema; fi -etc/openldap/schema/misc.schema.default -@exec [ -f %B/misc.schema ] || cp %B/%f %B/misc.schema -@unexec if cmp -s %D/etc/openldap/schema/nadf.schema %D/etc/openldap/schema/nadf.schema.default; then rm -f %D/etc/openldap/schema/nadf.schema; fi -etc/openldap/schema/nadf.schema.default -@exec [ -f %B/nadf.schema ] || cp %B/%f %B/nadf.schema -@unexec if cmp -s %D/etc/openldap/schema/nis.schema %D/etc/openldap/schema/nis.schema.default; then rm -f %D/etc/openldap/schema/nis.schema; fi -etc/openldap/schema/nis.schema.default -@exec [ -f %B/nis.schema ] || cp %B/%f %B/nis.schema -@unexec if cmp -s %D/etc/openldap/schema/openldap.schema %D/etc/openldap/schema/openldap.schema.default; then rm -f %D/etc/openldap/schema/openldap.schema; fi -etc/openldap/schema/openldap.schema.default -@exec [ -f %B/openldap.schema ] || cp %B/%f %B/openldap.schema -@unexec if cmp -s %D/etc/openldap/slapd.conf %D/etc/openldap/slapd.conf.default; then rm -f %D/etc/openldap/slapd.conf; fi -etc/openldap/slapd.conf.default -@exec [ -f %B/slapd.conf ] || cp %B/%f %B/slapd.conf -@unexec /bin/rmdir %D/etc/openldap/schema 2>/dev/null || true -@unexec /bin/rmdir %D/etc/openldap 2>/dev/null || true -etc/rc.d/slapd.sh.sample -include/disptmpl.h -include/lber.h -include/lber_types.h -include/ldap.h -include/ldap_cdefs.h -include/ldap_features.h -include/ldap_schema.h -include/srchpref.h -lib/liblber.a -lib/liblber.so -lib/liblber.so.2 -lib/libldap.a -lib/libldap.so -lib/libldap.so.2 -lib/libldap_r.a -lib/libldap_r.so -lib/libldap_r.so.2 -libexec/fax500 -libexec/go500 -libexec/go500gw -libexec/in.xfingerd -libexec/mail500 -libexec/maildap -libexec/rcpt500 -libexec/rp500 -libexec/slapd -libexec/slurpd -libexec/xrpcomp -sbin/slapadd -sbin/slapcat -sbin/slapindex -sbin/slappasswd -share/openldap/go500gw.help -share/openldap/ldapfriendly -share/openldap/rcpt500.help -@dirrm share/openldap diff --git a/net/openldap22/Makefile b/net/openldap22/Makefile deleted file mode 100644 index 42af69354389..000000000000 --- a/net/openldap22/Makefile +++ /dev/null @@ -1,104 +0,0 @@ -# New ports collection makefile for: OpenLDAP 2.x -# Date created: 20 Sep 1998 -# Whom: Lachlan O'Dea -# -# $FreeBSD$ -# - -PORTNAME= openldap -PORTVERSION= 2.0.14 -CATEGORIES= net databases -MASTER_SITES= ftp://ftp.OpenLDAP.org/pub/OpenLDAP/%SUBDIR%/ \ - ftp://ftp.net.lut.ac.uk/openldap/%SUBDIR%/ \ - ftp://sunsite.cnlab-switch.ch/mirror/OpenLDAP/%SUBDIR%/ \ - ftp://mirror.aarnet.edu.au/pub/OpenLDAP/%SUBDIR%/ \ - ftp://gd.tuwien.ac.at/infosys/network/OpenLDAP/%SUBDIR%/ \ - http://www.unibase.cz/ldapcz/Programy/Free/OpenLDAP/%SUBDIR%/ \ - ftp://ftp.ntua.gr/mirror/OpenLDAP/%SUBDIR%/ \ - ftp://ftp.loxinfo.co.th/pub/unix/LDAP/OpenLDAP/%SUBDIR%/ \ - ftp://ftp.zcu.cz/pub/network/openldap/%SUBDIR%/ -MASTER_SITE_SUBDIR= openldap-release -EXTRACT_SUFX= .tgz - -MAINTAINER= ports@FreeBSD.org - -LIB_DEPENDS= db3.2:${PORTSDIR}/databases/db3 - -USE_AUTOCONF= yes -USE_LIBTOOL= yes -USE_OPENSSL= yes - -CONFIGURE_ARGS= --localstatedir=/var/db \ - --with-threads \ - --enable-shared \ - --enable-dnssrv \ - --with-tls=openssl - -# Include tcp-wrapper support -.if exists(/usr/include/tcpd.h) -CONFIGURE_ARGS+= --enable-wrappers -.endif - -# math.h uses _REENTRANT and stdio.h uses _THREAD_SAFE, so define both. -CPPFLAGS+= -D_REENTRANT ${PTHREAD_CFLAGS} \ - -I${LOCALBASE}/include \ - -I${LOCALBASE}/include/db3 -LDFLAGS+= -L${LOCALBASE}/lib - -.if defined(WITH_SASL) -LIB_DEPENDS+= sasl.8:${PORTSDIR}/security/cyrus-sasl -CPPFLAGS+= -I${LOCALBASE}/include/sasl -.endif - -.if defined(WITH_ODBC) -LIB_DEPENDS+= iodbc.2:${PORTSDIR}/databases/libiodbc -CONFIGURE_ARGS+=--enable-sql -.endif - -CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" \ - LDFLAGS="${LDFLAGS}" - -INSTALLS_SHLIB= yes - -BINS= bin/ldapadd \ - bin/ldapdelete \ - bin/ldapmodify \ - bin/ldapmodrdn \ - bin/ldappasswd \ - bin/ldapsearch \ - bin/ud \ - libexec/fax500 \ - libexec/go500 \ - libexec/go500gw \ - libexec/in.xfingerd \ - libexec/mail500 \ - libexec/maildap \ - libexec/rcpt500 \ - libexec/rp500 \ - libexec/slapd \ - libexec/slurpd - -.include <bsd.port.pre.mk> -.include "${FILESDIR}/manpages" - -post-patch: - @${PERL} -pi.fbsd -e 's@pidfile\t\t%LOCALSTATEDIR%/slapd.pid@pidfile\t\t/var/run/slapd.pid@g; \ - s@argsfile\t%LOCALSTATEDIR%/slapd.args@argsfile\t/var/run/slapd.args@g' ${WRKSRC}/servers/slapd/slapd.conf - -post-configure: - @cd ${WRKSRC} ; ${PATCH} < ${FILESDIR}/libtool.diff - -pre-build: - @cd ${WRKSRC} ; ${MAKE} depend - -post-build: - @${SED} 's,@@PREFIX@@,${PREFIX},g' ${FILESDIR}/slapd.sh >${WRKDIR}/slapd.sh - -post-install: -.for f in ${BINS} - @strip ${PREFIX}/${f} -.endfor - @${INSTALL_SCRIPT} ${WRKDIR}/slapd.sh ${PREFIX}/etc/rc.d/slapd.sh.sample - @${CAT} ${PKGMESSAGE} - -.include <bsd.port.post.mk> diff --git a/net/openldap22/distinfo b/net/openldap22/distinfo deleted file mode 100644 index e839abb59db7..000000000000 --- a/net/openldap22/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (openldap-2.0.14.tgz) = d83ddb4b05b13eeb9eaa971427254659 diff --git a/net/openldap22/files/libtool.diff b/net/openldap22/files/libtool.diff deleted file mode 100644 index 0cf57bbee7ea..000000000000 --- a/net/openldap22/files/libtool.diff +++ /dev/null @@ -1,19 +0,0 @@ ---- libtool.orig Tue Oct 31 01:43:06 2000 -+++ libtool Tue Oct 31 01:44:42 2000 -@@ -448,6 +448,16 @@ - --mode) prevopt="--mode" prev=mode ;; - --mode=*) mode="$optarg" ;; - -+ --only-shared) -+ build_libtool_libs=yes -+ build_old_libs=no -+ ;; -+ -+ --only-static) -+ build_libtool_libs=no -+ build_old_libs=yes -+ ;; -+ - --quiet | --silent) - show=: - ;; diff --git a/net/openldap22/files/manpages b/net/openldap22/files/manpages deleted file mode 100644 index 1c39b81911fc..000000000000 --- a/net/openldap22/files/manpages +++ /dev/null @@ -1,219 +0,0 @@ -MAN1+= ldapdelete.1 -MAN1+= ldapmodify.1 -MAN1+= ldapmodrdn.1 -MAN1+= ldappasswd.1 -MAN1+= ldapsearch.1 -MAN1+= ud.1 -MAN3+= lber-decode.3 -MAN3+= lber-encode.3 -MAN3+= lber-memory.3 -MAN3+= lber-types.3 -MAN3+= ldap.3 -MAN3+= ldap_abandon.3 -MAN3+= ldap_add.3 -MAN3+= ldap_bind.3 -MAN3+= ldap_cache.3 -MAN3+= ldap_compare.3 -MAN3+= ldap_delete.3 -MAN3+= ldap_disptmpl.3 -MAN3+= ldap_entry2text.3 -MAN3+= ldap_error.3 -MAN3+= ldap_first_attribute.3 -MAN3+= ldap_first_entry.3 -MAN3+= ldap_friendly.3 -MAN3+= ldap_get_dn.3 -MAN3+= ldap_get_values.3 -MAN3+= ldap_getfilter.3 -MAN3+= ldap_modify.3 -MAN3+= ldap_modrdn.3 -MAN3+= ldap_open.3 -MAN3+= ldap_result.3 -MAN3+= ldap_schema.3 -MAN3+= ldap_search.3 -MAN3+= ldap_searchprefs.3 -MAN3+= ldap_sort.3 -MAN3+= ldap_ufn.3 -MAN3+= ldap_url.3 -MAN5+= ldap.conf.5 -MAN5+= ldapfilter.conf.5 -MAN5+= ldapfriendly.5 -MAN5+= ldapsearchprefs.conf.5 -MAN5+= ldaptemplates.conf.5 -MAN5+= ldif.5 -MAN5+= slapd.conf.5 -MAN5+= slapd.replog.5 -MAN5+= ud.conf.5 -MAN8+= go500.8 -MAN8+= go500gw.8 -MAN8+= in.xfingerd.8 -MAN8+= mail500.8 -MAN8+= rcpt500.8 -MAN8+= slapadd.8 -MAN8+= slapcat.8 -MAN8+= slapd.8 -MAN8+= slapindex.8 -MAN8+= slappasswd.8 -MAN8+= slurpd.8 -MLINKS+= lber-decode.3 ber_first_element.3 -MLINKS+= lber-decode.3 ber_get_bitstring.3 -MLINKS+= lber-decode.3 ber_get_boolean.3 -MLINKS+= lber-decode.3 ber_get_enum.3 -MLINKS+= lber-decode.3 ber_get_int.3 -MLINKS+= lber-decode.3 ber_get_next.3 -MLINKS+= lber-decode.3 ber_get_null.3 -MLINKS+= lber-decode.3 ber_get_stringa.3 -MLINKS+= lber-decode.3 ber_get_stringb.3 -MLINKS+= lber-decode.3 ber_next_element.3 -MLINKS+= lber-decode.3 ber_peek_tag.3 -MLINKS+= lber-decode.3 ber_scanf.3 -MLINKS+= lber-decode.3 ber_skip_tag.3 -MLINKS+= lber-encode.3 ber_alloc_t.3 -MLINKS+= lber-encode.3 ber_flush.3 -MLINKS+= lber-encode.3 ber_printf.3 -MLINKS+= lber-encode.3 ber_put_enum.3 -MLINKS+= lber-encode.3 ber_put_int.3 -MLINKS+= lber-encode.3 ber_put_null.3 -MLINKS+= lber-encode.3 ber_put_ostring.3 -MLINKS+= lber-encode.3 ber_put_seq.3 -MLINKS+= lber-encode.3 ber_put_set.3 -MLINKS+= lber-encode.3 ber_put_string.3 -MLINKS+= lber-decode.3 ber_start_set.3 -MLINKS+= ldap.3 cldap.3 -MLINKS+= ldap_add.3 ldap_add_s.3 -MLINKS+= ldap_bind.3 ldap_abandon_ext.3 -MLINKS+= ldap_bind.3 ldap_add_ext.3 -MLINKS+= ldap_bind.3 ldap_add_ext_s.3 -MLINKS+= ldap_bind.3 ldap_bind_s.3 -MLINKS+= ldap_bind.3 ldap_kerberos_bind1.3 -MLINKS+= ldap_bind.3 ldap_kerberos_bind1_s.3 -MLINKS+= ldap_bind.3 ldap_kerberos_bind2.3 -MLINKS+= ldap_bind.3 ldap_kerberos_bind2_s.3 -MLINKS+= ldap_bind.3 ldap_kerberos_bind_s.3 -MLINKS+= ldap_bind.3 ldap_sasl_bind.3 -MLINKS+= ldap_bind.3 ldap_sasl_bind_s.3 -MLINKS+= ldap_bind.3 ldap_set_rebind_proc.3 -MLINKS+= ldap_bind.3 ldap_simple_bind.3 -MLINKS+= ldap_bind.3 ldap_simple_bind_s.3 -MLINKS+= ldap_bind.3 ldap_unbind.3 -MLINKS+= ldap_bind.3 ldap_unbind_ext.3 -MLINKS+= ldap_bind.3 ldap_unbind_ext_s.3 -MLINKS+= ldap_bind.3 ldap_unbind_s.3 -MLINKS+= ldap_cache.3 ldap_destroy_cache.3 -MLINKS+= ldap_cache.3 ldap_disable_cache.3 -MLINKS+= ldap_cache.3 ldap_enable_cache.3 -MLINKS+= ldap_cache.3 ldap_flush_cache.3 -MLINKS+= ldap_cache.3 ldap_set_cache_options.3 -MLINKS+= ldap_cache.3 ldap_uncache_entry.3 -MLINKS+= ldap_cache.3 ldap_uncache_request.3 -MLINKS+= ldap_charset.3 ldap_8859_to_t61.3 -MLINKS+= ldap_charset.3 ldap_enable_translation.3 -MLINKS+= ldap_charset.3 ldap_set_string_translators.3 -MLINKS+= ldap_charset.3 ldap_t61_to_8859.3 -MLINKS+= ldap_charset.3 ldap_translate_from_t61.3 -MLINKS+= ldap_charset.3 ldap_translate_to_t61.3 -MLINKS+= ldap_compare.3 ldap_compare_ext.3 -MLINKS+= ldap_compare.3 ldap_compare_ext_s.3 -MLINKS+= ldap_compare.3 ldap_compare_s.3 -MLINKS+= ldap_delete.3 ldap_delete_ext.3 -MLINKS+= ldap_delete.3 ldap_delete_ext_s.3 -MLINKS+= ldap_delete.3 ldap_delete_s.3 -MLINKS+= ldap_disptmpl.3 ldap_first_disptmpl.3 -MLINKS+= ldap_disptmpl.3 ldap_first_tmplcol.3 -MLINKS+= ldap_disptmpl.3 ldap_first_tmplrow.3 -MLINKS+= ldap_disptmpl.3 ldap_free_templates.3 -MLINKS+= ldap_disptmpl.3 ldap_init_templates.3 -MLINKS+= ldap_disptmpl.3 ldap_init_templates_buf.3 -MLINKS+= ldap_disptmpl.3 ldap_next_disptmpl.3 -MLINKS+= ldap_disptmpl.3 ldap_next_tmplcol.3 -MLINKS+= ldap_disptmpl.3 ldap_next_tmplrow.3 -MLINKS+= ldap_disptmpl.3 ldap_oc2template.3 -MLINKS+= ldap_disptmpl.3 ldap_tmplattrs.3 -MLINKS+= ldap_entry2text.3 ldap_entry2html.3 -MLINKS+= ldap_entry2text.3 ldap_entry2html_search.3 -MLINKS+= ldap_entry2text.3 ldap_entry2text_search.3 -MLINKS+= ldap_entry2text.3 ldap_vals2html.3 -MLINKS+= ldap_entry2text.3 ldap_vals2text.3 -MLINKS+= ldap_error.3 ld_errno.3 -MLINKS+= ldap_error.3 ldap_err2string.3 -MLINKS+= ldap_error.3 ldap_errlist.3 -MLINKS+= ldap_error.3 ldap_perror.3 -MLINKS+= ldap_error.3 ldap_result2error.3 -MLINKS+= ldap_first_attribute.3 ldap_next_attribute.3 -MLINKS+= ldap_first_entry.3 ldap_count_entries.3 -MLINKS+= ldap_first_entry.3 ldap_next_entry.3 -MLINKS+= ldap_friendly.3 ldap_free_friendlymap.3 -MLINKS+= ldap_friendly.3 ldap_friendly_name.3 -MLINKS+= ldap_get_dn.3 ldap_dn2ufn.3 -MLINKS+= ldap_get_dn.3 ldap_explode_dn.3 -MLINKS+= ldap_get_dn.3 ldap_explode_dns.3 -MLINKS+= ldap_get_dn.3 ldap_explode_rdn.3 -MLINKS+= ldap_get_dn.3 ldap_is_dns_dn.3 -MLINKS+= ldap_get_values.3 ldap_count_values.3 -MLINKS+= ldap_get_values.3 ldap_count_values_len.3 -MLINKS+= ldap_get_values.3 ldap_get_values_len.3 -MLINKS+= ldap_get_values.3 ldap_value_free.3 -MLINKS+= ldap_get_values.3 ldap_value_free_len.3 -MLINKS+= ldap_getfilter.3 ldap_build_filter.3 -MLINKS+= ldap_getfilter.3 ldap_getfilter_free.3 -MLINKS+= ldap_getfilter.3 ldap_getfirstfilter.3 -MLINKS+= ldap_getfilter.3 ldap_getnextfilter.3 -MLINKS+= ldap_getfilter.3 ldap_init_getfilter.3 -MLINKS+= ldap_getfilter.3 ldap_init_getfilter_buf.3 -MLINKS+= ldap_getfilter.3 ldap_setfilteraffixes.3 -MLINKS+= ldap_modify.3 ldap_modify_ext.3 -MLINKS+= ldap_modify.3 ldap_modify_ext_s.3 -MLINKS+= ldap_modify.3 ldap_modify_s.3 -MLINKS+= ldap_modify.3 ldap_mods_free.3 -MLINKS+= ldap_modrdn.3 ldap_modrdn2.3 -MLINKS+= ldap_modrdn.3 ldap_modrdn2_s.3 -MLINKS+= ldap_modrdn.3 ldap_modrdn_s.3 -MLINKS+= ldap_open.3 ldap_init.3 -MLINKS+= ldap_result.3 ldap_msgfree.3 -MLINKS+= ldap_result.3 ldap_msgid.3 -MLINKS+= ldap_result.3 ldap_msgtype.3 -MLINKS+= ldap_schema.3 ldap_attributetype2name.3 -MLINKS+= ldap_schema.3 ldap_attributetype2str.3 -MLINKS+= ldap_schema.3 ldap_attributetype_free.3 -MLINKS+= ldap_schema.3 ldap_matchingrule2name.3 -MLINKS+= ldap_schema.3 ldap_matchingrule2str.3 -MLINKS+= ldap_schema.3 ldap_matchingrule_free.3 -MLINKS+= ldap_schema.3 ldap_objectclass2name.3 -MLINKS+= ldap_schema.3 ldap_objectclass2str.3 -MLINKS+= ldap_schema.3 ldap_objectclass_free.3 -MLINKS+= ldap_schema.3 ldap_scherr2str.3 -MLINKS+= ldap_schema.3 ldap_str2attributetype.3 -MLINKS+= ldap_schema.3 ldap_str2matchingrule.3 -MLINKS+= ldap_schema.3 ldap_str2objectclass.3 -MLINKS+= ldap_schema.3 ldap_str2syntax.3 -MLINKS+= ldap_schema.3 ldap_syntax2name.3 -MLINKS+= ldap_schema.3 ldap_syntax2str.3 -MLINKS+= ldap_schema.3 ldap_syntax_free.3 -MLINKS+= ldap_search.3 ldap_search_ext.3 -MLINKS+= ldap_search.3 ldap_search_ext_s.3 -MLINKS+= ldap_search.3 ldap_search_s.3 -MLINKS+= ldap_search.3 ldap_search_st.3 -MLINKS+= ldap_searchprefs.3 ldap_first_searchobj.3 -MLINKS+= ldap_searchprefs.3 ldap_free_searchprefs.3 -MLINKS+= ldap_searchprefs.3 ldap_init_searchprefs.3 -MLINKS+= ldap_searchprefs.3 ldap_init_searchprefs_buf.3 -MLINKS+= ldap_searchprefs.3 ldap_next_searchobj.3 -MLINKS+= ldap_sort.3 ldap_sort_entries.3 -MLINKS+= ldap_sort.3 ldap_sort_strcasecmp.3 -MLINKS+= ldap_sort.3 ldap_sort_values.3 -MLINKS+= ldap_ufn.3 ldap_ufn_search_c.3 -MLINKS+= ldap_ufn.3 ldap_ufn_search_ct.3 -MLINKS+= ldap_ufn.3 ldap_ufn_search_s.3 -MLINKS+= ldap_ufn.3 ldap_ufn_setfilter.3 -MLINKS+= ldap_ufn.3 ldap_ufn_setprefix.3 -MLINKS+= ldap_ufn.3 ldap_ufn_timeout.3 -MLINKS+= ldap_url.3 ldap_free_urldesc.3 -MLINKS+= ldap_url.3 ldap_is_ldap_url.3 -MLINKS+= ldap_url.3 ldap_url_parse.3 -MLINKS+= ldap_url.3 ldap_url_search.3 -MLINKS+= ldap_url.3 ldap_url_search_s.3 -MLINKS+= ldap_url.3 ldap_url_search_st.3 -MLINKS+= ldapmodify.1 ldapadd.1 -MLINKS+= ldif2ldbm.8 ldif2id2children.8 -MLINKS+= ldif2ldbm.8 ldif2id2entry.8 -MLINKS+= ldif2ldbm.8 ldif2index.8 -MLINKS+= mail500.8 fax500.8 diff --git a/net/openldap22/files/patch-clients_ud_Makefile.in b/net/openldap22/files/patch-clients_ud_Makefile.in deleted file mode 100644 index 18f342c29a53..000000000000 --- a/net/openldap22/files/patch-clients_ud_Makefile.in +++ /dev/null @@ -1,8 +0,0 @@ ---- clients/ud/Makefile.in.orig Wed Jan 13 20:02:11 1999 -+++ clients/ud/Makefile.in Wed Jul 26 14:24:14 2000 -@@ -26,4 +26,4 @@ - install-local: FORCE - -$(MKDIR) $(bindir) - -mv -f $(bindir)/ud $(bindir)/ud- -- $(LTINSTALL) $(INSTALLFLAGS) -m 775 ud $(bindir) -+ $(LTINSTALL) $(INSTALLFLAGS) -m 755 ud $(bindir) diff --git a/net/openldap22/files/patch-servers_slapd_schema b/net/openldap22/files/patch-servers_slapd_schema deleted file mode 100644 index 31969e8bb621..000000000000 --- a/net/openldap22/files/patch-servers_slapd_schema +++ /dev/null @@ -1,20 +0,0 @@ ---- servers/slapd/schema/krb5-kdc.schema.orig Tue Sep 5 13:28:34 2000 -+++ servers/slapd/schema/krb5-kdc.schema Mon Oct 30 13:09:19 2000 -@@ -96,7 +96,7 @@ - attributetype ( 1.3.6.1.4.1.5322.10.1.10 - NAME 'krb5Key' - DESC 'Encoded ASN1 Key as an octet string' -- SYNTAX 1.3.6.1.4.1.1466.115.121.1.5 ) -+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.40 ) - - attributetype ( 1.3.6.1.4.1.5322.10.1.11 - NAME 'krb5PrincipalRealm' -@@ -112,7 +112,7 @@ - - objectclass ( 1.3.6.1.4.1.5322.10.2.1 - NAME 'krb5Principal' -- SUP top -+ SUP person - AUXILIARY - MUST ( krb5PrincipalName ) - MAY ( cn $ krb5PrincipalRealm ) ) diff --git a/net/openldap22/files/slapd.sh b/net/openldap22/files/slapd.sh deleted file mode 100644 index 1704074b7968..000000000000 --- a/net/openldap22/files/slapd.sh +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ - -slapd=@@PREFIX@@/libexec/slapd -pidfile=/var/run/slapd.pid - -case "$1" in -start) - if [ -x $slapd ]; then - echo -n ' slapd' - $slapd - fi - ;; -stop) - if [ -f $pidfile ]; then - kill `cat $pidfile` - telnet localhost ldap </dev/null >/dev/null 2>&1 - echo -n ' slapd' - rm $pidfile - else - echo ' slapd: not running' - fi - ;; -*) - echo "Usage: `basename $0` {start|stop}" >&2 - exit 64 - ;; -esac - -exit 0 diff --git a/net/openldap22/pkg-comment b/net/openldap22/pkg-comment deleted file mode 100644 index 8c499c3923cf..000000000000 --- a/net/openldap22/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Open source LDAP client and server software diff --git a/net/openldap22/pkg-descr b/net/openldap22/pkg-descr deleted file mode 100644 index aec3ae0f7cf4..000000000000 --- a/net/openldap22/pkg-descr +++ /dev/null @@ -1,12 +0,0 @@ -OpenLDAP is a suite of Lightweight Directory Access Protocol (LDAP) servers, -clients, utilities and development tools. LDAP is an Internet standard -directory service protocol that can be used stand-alone, or as a front end -to an X.500 directory. LDAP is defined by RFCs 1777 through 1779. - -OpenLDAP is derived from the University of Michigan LDAP release 3.3 and is -distributed under an open source license. - -WWW: http://www.openldap.org/ - -Lachlan O'Dea -ulmo@earthling.net diff --git a/net/openldap22/pkg-message b/net/openldap22/pkg-message deleted file mode 100644 index 047bb0c9d5b4..000000000000 --- a/net/openldap22/pkg-message +++ /dev/null @@ -1,7 +0,0 @@ -************************************************************ -If you are upgrading an older (1.85) database, be sure to -convert the *.dbb files, e.g: - - mv file.dbb file.old - db_dump185 file.old | db_load file.dbb -************************************************************ diff --git a/net/openldap22/pkg-plist b/net/openldap22/pkg-plist deleted file mode 100644 index 778553d9d548..000000000000 --- a/net/openldap22/pkg-plist +++ /dev/null @@ -1,91 +0,0 @@ -bin/ldapadd -bin/ldapdelete -bin/ldapmodify -bin/ldapmodrdn -bin/ldappasswd -bin/ldapsearch -bin/ud -@unexec if cmp -s %D/etc/openldap/ldap.conf %D/etc/openldap/ldap.conf.default; then rm -f %D/etc/openldap/ldap.conf; fi -etc/openldap/ldap.conf.default -@exec [ -f %B/ldap.conf ] || cp %B/%f %B/ldap.conf -@unexec if cmp -s %D/etc/openldap/ldapfilter.conf %D/etc/openldap/ldapfilter.conf.default; then rm -f %D/etc/openldap/ldapfilter.conf; fi -etc/openldap/ldapfilter.conf.default -@exec [ -f %B/ldapfilter.conf ] || cp %B/%f %B/ldapfilter.conf -@unexec if cmp -s %D/etc/openldap/ldapsearchprefs.conf %D/etc/openldap/ldapsearchprefs.conf.default; then rm -f %D/etc/openldap/ldapsearchprefs.conf; fi -etc/openldap/ldapsearchprefs.conf.default -@exec [ -f %B/ldapsearchprefs.conf ] || cp %B/%f %B/ldapsearchprefs.conf -@unexec if cmp -s %D/etc/openldap/ldaptemplates.conf %D/etc/openldap/ldaptemplates.conf.default; then rm -f %D/etc/openldap/ldaptemplates.conf; fi -etc/openldap/ldaptemplates.conf.default -@exec [ -f %B/ldaptemplates.conf ] || cp %B/%f %B/ldaptemplates.conf -@unexec if cmp -s %D/etc/openldap/schema/corba.schema %D/etc/openldap/schema/corba.schema.default; then rm -f %D/etc/openldap/schema/corba.schema; fi -etc/openldap/schema/corba.schema.default -@exec [ -f %B/corba.schema ] || cp %B/%f %B/corba.schema -@unexec if cmp -s %D/etc/openldap/schema/core.schema %D/etc/openldap/schema/core.schema.default; then rm -f %D/etc/openldap/schema/core.schema; fi -etc/openldap/schema/core.schema.default -@exec [ -f %B/core.schema ] || cp %B/%f %B/core.schema -@unexec if cmp -s %D/etc/openldap/schema/cosine.schema %D/etc/openldap/schema/cosine.schema.default; then rm -f %D/etc/openldap/schema/cosine.schema; fi -etc/openldap/schema/cosine.schema.default -@exec [ -f %B/cosine.schema ] || cp %B/%f %B/cosine.schema -@unexec if cmp -s %D/etc/openldap/schema/inetorgperson.schema %D/etc/openldap/schema/inetorgperson.schema.default; then rm -f %D/etc/openldap/schema/inetorgperson.schema; fi -etc/openldap/schema/inetorgperson.schema.default -@exec [ -f %B/inetorgperson.schema ] || cp %B/%f %B/inetorgperson.schema -@unexec if cmp -s %D/etc/openldap/schema/java.schema %D/etc/openldap/schema/java.schema.default; then rm -f %D/etc/openldap/schema/java.schema; fi -etc/openldap/schema/java.schema.default -@exec [ -f %B/java.schema ] || cp %B/%f %B/java.schema -@unexec if cmp -s %D/etc/openldap/schema/krb5-kdc.schema %D/etc/openldap/schema/krb5-kdc.schema.default; then rm -f %D/etc/openldap/schema/krb5-kdc.schema; fi -etc/openldap/schema/krb5-kdc.schema.default -@exec [ -f %B/krb5-kdc.schema ] || cp %B/%f %B/krb5-kdc.schema -@unexec if cmp -s %D/etc/openldap/schema/misc.schema %D/etc/openldap/schema/misc.schema.default; then rm -f %D/etc/openldap/schema/misc.schema; fi -etc/openldap/schema/misc.schema.default -@exec [ -f %B/misc.schema ] || cp %B/%f %B/misc.schema -@unexec if cmp -s %D/etc/openldap/schema/nadf.schema %D/etc/openldap/schema/nadf.schema.default; then rm -f %D/etc/openldap/schema/nadf.schema; fi -etc/openldap/schema/nadf.schema.default -@exec [ -f %B/nadf.schema ] || cp %B/%f %B/nadf.schema -@unexec if cmp -s %D/etc/openldap/schema/nis.schema %D/etc/openldap/schema/nis.schema.default; then rm -f %D/etc/openldap/schema/nis.schema; fi -etc/openldap/schema/nis.schema.default -@exec [ -f %B/nis.schema ] || cp %B/%f %B/nis.schema -@unexec if cmp -s %D/etc/openldap/schema/openldap.schema %D/etc/openldap/schema/openldap.schema.default; then rm -f %D/etc/openldap/schema/openldap.schema; fi -etc/openldap/schema/openldap.schema.default -@exec [ -f %B/openldap.schema ] || cp %B/%f %B/openldap.schema -@unexec if cmp -s %D/etc/openldap/slapd.conf %D/etc/openldap/slapd.conf.default; then rm -f %D/etc/openldap/slapd.conf; fi -etc/openldap/slapd.conf.default -@exec [ -f %B/slapd.conf ] || cp %B/%f %B/slapd.conf -@unexec /bin/rmdir %D/etc/openldap/schema 2>/dev/null || true -@unexec /bin/rmdir %D/etc/openldap 2>/dev/null || true -etc/rc.d/slapd.sh.sample -include/disptmpl.h -include/lber.h -include/lber_types.h -include/ldap.h -include/ldap_cdefs.h -include/ldap_features.h -include/ldap_schema.h -include/srchpref.h -lib/liblber.a -lib/liblber.so -lib/liblber.so.2 -lib/libldap.a -lib/libldap.so -lib/libldap.so.2 -lib/libldap_r.a -lib/libldap_r.so -lib/libldap_r.so.2 -libexec/fax500 -libexec/go500 -libexec/go500gw -libexec/in.xfingerd -libexec/mail500 -libexec/maildap -libexec/rcpt500 -libexec/rp500 -libexec/slapd -libexec/slurpd -libexec/xrpcomp -sbin/slapadd -sbin/slapcat -sbin/slapindex -sbin/slappasswd -share/openldap/go500gw.help -share/openldap/ldapfriendly -share/openldap/rcpt500.help -@dirrm share/openldap diff --git a/net/openldap23-server/Makefile b/net/openldap23-server/Makefile deleted file mode 100644 index 42af69354389..000000000000 --- a/net/openldap23-server/Makefile +++ /dev/null @@ -1,104 +0,0 @@ -# New ports collection makefile for: OpenLDAP 2.x -# Date created: 20 Sep 1998 -# Whom: Lachlan O'Dea -# -# $FreeBSD$ -# - -PORTNAME= openldap -PORTVERSION= 2.0.14 -CATEGORIES= net databases -MASTER_SITES= ftp://ftp.OpenLDAP.org/pub/OpenLDAP/%SUBDIR%/ \ - ftp://ftp.net.lut.ac.uk/openldap/%SUBDIR%/ \ - ftp://sunsite.cnlab-switch.ch/mirror/OpenLDAP/%SUBDIR%/ \ - ftp://mirror.aarnet.edu.au/pub/OpenLDAP/%SUBDIR%/ \ - ftp://gd.tuwien.ac.at/infosys/network/OpenLDAP/%SUBDIR%/ \ - http://www.unibase.cz/ldapcz/Programy/Free/OpenLDAP/%SUBDIR%/ \ - ftp://ftp.ntua.gr/mirror/OpenLDAP/%SUBDIR%/ \ - ftp://ftp.loxinfo.co.th/pub/unix/LDAP/OpenLDAP/%SUBDIR%/ \ - ftp://ftp.zcu.cz/pub/network/openldap/%SUBDIR%/ -MASTER_SITE_SUBDIR= openldap-release -EXTRACT_SUFX= .tgz - -MAINTAINER= ports@FreeBSD.org - -LIB_DEPENDS= db3.2:${PORTSDIR}/databases/db3 - -USE_AUTOCONF= yes -USE_LIBTOOL= yes -USE_OPENSSL= yes - -CONFIGURE_ARGS= --localstatedir=/var/db \ - --with-threads \ - --enable-shared \ - --enable-dnssrv \ - --with-tls=openssl - -# Include tcp-wrapper support -.if exists(/usr/include/tcpd.h) -CONFIGURE_ARGS+= --enable-wrappers -.endif - -# math.h uses _REENTRANT and stdio.h uses _THREAD_SAFE, so define both. -CPPFLAGS+= -D_REENTRANT ${PTHREAD_CFLAGS} \ - -I${LOCALBASE}/include \ - -I${LOCALBASE}/include/db3 -LDFLAGS+= -L${LOCALBASE}/lib - -.if defined(WITH_SASL) -LIB_DEPENDS+= sasl.8:${PORTSDIR}/security/cyrus-sasl -CPPFLAGS+= -I${LOCALBASE}/include/sasl -.endif - -.if defined(WITH_ODBC) -LIB_DEPENDS+= iodbc.2:${PORTSDIR}/databases/libiodbc -CONFIGURE_ARGS+=--enable-sql -.endif - -CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" \ - LDFLAGS="${LDFLAGS}" - -INSTALLS_SHLIB= yes - -BINS= bin/ldapadd \ - bin/ldapdelete \ - bin/ldapmodify \ - bin/ldapmodrdn \ - bin/ldappasswd \ - bin/ldapsearch \ - bin/ud \ - libexec/fax500 \ - libexec/go500 \ - libexec/go500gw \ - libexec/in.xfingerd \ - libexec/mail500 \ - libexec/maildap \ - libexec/rcpt500 \ - libexec/rp500 \ - libexec/slapd \ - libexec/slurpd - -.include <bsd.port.pre.mk> -.include "${FILESDIR}/manpages" - -post-patch: - @${PERL} -pi.fbsd -e 's@pidfile\t\t%LOCALSTATEDIR%/slapd.pid@pidfile\t\t/var/run/slapd.pid@g; \ - s@argsfile\t%LOCALSTATEDIR%/slapd.args@argsfile\t/var/run/slapd.args@g' ${WRKSRC}/servers/slapd/slapd.conf - -post-configure: - @cd ${WRKSRC} ; ${PATCH} < ${FILESDIR}/libtool.diff - -pre-build: - @cd ${WRKSRC} ; ${MAKE} depend - -post-build: - @${SED} 's,@@PREFIX@@,${PREFIX},g' ${FILESDIR}/slapd.sh >${WRKDIR}/slapd.sh - -post-install: -.for f in ${BINS} - @strip ${PREFIX}/${f} -.endfor - @${INSTALL_SCRIPT} ${WRKDIR}/slapd.sh ${PREFIX}/etc/rc.d/slapd.sh.sample - @${CAT} ${PKGMESSAGE} - -.include <bsd.port.post.mk> diff --git a/net/openldap23-server/distinfo b/net/openldap23-server/distinfo deleted file mode 100644 index e839abb59db7..000000000000 --- a/net/openldap23-server/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (openldap-2.0.14.tgz) = d83ddb4b05b13eeb9eaa971427254659 diff --git a/net/openldap23-server/files/libtool.diff b/net/openldap23-server/files/libtool.diff deleted file mode 100644 index 0cf57bbee7ea..000000000000 --- a/net/openldap23-server/files/libtool.diff +++ /dev/null @@ -1,19 +0,0 @@ ---- libtool.orig Tue Oct 31 01:43:06 2000 -+++ libtool Tue Oct 31 01:44:42 2000 -@@ -448,6 +448,16 @@ - --mode) prevopt="--mode" prev=mode ;; - --mode=*) mode="$optarg" ;; - -+ --only-shared) -+ build_libtool_libs=yes -+ build_old_libs=no -+ ;; -+ -+ --only-static) -+ build_libtool_libs=no -+ build_old_libs=yes -+ ;; -+ - --quiet | --silent) - show=: - ;; diff --git a/net/openldap23-server/files/manpages b/net/openldap23-server/files/manpages deleted file mode 100644 index 1c39b81911fc..000000000000 --- a/net/openldap23-server/files/manpages +++ /dev/null @@ -1,219 +0,0 @@ -MAN1+= ldapdelete.1 -MAN1+= ldapmodify.1 -MAN1+= ldapmodrdn.1 -MAN1+= ldappasswd.1 -MAN1+= ldapsearch.1 -MAN1+= ud.1 -MAN3+= lber-decode.3 -MAN3+= lber-encode.3 -MAN3+= lber-memory.3 -MAN3+= lber-types.3 -MAN3+= ldap.3 -MAN3+= ldap_abandon.3 -MAN3+= ldap_add.3 -MAN3+= ldap_bind.3 -MAN3+= ldap_cache.3 -MAN3+= ldap_compare.3 -MAN3+= ldap_delete.3 -MAN3+= ldap_disptmpl.3 -MAN3+= ldap_entry2text.3 -MAN3+= ldap_error.3 -MAN3+= ldap_first_attribute.3 -MAN3+= ldap_first_entry.3 -MAN3+= ldap_friendly.3 -MAN3+= ldap_get_dn.3 -MAN3+= ldap_get_values.3 -MAN3+= ldap_getfilter.3 -MAN3+= ldap_modify.3 -MAN3+= ldap_modrdn.3 -MAN3+= ldap_open.3 -MAN3+= ldap_result.3 -MAN3+= ldap_schema.3 -MAN3+= ldap_search.3 -MAN3+= ldap_searchprefs.3 -MAN3+= ldap_sort.3 -MAN3+= ldap_ufn.3 -MAN3+= ldap_url.3 -MAN5+= ldap.conf.5 -MAN5+= ldapfilter.conf.5 -MAN5+= ldapfriendly.5 -MAN5+= ldapsearchprefs.conf.5 -MAN5+= ldaptemplates.conf.5 -MAN5+= ldif.5 -MAN5+= slapd.conf.5 -MAN5+= slapd.replog.5 -MAN5+= ud.conf.5 -MAN8+= go500.8 -MAN8+= go500gw.8 -MAN8+= in.xfingerd.8 -MAN8+= mail500.8 -MAN8+= rcpt500.8 -MAN8+= slapadd.8 -MAN8+= slapcat.8 -MAN8+= slapd.8 -MAN8+= slapindex.8 -MAN8+= slappasswd.8 -MAN8+= slurpd.8 -MLINKS+= lber-decode.3 ber_first_element.3 -MLINKS+= lber-decode.3 ber_get_bitstring.3 -MLINKS+= lber-decode.3 ber_get_boolean.3 -MLINKS+= lber-decode.3 ber_get_enum.3 -MLINKS+= lber-decode.3 ber_get_int.3 -MLINKS+= lber-decode.3 ber_get_next.3 -MLINKS+= lber-decode.3 ber_get_null.3 -MLINKS+= lber-decode.3 ber_get_stringa.3 -MLINKS+= lber-decode.3 ber_get_stringb.3 -MLINKS+= lber-decode.3 ber_next_element.3 -MLINKS+= lber-decode.3 ber_peek_tag.3 -MLINKS+= lber-decode.3 ber_scanf.3 -MLINKS+= lber-decode.3 ber_skip_tag.3 -MLINKS+= lber-encode.3 ber_alloc_t.3 -MLINKS+= lber-encode.3 ber_flush.3 -MLINKS+= lber-encode.3 ber_printf.3 -MLINKS+= lber-encode.3 ber_put_enum.3 -MLINKS+= lber-encode.3 ber_put_int.3 -MLINKS+= lber-encode.3 ber_put_null.3 -MLINKS+= lber-encode.3 ber_put_ostring.3 -MLINKS+= lber-encode.3 ber_put_seq.3 -MLINKS+= lber-encode.3 ber_put_set.3 -MLINKS+= lber-encode.3 ber_put_string.3 -MLINKS+= lber-decode.3 ber_start_set.3 -MLINKS+= ldap.3 cldap.3 -MLINKS+= ldap_add.3 ldap_add_s.3 -MLINKS+= ldap_bind.3 ldap_abandon_ext.3 -MLINKS+= ldap_bind.3 ldap_add_ext.3 -MLINKS+= ldap_bind.3 ldap_add_ext_s.3 -MLINKS+= ldap_bind.3 ldap_bind_s.3 -MLINKS+= ldap_bind.3 ldap_kerberos_bind1.3 -MLINKS+= ldap_bind.3 ldap_kerberos_bind1_s.3 -MLINKS+= ldap_bind.3 ldap_kerberos_bind2.3 -MLINKS+= ldap_bind.3 ldap_kerberos_bind2_s.3 -MLINKS+= ldap_bind.3 ldap_kerberos_bind_s.3 -MLINKS+= ldap_bind.3 ldap_sasl_bind.3 -MLINKS+= ldap_bind.3 ldap_sasl_bind_s.3 -MLINKS+= ldap_bind.3 ldap_set_rebind_proc.3 -MLINKS+= ldap_bind.3 ldap_simple_bind.3 -MLINKS+= ldap_bind.3 ldap_simple_bind_s.3 -MLINKS+= ldap_bind.3 ldap_unbind.3 -MLINKS+= ldap_bind.3 ldap_unbind_ext.3 -MLINKS+= ldap_bind.3 ldap_unbind_ext_s.3 -MLINKS+= ldap_bind.3 ldap_unbind_s.3 -MLINKS+= ldap_cache.3 ldap_destroy_cache.3 -MLINKS+= ldap_cache.3 ldap_disable_cache.3 -MLINKS+= ldap_cache.3 ldap_enable_cache.3 -MLINKS+= ldap_cache.3 ldap_flush_cache.3 -MLINKS+= ldap_cache.3 ldap_set_cache_options.3 -MLINKS+= ldap_cache.3 ldap_uncache_entry.3 -MLINKS+= ldap_cache.3 ldap_uncache_request.3 -MLINKS+= ldap_charset.3 ldap_8859_to_t61.3 -MLINKS+= ldap_charset.3 ldap_enable_translation.3 -MLINKS+= ldap_charset.3 ldap_set_string_translators.3 -MLINKS+= ldap_charset.3 ldap_t61_to_8859.3 -MLINKS+= ldap_charset.3 ldap_translate_from_t61.3 -MLINKS+= ldap_charset.3 ldap_translate_to_t61.3 -MLINKS+= ldap_compare.3 ldap_compare_ext.3 -MLINKS+= ldap_compare.3 ldap_compare_ext_s.3 -MLINKS+= ldap_compare.3 ldap_compare_s.3 -MLINKS+= ldap_delete.3 ldap_delete_ext.3 -MLINKS+= ldap_delete.3 ldap_delete_ext_s.3 -MLINKS+= ldap_delete.3 ldap_delete_s.3 -MLINKS+= ldap_disptmpl.3 ldap_first_disptmpl.3 -MLINKS+= ldap_disptmpl.3 ldap_first_tmplcol.3 -MLINKS+= ldap_disptmpl.3 ldap_first_tmplrow.3 -MLINKS+= ldap_disptmpl.3 ldap_free_templates.3 -MLINKS+= ldap_disptmpl.3 ldap_init_templates.3 -MLINKS+= ldap_disptmpl.3 ldap_init_templates_buf.3 -MLINKS+= ldap_disptmpl.3 ldap_next_disptmpl.3 -MLINKS+= ldap_disptmpl.3 ldap_next_tmplcol.3 -MLINKS+= ldap_disptmpl.3 ldap_next_tmplrow.3 -MLINKS+= ldap_disptmpl.3 ldap_oc2template.3 -MLINKS+= ldap_disptmpl.3 ldap_tmplattrs.3 -MLINKS+= ldap_entry2text.3 ldap_entry2html.3 -MLINKS+= ldap_entry2text.3 ldap_entry2html_search.3 -MLINKS+= ldap_entry2text.3 ldap_entry2text_search.3 -MLINKS+= ldap_entry2text.3 ldap_vals2html.3 -MLINKS+= ldap_entry2text.3 ldap_vals2text.3 -MLINKS+= ldap_error.3 ld_errno.3 -MLINKS+= ldap_error.3 ldap_err2string.3 -MLINKS+= ldap_error.3 ldap_errlist.3 -MLINKS+= ldap_error.3 ldap_perror.3 -MLINKS+= ldap_error.3 ldap_result2error.3 -MLINKS+= ldap_first_attribute.3 ldap_next_attribute.3 -MLINKS+= ldap_first_entry.3 ldap_count_entries.3 -MLINKS+= ldap_first_entry.3 ldap_next_entry.3 -MLINKS+= ldap_friendly.3 ldap_free_friendlymap.3 -MLINKS+= ldap_friendly.3 ldap_friendly_name.3 -MLINKS+= ldap_get_dn.3 ldap_dn2ufn.3 -MLINKS+= ldap_get_dn.3 ldap_explode_dn.3 -MLINKS+= ldap_get_dn.3 ldap_explode_dns.3 -MLINKS+= ldap_get_dn.3 ldap_explode_rdn.3 -MLINKS+= ldap_get_dn.3 ldap_is_dns_dn.3 -MLINKS+= ldap_get_values.3 ldap_count_values.3 -MLINKS+= ldap_get_values.3 ldap_count_values_len.3 -MLINKS+= ldap_get_values.3 ldap_get_values_len.3 -MLINKS+= ldap_get_values.3 ldap_value_free.3 -MLINKS+= ldap_get_values.3 ldap_value_free_len.3 -MLINKS+= ldap_getfilter.3 ldap_build_filter.3 -MLINKS+= ldap_getfilter.3 ldap_getfilter_free.3 -MLINKS+= ldap_getfilter.3 ldap_getfirstfilter.3 -MLINKS+= ldap_getfilter.3 ldap_getnextfilter.3 -MLINKS+= ldap_getfilter.3 ldap_init_getfilter.3 -MLINKS+= ldap_getfilter.3 ldap_init_getfilter_buf.3 -MLINKS+= ldap_getfilter.3 ldap_setfilteraffixes.3 -MLINKS+= ldap_modify.3 ldap_modify_ext.3 -MLINKS+= ldap_modify.3 ldap_modify_ext_s.3 -MLINKS+= ldap_modify.3 ldap_modify_s.3 -MLINKS+= ldap_modify.3 ldap_mods_free.3 -MLINKS+= ldap_modrdn.3 ldap_modrdn2.3 -MLINKS+= ldap_modrdn.3 ldap_modrdn2_s.3 -MLINKS+= ldap_modrdn.3 ldap_modrdn_s.3 -MLINKS+= ldap_open.3 ldap_init.3 -MLINKS+= ldap_result.3 ldap_msgfree.3 -MLINKS+= ldap_result.3 ldap_msgid.3 -MLINKS+= ldap_result.3 ldap_msgtype.3 -MLINKS+= ldap_schema.3 ldap_attributetype2name.3 -MLINKS+= ldap_schema.3 ldap_attributetype2str.3 -MLINKS+= ldap_schema.3 ldap_attributetype_free.3 -MLINKS+= ldap_schema.3 ldap_matchingrule2name.3 -MLINKS+= ldap_schema.3 ldap_matchingrule2str.3 -MLINKS+= ldap_schema.3 ldap_matchingrule_free.3 -MLINKS+= ldap_schema.3 ldap_objectclass2name.3 -MLINKS+= ldap_schema.3 ldap_objectclass2str.3 -MLINKS+= ldap_schema.3 ldap_objectclass_free.3 -MLINKS+= ldap_schema.3 ldap_scherr2str.3 -MLINKS+= ldap_schema.3 ldap_str2attributetype.3 -MLINKS+= ldap_schema.3 ldap_str2matchingrule.3 -MLINKS+= ldap_schema.3 ldap_str2objectclass.3 -MLINKS+= ldap_schema.3 ldap_str2syntax.3 -MLINKS+= ldap_schema.3 ldap_syntax2name.3 -MLINKS+= ldap_schema.3 ldap_syntax2str.3 -MLINKS+= ldap_schema.3 ldap_syntax_free.3 -MLINKS+= ldap_search.3 ldap_search_ext.3 -MLINKS+= ldap_search.3 ldap_search_ext_s.3 -MLINKS+= ldap_search.3 ldap_search_s.3 -MLINKS+= ldap_search.3 ldap_search_st.3 -MLINKS+= ldap_searchprefs.3 ldap_first_searchobj.3 -MLINKS+= ldap_searchprefs.3 ldap_free_searchprefs.3 -MLINKS+= ldap_searchprefs.3 ldap_init_searchprefs.3 -MLINKS+= ldap_searchprefs.3 ldap_init_searchprefs_buf.3 -MLINKS+= ldap_searchprefs.3 ldap_next_searchobj.3 -MLINKS+= ldap_sort.3 ldap_sort_entries.3 -MLINKS+= ldap_sort.3 ldap_sort_strcasecmp.3 -MLINKS+= ldap_sort.3 ldap_sort_values.3 -MLINKS+= ldap_ufn.3 ldap_ufn_search_c.3 -MLINKS+= ldap_ufn.3 ldap_ufn_search_ct.3 -MLINKS+= ldap_ufn.3 ldap_ufn_search_s.3 -MLINKS+= ldap_ufn.3 ldap_ufn_setfilter.3 -MLINKS+= ldap_ufn.3 ldap_ufn_setprefix.3 -MLINKS+= ldap_ufn.3 ldap_ufn_timeout.3 -MLINKS+= ldap_url.3 ldap_free_urldesc.3 -MLINKS+= ldap_url.3 ldap_is_ldap_url.3 -MLINKS+= ldap_url.3 ldap_url_parse.3 -MLINKS+= ldap_url.3 ldap_url_search.3 -MLINKS+= ldap_url.3 ldap_url_search_s.3 -MLINKS+= ldap_url.3 ldap_url_search_st.3 -MLINKS+= ldapmodify.1 ldapadd.1 -MLINKS+= ldif2ldbm.8 ldif2id2children.8 -MLINKS+= ldif2ldbm.8 ldif2id2entry.8 -MLINKS+= ldif2ldbm.8 ldif2index.8 -MLINKS+= mail500.8 fax500.8 diff --git a/net/openldap23-server/files/patch-clients_ud_Makefile.in b/net/openldap23-server/files/patch-clients_ud_Makefile.in deleted file mode 100644 index 18f342c29a53..000000000000 --- a/net/openldap23-server/files/patch-clients_ud_Makefile.in +++ /dev/null @@ -1,8 +0,0 @@ ---- clients/ud/Makefile.in.orig Wed Jan 13 20:02:11 1999 -+++ clients/ud/Makefile.in Wed Jul 26 14:24:14 2000 -@@ -26,4 +26,4 @@ - install-local: FORCE - -$(MKDIR) $(bindir) - -mv -f $(bindir)/ud $(bindir)/ud- -- $(LTINSTALL) $(INSTALLFLAGS) -m 775 ud $(bindir) -+ $(LTINSTALL) $(INSTALLFLAGS) -m 755 ud $(bindir) diff --git a/net/openldap23-server/files/patch-servers_slapd_schema b/net/openldap23-server/files/patch-servers_slapd_schema deleted file mode 100644 index 31969e8bb621..000000000000 --- a/net/openldap23-server/files/patch-servers_slapd_schema +++ /dev/null @@ -1,20 +0,0 @@ ---- servers/slapd/schema/krb5-kdc.schema.orig Tue Sep 5 13:28:34 2000 -+++ servers/slapd/schema/krb5-kdc.schema Mon Oct 30 13:09:19 2000 -@@ -96,7 +96,7 @@ - attributetype ( 1.3.6.1.4.1.5322.10.1.10 - NAME 'krb5Key' - DESC 'Encoded ASN1 Key as an octet string' -- SYNTAX 1.3.6.1.4.1.1466.115.121.1.5 ) -+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.40 ) - - attributetype ( 1.3.6.1.4.1.5322.10.1.11 - NAME 'krb5PrincipalRealm' -@@ -112,7 +112,7 @@ - - objectclass ( 1.3.6.1.4.1.5322.10.2.1 - NAME 'krb5Principal' -- SUP top -+ SUP person - AUXILIARY - MUST ( krb5PrincipalName ) - MAY ( cn $ krb5PrincipalRealm ) ) diff --git a/net/openldap23-server/files/slapd.sh b/net/openldap23-server/files/slapd.sh deleted file mode 100644 index 1704074b7968..000000000000 --- a/net/openldap23-server/files/slapd.sh +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ - -slapd=@@PREFIX@@/libexec/slapd -pidfile=/var/run/slapd.pid - -case "$1" in -start) - if [ -x $slapd ]; then - echo -n ' slapd' - $slapd - fi - ;; -stop) - if [ -f $pidfile ]; then - kill `cat $pidfile` - telnet localhost ldap </dev/null >/dev/null 2>&1 - echo -n ' slapd' - rm $pidfile - else - echo ' slapd: not running' - fi - ;; -*) - echo "Usage: `basename $0` {start|stop}" >&2 - exit 64 - ;; -esac - -exit 0 diff --git a/net/openldap23-server/pkg-comment b/net/openldap23-server/pkg-comment deleted file mode 100644 index 8c499c3923cf..000000000000 --- a/net/openldap23-server/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Open source LDAP client and server software diff --git a/net/openldap23-server/pkg-descr b/net/openldap23-server/pkg-descr deleted file mode 100644 index aec3ae0f7cf4..000000000000 --- a/net/openldap23-server/pkg-descr +++ /dev/null @@ -1,12 +0,0 @@ -OpenLDAP is a suite of Lightweight Directory Access Protocol (LDAP) servers, -clients, utilities and development tools. LDAP is an Internet standard -directory service protocol that can be used stand-alone, or as a front end -to an X.500 directory. LDAP is defined by RFCs 1777 through 1779. - -OpenLDAP is derived from the University of Michigan LDAP release 3.3 and is -distributed under an open source license. - -WWW: http://www.openldap.org/ - -Lachlan O'Dea -ulmo@earthling.net diff --git a/net/openldap23-server/pkg-message b/net/openldap23-server/pkg-message deleted file mode 100644 index 047bb0c9d5b4..000000000000 --- a/net/openldap23-server/pkg-message +++ /dev/null @@ -1,7 +0,0 @@ -************************************************************ -If you are upgrading an older (1.85) database, be sure to -convert the *.dbb files, e.g: - - mv file.dbb file.old - db_dump185 file.old | db_load file.dbb -************************************************************ diff --git a/net/openldap23-server/pkg-plist b/net/openldap23-server/pkg-plist deleted file mode 100644 index 778553d9d548..000000000000 --- a/net/openldap23-server/pkg-plist +++ /dev/null @@ -1,91 +0,0 @@ -bin/ldapadd -bin/ldapdelete -bin/ldapmodify -bin/ldapmodrdn -bin/ldappasswd -bin/ldapsearch -bin/ud -@unexec if cmp -s %D/etc/openldap/ldap.conf %D/etc/openldap/ldap.conf.default; then rm -f %D/etc/openldap/ldap.conf; fi -etc/openldap/ldap.conf.default -@exec [ -f %B/ldap.conf ] || cp %B/%f %B/ldap.conf -@unexec if cmp -s %D/etc/openldap/ldapfilter.conf %D/etc/openldap/ldapfilter.conf.default; then rm -f %D/etc/openldap/ldapfilter.conf; fi -etc/openldap/ldapfilter.conf.default -@exec [ -f %B/ldapfilter.conf ] || cp %B/%f %B/ldapfilter.conf -@unexec if cmp -s %D/etc/openldap/ldapsearchprefs.conf %D/etc/openldap/ldapsearchprefs.conf.default; then rm -f %D/etc/openldap/ldapsearchprefs.conf; fi -etc/openldap/ldapsearchprefs.conf.default -@exec [ -f %B/ldapsearchprefs.conf ] || cp %B/%f %B/ldapsearchprefs.conf -@unexec if cmp -s %D/etc/openldap/ldaptemplates.conf %D/etc/openldap/ldaptemplates.conf.default; then rm -f %D/etc/openldap/ldaptemplates.conf; fi -etc/openldap/ldaptemplates.conf.default -@exec [ -f %B/ldaptemplates.conf ] || cp %B/%f %B/ldaptemplates.conf -@unexec if cmp -s %D/etc/openldap/schema/corba.schema %D/etc/openldap/schema/corba.schema.default; then rm -f %D/etc/openldap/schema/corba.schema; fi -etc/openldap/schema/corba.schema.default -@exec [ -f %B/corba.schema ] || cp %B/%f %B/corba.schema -@unexec if cmp -s %D/etc/openldap/schema/core.schema %D/etc/openldap/schema/core.schema.default; then rm -f %D/etc/openldap/schema/core.schema; fi -etc/openldap/schema/core.schema.default -@exec [ -f %B/core.schema ] || cp %B/%f %B/core.schema -@unexec if cmp -s %D/etc/openldap/schema/cosine.schema %D/etc/openldap/schema/cosine.schema.default; then rm -f %D/etc/openldap/schema/cosine.schema; fi -etc/openldap/schema/cosine.schema.default -@exec [ -f %B/cosine.schema ] || cp %B/%f %B/cosine.schema -@unexec if cmp -s %D/etc/openldap/schema/inetorgperson.schema %D/etc/openldap/schema/inetorgperson.schema.default; then rm -f %D/etc/openldap/schema/inetorgperson.schema; fi -etc/openldap/schema/inetorgperson.schema.default -@exec [ -f %B/inetorgperson.schema ] || cp %B/%f %B/inetorgperson.schema -@unexec if cmp -s %D/etc/openldap/schema/java.schema %D/etc/openldap/schema/java.schema.default; then rm -f %D/etc/openldap/schema/java.schema; fi -etc/openldap/schema/java.schema.default -@exec [ -f %B/java.schema ] || cp %B/%f %B/java.schema -@unexec if cmp -s %D/etc/openldap/schema/krb5-kdc.schema %D/etc/openldap/schema/krb5-kdc.schema.default; then rm -f %D/etc/openldap/schema/krb5-kdc.schema; fi -etc/openldap/schema/krb5-kdc.schema.default -@exec [ -f %B/krb5-kdc.schema ] || cp %B/%f %B/krb5-kdc.schema -@unexec if cmp -s %D/etc/openldap/schema/misc.schema %D/etc/openldap/schema/misc.schema.default; then rm -f %D/etc/openldap/schema/misc.schema; fi -etc/openldap/schema/misc.schema.default -@exec [ -f %B/misc.schema ] || cp %B/%f %B/misc.schema -@unexec if cmp -s %D/etc/openldap/schema/nadf.schema %D/etc/openldap/schema/nadf.schema.default; then rm -f %D/etc/openldap/schema/nadf.schema; fi -etc/openldap/schema/nadf.schema.default -@exec [ -f %B/nadf.schema ] || cp %B/%f %B/nadf.schema -@unexec if cmp -s %D/etc/openldap/schema/nis.schema %D/etc/openldap/schema/nis.schema.default; then rm -f %D/etc/openldap/schema/nis.schema; fi -etc/openldap/schema/nis.schema.default -@exec [ -f %B/nis.schema ] || cp %B/%f %B/nis.schema -@unexec if cmp -s %D/etc/openldap/schema/openldap.schema %D/etc/openldap/schema/openldap.schema.default; then rm -f %D/etc/openldap/schema/openldap.schema; fi -etc/openldap/schema/openldap.schema.default -@exec [ -f %B/openldap.schema ] || cp %B/%f %B/openldap.schema -@unexec if cmp -s %D/etc/openldap/slapd.conf %D/etc/openldap/slapd.conf.default; then rm -f %D/etc/openldap/slapd.conf; fi -etc/openldap/slapd.conf.default -@exec [ -f %B/slapd.conf ] || cp %B/%f %B/slapd.conf -@unexec /bin/rmdir %D/etc/openldap/schema 2>/dev/null || true -@unexec /bin/rmdir %D/etc/openldap 2>/dev/null || true -etc/rc.d/slapd.sh.sample -include/disptmpl.h -include/lber.h -include/lber_types.h -include/ldap.h -include/ldap_cdefs.h -include/ldap_features.h -include/ldap_schema.h -include/srchpref.h -lib/liblber.a -lib/liblber.so -lib/liblber.so.2 -lib/libldap.a -lib/libldap.so -lib/libldap.so.2 -lib/libldap_r.a -lib/libldap_r.so -lib/libldap_r.so.2 -libexec/fax500 -libexec/go500 -libexec/go500gw -libexec/in.xfingerd -libexec/mail500 -libexec/maildap -libexec/rcpt500 -libexec/rp500 -libexec/slapd -libexec/slurpd -libexec/xrpcomp -sbin/slapadd -sbin/slapcat -sbin/slapindex -sbin/slappasswd -share/openldap/go500gw.help -share/openldap/ldapfriendly -share/openldap/rcpt500.help -@dirrm share/openldap diff --git a/net/openldap24-server/Makefile b/net/openldap24-server/Makefile deleted file mode 100644 index 42af69354389..000000000000 --- a/net/openldap24-server/Makefile +++ /dev/null @@ -1,104 +0,0 @@ -# New ports collection makefile for: OpenLDAP 2.x -# Date created: 20 Sep 1998 -# Whom: Lachlan O'Dea -# -# $FreeBSD$ -# - -PORTNAME= openldap -PORTVERSION= 2.0.14 -CATEGORIES= net databases -MASTER_SITES= ftp://ftp.OpenLDAP.org/pub/OpenLDAP/%SUBDIR%/ \ - ftp://ftp.net.lut.ac.uk/openldap/%SUBDIR%/ \ - ftp://sunsite.cnlab-switch.ch/mirror/OpenLDAP/%SUBDIR%/ \ - ftp://mirror.aarnet.edu.au/pub/OpenLDAP/%SUBDIR%/ \ - ftp://gd.tuwien.ac.at/infosys/network/OpenLDAP/%SUBDIR%/ \ - http://www.unibase.cz/ldapcz/Programy/Free/OpenLDAP/%SUBDIR%/ \ - ftp://ftp.ntua.gr/mirror/OpenLDAP/%SUBDIR%/ \ - ftp://ftp.loxinfo.co.th/pub/unix/LDAP/OpenLDAP/%SUBDIR%/ \ - ftp://ftp.zcu.cz/pub/network/openldap/%SUBDIR%/ -MASTER_SITE_SUBDIR= openldap-release -EXTRACT_SUFX= .tgz - -MAINTAINER= ports@FreeBSD.org - -LIB_DEPENDS= db3.2:${PORTSDIR}/databases/db3 - -USE_AUTOCONF= yes -USE_LIBTOOL= yes -USE_OPENSSL= yes - -CONFIGURE_ARGS= --localstatedir=/var/db \ - --with-threads \ - --enable-shared \ - --enable-dnssrv \ - --with-tls=openssl - -# Include tcp-wrapper support -.if exists(/usr/include/tcpd.h) -CONFIGURE_ARGS+= --enable-wrappers -.endif - -# math.h uses _REENTRANT and stdio.h uses _THREAD_SAFE, so define both. -CPPFLAGS+= -D_REENTRANT ${PTHREAD_CFLAGS} \ - -I${LOCALBASE}/include \ - -I${LOCALBASE}/include/db3 -LDFLAGS+= -L${LOCALBASE}/lib - -.if defined(WITH_SASL) -LIB_DEPENDS+= sasl.8:${PORTSDIR}/security/cyrus-sasl -CPPFLAGS+= -I${LOCALBASE}/include/sasl -.endif - -.if defined(WITH_ODBC) -LIB_DEPENDS+= iodbc.2:${PORTSDIR}/databases/libiodbc -CONFIGURE_ARGS+=--enable-sql -.endif - -CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" \ - LDFLAGS="${LDFLAGS}" - -INSTALLS_SHLIB= yes - -BINS= bin/ldapadd \ - bin/ldapdelete \ - bin/ldapmodify \ - bin/ldapmodrdn \ - bin/ldappasswd \ - bin/ldapsearch \ - bin/ud \ - libexec/fax500 \ - libexec/go500 \ - libexec/go500gw \ - libexec/in.xfingerd \ - libexec/mail500 \ - libexec/maildap \ - libexec/rcpt500 \ - libexec/rp500 \ - libexec/slapd \ - libexec/slurpd - -.include <bsd.port.pre.mk> -.include "${FILESDIR}/manpages" - -post-patch: - @${PERL} -pi.fbsd -e 's@pidfile\t\t%LOCALSTATEDIR%/slapd.pid@pidfile\t\t/var/run/slapd.pid@g; \ - s@argsfile\t%LOCALSTATEDIR%/slapd.args@argsfile\t/var/run/slapd.args@g' ${WRKSRC}/servers/slapd/slapd.conf - -post-configure: - @cd ${WRKSRC} ; ${PATCH} < ${FILESDIR}/libtool.diff - -pre-build: - @cd ${WRKSRC} ; ${MAKE} depend - -post-build: - @${SED} 's,@@PREFIX@@,${PREFIX},g' ${FILESDIR}/slapd.sh >${WRKDIR}/slapd.sh - -post-install: -.for f in ${BINS} - @strip ${PREFIX}/${f} -.endfor - @${INSTALL_SCRIPT} ${WRKDIR}/slapd.sh ${PREFIX}/etc/rc.d/slapd.sh.sample - @${CAT} ${PKGMESSAGE} - -.include <bsd.port.post.mk> diff --git a/net/openldap24-server/distinfo b/net/openldap24-server/distinfo deleted file mode 100644 index e839abb59db7..000000000000 --- a/net/openldap24-server/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (openldap-2.0.14.tgz) = d83ddb4b05b13eeb9eaa971427254659 diff --git a/net/openldap24-server/files/libtool.diff b/net/openldap24-server/files/libtool.diff deleted file mode 100644 index 0cf57bbee7ea..000000000000 --- a/net/openldap24-server/files/libtool.diff +++ /dev/null @@ -1,19 +0,0 @@ ---- libtool.orig Tue Oct 31 01:43:06 2000 -+++ libtool Tue Oct 31 01:44:42 2000 -@@ -448,6 +448,16 @@ - --mode) prevopt="--mode" prev=mode ;; - --mode=*) mode="$optarg" ;; - -+ --only-shared) -+ build_libtool_libs=yes -+ build_old_libs=no -+ ;; -+ -+ --only-static) -+ build_libtool_libs=no -+ build_old_libs=yes -+ ;; -+ - --quiet | --silent) - show=: - ;; diff --git a/net/openldap24-server/files/manpages b/net/openldap24-server/files/manpages deleted file mode 100644 index 1c39b81911fc..000000000000 --- a/net/openldap24-server/files/manpages +++ /dev/null @@ -1,219 +0,0 @@ -MAN1+= ldapdelete.1 -MAN1+= ldapmodify.1 -MAN1+= ldapmodrdn.1 -MAN1+= ldappasswd.1 -MAN1+= ldapsearch.1 -MAN1+= ud.1 -MAN3+= lber-decode.3 -MAN3+= lber-encode.3 -MAN3+= lber-memory.3 -MAN3+= lber-types.3 -MAN3+= ldap.3 -MAN3+= ldap_abandon.3 -MAN3+= ldap_add.3 -MAN3+= ldap_bind.3 -MAN3+= ldap_cache.3 -MAN3+= ldap_compare.3 -MAN3+= ldap_delete.3 -MAN3+= ldap_disptmpl.3 -MAN3+= ldap_entry2text.3 -MAN3+= ldap_error.3 -MAN3+= ldap_first_attribute.3 -MAN3+= ldap_first_entry.3 -MAN3+= ldap_friendly.3 -MAN3+= ldap_get_dn.3 -MAN3+= ldap_get_values.3 -MAN3+= ldap_getfilter.3 -MAN3+= ldap_modify.3 -MAN3+= ldap_modrdn.3 -MAN3+= ldap_open.3 -MAN3+= ldap_result.3 -MAN3+= ldap_schema.3 -MAN3+= ldap_search.3 -MAN3+= ldap_searchprefs.3 -MAN3+= ldap_sort.3 -MAN3+= ldap_ufn.3 -MAN3+= ldap_url.3 -MAN5+= ldap.conf.5 -MAN5+= ldapfilter.conf.5 -MAN5+= ldapfriendly.5 -MAN5+= ldapsearchprefs.conf.5 -MAN5+= ldaptemplates.conf.5 -MAN5+= ldif.5 -MAN5+= slapd.conf.5 -MAN5+= slapd.replog.5 -MAN5+= ud.conf.5 -MAN8+= go500.8 -MAN8+= go500gw.8 -MAN8+= in.xfingerd.8 -MAN8+= mail500.8 -MAN8+= rcpt500.8 -MAN8+= slapadd.8 -MAN8+= slapcat.8 -MAN8+= slapd.8 -MAN8+= slapindex.8 -MAN8+= slappasswd.8 -MAN8+= slurpd.8 -MLINKS+= lber-decode.3 ber_first_element.3 -MLINKS+= lber-decode.3 ber_get_bitstring.3 -MLINKS+= lber-decode.3 ber_get_boolean.3 -MLINKS+= lber-decode.3 ber_get_enum.3 -MLINKS+= lber-decode.3 ber_get_int.3 -MLINKS+= lber-decode.3 ber_get_next.3 -MLINKS+= lber-decode.3 ber_get_null.3 -MLINKS+= lber-decode.3 ber_get_stringa.3 -MLINKS+= lber-decode.3 ber_get_stringb.3 -MLINKS+= lber-decode.3 ber_next_element.3 -MLINKS+= lber-decode.3 ber_peek_tag.3 -MLINKS+= lber-decode.3 ber_scanf.3 -MLINKS+= lber-decode.3 ber_skip_tag.3 -MLINKS+= lber-encode.3 ber_alloc_t.3 -MLINKS+= lber-encode.3 ber_flush.3 -MLINKS+= lber-encode.3 ber_printf.3 -MLINKS+= lber-encode.3 ber_put_enum.3 -MLINKS+= lber-encode.3 ber_put_int.3 -MLINKS+= lber-encode.3 ber_put_null.3 -MLINKS+= lber-encode.3 ber_put_ostring.3 -MLINKS+= lber-encode.3 ber_put_seq.3 -MLINKS+= lber-encode.3 ber_put_set.3 -MLINKS+= lber-encode.3 ber_put_string.3 -MLINKS+= lber-decode.3 ber_start_set.3 -MLINKS+= ldap.3 cldap.3 -MLINKS+= ldap_add.3 ldap_add_s.3 -MLINKS+= ldap_bind.3 ldap_abandon_ext.3 -MLINKS+= ldap_bind.3 ldap_add_ext.3 -MLINKS+= ldap_bind.3 ldap_add_ext_s.3 -MLINKS+= ldap_bind.3 ldap_bind_s.3 -MLINKS+= ldap_bind.3 ldap_kerberos_bind1.3 -MLINKS+= ldap_bind.3 ldap_kerberos_bind1_s.3 -MLINKS+= ldap_bind.3 ldap_kerberos_bind2.3 -MLINKS+= ldap_bind.3 ldap_kerberos_bind2_s.3 -MLINKS+= ldap_bind.3 ldap_kerberos_bind_s.3 -MLINKS+= ldap_bind.3 ldap_sasl_bind.3 -MLINKS+= ldap_bind.3 ldap_sasl_bind_s.3 -MLINKS+= ldap_bind.3 ldap_set_rebind_proc.3 -MLINKS+= ldap_bind.3 ldap_simple_bind.3 -MLINKS+= ldap_bind.3 ldap_simple_bind_s.3 -MLINKS+= ldap_bind.3 ldap_unbind.3 -MLINKS+= ldap_bind.3 ldap_unbind_ext.3 -MLINKS+= ldap_bind.3 ldap_unbind_ext_s.3 -MLINKS+= ldap_bind.3 ldap_unbind_s.3 -MLINKS+= ldap_cache.3 ldap_destroy_cache.3 -MLINKS+= ldap_cache.3 ldap_disable_cache.3 -MLINKS+= ldap_cache.3 ldap_enable_cache.3 -MLINKS+= ldap_cache.3 ldap_flush_cache.3 -MLINKS+= ldap_cache.3 ldap_set_cache_options.3 -MLINKS+= ldap_cache.3 ldap_uncache_entry.3 -MLINKS+= ldap_cache.3 ldap_uncache_request.3 -MLINKS+= ldap_charset.3 ldap_8859_to_t61.3 -MLINKS+= ldap_charset.3 ldap_enable_translation.3 -MLINKS+= ldap_charset.3 ldap_set_string_translators.3 -MLINKS+= ldap_charset.3 ldap_t61_to_8859.3 -MLINKS+= ldap_charset.3 ldap_translate_from_t61.3 -MLINKS+= ldap_charset.3 ldap_translate_to_t61.3 -MLINKS+= ldap_compare.3 ldap_compare_ext.3 -MLINKS+= ldap_compare.3 ldap_compare_ext_s.3 -MLINKS+= ldap_compare.3 ldap_compare_s.3 -MLINKS+= ldap_delete.3 ldap_delete_ext.3 -MLINKS+= ldap_delete.3 ldap_delete_ext_s.3 -MLINKS+= ldap_delete.3 ldap_delete_s.3 -MLINKS+= ldap_disptmpl.3 ldap_first_disptmpl.3 -MLINKS+= ldap_disptmpl.3 ldap_first_tmplcol.3 -MLINKS+= ldap_disptmpl.3 ldap_first_tmplrow.3 -MLINKS+= ldap_disptmpl.3 ldap_free_templates.3 -MLINKS+= ldap_disptmpl.3 ldap_init_templates.3 -MLINKS+= ldap_disptmpl.3 ldap_init_templates_buf.3 -MLINKS+= ldap_disptmpl.3 ldap_next_disptmpl.3 -MLINKS+= ldap_disptmpl.3 ldap_next_tmplcol.3 -MLINKS+= ldap_disptmpl.3 ldap_next_tmplrow.3 -MLINKS+= ldap_disptmpl.3 ldap_oc2template.3 -MLINKS+= ldap_disptmpl.3 ldap_tmplattrs.3 -MLINKS+= ldap_entry2text.3 ldap_entry2html.3 -MLINKS+= ldap_entry2text.3 ldap_entry2html_search.3 -MLINKS+= ldap_entry2text.3 ldap_entry2text_search.3 -MLINKS+= ldap_entry2text.3 ldap_vals2html.3 -MLINKS+= ldap_entry2text.3 ldap_vals2text.3 -MLINKS+= ldap_error.3 ld_errno.3 -MLINKS+= ldap_error.3 ldap_err2string.3 -MLINKS+= ldap_error.3 ldap_errlist.3 -MLINKS+= ldap_error.3 ldap_perror.3 -MLINKS+= ldap_error.3 ldap_result2error.3 -MLINKS+= ldap_first_attribute.3 ldap_next_attribute.3 -MLINKS+= ldap_first_entry.3 ldap_count_entries.3 -MLINKS+= ldap_first_entry.3 ldap_next_entry.3 -MLINKS+= ldap_friendly.3 ldap_free_friendlymap.3 -MLINKS+= ldap_friendly.3 ldap_friendly_name.3 -MLINKS+= ldap_get_dn.3 ldap_dn2ufn.3 -MLINKS+= ldap_get_dn.3 ldap_explode_dn.3 -MLINKS+= ldap_get_dn.3 ldap_explode_dns.3 -MLINKS+= ldap_get_dn.3 ldap_explode_rdn.3 -MLINKS+= ldap_get_dn.3 ldap_is_dns_dn.3 -MLINKS+= ldap_get_values.3 ldap_count_values.3 -MLINKS+= ldap_get_values.3 ldap_count_values_len.3 -MLINKS+= ldap_get_values.3 ldap_get_values_len.3 -MLINKS+= ldap_get_values.3 ldap_value_free.3 -MLINKS+= ldap_get_values.3 ldap_value_free_len.3 -MLINKS+= ldap_getfilter.3 ldap_build_filter.3 -MLINKS+= ldap_getfilter.3 ldap_getfilter_free.3 -MLINKS+= ldap_getfilter.3 ldap_getfirstfilter.3 -MLINKS+= ldap_getfilter.3 ldap_getnextfilter.3 -MLINKS+= ldap_getfilter.3 ldap_init_getfilter.3 -MLINKS+= ldap_getfilter.3 ldap_init_getfilter_buf.3 -MLINKS+= ldap_getfilter.3 ldap_setfilteraffixes.3 -MLINKS+= ldap_modify.3 ldap_modify_ext.3 -MLINKS+= ldap_modify.3 ldap_modify_ext_s.3 -MLINKS+= ldap_modify.3 ldap_modify_s.3 -MLINKS+= ldap_modify.3 ldap_mods_free.3 -MLINKS+= ldap_modrdn.3 ldap_modrdn2.3 -MLINKS+= ldap_modrdn.3 ldap_modrdn2_s.3 -MLINKS+= ldap_modrdn.3 ldap_modrdn_s.3 -MLINKS+= ldap_open.3 ldap_init.3 -MLINKS+= ldap_result.3 ldap_msgfree.3 -MLINKS+= ldap_result.3 ldap_msgid.3 -MLINKS+= ldap_result.3 ldap_msgtype.3 -MLINKS+= ldap_schema.3 ldap_attributetype2name.3 -MLINKS+= ldap_schema.3 ldap_attributetype2str.3 -MLINKS+= ldap_schema.3 ldap_attributetype_free.3 -MLINKS+= ldap_schema.3 ldap_matchingrule2name.3 -MLINKS+= ldap_schema.3 ldap_matchingrule2str.3 -MLINKS+= ldap_schema.3 ldap_matchingrule_free.3 -MLINKS+= ldap_schema.3 ldap_objectclass2name.3 -MLINKS+= ldap_schema.3 ldap_objectclass2str.3 -MLINKS+= ldap_schema.3 ldap_objectclass_free.3 -MLINKS+= ldap_schema.3 ldap_scherr2str.3 -MLINKS+= ldap_schema.3 ldap_str2attributetype.3 -MLINKS+= ldap_schema.3 ldap_str2matchingrule.3 -MLINKS+= ldap_schema.3 ldap_str2objectclass.3 -MLINKS+= ldap_schema.3 ldap_str2syntax.3 -MLINKS+= ldap_schema.3 ldap_syntax2name.3 -MLINKS+= ldap_schema.3 ldap_syntax2str.3 -MLINKS+= ldap_schema.3 ldap_syntax_free.3 -MLINKS+= ldap_search.3 ldap_search_ext.3 -MLINKS+= ldap_search.3 ldap_search_ext_s.3 -MLINKS+= ldap_search.3 ldap_search_s.3 -MLINKS+= ldap_search.3 ldap_search_st.3 -MLINKS+= ldap_searchprefs.3 ldap_first_searchobj.3 -MLINKS+= ldap_searchprefs.3 ldap_free_searchprefs.3 -MLINKS+= ldap_searchprefs.3 ldap_init_searchprefs.3 -MLINKS+= ldap_searchprefs.3 ldap_init_searchprefs_buf.3 -MLINKS+= ldap_searchprefs.3 ldap_next_searchobj.3 -MLINKS+= ldap_sort.3 ldap_sort_entries.3 -MLINKS+= ldap_sort.3 ldap_sort_strcasecmp.3 -MLINKS+= ldap_sort.3 ldap_sort_values.3 -MLINKS+= ldap_ufn.3 ldap_ufn_search_c.3 -MLINKS+= ldap_ufn.3 ldap_ufn_search_ct.3 -MLINKS+= ldap_ufn.3 ldap_ufn_search_s.3 -MLINKS+= ldap_ufn.3 ldap_ufn_setfilter.3 -MLINKS+= ldap_ufn.3 ldap_ufn_setprefix.3 -MLINKS+= ldap_ufn.3 ldap_ufn_timeout.3 -MLINKS+= ldap_url.3 ldap_free_urldesc.3 -MLINKS+= ldap_url.3 ldap_is_ldap_url.3 -MLINKS+= ldap_url.3 ldap_url_parse.3 -MLINKS+= ldap_url.3 ldap_url_search.3 -MLINKS+= ldap_url.3 ldap_url_search_s.3 -MLINKS+= ldap_url.3 ldap_url_search_st.3 -MLINKS+= ldapmodify.1 ldapadd.1 -MLINKS+= ldif2ldbm.8 ldif2id2children.8 -MLINKS+= ldif2ldbm.8 ldif2id2entry.8 -MLINKS+= ldif2ldbm.8 ldif2index.8 -MLINKS+= mail500.8 fax500.8 diff --git a/net/openldap24-server/files/patch-clients_ud_Makefile.in b/net/openldap24-server/files/patch-clients_ud_Makefile.in deleted file mode 100644 index 18f342c29a53..000000000000 --- a/net/openldap24-server/files/patch-clients_ud_Makefile.in +++ /dev/null @@ -1,8 +0,0 @@ ---- clients/ud/Makefile.in.orig Wed Jan 13 20:02:11 1999 -+++ clients/ud/Makefile.in Wed Jul 26 14:24:14 2000 -@@ -26,4 +26,4 @@ - install-local: FORCE - -$(MKDIR) $(bindir) - -mv -f $(bindir)/ud $(bindir)/ud- -- $(LTINSTALL) $(INSTALLFLAGS) -m 775 ud $(bindir) -+ $(LTINSTALL) $(INSTALLFLAGS) -m 755 ud $(bindir) diff --git a/net/openldap24-server/files/patch-servers_slapd_schema b/net/openldap24-server/files/patch-servers_slapd_schema deleted file mode 100644 index 31969e8bb621..000000000000 --- a/net/openldap24-server/files/patch-servers_slapd_schema +++ /dev/null @@ -1,20 +0,0 @@ ---- servers/slapd/schema/krb5-kdc.schema.orig Tue Sep 5 13:28:34 2000 -+++ servers/slapd/schema/krb5-kdc.schema Mon Oct 30 13:09:19 2000 -@@ -96,7 +96,7 @@ - attributetype ( 1.3.6.1.4.1.5322.10.1.10 - NAME 'krb5Key' - DESC 'Encoded ASN1 Key as an octet string' -- SYNTAX 1.3.6.1.4.1.1466.115.121.1.5 ) -+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.40 ) - - attributetype ( 1.3.6.1.4.1.5322.10.1.11 - NAME 'krb5PrincipalRealm' -@@ -112,7 +112,7 @@ - - objectclass ( 1.3.6.1.4.1.5322.10.2.1 - NAME 'krb5Principal' -- SUP top -+ SUP person - AUXILIARY - MUST ( krb5PrincipalName ) - MAY ( cn $ krb5PrincipalRealm ) ) diff --git a/net/openldap24-server/files/slapd.sh b/net/openldap24-server/files/slapd.sh deleted file mode 100644 index 1704074b7968..000000000000 --- a/net/openldap24-server/files/slapd.sh +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ - -slapd=@@PREFIX@@/libexec/slapd -pidfile=/var/run/slapd.pid - -case "$1" in -start) - if [ -x $slapd ]; then - echo -n ' slapd' - $slapd - fi - ;; -stop) - if [ -f $pidfile ]; then - kill `cat $pidfile` - telnet localhost ldap </dev/null >/dev/null 2>&1 - echo -n ' slapd' - rm $pidfile - else - echo ' slapd: not running' - fi - ;; -*) - echo "Usage: `basename $0` {start|stop}" >&2 - exit 64 - ;; -esac - -exit 0 diff --git a/net/openldap24-server/pkg-comment b/net/openldap24-server/pkg-comment deleted file mode 100644 index 8c499c3923cf..000000000000 --- a/net/openldap24-server/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Open source LDAP client and server software diff --git a/net/openldap24-server/pkg-descr b/net/openldap24-server/pkg-descr deleted file mode 100644 index aec3ae0f7cf4..000000000000 --- a/net/openldap24-server/pkg-descr +++ /dev/null @@ -1,12 +0,0 @@ -OpenLDAP is a suite of Lightweight Directory Access Protocol (LDAP) servers, -clients, utilities and development tools. LDAP is an Internet standard -directory service protocol that can be used stand-alone, or as a front end -to an X.500 directory. LDAP is defined by RFCs 1777 through 1779. - -OpenLDAP is derived from the University of Michigan LDAP release 3.3 and is -distributed under an open source license. - -WWW: http://www.openldap.org/ - -Lachlan O'Dea -ulmo@earthling.net diff --git a/net/openldap24-server/pkg-message b/net/openldap24-server/pkg-message deleted file mode 100644 index 047bb0c9d5b4..000000000000 --- a/net/openldap24-server/pkg-message +++ /dev/null @@ -1,7 +0,0 @@ -************************************************************ -If you are upgrading an older (1.85) database, be sure to -convert the *.dbb files, e.g: - - mv file.dbb file.old - db_dump185 file.old | db_load file.dbb -************************************************************ diff --git a/net/openldap24-server/pkg-plist b/net/openldap24-server/pkg-plist deleted file mode 100644 index 778553d9d548..000000000000 --- a/net/openldap24-server/pkg-plist +++ /dev/null @@ -1,91 +0,0 @@ -bin/ldapadd -bin/ldapdelete -bin/ldapmodify -bin/ldapmodrdn -bin/ldappasswd -bin/ldapsearch -bin/ud -@unexec if cmp -s %D/etc/openldap/ldap.conf %D/etc/openldap/ldap.conf.default; then rm -f %D/etc/openldap/ldap.conf; fi -etc/openldap/ldap.conf.default -@exec [ -f %B/ldap.conf ] || cp %B/%f %B/ldap.conf -@unexec if cmp -s %D/etc/openldap/ldapfilter.conf %D/etc/openldap/ldapfilter.conf.default; then rm -f %D/etc/openldap/ldapfilter.conf; fi -etc/openldap/ldapfilter.conf.default -@exec [ -f %B/ldapfilter.conf ] || cp %B/%f %B/ldapfilter.conf -@unexec if cmp -s %D/etc/openldap/ldapsearchprefs.conf %D/etc/openldap/ldapsearchprefs.conf.default; then rm -f %D/etc/openldap/ldapsearchprefs.conf; fi -etc/openldap/ldapsearchprefs.conf.default -@exec [ -f %B/ldapsearchprefs.conf ] || cp %B/%f %B/ldapsearchprefs.conf -@unexec if cmp -s %D/etc/openldap/ldaptemplates.conf %D/etc/openldap/ldaptemplates.conf.default; then rm -f %D/etc/openldap/ldaptemplates.conf; fi -etc/openldap/ldaptemplates.conf.default -@exec [ -f %B/ldaptemplates.conf ] || cp %B/%f %B/ldaptemplates.conf -@unexec if cmp -s %D/etc/openldap/schema/corba.schema %D/etc/openldap/schema/corba.schema.default; then rm -f %D/etc/openldap/schema/corba.schema; fi -etc/openldap/schema/corba.schema.default -@exec [ -f %B/corba.schema ] || cp %B/%f %B/corba.schema -@unexec if cmp -s %D/etc/openldap/schema/core.schema %D/etc/openldap/schema/core.schema.default; then rm -f %D/etc/openldap/schema/core.schema; fi -etc/openldap/schema/core.schema.default -@exec [ -f %B/core.schema ] || cp %B/%f %B/core.schema -@unexec if cmp -s %D/etc/openldap/schema/cosine.schema %D/etc/openldap/schema/cosine.schema.default; then rm -f %D/etc/openldap/schema/cosine.schema; fi -etc/openldap/schema/cosine.schema.default -@exec [ -f %B/cosine.schema ] || cp %B/%f %B/cosine.schema -@unexec if cmp -s %D/etc/openldap/schema/inetorgperson.schema %D/etc/openldap/schema/inetorgperson.schema.default; then rm -f %D/etc/openldap/schema/inetorgperson.schema; fi -etc/openldap/schema/inetorgperson.schema.default -@exec [ -f %B/inetorgperson.schema ] || cp %B/%f %B/inetorgperson.schema -@unexec if cmp -s %D/etc/openldap/schema/java.schema %D/etc/openldap/schema/java.schema.default; then rm -f %D/etc/openldap/schema/java.schema; fi -etc/openldap/schema/java.schema.default -@exec [ -f %B/java.schema ] || cp %B/%f %B/java.schema -@unexec if cmp -s %D/etc/openldap/schema/krb5-kdc.schema %D/etc/openldap/schema/krb5-kdc.schema.default; then rm -f %D/etc/openldap/schema/krb5-kdc.schema; fi -etc/openldap/schema/krb5-kdc.schema.default -@exec [ -f %B/krb5-kdc.schema ] || cp %B/%f %B/krb5-kdc.schema -@unexec if cmp -s %D/etc/openldap/schema/misc.schema %D/etc/openldap/schema/misc.schema.default; then rm -f %D/etc/openldap/schema/misc.schema; fi -etc/openldap/schema/misc.schema.default -@exec [ -f %B/misc.schema ] || cp %B/%f %B/misc.schema -@unexec if cmp -s %D/etc/openldap/schema/nadf.schema %D/etc/openldap/schema/nadf.schema.default; then rm -f %D/etc/openldap/schema/nadf.schema; fi -etc/openldap/schema/nadf.schema.default -@exec [ -f %B/nadf.schema ] || cp %B/%f %B/nadf.schema -@unexec if cmp -s %D/etc/openldap/schema/nis.schema %D/etc/openldap/schema/nis.schema.default; then rm -f %D/etc/openldap/schema/nis.schema; fi -etc/openldap/schema/nis.schema.default -@exec [ -f %B/nis.schema ] || cp %B/%f %B/nis.schema -@unexec if cmp -s %D/etc/openldap/schema/openldap.schema %D/etc/openldap/schema/openldap.schema.default; then rm -f %D/etc/openldap/schema/openldap.schema; fi -etc/openldap/schema/openldap.schema.default -@exec [ -f %B/openldap.schema ] || cp %B/%f %B/openldap.schema -@unexec if cmp -s %D/etc/openldap/slapd.conf %D/etc/openldap/slapd.conf.default; then rm -f %D/etc/openldap/slapd.conf; fi -etc/openldap/slapd.conf.default -@exec [ -f %B/slapd.conf ] || cp %B/%f %B/slapd.conf -@unexec /bin/rmdir %D/etc/openldap/schema 2>/dev/null || true -@unexec /bin/rmdir %D/etc/openldap 2>/dev/null || true -etc/rc.d/slapd.sh.sample -include/disptmpl.h -include/lber.h -include/lber_types.h -include/ldap.h -include/ldap_cdefs.h -include/ldap_features.h -include/ldap_schema.h -include/srchpref.h -lib/liblber.a -lib/liblber.so -lib/liblber.so.2 -lib/libldap.a -lib/libldap.so -lib/libldap.so.2 -lib/libldap_r.a -lib/libldap_r.so -lib/libldap_r.so.2 -libexec/fax500 -libexec/go500 -libexec/go500gw -libexec/in.xfingerd -libexec/mail500 -libexec/maildap -libexec/rcpt500 -libexec/rp500 -libexec/slapd -libexec/slurpd -libexec/xrpcomp -sbin/slapadd -sbin/slapcat -sbin/slapindex -sbin/slappasswd -share/openldap/go500gw.help -share/openldap/ldapfriendly -share/openldap/rcpt500.help -@dirrm share/openldap diff --git a/net/p5-Net-SNMP3/Makefile b/net/p5-Net-SNMP3/Makefile deleted file mode 100644 index 974a033225ac..000000000000 --- a/net/p5-Net-SNMP3/Makefile +++ /dev/null @@ -1,24 +0,0 @@ -# New ports collection makefile for: p5-Net-SNMP -# Date created: 30 June 2000 -# Whom: Christopher N. Harrell <cnh@ivmg.net> -# -# $FreeBSD$ -# - -PORTNAME= Net-SNMP -PORTVERSION= 3.60 -CATEGORIES= net perl5 -MASTER_SITES= ${MASTER_SITE_PERL_CPAN} -MASTER_SITE_SUBDIR= Net -PKGNAMEPREFIX= p5- - -MAINTAINER= ports@FreeBSD.org - -WRKSRC= ${WRKDIR}/${PORTNAME}-3.6 - -PERL_CONFIGURE= yes - -MAN3= Net::SNMP.3 -MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} - -.include <bsd.port.mk> diff --git a/net/p5-Net-SNMP3/distinfo b/net/p5-Net-SNMP3/distinfo deleted file mode 100644 index 1cfe6cd03c4e..000000000000 --- a/net/p5-Net-SNMP3/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (Net-SNMP-3.60.tar.gz) = 9b416095aec3615b60c527eb2cb1c449 diff --git a/net/p5-Net-SNMP3/pkg-comment b/net/p5-Net-SNMP3/pkg-comment deleted file mode 100644 index 23cc30a9b8ef..000000000000 --- a/net/p5-Net-SNMP3/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -A perl module for SNMP... Net::SNMP diff --git a/net/p5-Net-SNMP3/pkg-descr b/net/p5-Net-SNMP3/pkg-descr deleted file mode 100644 index 753a5e759c62..000000000000 --- a/net/p5-Net-SNMP3/pkg-descr +++ /dev/null @@ -1,8 +0,0 @@ -The module Net::SNMP implements an object oriented -interface to the Simple Network Management Protocol. Perl -applications can use the module to retrieve or update -information on a remote host using the SNMP protocol. -Net::SNMP is implemented completely in Perl, requires no -compiling, and uses only standard Perl modules. Both -SNMPv1 and SNMPv2c (Community-Based SNMPv2) are supported -by the module. diff --git a/net/p5-Net-SNMP3/pkg-plist b/net/p5-Net-SNMP3/pkg-plist deleted file mode 100644 index c50918a689ad..000000000000 --- a/net/p5-Net-SNMP3/pkg-plist +++ /dev/null @@ -1,6 +0,0 @@ -lib/perl5/site_perl/%%PERL_VER%%/Net/SNMP.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Net/SNMP/.packlist -@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Net/SNMP -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Net 2>/dev/null || true -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Net 2>/dev/null || true -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/Net 2>/dev/null || true diff --git a/net/py-ldap1/Makefile b/net/py-ldap1/Makefile deleted file mode 100644 index 3aecffc9531d..000000000000 --- a/net/py-ldap1/Makefile +++ /dev/null @@ -1,25 +0,0 @@ -# New ports collection makefile for: ldapmodule -# Date created: 05.Jul 2000 -# Whom: dirk.meyer@dinoex.sub.org -# -# $FreeBSD$ - -PORTNAME= ldapmodule -PORTVERSION= 1.10alpha3 -PORTREVISION= 3 -CATEGORIES= net -MASTER_SITES= ftp://python-ldap.sourceforge.net/pub/python-ldap/ -DISTNAME= python-ldap-${PORTVERSION}-src - -MAINTAINER= dinoex@FreeBSD.org - -LIB_DEPENDS= ldap.1:${PORTSDIR}/net/openldap -BUILD_DEPENDS= python:${PORTSDIR}/lang/python -RUN_DEPENDS= python:${PORTSDIR}/lang/python - -USE_PYTHON= yes -GNU_CONFIGURE= yes -CONFIGURE_ARGS+=--with-ldap=${LOCALBASE} -WRKSRC= ${WRKDIR}/${DISTNAME:S=-src==} - -.include <bsd.port.mk> diff --git a/net/py-ldap1/distinfo b/net/py-ldap1/distinfo deleted file mode 100644 index 07ac0213610a..000000000000 --- a/net/py-ldap1/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (python-ldap-1.10alpha3-src.tar.gz) = a4e95cf9edec1b7952a5decbc8080372 diff --git a/net/py-ldap1/files/patch-Makefile.in b/net/py-ldap1/files/patch-Makefile.in deleted file mode 100644 index 17e51a4a0584..000000000000 --- a/net/py-ldap1/files/patch-Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- Makefile.in.orig Wed May 23 09:11:33 2001 -+++ Makefile.in Wed May 23 09:12:10 2001 -@@ -26,6 +26,8 @@ - $(INSTALL_DIR) $(DESTDIR)$(LIBDEST)/site-packages/python-ldap - $(INSTALL_DATA) $(srcdir)/Misc/ldap.pth \ - $(DESTDIR)$(LIBDEST)/site-packages/ldap.pth -+ $(INSTALL_DATA) $(srcdir)/Modules/_ldapmodule.so \ -+ $(DESTDIR)$(LIBDEST)/site-packages/_ldapmodule.so - for f in $(srcdir)/Lib/*.py; do \ - $(INSTALL_DATA) $$f $(DESTDIR)$(LIBDEST)/site-packages/python-ldap/;\ - done diff --git a/net/py-ldap1/files/patch-constants.c b/net/py-ldap1/files/patch-constants.c deleted file mode 100644 index 65b496acb045..000000000000 --- a/net/py-ldap1/files/patch-constants.c +++ /dev/null @@ -1,156 +0,0 @@ ---- Modules/constants.c.orig Sun Aug 13 16:00:59 2000 -+++ Modules/constants.c Mon Nov 6 11:02:43 2000 -@@ -66,7 +66,6 @@ - add_int(d,VERSION1); - add_int(d,VERSION2); - add_int(d,VERSION); -- add_int(d,MAX_ATTR_LEN); - add_int(d,TAG_MESSAGE); - add_int(d,TAG_MSGID); - -@@ -79,9 +78,27 @@ - add_int(d,REQ_MODRDN); - add_int(d,REQ_COMPARE); - add_int(d,REQ_ABANDON); -+ -+#if defined(LDAP_API_VERSION) -+ /* OpenLDAPv2 */ -+ add_int(d,VERSION3); -+ add_int(d,VERSION_MIN); -+ add_int(d,VERSION_MAX); -+ add_int(d,TAG_LDAPDN); -+ add_int(d,TAG_LDAPCRED); -+ add_int(d,TAG_CONTROLS); -+ add_int(d,TAG_REFERRAL); -+ -+ add_int(d,REQ_MODDN); -+ add_int(d,REQ_RENAME); -+#else -+ /* OpenLDAPv1 */ -+ add_int(d,MAX_ATTR_LEN); -+ - add_int(d,REQ_UNBIND_30); - add_int(d,REQ_DELETE_30); - add_int(d,REQ_ABANDON_30); -+#endif - - /* reversibles */ - -@@ -89,6 +106,14 @@ - PyDict_SetItem( reverse, zero, Py_None ); - Py_DECREF( zero ); - -+#if defined(LDAP_API_VERSION) -+ /* OpenLDAPv2 */ -+ add_int_r(d,RES_SEARCH_REFERENCE); -+ add_int_r(d,RES_MODDN); /* Aliases for RES_MODRDN; */ -+ add_int_r(d,RES_RENAME); /* init them before the main name */ -+ add_int(d,RES_UNSOLICITED); -+#endif -+ - add_int_r(d,RES_BIND); - add_int_r(d,RES_SEARCH_ENTRY); - add_int_r(d,RES_SEARCH_RESULT); -@@ -106,9 +131,6 @@ - add_int(d,AUTH_KRBV4); - add_int(d,AUTH_KRBV41); - add_int(d,AUTH_KRBV42); -- add_int(d,AUTH_SIMPLE_30); -- add_int(d,AUTH_KRBV41_30); -- add_int(d,AUTH_KRBV42_30); - add_int(d,FILTER_AND); - add_int(d,FILTER_OR); - add_int(d,FILTER_NOT); -@@ -118,13 +140,9 @@ - add_int(d,FILTER_LE); - add_int(d,FILTER_PRESENT); - add_int(d,FILTER_APPROX); -- add_int(d,FILTER_PRESENT_30); - add_int(d,SUBSTRING_INITIAL); - add_int(d,SUBSTRING_ANY); - add_int(d,SUBSTRING_FINAL); -- add_int(d,SUBSTRING_INITIAL_30); -- add_int(d,SUBSTRING_ANY_30); -- add_int(d,SUBSTRING_FINAL_30); - add_int(d,SCOPE_BASE); - add_int(d,SCOPE_ONELEVEL); - add_int(d,SCOPE_SUBTREE); -@@ -133,6 +151,16 @@ - add_int(d,MOD_REPLACE); - add_int(d,MOD_BVALUES); - -+#if !defined(LDAP_API_VERSION) -+ /* OpenLDAPv1 */ -+ add_int(d,AUTH_SIMPLE_30); -+ add_int(d,AUTH_KRBV41_30); -+ add_int(d,AUTH_KRBV42_30); -+ add_int(d,FILTER_PRESENT_30); -+ add_int(d,SUBSTRING_INITIAL_30); -+ add_int(d,SUBSTRING_ANY_30); -+ add_int(d,SUBSTRING_FINAL_30); -+ - /* (errors.c contains the error constants) */ - - add_int(d,DEFAULT_REFHOPLIMIT); -@@ -145,15 +173,36 @@ - #ifdef LDAP_CACHE_OPT_CACHEALLERRS - add_int(d,CACHE_OPT_CACHEALLERRS); - #endif -+ -+#endif /* !defined(LDAP_API_VERSION) */ - add_int(d,FILT_MAXSIZ); - add_int(d,DEREF_NEVER); - add_int(d,DEREF_SEARCHING); - add_int(d,DEREF_FINDING); - add_int(d,DEREF_ALWAYS); - add_int(d,NO_LIMIT); -+#if defined(LDAP_API_VERSION) -+ /* OpenLDAPv2 */ -+ add_int(d,OPT_API_INFO); -+ add_int(d,OPT_DESC); -+ add_int(d,OPT_DEREF); -+ add_int(d,OPT_SIZELIMIT); -+ add_int(d,OPT_TIMELIMIT); -+ add_int(d,OPT_PROTOCOL_VERSION); -+ add_int(d,OPT_SERVER_CONTROLS); -+ add_int(d,OPT_CLIENT_CONTROLS); -+ add_int(d,OPT_API_FEATURE_INFO); -+ add_int(d,OPT_HOST_NAME); -+ add_int(d,OPT_ERROR_NUMBER); -+ add_int(d,OPT_ERROR_STRING); -+ add_int(d,OPT_MATCHED_DN); -+ add_int(d,OPT_PRIVATE_EXTENSION_BASE); -+#else -+ /* OpenLDAPv1 */ - #ifdef LDAP_OPT_DNS - add_int(d,OPT_DNS); - #endif -+#endif /* defined(LDAP_API_VERSION) */ - #ifdef LDAP_OPT_REFERRALS - add_int(d,OPT_REFERRALS); - #endif -@@ -161,9 +210,24 @@ - - /* XXX - these belong in errors.c */ - -+#if defined(LDAP_API_VERSION) -+ /* OpenLDAPv2 */ -+ add_int(d,URL_SUCCESS); -+ add_int(d,URL_ERR_PARAM); -+ add_int(d,URL_ERR_BADSCHEME); -+ add_int(d,URL_ERR_BADENCLOSURE); -+ add_int(d,URL_ERR_BADURL); -+ add_int(d,URL_ERR_BADHOST); -+ add_int(d,URL_ERR_BADATTRS); -+ add_int(d,URL_ERR_BADSCOPE); -+ add_int(d,URL_ERR_BADFILTER); -+ add_int(d,URL_ERR_BADEXTS); -+#else -+ /* OpenLDAPv1 */ - add_int(d,URL_ERR_NOTLDAP); - add_int(d,URL_ERR_NODN); - add_int(d,URL_ERR_BADSCOPE); -+#endif /* defined(LDAP_API_VERSION) */ - add_int(d,URL_ERR_MEM); - - /* author */ diff --git a/net/py-ldap1/files/patch-errors.c b/net/py-ldap1/files/patch-errors.c deleted file mode 100644 index 86d6baa60aba..000000000000 --- a/net/py-ldap1/files/patch-errors.c +++ /dev/null @@ -1,115 +0,0 @@ ---- Modules/errors.c.orig Wed Nov 15 10:41:35 2000 -+++ Modules/errors.c Wed Nov 15 14:17:15 2000 -@@ -17,7 +17,13 @@ - - /* list of error objects */ - -+#if defined(LDAP_API_VERSION) -+/* OpenLDAPv2 */ -+#define NUM_LDAP_ERRORS LDAP_REFERRAL_LIMIT_EXCEEDED+1 -+#else -+/* OpenLDAPv1 */ - #define NUM_LDAP_ERRORS LDAP_NO_MEMORY+1 -+#endif - static PyObject* - errobjects[ NUM_LDAP_ERRORS ]; - -@@ -30,21 +36,26 @@ - PyErr_SetFromErrno( LDAPexception_class ); - return NULL; - } --#ifdef LDAP_TYPE_IS_OPAQUE -+#if defined(LDAP_TYPE_IS_OPAQUE) && !defined(LDAP_API_VERSION) - else { - PyErr_SetString(LDAPexception_class, - "unknown error (C API does not expose error)"); - return NULL; - } --#else -+#else /* defined(LDAP_TYPE_IS_OPAQUE) && !defined(LDAP_API_VERSION) */ - else { - int errnum; - PyObject *errobj; - PyObject *info; - PyObject *str; - -+#if defined(LDAP_API_VERSION) -+ char *matched, *error; -+ if (ldap_get_option(l, LDAP_OPT_ERROR_NUMBER, &errnum) < 0) -+#else - errnum = l->ld_errno; - if (errnum<0 || errnum>=NUM_LDAP_ERRORS) -+#endif /* defined(LDAP_API_VERSION) */ - errobj = LDAPexception_class; /* unknown error XXX */ - else - errobj = errobjects[errnum]; -@@ -61,6 +72,35 @@ - PyDict_SetItemString( info, "desc", str ); - Py_XDECREF(str); - -+#if defined(LDAP_API_VERSION) -+ if (ldap_get_option(l, LDAP_OPT_MATCHED_DN, &matched) >= 0 -+ && matched != NULL) { -+ if (*matched != '\0') { -+ str = PyString_FromString(matched); -+ if (str) -+ PyDict_SetItemString( info, "matched", str ); -+ Py_XDECREF(str); -+ } -+ ldap_memfree(matched); -+ } -+ -+ if (errnum == LDAP_REFERRAL) { -+ str = PyString_FromString(msg); -+ if (str) -+ PyDict_SetItemString( info, "info", str ); -+ Py_XDECREF(str); -+ } else if (ldap_get_option(l, LDAP_OPT_ERROR_STRING, &error) >= 0 -+ && error != NULL) { -+ if (error != '\0') { -+ str = PyString_FromString(error); -+ if (str) -+ PyDict_SetItemString( info, "info", str ); -+ Py_XDECREF(str); -+ } -+ ldap_memfree(error); -+ } -+ -+#else /* defined(LDAP_API_VERSION) */ - if (l->ld_matched != NULL && *l->ld_matched != '\0') - { - str = PyString_FromString(l->ld_matched); -@@ -76,11 +116,12 @@ - PyDict_SetItemString( info, "info", str ); - Py_XDECREF(str); - } -+#endif /* defined(LDAP_API_VERSION) */ - PyErr_SetObject( errobj, info ); - Py_DECREF(info); - return NULL; - } --#endif -+#endif /* defined(LDAP_TYPE_IS_OPAQUE) && !defined(LDAP_API_VERSION) */ - } - - -@@ -163,4 +204,19 @@ - seterrobj(USER_CANCELLED); - seterrobj(PARAM_ERROR); - seterrobj(NO_MEMORY); -+#if defined(LDAP_API_VERSION) -+ seterrobj(REFERRAL); -+ seterrobj(ADMINLIMIT_EXCEEDED); -+ seterrobj(UNAVAILABLE_CRITICAL_EXTENSION); -+ seterrobj(CONFIDENTIALITY_REQUIRED); -+ seterrobj(SASL_BIND_IN_PROGRESS); -+ seterrobj(AFFECTS_MULTIPLE_DSAS); -+ seterrobj(CONNECT_ERROR); -+ seterrobj(NOT_SUPPORTED); -+ seterrobj(CONTROL_NOT_FOUND); -+ seterrobj(NO_RESULTS_RETURNED); -+ seterrobj(MORE_RESULTS_TO_RETURN); -+ seterrobj(CLIENT_LOOP); -+ seterrobj(REFERRAL_LIMIT_EXCEEDED); -+#endif - } diff --git a/net/py-ldap1/files/patch-message.c b/net/py-ldap1/files/patch-message.c deleted file mode 100644 index 1b7111a84ae2..000000000000 --- a/net/py-ldap1/files/patch-message.c +++ /dev/null @@ -1,43 +0,0 @@ ---- Modules/message.c.orig Wed Nov 15 10:41:35 2000 -+++ Modules/message.c Wed Nov 15 16:51:18 2000 -@@ -114,6 +114,40 @@ - PyList_Append(result, entrytuple); - Py_DECREF(entrytuple); - } -+#if defined(LDAP_API_VERSION) -+ for(entry = ldap_first_reference(ld,m); -+ entry != NULL; -+ entry = ldap_next_reference(ld,entry)) -+ { -+ char **refs = NULL; -+ PyObject* entrytuple; -+ PyObject* reflist = PyList_New(0); -+ -+ if (reflist == NULL) { -+ Py_DECREF(result); -+ ldap_msgfree( m ); -+ return NULL; -+ } -+ if (ldap_parse_reference(ld, entry, &refs, NULL, 0) != LDAP_SUCCESS) { -+ Py_DECREF(result); -+ ldap_msgfree( m ); -+ return LDAPerror( ld, "ldap_parse_reference" ); -+ } -+ if (refs) { -+ int i; -+ for (i=0; refs[i] != NULL; i++) { -+ PyObject *refstr = PyString_FromString(refs[i]); -+ PyList_Append(reflist, refstr); -+ Py_DECREF(refstr); -+ } -+ ber_memvfree( (void **) refs ); -+ } -+ entrytuple = Py_BuildValue("(sO)", NULL, reflist); -+ Py_DECREF(reflist); -+ PyList_Append(result, entrytuple); -+ Py_DECREF(entrytuple); -+ } -+#endif - ldap_msgfree( m ); - return result; - } diff --git a/net/py-ldap1/pkg-comment b/net/py-ldap1/pkg-comment deleted file mode 100644 index 74fb5d0734c8..000000000000 --- a/net/py-ldap1/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -An LDAP module for python diff --git a/net/py-ldap1/pkg-descr b/net/py-ldap1/pkg-descr deleted file mode 100644 index 3b07d96df9fa..000000000000 --- a/net/py-ldap1/pkg-descr +++ /dev/null @@ -1,13 +0,0 @@ - - LDAP Wrapper for Python - - This module provides an LDAP API to Python in the spirit of RFC1823. - -Some cool things people have done with ldapmodule - - * LANL phone book (source) - * Michael Stroeder's web2ldap (previously ldap-client-cgi.py). - * LDAP support for Zope (see also Zope) - -WWW: http://python-ldap.sourceforge.net/ -FTP: ftp://python-ldap.sourceforge.net/pub/python-ldap/ diff --git a/net/py-ldap1/pkg-plist b/net/py-ldap1/pkg-plist deleted file mode 100644 index a9457c11bd86..000000000000 --- a/net/py-ldap1/pkg-plist +++ /dev/null @@ -1,12 +0,0 @@ -lib/%%PYTHON_VERSION%%/site-packages/python-ldap/ldap.py -lib/%%PYTHON_VERSION%%/site-packages/python-ldap/ldap.pyc -lib/%%PYTHON_VERSION%%/site-packages/python-ldap/ldap.pyo -lib/%%PYTHON_VERSION%%/site-packages/python-ldap/ldif.py -lib/%%PYTHON_VERSION%%/site-packages/python-ldap/ldif.pyc -lib/%%PYTHON_VERSION%%/site-packages/python-ldap/ldif.pyo -lib/%%PYTHON_VERSION%%/site-packages/python-ldap/perldap.py -lib/%%PYTHON_VERSION%%/site-packages/python-ldap/perldap.pyc -lib/%%PYTHON_VERSION%%/site-packages/python-ldap/perldap.pyo -lib/%%PYTHON_VERSION%%/site-packages/_ldapmodule.so -lib/%%PYTHON_VERSION%%/site-packages/ldap.pth -@dirrm lib/%%PYTHON_VERSION%%/site-packages/python-ldap diff --git a/net/py-ldap2/Makefile b/net/py-ldap2/Makefile deleted file mode 100644 index 3aecffc9531d..000000000000 --- a/net/py-ldap2/Makefile +++ /dev/null @@ -1,25 +0,0 @@ -# New ports collection makefile for: ldapmodule -# Date created: 05.Jul 2000 -# Whom: dirk.meyer@dinoex.sub.org -# -# $FreeBSD$ - -PORTNAME= ldapmodule -PORTVERSION= 1.10alpha3 -PORTREVISION= 3 -CATEGORIES= net -MASTER_SITES= ftp://python-ldap.sourceforge.net/pub/python-ldap/ -DISTNAME= python-ldap-${PORTVERSION}-src - -MAINTAINER= dinoex@FreeBSD.org - -LIB_DEPENDS= ldap.1:${PORTSDIR}/net/openldap -BUILD_DEPENDS= python:${PORTSDIR}/lang/python -RUN_DEPENDS= python:${PORTSDIR}/lang/python - -USE_PYTHON= yes -GNU_CONFIGURE= yes -CONFIGURE_ARGS+=--with-ldap=${LOCALBASE} -WRKSRC= ${WRKDIR}/${DISTNAME:S=-src==} - -.include <bsd.port.mk> diff --git a/net/py-ldap2/distinfo b/net/py-ldap2/distinfo deleted file mode 100644 index 07ac0213610a..000000000000 --- a/net/py-ldap2/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (python-ldap-1.10alpha3-src.tar.gz) = a4e95cf9edec1b7952a5decbc8080372 diff --git a/net/py-ldap2/files/patch-Makefile.in b/net/py-ldap2/files/patch-Makefile.in deleted file mode 100644 index 17e51a4a0584..000000000000 --- a/net/py-ldap2/files/patch-Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- Makefile.in.orig Wed May 23 09:11:33 2001 -+++ Makefile.in Wed May 23 09:12:10 2001 -@@ -26,6 +26,8 @@ - $(INSTALL_DIR) $(DESTDIR)$(LIBDEST)/site-packages/python-ldap - $(INSTALL_DATA) $(srcdir)/Misc/ldap.pth \ - $(DESTDIR)$(LIBDEST)/site-packages/ldap.pth -+ $(INSTALL_DATA) $(srcdir)/Modules/_ldapmodule.so \ -+ $(DESTDIR)$(LIBDEST)/site-packages/_ldapmodule.so - for f in $(srcdir)/Lib/*.py; do \ - $(INSTALL_DATA) $$f $(DESTDIR)$(LIBDEST)/site-packages/python-ldap/;\ - done diff --git a/net/py-ldap2/files/patch-constants.c b/net/py-ldap2/files/patch-constants.c deleted file mode 100644 index 65b496acb045..000000000000 --- a/net/py-ldap2/files/patch-constants.c +++ /dev/null @@ -1,156 +0,0 @@ ---- Modules/constants.c.orig Sun Aug 13 16:00:59 2000 -+++ Modules/constants.c Mon Nov 6 11:02:43 2000 -@@ -66,7 +66,6 @@ - add_int(d,VERSION1); - add_int(d,VERSION2); - add_int(d,VERSION); -- add_int(d,MAX_ATTR_LEN); - add_int(d,TAG_MESSAGE); - add_int(d,TAG_MSGID); - -@@ -79,9 +78,27 @@ - add_int(d,REQ_MODRDN); - add_int(d,REQ_COMPARE); - add_int(d,REQ_ABANDON); -+ -+#if defined(LDAP_API_VERSION) -+ /* OpenLDAPv2 */ -+ add_int(d,VERSION3); -+ add_int(d,VERSION_MIN); -+ add_int(d,VERSION_MAX); -+ add_int(d,TAG_LDAPDN); -+ add_int(d,TAG_LDAPCRED); -+ add_int(d,TAG_CONTROLS); -+ add_int(d,TAG_REFERRAL); -+ -+ add_int(d,REQ_MODDN); -+ add_int(d,REQ_RENAME); -+#else -+ /* OpenLDAPv1 */ -+ add_int(d,MAX_ATTR_LEN); -+ - add_int(d,REQ_UNBIND_30); - add_int(d,REQ_DELETE_30); - add_int(d,REQ_ABANDON_30); -+#endif - - /* reversibles */ - -@@ -89,6 +106,14 @@ - PyDict_SetItem( reverse, zero, Py_None ); - Py_DECREF( zero ); - -+#if defined(LDAP_API_VERSION) -+ /* OpenLDAPv2 */ -+ add_int_r(d,RES_SEARCH_REFERENCE); -+ add_int_r(d,RES_MODDN); /* Aliases for RES_MODRDN; */ -+ add_int_r(d,RES_RENAME); /* init them before the main name */ -+ add_int(d,RES_UNSOLICITED); -+#endif -+ - add_int_r(d,RES_BIND); - add_int_r(d,RES_SEARCH_ENTRY); - add_int_r(d,RES_SEARCH_RESULT); -@@ -106,9 +131,6 @@ - add_int(d,AUTH_KRBV4); - add_int(d,AUTH_KRBV41); - add_int(d,AUTH_KRBV42); -- add_int(d,AUTH_SIMPLE_30); -- add_int(d,AUTH_KRBV41_30); -- add_int(d,AUTH_KRBV42_30); - add_int(d,FILTER_AND); - add_int(d,FILTER_OR); - add_int(d,FILTER_NOT); -@@ -118,13 +140,9 @@ - add_int(d,FILTER_LE); - add_int(d,FILTER_PRESENT); - add_int(d,FILTER_APPROX); -- add_int(d,FILTER_PRESENT_30); - add_int(d,SUBSTRING_INITIAL); - add_int(d,SUBSTRING_ANY); - add_int(d,SUBSTRING_FINAL); -- add_int(d,SUBSTRING_INITIAL_30); -- add_int(d,SUBSTRING_ANY_30); -- add_int(d,SUBSTRING_FINAL_30); - add_int(d,SCOPE_BASE); - add_int(d,SCOPE_ONELEVEL); - add_int(d,SCOPE_SUBTREE); -@@ -133,6 +151,16 @@ - add_int(d,MOD_REPLACE); - add_int(d,MOD_BVALUES); - -+#if !defined(LDAP_API_VERSION) -+ /* OpenLDAPv1 */ -+ add_int(d,AUTH_SIMPLE_30); -+ add_int(d,AUTH_KRBV41_30); -+ add_int(d,AUTH_KRBV42_30); -+ add_int(d,FILTER_PRESENT_30); -+ add_int(d,SUBSTRING_INITIAL_30); -+ add_int(d,SUBSTRING_ANY_30); -+ add_int(d,SUBSTRING_FINAL_30); -+ - /* (errors.c contains the error constants) */ - - add_int(d,DEFAULT_REFHOPLIMIT); -@@ -145,15 +173,36 @@ - #ifdef LDAP_CACHE_OPT_CACHEALLERRS - add_int(d,CACHE_OPT_CACHEALLERRS); - #endif -+ -+#endif /* !defined(LDAP_API_VERSION) */ - add_int(d,FILT_MAXSIZ); - add_int(d,DEREF_NEVER); - add_int(d,DEREF_SEARCHING); - add_int(d,DEREF_FINDING); - add_int(d,DEREF_ALWAYS); - add_int(d,NO_LIMIT); -+#if defined(LDAP_API_VERSION) -+ /* OpenLDAPv2 */ -+ add_int(d,OPT_API_INFO); -+ add_int(d,OPT_DESC); -+ add_int(d,OPT_DEREF); -+ add_int(d,OPT_SIZELIMIT); -+ add_int(d,OPT_TIMELIMIT); -+ add_int(d,OPT_PROTOCOL_VERSION); -+ add_int(d,OPT_SERVER_CONTROLS); -+ add_int(d,OPT_CLIENT_CONTROLS); -+ add_int(d,OPT_API_FEATURE_INFO); -+ add_int(d,OPT_HOST_NAME); -+ add_int(d,OPT_ERROR_NUMBER); -+ add_int(d,OPT_ERROR_STRING); -+ add_int(d,OPT_MATCHED_DN); -+ add_int(d,OPT_PRIVATE_EXTENSION_BASE); -+#else -+ /* OpenLDAPv1 */ - #ifdef LDAP_OPT_DNS - add_int(d,OPT_DNS); - #endif -+#endif /* defined(LDAP_API_VERSION) */ - #ifdef LDAP_OPT_REFERRALS - add_int(d,OPT_REFERRALS); - #endif -@@ -161,9 +210,24 @@ - - /* XXX - these belong in errors.c */ - -+#if defined(LDAP_API_VERSION) -+ /* OpenLDAPv2 */ -+ add_int(d,URL_SUCCESS); -+ add_int(d,URL_ERR_PARAM); -+ add_int(d,URL_ERR_BADSCHEME); -+ add_int(d,URL_ERR_BADENCLOSURE); -+ add_int(d,URL_ERR_BADURL); -+ add_int(d,URL_ERR_BADHOST); -+ add_int(d,URL_ERR_BADATTRS); -+ add_int(d,URL_ERR_BADSCOPE); -+ add_int(d,URL_ERR_BADFILTER); -+ add_int(d,URL_ERR_BADEXTS); -+#else -+ /* OpenLDAPv1 */ - add_int(d,URL_ERR_NOTLDAP); - add_int(d,URL_ERR_NODN); - add_int(d,URL_ERR_BADSCOPE); -+#endif /* defined(LDAP_API_VERSION) */ - add_int(d,URL_ERR_MEM); - - /* author */ diff --git a/net/py-ldap2/files/patch-errors.c b/net/py-ldap2/files/patch-errors.c deleted file mode 100644 index 86d6baa60aba..000000000000 --- a/net/py-ldap2/files/patch-errors.c +++ /dev/null @@ -1,115 +0,0 @@ ---- Modules/errors.c.orig Wed Nov 15 10:41:35 2000 -+++ Modules/errors.c Wed Nov 15 14:17:15 2000 -@@ -17,7 +17,13 @@ - - /* list of error objects */ - -+#if defined(LDAP_API_VERSION) -+/* OpenLDAPv2 */ -+#define NUM_LDAP_ERRORS LDAP_REFERRAL_LIMIT_EXCEEDED+1 -+#else -+/* OpenLDAPv1 */ - #define NUM_LDAP_ERRORS LDAP_NO_MEMORY+1 -+#endif - static PyObject* - errobjects[ NUM_LDAP_ERRORS ]; - -@@ -30,21 +36,26 @@ - PyErr_SetFromErrno( LDAPexception_class ); - return NULL; - } --#ifdef LDAP_TYPE_IS_OPAQUE -+#if defined(LDAP_TYPE_IS_OPAQUE) && !defined(LDAP_API_VERSION) - else { - PyErr_SetString(LDAPexception_class, - "unknown error (C API does not expose error)"); - return NULL; - } --#else -+#else /* defined(LDAP_TYPE_IS_OPAQUE) && !defined(LDAP_API_VERSION) */ - else { - int errnum; - PyObject *errobj; - PyObject *info; - PyObject *str; - -+#if defined(LDAP_API_VERSION) -+ char *matched, *error; -+ if (ldap_get_option(l, LDAP_OPT_ERROR_NUMBER, &errnum) < 0) -+#else - errnum = l->ld_errno; - if (errnum<0 || errnum>=NUM_LDAP_ERRORS) -+#endif /* defined(LDAP_API_VERSION) */ - errobj = LDAPexception_class; /* unknown error XXX */ - else - errobj = errobjects[errnum]; -@@ -61,6 +72,35 @@ - PyDict_SetItemString( info, "desc", str ); - Py_XDECREF(str); - -+#if defined(LDAP_API_VERSION) -+ if (ldap_get_option(l, LDAP_OPT_MATCHED_DN, &matched) >= 0 -+ && matched != NULL) { -+ if (*matched != '\0') { -+ str = PyString_FromString(matched); -+ if (str) -+ PyDict_SetItemString( info, "matched", str ); -+ Py_XDECREF(str); -+ } -+ ldap_memfree(matched); -+ } -+ -+ if (errnum == LDAP_REFERRAL) { -+ str = PyString_FromString(msg); -+ if (str) -+ PyDict_SetItemString( info, "info", str ); -+ Py_XDECREF(str); -+ } else if (ldap_get_option(l, LDAP_OPT_ERROR_STRING, &error) >= 0 -+ && error != NULL) { -+ if (error != '\0') { -+ str = PyString_FromString(error); -+ if (str) -+ PyDict_SetItemString( info, "info", str ); -+ Py_XDECREF(str); -+ } -+ ldap_memfree(error); -+ } -+ -+#else /* defined(LDAP_API_VERSION) */ - if (l->ld_matched != NULL && *l->ld_matched != '\0') - { - str = PyString_FromString(l->ld_matched); -@@ -76,11 +116,12 @@ - PyDict_SetItemString( info, "info", str ); - Py_XDECREF(str); - } -+#endif /* defined(LDAP_API_VERSION) */ - PyErr_SetObject( errobj, info ); - Py_DECREF(info); - return NULL; - } --#endif -+#endif /* defined(LDAP_TYPE_IS_OPAQUE) && !defined(LDAP_API_VERSION) */ - } - - -@@ -163,4 +204,19 @@ - seterrobj(USER_CANCELLED); - seterrobj(PARAM_ERROR); - seterrobj(NO_MEMORY); -+#if defined(LDAP_API_VERSION) -+ seterrobj(REFERRAL); -+ seterrobj(ADMINLIMIT_EXCEEDED); -+ seterrobj(UNAVAILABLE_CRITICAL_EXTENSION); -+ seterrobj(CONFIDENTIALITY_REQUIRED); -+ seterrobj(SASL_BIND_IN_PROGRESS); -+ seterrobj(AFFECTS_MULTIPLE_DSAS); -+ seterrobj(CONNECT_ERROR); -+ seterrobj(NOT_SUPPORTED); -+ seterrobj(CONTROL_NOT_FOUND); -+ seterrobj(NO_RESULTS_RETURNED); -+ seterrobj(MORE_RESULTS_TO_RETURN); -+ seterrobj(CLIENT_LOOP); -+ seterrobj(REFERRAL_LIMIT_EXCEEDED); -+#endif - } diff --git a/net/py-ldap2/files/patch-message.c b/net/py-ldap2/files/patch-message.c deleted file mode 100644 index 1b7111a84ae2..000000000000 --- a/net/py-ldap2/files/patch-message.c +++ /dev/null @@ -1,43 +0,0 @@ ---- Modules/message.c.orig Wed Nov 15 10:41:35 2000 -+++ Modules/message.c Wed Nov 15 16:51:18 2000 -@@ -114,6 +114,40 @@ - PyList_Append(result, entrytuple); - Py_DECREF(entrytuple); - } -+#if defined(LDAP_API_VERSION) -+ for(entry = ldap_first_reference(ld,m); -+ entry != NULL; -+ entry = ldap_next_reference(ld,entry)) -+ { -+ char **refs = NULL; -+ PyObject* entrytuple; -+ PyObject* reflist = PyList_New(0); -+ -+ if (reflist == NULL) { -+ Py_DECREF(result); -+ ldap_msgfree( m ); -+ return NULL; -+ } -+ if (ldap_parse_reference(ld, entry, &refs, NULL, 0) != LDAP_SUCCESS) { -+ Py_DECREF(result); -+ ldap_msgfree( m ); -+ return LDAPerror( ld, "ldap_parse_reference" ); -+ } -+ if (refs) { -+ int i; -+ for (i=0; refs[i] != NULL; i++) { -+ PyObject *refstr = PyString_FromString(refs[i]); -+ PyList_Append(reflist, refstr); -+ Py_DECREF(refstr); -+ } -+ ber_memvfree( (void **) refs ); -+ } -+ entrytuple = Py_BuildValue("(sO)", NULL, reflist); -+ Py_DECREF(reflist); -+ PyList_Append(result, entrytuple); -+ Py_DECREF(entrytuple); -+ } -+#endif - ldap_msgfree( m ); - return result; - } diff --git a/net/py-ldap2/pkg-comment b/net/py-ldap2/pkg-comment deleted file mode 100644 index 74fb5d0734c8..000000000000 --- a/net/py-ldap2/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -An LDAP module for python diff --git a/net/py-ldap2/pkg-descr b/net/py-ldap2/pkg-descr deleted file mode 100644 index 3b07d96df9fa..000000000000 --- a/net/py-ldap2/pkg-descr +++ /dev/null @@ -1,13 +0,0 @@ - - LDAP Wrapper for Python - - This module provides an LDAP API to Python in the spirit of RFC1823. - -Some cool things people have done with ldapmodule - - * LANL phone book (source) - * Michael Stroeder's web2ldap (previously ldap-client-cgi.py). - * LDAP support for Zope (see also Zope) - -WWW: http://python-ldap.sourceforge.net/ -FTP: ftp://python-ldap.sourceforge.net/pub/python-ldap/ diff --git a/net/py-ldap2/pkg-plist b/net/py-ldap2/pkg-plist deleted file mode 100644 index a9457c11bd86..000000000000 --- a/net/py-ldap2/pkg-plist +++ /dev/null @@ -1,12 +0,0 @@ -lib/%%PYTHON_VERSION%%/site-packages/python-ldap/ldap.py -lib/%%PYTHON_VERSION%%/site-packages/python-ldap/ldap.pyc -lib/%%PYTHON_VERSION%%/site-packages/python-ldap/ldap.pyo -lib/%%PYTHON_VERSION%%/site-packages/python-ldap/ldif.py -lib/%%PYTHON_VERSION%%/site-packages/python-ldap/ldif.pyc -lib/%%PYTHON_VERSION%%/site-packages/python-ldap/ldif.pyo -lib/%%PYTHON_VERSION%%/site-packages/python-ldap/perldap.py -lib/%%PYTHON_VERSION%%/site-packages/python-ldap/perldap.pyc -lib/%%PYTHON_VERSION%%/site-packages/python-ldap/perldap.pyo -lib/%%PYTHON_VERSION%%/site-packages/_ldapmodule.so -lib/%%PYTHON_VERSION%%/site-packages/ldap.pth -@dirrm lib/%%PYTHON_VERSION%%/site-packages/python-ldap diff --git a/net/rdesktop-devel/Makefile b/net/rdesktop-devel/Makefile deleted file mode 100644 index a6593799bb40..000000000000 --- a/net/rdesktop-devel/Makefile +++ /dev/null @@ -1,41 +0,0 @@ -# New ports collection makefile for: rdesktop -# Date created: 13 December 2000 -# Whom: mwest@uct.ac.za -# -# $FreeBSD$ -# - -PORTNAME= rdesktop -PORTVERSION= 1.0.0.p19.7.2 -PORTREVISION= 1 -CATEGORIES= net comms -MASTER_SITES= http://bibl4.oru.se/projects/rdesktop/dist/releases/ -DISTNAME= rdesktop-1.0.0 - -PATCH_SITES= http://bibl4.oru.se/projects/rdesktop/ \ - http://bibl4.oru.se/projects/rdesktop/patch19/ -PATCHFILES= rdesktop-unified-patch19-7-2.bz2 -PATCH_DIST_STRIP= -p2 - -MAINTAINER= chris@aims.com.au - -USE_XLIB= yes -USE_BZIP2= yes -USE_GMAKE= yes -USE_OPENSSL= yes - -MAN1= rdesktop.1 -ALL_TARGET= - -do-patch: - @${EXTRACT_CMD} -dc ${_DISTDIR}/${PATCHFILES} | \ - ${PATCH} ${PATCH_DIST_ARGS} - @${PERL} -pi.orig -e 's:-O2.*-Wall:${CFLAGS}:g' ${WRKSRC}/Makefile - @${PERL} -pi.orig -e 's:/usr/X11R6/:${X11BASE}/:g' ${WRKSRC}/Makefile - @${PERL} -pi.orig -e 's:^PREFIX.*:PREFIX=${PREFIX}:g' ${WRKSRC}/Makefile - @${PERL} -pi.orig -e 's:^install.*:install\: rdesktop:g' ${WRKSRC}/Makefile - @${PERL} -pi.orig -e 's:^.*\(INSTALL\) rdp-srvr.*::g' ${WRKSRC}/Makefile - @${PERL} -pi.orig -e 's:<endian.h>:<machine/endian.h>:g' ${WRKSRC}/rdesktop.h - @${PATCH} ${PATCH_ARGS} < files/patch-aa - -.include <bsd.port.mk> diff --git a/net/rdesktop-devel/distinfo b/net/rdesktop-devel/distinfo deleted file mode 100644 index b731f788406d..000000000000 --- a/net/rdesktop-devel/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (rdesktop-1.0.0.tar.bz2) = 2f45a57016fe7ee7930848bbcb94f8b7 -MD5 (rdesktop-unified-patch19-7-2.bz2) = 10836ca287d23df814686a4aaca78c19 diff --git a/net/rdesktop-devel/files/patch-aa b/net/rdesktop-devel/files/patch-aa deleted file mode 100644 index e9b7e1fb54eb..000000000000 --- a/net/rdesktop-devel/files/patch-aa +++ /dev/null @@ -1,12 +0,0 @@ ---- secure.c~ Mon Aug 27 16:33:56 2001 -+++ secure.c Mon Aug 27 16:36:19 2001 -@@ -387,6 +387,9 @@ - { - int hostlen = 2 * ( hostname == 0 ? 0 : strlen (hostname)); - -+ if (hostlen > 30) -+ hostlen = 30; -+ - out_uint16_be (s, 5); /* unknown */ - out_uint16_be (s, 0x14); - out_uint8 (s, 0x7c); diff --git a/net/rdesktop-devel/pkg-comment b/net/rdesktop-devel/pkg-comment deleted file mode 100644 index ed48bfd07d49..000000000000 --- a/net/rdesktop-devel/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -RDP client for Windows NT Terminal Server diff --git a/net/rdesktop-devel/pkg-descr b/net/rdesktop-devel/pkg-descr deleted file mode 100644 index 10f041c42dda..000000000000 --- a/net/rdesktop-devel/pkg-descr +++ /dev/null @@ -1,9 +0,0 @@ -Rdesktop is an open source client for Windows NT Terminal Server, -capable of natively speaking its Remote Desktop Protocol (RDP) in -order to present the user's NT desktop. Unlike Citrix ICA, no server -extensions are required. - -WWW: http://www.rdesktop.org/ - --- -mwest@uct.ac.za diff --git a/net/rdesktop-devel/pkg-plist b/net/rdesktop-devel/pkg-plist deleted file mode 100644 index 5cae92df98c0..000000000000 --- a/net/rdesktop-devel/pkg-plist +++ /dev/null @@ -1 +0,0 @@ -bin/rdesktop diff --git a/net/rqm/Makefile b/net/rqm/Makefile deleted file mode 100644 index b3bf4bda8cb3..000000000000 --- a/net/rqm/Makefile +++ /dev/null @@ -1,32 +0,0 @@ -# New ports collection makefile for: rqm -# Date created: 30 January 2000 -# Whom: fenner -# -# $FreeBSD$ -# - -PORTNAME= rqm -PORTVERSION= 1.0.0 -CATEGORIES= mbone -MASTER_SITES= http://www-mice.cs.ucl.ac.uk/multimedia/software/rqm/1.0.0/ - -MAINTAINER= fenner@FreeBSD.Org - -LIB_DEPENDS= tk82.1:${PORTSDIR}/x11-toolkits/tk82 -BUILD_DEPENDS= ${LOCALBASE}/lib/libuclmmbase.a:${PORTSDIR}/devel/uclmmbase - -WRKSRC= ${WRKDIR}/rqm/ - -HAS_CONFIGURE= yes -CONFIGURE_ENV= PREFIX=${PREFIX} X11BASE=${X11BASE} - -ALL_TARGET= rqm - -do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/rqm ${PREFIX}/bin -.if !defined(NOPORTDOCS) - ${MKDIR} ${PREFIX}/share/doc/rqm - ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/rqm -.endif - -.include <bsd.port.mk> diff --git a/net/rqm/distinfo b/net/rqm/distinfo deleted file mode 100644 index fafa49256e6a..000000000000 --- a/net/rqm/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (rqm-1.0.0.tar.gz) = 406a9bfe4a3e9ad9f1a981701072f54a diff --git a/net/rqm/files/patch-aa b/net/rqm/files/patch-aa deleted file mode 100644 index a12327db8444..000000000000 --- a/net/rqm/files/patch-aa +++ /dev/null @@ -1,35 +0,0 @@ ---- configure.orig Sun Oct 3 08:47:46 1999 -+++ configure Sun Jan 30 16:05:14 2000 -@@ -53,9 +53,9 @@ - - echo "Configuring rqm v$VERSION for $OSTYPE" - --GCCWFLAGS="-W -Wall -Wbad-function-cast -Wmissing-prototypes -Wno-implicit-int -Werror" --TCL_LIBS="../tk-8.0/unix/libtk8.0.a ../tcl-8.0/unix/libtcl8.0.a" --TCL_INCL="-I../tk-8.0/generic -I../tcl-8.0/generic" -+GCCWFLAGS="-W -Wall -Wbad-function-cast -Wmissing-prototypes -Wno-implicit-int" -+TCL_LIBS="-L${PREFIX}/lib -ltk82 -ltcl82" -+TCL_INCL="-I${PREFIX}/include/tk8.2/generic -I${PREFIX}/include/tcl8.2/generic" - DEFS="" - - AR="ar" -@@ -103,7 +103,7 @@ - ;; - FreeBSD ) CC="gcc" - WFLAGS=$GCCWFLAGS -- INCLUDE="-I/usr/local/include" -+ INCLUDE="-I${PREFIX}/include -I${X11BASE}/include" - LDLIBS="-lm" - DEBUG="-g" - CHAR="-fsigned-char" -@@ -172,8 +172,8 @@ - s@__AR__@$AR@ - s@__RANLIB__@$RANLIB@ - s@__WFLAGS__@$WFLAGS@ --s@__INCLUDE__@$TCL_INCL $INCLUDE -I../common@g --s@__LDLIBS__@$TCL_LIBS -L../common -lcommon $LDLIBS@g -+s@__INCLUDE__@$TCL_INCL $INCLUDE -I${PREFIX}/include/uclmmbase@g -+s@__LDLIBS__@$TCL_LIBS -L${PREFIX}/lib -luclmmbase $LDLIBS@g - s@__CHAR__@$CHAR@ - s@__DEBUG__@$DEBUG2@ - s@__OPTIMIZE__@$OPTIMIZE2@ diff --git a/net/rqm/files/patch-ab b/net/rqm/files/patch-ab deleted file mode 100644 index 826bea2a47e6..000000000000 --- a/net/rqm/files/patch-ab +++ /dev/null @@ -1,20 +0,0 @@ ---- main.c.orig Wed Mar 8 08:32:07 2000 -+++ main.c Wed Mar 8 08:32:28 2000 -@@ -177,7 +177,7 @@ - char *addr; - char *port; - char cmd[100]; -- u_int32 curr_rtp_time; -+ u_int32_t curr_rtp_time; - #ifdef WIN32 - WSADATA WSAdata; - if (WSAStartup(WS_VERSION_TWO, &WSAdata) != 0 && WSAStartup(WS_VERSION_ONE, &WSAdata) != 0) { -@@ -215,7 +215,7 @@ - rtp_set_sdes(rtp_session, rtp_my_ssrc(rtp_session), RTCP_SDES_TOOL, VERSION, strlen(VERSION)); - - gettimeofday(&prev_t, NULL); -- curr_rtp_time = (u_int32) lrand48(); -+ curr_rtp_time = (u_int32_t) lrand48(); - while (Tk_GetNumMainWindows() > 0) { - gettimeofday(&curr_t, NULL); - curr_rtp_time += (int) (tv_diff(curr_t, prev_t) * 8000); diff --git a/net/rqm/pkg-comment b/net/rqm/pkg-comment deleted file mode 100644 index e33c64e88137..000000000000 --- a/net/rqm/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -A graphical RTP quality monitor diff --git a/net/rqm/pkg-descr b/net/rqm/pkg-descr deleted file mode 100644 index 0f66e31ecfde..000000000000 --- a/net/rqm/pkg-descr +++ /dev/null @@ -1,7 +0,0 @@ -The Real-time Transport Protocol, RTP [1], provides quality of service -feedback with reception reports sent alongside the media stream. If the -media is sent via IP multicast it is possible for a third party to snoop -on these reception reports, displaying reception quality for all members -of a group. The RQM application performs such snooping. - -WWW: http://www-mice.cs.ucl.ac.uk/multimedia/software/rqm/ diff --git a/net/rqm/pkg-plist b/net/rqm/pkg-plist deleted file mode 100644 index bdf2098794d3..000000000000 --- a/net/rqm/pkg-plist +++ /dev/null @@ -1,3 +0,0 @@ -bin/rqm -share/doc/rqm/README -@dirrm share/doc/rqm diff --git a/net/rrdtool10/Makefile b/net/rrdtool10/Makefile deleted file mode 100644 index d0007efddc2b..000000000000 --- a/net/rrdtool10/Makefile +++ /dev/null @@ -1,40 +0,0 @@ -# New ports collection makefile for: rrdtool -# Date created: 20 July 1999 -# Whom: Dmitry Sivachenko <dima@Chg.RU> -# -# $FreeBSD$ -# - -PORTNAME= rrdtool -PORTVERSION= 1.0.33 -CATEGORIES= net -MASTER_SITES= http://people.ee.ethz.ch/~oetiker/webtools/rrdtool/pub/ - -MAINTAINER= demon@FreeBSD.org - -USE_PERL5= yes -MAKE_ENV+= PERL=${PERL} - -USE_GMAKE= yes -USE_LIBTOOL= yes -INSTALLS_SHLIB= yes -CONFIGURE_ARGS= --enable-shared=yes -CONFIGURE_ENV= PERL=${PERL} -CFLAGS:= ${CFLAGS:N-ffast-math} - -MAN1= RRDp.1 RRDs.1 bin_dec_hex.1 rrdcgi.1 rrdcreate.1 rrddump.1 \ - rrdfetch.1 rrdgraph.1 rrdlast.1 rrdresize.1 rrdrestore.1 \ - rrdtool.1 rrdtune.1 rrdtutorial.1 rrdtutorial.es.1 rrdupdate.1 \ - cdeftutorial.1 rpntutorial.1 rrdinfo.1 -MAN3= RRDp.3 RRDs.3 -MAN3PREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} - -post-install: -.if !defined(BATCH) - @${ECHO} "" - @${ECHO} "############################################################################" - @${ECHO} "# See ${PREFIX}/share/examples/rrdtool for some demonstration code #" - @${ECHO} "############################################################################" -.endif - -.include <bsd.port.mk> diff --git a/net/rrdtool10/distinfo b/net/rrdtool10/distinfo deleted file mode 100644 index aedd58977a94..000000000000 --- a/net/rrdtool10/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (rrdtool-1.0.33.tar.gz) = 54bb6daf131cdc4bbe2bcf005bf583a5 diff --git a/net/rrdtool10/files/patch-aa b/net/rrdtool10/files/patch-aa deleted file mode 100644 index ebf17ddaf33b..000000000000 --- a/net/rrdtool10/files/patch-aa +++ /dev/null @@ -1,12 +0,0 @@ ---- perl-shared/Makefile.PL.orig Tue Jun 13 20:51:17 2000 -+++ perl-shared/Makefile.PL Tue Jun 13 20:51:19 2000 -@@ -10,7 +10,8 @@ - 'NAME' => 'RRDs', - 'VERSION_FROM' => 'RRDs.pm', # finds $VERSION - 'DEFINE' => "-DPERLPATCHLEVEL=$Config{PATCHLEVEL}", -- 'INC' => '-I../src -I../gd1.3', -+ 'CCFLAGS' => "-DHAVE_CONFIG_H", -+ 'INC' => '-I../config -I../src -I../gd1.3', - # where to look for the necessary libraries - # Perl will figure out which one is valid - 'depend' => {'RRDs.c' => "../src/.libs/librrd_private.a"}, diff --git a/net/rrdtool10/files/patch-ab b/net/rrdtool10/files/patch-ab deleted file mode 100644 index 2513bfe423fb..000000000000 --- a/net/rrdtool10/files/patch-ab +++ /dev/null @@ -1,18 +0,0 @@ ---- src/rrd_tool.c.orig Tue Jun 13 20:56:08 2000 -+++ src/rrd_tool.c Tue Jun 13 20:56:10 2000 -@@ -317,12 +317,12 @@ - datai=data; - printf(" "); - for (i = 0; i<ds_cnt;i++) -- printf("%14s",ds_namv[i]); -+ printf("%14s ",ds_namv[i]); - printf ("\n\n"); - for (i = start; i <= end; i += step){ -- printf("%10lu:", i); -+ printf("%10lu: ", i); - for (ii = 0; ii < ds_cnt; ii++) -- printf(" %0.10e", *(datai++)); -+ printf(" %0.10e ", *(datai++)); - printf("\n"); - } - for (i=0;i<ds_cnt;i++) diff --git a/net/rrdtool10/files/patch-ac b/net/rrdtool10/files/patch-ac deleted file mode 100644 index 26d5410e4faf..000000000000 --- a/net/rrdtool10/files/patch-ac +++ /dev/null @@ -1,21 +0,0 @@ ---- Makefile.in.orig Wed Oct 4 13:09:37 2000 -+++ Makefile.in Wed Oct 4 13:10:39 2000 -@@ -383,12 +383,12 @@ - - # lets schedule the perl stuff for installation - # the special call to install-sh is because the -d switch is not portable --install-data-local: -- ./config/mkinstalldirs $(DESTDIR)$(prefix)/lib/perl/auto/RRDs -- $(INSTALL) -m 644 perl-piped/RRDp.pm $(DESTDIR)$(prefix)/lib/perl -- $(INSTALL) -m 644 perl-shared/RRDs.pm $(DESTDIR)$(prefix)/lib/perl -- $(INSTALL) -m 644 perl-shared/blib/arch/auto/RRDs/RRDs.bs $(DESTDIR)$(prefix)/lib/perl/auto/RRDs -- $(INSTALL) -m 755 perl-shared/blib/arch/auto/RRDs/RRDs.@SO_EXT@ $(DESTDIR)$(prefix)/lib/perl/auto/RRDs -+install-data-local: site-perl-inst -+# ./config/mkinstalldirs $(DESTDIR)$(prefix)/lib/perl/auto/RRDs -+# $(INSTALL) -m 644 perl-piped/RRDp.pm $(DESTDIR)$(prefix)/lib/perl -+# $(INSTALL) -m 644 perl-shared/RRDs.pm $(DESTDIR)$(prefix)/lib/perl -+# $(INSTALL) -m 644 perl-shared/blib/arch/auto/RRDs/RRDs.bs $(DESTDIR)$(prefix)/lib/perl/auto/RRDs -+# $(INSTALL) -m 755 perl-shared/blib/arch/auto/RRDs/RRDs.@SO_EXT@ $(DESTDIR)$(prefix)/lib/perl/auto/RRDs - - # rules for building the perl module - perl_piped: perl-piped/Makefile diff --git a/net/rrdtool10/files/patch-ae b/net/rrdtool10/files/patch-ae deleted file mode 100644 index 98feb795d0ff..000000000000 --- a/net/rrdtool10/files/patch-ae +++ /dev/null @@ -1,14 +0,0 @@ ---- doc/Makefile.in.orig Fri Jan 7 20:56:21 2000 -+++ doc/Makefile.in Fri Jan 7 20:57:05 2000 -@@ -96,9 +96,9 @@ - EXTRA_DIST = $(POD) $(HTML) $(TXT) - - # some install rules --idocdir = $(prefix)/doc -+idocdir = $(prefix)/share/doc/rrdtool - idoc_DATA = $(POD) $(TXT) --ihtmldir = $(prefix)/html -+ihtmldir = $(prefix)/share/doc/rrdtool/html - ihtml_DATA = $(HTML) - imandir = $(prefix)/man/man1 - iman_DATA = $(MAN) diff --git a/net/rrdtool10/files/patch-af b/net/rrdtool10/files/patch-af deleted file mode 100644 index a109c319e248..000000000000 --- a/net/rrdtool10/files/patch-af +++ /dev/null @@ -1,11 +0,0 @@ ---- examples/Makefile.in.orig Fri Jan 7 20:58:16 2000 -+++ examples/Makefile.in Fri Jan 7 20:59:13 2000 -@@ -81,7 +81,7 @@ - - EXTRA_DIST = cgi-demo.cgi.in piped-demo.pl.in shared-demo.pl.in stripes.pl.in bigtops.pl.in minmax.pl.in - --examplesdir = $(prefix)/examples -+examplesdir = $(prefix)/share/examples/rrdtool - examples_SCRIPTS = cgi-demo.cgi piped-demo.pl shared-demo.pl stripes.pl bigtops.pl minmax.pl - mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs - CONFIG_HEADER = ../config/config.h diff --git a/net/rrdtool10/files/patch-ag b/net/rrdtool10/files/patch-ag deleted file mode 100644 index fde216a89988..000000000000 --- a/net/rrdtool10/files/patch-ag +++ /dev/null @@ -1,11 +0,0 @@ ---- contrib/Makefile.in.orig Thu Feb 22 12:56:40 2001 -+++ contrib/Makefile.in Thu Feb 22 12:56:57 2001 -@@ -87,7 +87,7 @@ - ZLIB_LIB_DIR = @ZLIB_LIB_DIR@ - - SUBDIRS = trytime --contribdir = $(prefix)/contrib -+contribdir = $(prefix)/share/examples/rrdtool - contrib_DATA = README - EXTRA_DIST = rrdview log2rrd rrd-file-icon rrdproc rrdlastds add_ds killspike rrdfetchnames snmpstats rrdexplorer php3 php4 - mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs diff --git a/net/rrdtool10/files/patch-ak b/net/rrdtool10/files/patch-ak deleted file mode 100644 index f998e6995400..000000000000 --- a/net/rrdtool10/files/patch-ak +++ /dev/null @@ -1,11 +0,0 @@ ---- contrib/trytime/Makefile.in.orig Fri Jan 7 21:11:21 2000 -+++ contrib/trytime/Makefile.in Fri Jan 7 21:11:41 2000 -@@ -76,7 +76,7 @@ - ZLIB_LIB_DIR = @ZLIB_LIB_DIR@ - - EXTRA_DIST = trytime.c --contribdir = $(prefix)/contrib/trytime -+contribdir = $(prefix)/share/examples/rrdtool/trytime - contrib_DATA = README trytime.c - mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs - CONFIG_HEADER = ../../config/config.h diff --git a/net/rrdtool10/pkg-comment b/net/rrdtool10/pkg-comment deleted file mode 100644 index 73242bc78bb6..000000000000 --- a/net/rrdtool10/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Round Robin Database Tools diff --git a/net/rrdtool10/pkg-descr b/net/rrdtool10/pkg-descr deleted file mode 100644 index ca95d58a230d..000000000000 --- a/net/rrdtool10/pkg-descr +++ /dev/null @@ -1,13 +0,0 @@ -It is pretty easy to gather status information from all sorts of things, -ranging from the temperature in your office to the number of octets which -have passed through the FDDI interface of your router. But it is not so -trivial to store this data in a efficient and systematic manner. This is -where RRDtool kicks in. It lets you log and analyze the data you gather from -all kinds of data-sources (DS). The data analysis part of RRDtool is based -on the ability to quickly generate graphical representations of the data -values collected over a definable time period. - -WWW: http://ee-staff.ethz.ch/~oetiker/webtools/rrdtool/ - ---dima -dima@Chg.RU diff --git a/net/rrdtool10/pkg-plist b/net/rrdtool10/pkg-plist deleted file mode 100644 index 3afc8fccadcc..000000000000 --- a/net/rrdtool10/pkg-plist +++ /dev/null @@ -1,85 +0,0 @@ -bin/rrdtool -bin/rrdcgi -bin/trytime -bin/rrdupdate -lib/librrd.a -lib/librrd.so.0 -lib/librrd.so -include/rrd.h -share/examples/rrdtool/cgi-demo.cgi -share/examples/rrdtool/piped-demo.pl -share/examples/rrdtool/shared-demo.pl -share/examples/rrdtool/stripes.pl -share/examples/rrdtool/bigtops.pl -share/examples/rrdtool/minmax.pl -share/examples/rrdtool/trytime/trytime.c -share/examples/rrdtool/trytime/README -share/examples/rrdtool/README -share/doc/rrdtool/rrdtool.pod -share/doc/rrdtool/rrdinfo.pod -share/doc/rrdtool/rrdlast.pod -share/doc/rrdtool/rrdcreate.pod -share/doc/rrdtool/rrdupdate.pod -share/doc/rrdtool/cdeftutorial.pod -share/doc/rrdtool/rpntutorial.pod -share/doc/rrdtool/rrdgraph.pod -share/doc/rrdtool/bin_dec_hex.pod -share/doc/rrdtool/rrdfetch.pod -share/doc/rrdtool/rrdrestore.pod -share/doc/rrdtool/rrddump.pod -share/doc/rrdtool/rrdtune.pod -share/doc/rrdtool/rrdresize.pod -share/doc/rrdtool/rrdcgi.pod -share/doc/rrdtool/rrdtutorial.pod -share/doc/rrdtool/rrdtutorial.es.pod -share/doc/rrdtool/rrdtool.txt -share/doc/rrdtool/rrdinfo.txt -share/doc/rrdtool/rrdlast.txt -share/doc/rrdtool/rrdcreate.txt -share/doc/rrdtool/rrdupdate.txt -share/doc/rrdtool/cdeftutorial.txt -share/doc/rrdtool/rpntutorial.txt -share/doc/rrdtool/rrdgraph.txt -share/doc/rrdtool/bin_dec_hex.txt -share/doc/rrdtool/rrdfetch.txt -share/doc/rrdtool/rrdrestore.txt -share/doc/rrdtool/rrddump.txt -share/doc/rrdtool/rrdtune.txt -share/doc/rrdtool/rrdresize.txt -share/doc/rrdtool/rrdcgi.txt -share/doc/rrdtool/rrdtutorial.txt -share/doc/rrdtool/rrdtutorial.es.txt -share/doc/rrdtool/RRDs.txt -share/doc/rrdtool/RRDp.txt -share/doc/rrdtool/html/rrdtool.html -share/doc/rrdtool/html/rrdinfo.html -share/doc/rrdtool/html/rrdlast.html -share/doc/rrdtool/html/rrdcreate.html -share/doc/rrdtool/html/rrdupdate.html -share/doc/rrdtool/html/cdeftutorial.html -share/doc/rrdtool/html/rpntutorial.html -share/doc/rrdtool/html/rrdgraph.html -share/doc/rrdtool/html/bin_dec_hex.html -share/doc/rrdtool/html/rrdfetch.html -share/doc/rrdtool/html/rrdrestore.html -share/doc/rrdtool/html/rrddump.html -share/doc/rrdtool/html/rrdtune.html -share/doc/rrdtool/html/rrdresize.html -share/doc/rrdtool/html/rrdcgi.html -share/doc/rrdtool/html/rrdtutorial.html -share/doc/rrdtool/html/rrdtutorial.es.html -share/doc/rrdtool/html/RRDs.html -share/doc/rrdtool/html/RRDp.html -lib/perl5/site_perl/%%PERL_VER%%/RRDp.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/RRDp/.packlist -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/RRDs.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/ntmake.pl -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/RRDs/RRDs.so -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/RRDs/RRDs.bs -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/RRDs/.packlist -@dirrm share/examples/rrdtool/trytime -@dirrm share/examples/rrdtool -@dirrm share/doc/rrdtool/html -@dirrm share/doc/rrdtool -@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/RRDp -@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/RRDs diff --git a/net/rtptools/Makefile b/net/rtptools/Makefile deleted file mode 100644 index 8dfa5d3d8d07..000000000000 --- a/net/rtptools/Makefile +++ /dev/null @@ -1,27 +0,0 @@ -# New ports collection makefile for: rtptools -# Date created: 5 January 1998 -# Whom: fenner -# -# $FreeBSD$ -# - -PORTNAME= rtptools -PORTVERSION= 1.17 -CATEGORIES= mbone -MASTER_SITES= http://www.cs.columbia.edu/IRT/software/rtptools/src/ - -MAINTAINER= fenner@FreeBSD.org - -GNU_CONFIGURE= yes - -DOCFILES= README ChangeLog.html rtptools.html - -post-install: -.if !defined(NOPORTDOCS) - ${MKDIR} ${PREFIX}/share/doc/rtptools -.for i in ${DOCFILES} - ${INSTALL_DATA} ${WRKSRC}/${i} ${PREFIX}/share/doc/rtptools -.endfor -.endif - -.include <bsd.port.mk> diff --git a/net/rtptools/distinfo b/net/rtptools/distinfo deleted file mode 100644 index d558546e5784..000000000000 --- a/net/rtptools/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (rtptools-1.17.tar.gz) = 4af6ef6ba430f659d3d6478719911b65 diff --git a/net/rtptools/files/patch-ab b/net/rtptools/files/patch-ab deleted file mode 100644 index c1d142b4a914..000000000000 --- a/net/rtptools/files/patch-ab +++ /dev/null @@ -1,23 +0,0 @@ ---- rtp.h.orig Thu Mar 9 07:35:26 2000 -+++ rtp.h Sat Apr 21 21:52:49 2001 -@@ -110,13 +110,18 @@ - #define RTCP_VALID_MASK (0xc000 | 0x2000 | 0xfe) - #define RTCP_VALID_VALUE ((RTP_VERSION << 14) | RTCP_SR) - -+#define RTCP_FRACTION(x) (((x) >> 24) & 0xFF) -+#define RTCP_LOST(x) ((((x) & 0xFFFFFF) < 0x800000) ? \ -+ ((x) & 0xFFFFFF) \ -+ : (((x) & 0xFFFFFF) - 0x1000000)) -+ - /* - * Reception report block - */ - typedef struct { - u_int32 ssrc; /* data source being reported */ -- unsigned int fraction:8; /* fraction lost since last SR/RR */ -- int lost:24; /* cumul. no. pkts lost (signed!) */ -+ u_int32 fraclost; /* fraction lost since last SR/RR and */ -+ /* cumul. no. pkts lost (signed!) */ - u_int32 last_seq; /* extended last seq. no. received */ - u_int32 jitter; /* interarrival jitter */ - u_int32 lsr; /* last SR packet from this source */ diff --git a/net/rtptools/files/patch-ac b/net/rtptools/files/patch-ac deleted file mode 100644 index 28056951ca69..000000000000 --- a/net/rtptools/files/patch-ac +++ /dev/null @@ -1,24 +0,0 @@ ---- rtpdump.c.orig Sat Apr 7 08:02:13 2001 -+++ rtpdump.c Sat Apr 21 21:54:10 2001 -@@ -429,8 +429,8 @@ - for (i = 0; i < r->common.count; i++) { - fprintf(out, " (ssrc=0x%lx fraction=%g lost=%lu last_seq=%lu jit=%lu lsr=%lu dlsr=%lu )\n", - (unsigned long)ntohl(r->r.sr.rr[i].ssrc), -- r->r.sr.rr[i].fraction / 256., -- (unsigned long)ntohl(r->r.sr.rr[i].lost), /* XXX I'm pretty sure this is wrong */ -+ RTCP_FRACTION(ntohl(r->r.sr.rr[i].fraclost)) / 256., -+ RTCP_LOST(ntohl(r->r.sr.rr[i].fraclost)), - (unsigned long)ntohl(r->r.sr.rr[i].last_seq), - (unsigned long)ntohl(r->r.sr.rr[i].jitter), - (unsigned long)ntohl(r->r.sr.rr[i].lsr), -@@ -446,8 +446,8 @@ - for (i = 0; i < r->common.count; i++) { - fprintf(out, " (ssrc=0x%lx fraction=%g lost=%lu last_seq=%lu jit=%lu lsr=%lu dlsr=%lu )\n", - (unsigned long)ntohl(r->r.rr.rr[i].ssrc), -- r->r.rr.rr[i].fraction / 256., -- (unsigned long)ntohl(r->r.rr.rr[i].lost), -+ RTCP_FRACTION(ntohl(r->r.rr.rr[i].fraclost)) / 256., -+ RTCP_LOST(ntohl(r->r.rr.rr[i].fraclost)), - (unsigned long)ntohl(r->r.rr.rr[i].last_seq), - (unsigned long)ntohl(r->r.rr.rr[i].jitter), - (unsigned long)ntohl(r->r.rr.rr[i].lsr), diff --git a/net/rtptools/files/patch-ad b/net/rtptools/files/patch-ad deleted file mode 100644 index e7bbdd966728..000000000000 --- a/net/rtptools/files/patch-ad +++ /dev/null @@ -1,24 +0,0 @@ ---- rtpsend.c.orig Fri Apr 6 18:18:26 2001 -+++ rtpsend.c Sat Apr 21 21:59:35 2001 -@@ -351,9 +351,9 @@ - if (strcmp(n->type, "ssrc") == 0) - rr->ssrc = htonl(n->num); - else if (strcmp(n->type, "fraction") == 0) -- rr->fraction = (n->num)*256; -- else if (strcmp(n->type, "lost") == 0) /* PP: alignment OK? */ -- rr->lost = htonl(n->num); -+ rr->fraclost = htonl((ntohl(rr->fraclost) & 0x00ffffff) | ((n->num)*256 << 24)); -+ else if (strcmp(n->type, "lost") == 0) -+ rr->fraclost = htonl((ntohl(rr->fraclost) & 0xff000000) | n->num); - else if (strcmp(n->type, "last_seq") == 0) - rr->last_seq = htonl(n->num); - else if (strcmp(n->type, "jit") == 0) -@@ -899,6 +899,8 @@ - - if (optind < argc) { - if (hpt(argv[optind], (struct sockaddr *)&sin, &ttl) < 0) usage(argv[0]); -+ } else { -+ usage(argv[0]); - } - - /* create/connect sockets */ diff --git a/net/rtptools/pkg-comment b/net/rtptools/pkg-comment deleted file mode 100644 index 4e0d5f964364..000000000000 --- a/net/rtptools/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -A set of tools to record, playback and monitor RTPv2 data streams diff --git a/net/rtptools/pkg-descr b/net/rtptools/pkg-descr deleted file mode 100644 index 4dc99ec5b4af..000000000000 --- a/net/rtptools/pkg-descr +++ /dev/null @@ -1,13 +0,0 @@ -The rtptools distribution consists of a number of small applications that -can be used for processing RTP data. - -rtpplay - play back RTP sessions recorded by rtpdump -rtpsend - generate RTP packets from textual description, generated by hand or - rtpdump -rtpdump - parse and print RTP packets, generating output files suitable for - rtpplay and rtpsend -rtptrans - RTP translator between unicast and multicast networks diff --git a/net/rtptools/pkg-plist b/net/rtptools/pkg-plist deleted file mode 100644 index 8283c955a1fe..000000000000 --- a/net/rtptools/pkg-plist +++ /dev/null @@ -1,8 +0,0 @@ -bin/rtpdump -bin/rtpplay -bin/rtpsend -bin/rtptrans -share/doc/rtptools/README -share/doc/rtptools/ChangeLog.html -share/doc/rtptools/rtptools.html -@dirrm share/doc/rtptools diff --git a/net/ruby-socketproxy/Makefile b/net/ruby-socketproxy/Makefile deleted file mode 100644 index a6810dea84d6..000000000000 --- a/net/ruby-socketproxy/Makefile +++ /dev/null @@ -1,32 +0,0 @@ -# New ports collection makefile for: Ruby/TCPSocketPipe -# Date created: 20 July 2001 -# Whom: Akinori MUSHA aka knu <knu@idaemons.org> -# -# $FreeBSD$ -# - -PORTNAME= tcpsocketpipe -PORTVERSION= 1.8 -CATEGORIES= net ruby -MASTER_SITES= http://www.jin.gr.jp/~nahi/Ruby/TCPSocketPipe/ -PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX} -DISTNAME= TCPSocketPipe-${PORTVERSION:S/./_/g} -DIST_SUBDIR= ruby - -MAINTAINER= knu@FreeBSD.org - -RUN_DEPENDS= ${RUBY_SITELIBDIR}/application.rb:${PORTSDIR}/sysutils/ruby-application.rb \ - ${RUBY_SITELIBDIR}/dump.rb:${PORTSDIR}/converters/ruby-dump.rb - -USE_RUBY= yes - -NO_BUILD= yes - -do-install: - ${INSTALL_DATA} ${WRKSRC}/TCPSocketPipe.rb ${RUBY_SITELIBDIR}/ -.if !defined(NOPORTDOCS) - ${MKDIR} ${RUBY_EXAMPLESDIR}/${PORTNAME} - ${INSTALL_DATA} ${WRKSRC}/monitor.rb ${RUBY_EXAMPLESDIR}/${PORTNAME}/ -.endif - -.include <bsd.port.mk> diff --git a/net/ruby-socketproxy/distinfo b/net/ruby-socketproxy/distinfo deleted file mode 100644 index 10a2351512e8..000000000000 --- a/net/ruby-socketproxy/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (ruby/TCPSocketPipe-1_8.tar.gz) = 85f67daf99423abf0562ecd88904216c diff --git a/net/ruby-socketproxy/pkg-comment b/net/ruby-socketproxy/pkg-comment deleted file mode 100644 index 78f027c4321a..000000000000 --- a/net/ruby-socketproxy/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -A Ruby library to create I/O pipes for TCP socket tunneling diff --git a/net/ruby-socketproxy/pkg-descr b/net/ruby-socketproxy/pkg-descr deleted file mode 100644 index f980208efe0d..000000000000 --- a/net/ruby-socketproxy/pkg-descr +++ /dev/null @@ -1,5 +0,0 @@ -This is Ruby/TCPSocketPipe, a Ruby library to create I/O pipes for TCP -socket tunneling. - -Author: NaHi (NAKAMURA, Hiroshi) <nahi@keynauts.com> -WWW: http://www.ruby-lang.org/en/raa-list.rhtml?name=TCPSocketPipe diff --git a/net/ruby-socketproxy/pkg-plist b/net/ruby-socketproxy/pkg-plist deleted file mode 100644 index d7e8025f34a5..000000000000 --- a/net/ruby-socketproxy/pkg-plist +++ /dev/null @@ -1,3 +0,0 @@ -%%RUBY_SITELIBDIR%%/TCPSocketPipe.rb -%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/tcpsocketpipe/monitor.rb -%%PORTDOCS%%@dirrm %%RUBY_EXAMPLESDIR%%/tcpsocketpipe diff --git a/net/rwhoisd/Makefile b/net/rwhoisd/Makefile deleted file mode 100644 index a9f2c3501c9a..000000000000 --- a/net/rwhoisd/Makefile +++ /dev/null @@ -1,43 +0,0 @@ -# New ports collection makefile for: rwhois -# Date created: May 9th 1997 -# Whom: James FitzGibbon <jfitz@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= rwhois -PORTVERSION= 1.5.7 -CATEGORIES= net ipv6 -MASTER_SITES= http://www.rwhois.net/ftp/ -DISTNAME= ${PORTNAME}d-${PORTVERSION} - -MAINTAINER= ports@FreeBSD.org - -.if !exists(/usr/include/tcpd.h) -LIB_DEPENDS= wrap.7:${PORTSDIR}/security/tcp_wrapper -.endif - -HAS_CONFIGURE= yes -CONFIGURE_ARGS= --prefix=${PREFIX}/lib/rwhois - -BINOWN= bin -BINGRP= bin - -MAN8= rwhois_indexer.8 rwhoisd.8 - -PORTDOCS= INSTALL.html TODO UPGRADE operations_guide.html \ - operations_guide.txt rfc2167.txt security.html security.txt - -post-install: - ${INSTALL_MAN} ${WRKSRC}/doc/rwhois_indexer.8 ${PREFIX}/man/man8 - ${INSTALL_MAN} ${WRKSRC}/doc/rwhoisd.8 ${PREFIX}/man/man8 -.if !defined(NOPORTDOCS) - @${MKDIR} ${PREFIX}/share/doc/rwhois -.for file in ${PORTDOCS} - ${INSTALL_DATA} ${WRKSRC}/doc/${file} ${PREFIX}/share/doc/rwhois -.endfor -.endif - @${ECHO_MSG} "Installing ${PREFIX}/etc/rc.d/rwhoisd.sh startup file..." - ${INSTALL_SCRIPT} -m 751 ${FILESDIR}/rwhoisd.sh ${PREFIX}/etc/rc.d/rwhoisd.sh - -.include <bsd.port.mk> diff --git a/net/rwhoisd/distinfo b/net/rwhoisd/distinfo deleted file mode 100644 index 27c91fde8be9..000000000000 --- a/net/rwhoisd/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (rwhoisd-1.5.7.tar.gz) = 02e22ebec5c4c76a626fe74c945300a0 diff --git a/net/rwhoisd/files/patch-aa b/net/rwhoisd/files/patch-aa deleted file mode 100644 index c3ff541a6aaa..000000000000 --- a/net/rwhoisd/files/patch-aa +++ /dev/null @@ -1,11 +0,0 @@ ---- Makefile.in.orig Tue Jun 3 23:20:53 1997 -+++ Makefile.in Sat Nov 25 15:44:00 2000 -@@ -25,7 +25,7 @@ - BIN_SUBDIRS = server tools - ALL_SUBDIRS = $(LIB_SUBDIRS) $(BIN_SUBDIRS) $(SAMPLE_DATA_DIR) - --all: libraries libwrap binaries -+all: libraries binaries - - libraries: - @for dir in $(LIB_SUBDIRS); do \ diff --git a/net/rwhoisd/files/patch-ac b/net/rwhoisd/files/patch-ac deleted file mode 100644 index 05ca015c5c8c..000000000000 --- a/net/rwhoisd/files/patch-ac +++ /dev/null @@ -1,33 +0,0 @@ ---- server/Makefile.in.orig Fri May 12 01:10:25 2000 -+++ server/Makefile.in Sat Nov 25 15:27:16 2000 -@@ -9,7 +9,7 @@ - prefix = @prefix@ - exec_prefix = @exec_prefix@ - bindir = $(exec_prefix)/bin --etcdir = $(exec_prefix)/etc -+sbindir = $(exec_prefix)/sbin - - srcdir = @srcdir@ - VPATH = @srcdir@ -@@ -18,8 +18,8 @@ - COMMON_INC = -I$(srcdir)/../common - COMMON_LIBS = -L../common -lrwcommon - --WRAP_INC = -I$(srcdir)../tools/tcpd_wrapper --WRAP_LIBS = -L../tools/tcpd_wrapper -lwrap -+WRAP_INC = -I${LOCALBASE}/include -+WRAP_LIBS = -L${LOCALBASE}/lib -lwrap - - MKDB_INC = -I$(srcdir)/../mkdb - MKDB_LIBS = -L../mkdb -lmkdb -@@ -97,8 +97,8 @@ - - install: - if [ ! -d $(exec_prefix) ]; then mkdir $(exec_prefix); fi -- if [ ! -d $(etcdir) ]; then mkdir $(etcdir); fi -- $(INSTALL) rwhoisd $(etcdir) -+ if [ ! -d $(sbindir) ]; then mkdir $(sbindir); fi -+ $(INSTALL) rwhoisd $(sbindir) - - uninstall: - $(RM) $(etcdir)/rwhoisd diff --git a/net/rwhoisd/files/patch-ae b/net/rwhoisd/files/patch-ae deleted file mode 100644 index 6d86925ae455..000000000000 --- a/net/rwhoisd/files/patch-ae +++ /dev/null @@ -1,11 +0,0 @@ ---- sample.data/rwhoisd.conf.orig Wed Nov 26 08:23:46 1997 -+++ sample.data/rwhoisd.conf Sat Nov 25 15:30:05 2000 -@@ -109,7 +109,7 @@ - # users group, as found in /etc/passwd. - # note that this really, really should be an unprivileged user - # this options doesn't have a default. --userid: rwhoisd -+userid: nobody - - # pid-file: where to put the file containing the pid of the server. - # normal default is "rwhoisd.pid" diff --git a/net/rwhoisd/files/patch-ag b/net/rwhoisd/files/patch-ag deleted file mode 100644 index 3c87514cd4e8..000000000000 --- a/net/rwhoisd/files/patch-ag +++ /dev/null @@ -1,20 +0,0 @@ ---- tools/Xpgp/Xpgp.c.orig Fri Jan 30 09:25:58 1998 -+++ tools/Xpgp/Xpgp.c Sat Nov 25 15:58:33 2000 -@@ -55,7 +55,7 @@ - - key = xcalloc(1, sizeof(char) * 1050); - -- gets(key); -+ fgets(key, sizeof(key), stdin); - fprintf(fp, "%s\n",key); - - if (strstr(key, "END")) -@@ -72,7 +72,7 @@ - free(key); - - newstr = xcalloc(1, sizeof(char)*100); -- gets(newstr); -+ fgets(newstr, sizeof(newstr), stdin); - - if (STRN_EQ(newstr, "-X-pgp off keyadd", 17)) - { diff --git a/net/rwhoisd/files/rwhoisd.sh b/net/rwhoisd/files/rwhoisd.sh deleted file mode 100644 index 878e8877aa44..000000000000 --- a/net/rwhoisd/files/rwhoisd.sh +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/sh - -if ! PREFIX=$(expr $0 : "\(/.*\)/etc/rc\.d/$(basename $0)\$"); then - echo "$0: Cannot determine the PREFIX" >&2 - exit 1 -fi - -case "$1" in -start) - # remove or comment the following line and uncomment the one below it once you have - # configured your server's data - echo "rwhoisd not started; sample data still in place. See ${PREFIX}/share/doc/rwhois for details." - #[ -x ${PREFIX}/lib/rwhois/sbin/rwhoisd ] && ${PREFIX}/lib/rwhois/sbin/rwhoisd -c ${PREFIX}/lib/rwhois/rwhoisd.conf & && echo -n ' rwhoisd' - ;; -stop) - # killall rwhoisd && echo -n ' rwhoisd - ;; -*) - echo "Usage: `basename $0` {start|stop}" >&2 - ;; -esac - -exit 0 diff --git a/net/rwhoisd/pkg-comment b/net/rwhoisd/pkg-comment deleted file mode 100644 index 7cdf3c2a94e7..000000000000 --- a/net/rwhoisd/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -The Internic referral whois server diff --git a/net/rwhoisd/pkg-descr b/net/rwhoisd/pkg-descr deleted file mode 100644 index c93bc0b907e2..000000000000 --- a/net/rwhoisd/pkg-descr +++ /dev/null @@ -1,25 +0,0 @@ -What is Referral Whois (RWhois)? - -With the exponential growth of the Internet, a central Whois database that -provides host and network information of systems connected to the Internet, -and electronic mail (email) addresses of the users of those systems has -proven to be very inefficient. The sheer size and effort needed to maintain -a centralized database necessitates an alternate, decentralized approach to -storing and retrieving this information. - -RWhois is a Directory Services protocol which extends and enhances the Whois -concept in a hierarchical and scaleable fashion. It focuses on the -distribution of "network objects"--the data representing Internet resources -or people--and uses the inherently hierarchical nature of these network -objects (domain names, Internet Protocol (IP) networks, email addresses) to -more accurately discover the requested information. - -RWhois synthesizes concepts from other, established Internet protocols to -create a more useful way to find resources across the Internet. The RWhois -protocol and architecture derive a great deal of structure from the Domain -Name System (DNS) [RFC 1034] and borrow directory service concepts from -other directory service efforts, primarily [X.500]. The protocol is also -influenced by earlier established Internet protocols, such as the Simple -Mail Transport Protocol (SMTP) [RFC 821] for response codes. - -WWW: http://www.rwhois.net/ diff --git a/net/rwhoisd/pkg-plist b/net/rwhoisd/pkg-plist deleted file mode 100644 index 191cf6659d76..000000000000 --- a/net/rwhoisd/pkg-plist +++ /dev/null @@ -1,64 +0,0 @@ -etc/rc.d/rwhoisd.sh -lib/rwhois/a.com/attribute_defs/asn.tmpl -lib/rwhois/a.com/attribute_defs/contact.tmpl -lib/rwhois/a.com/attribute_defs/domain.tmpl -lib/rwhois/a.com/attribute_defs/guardian.tmpl -lib/rwhois/a.com/attribute_defs/host.tmpl -lib/rwhois/a.com/attribute_defs/org.tmpl -lib/rwhois/a.com/attribute_defs/referral.tmpl -lib/rwhois/a.com/data/asn/asn.txt -lib/rwhois/a.com/data/contact/contact.txt -lib/rwhois/a.com/data/domain/domain.txt -lib/rwhois/a.com/data/guardian/guardian.txt -lib/rwhois/a.com/data/host/host.txt -lib/rwhois/a.com/data/org/org.txt -lib/rwhois/a.com/data/referral/referral.txt -lib/rwhois/a.com/schema -lib/rwhois/a.com/soa -lib/rwhois/bin/Xpgp -lib/rwhois/bin/rwhois_deleter -lib/rwhois/bin/rwhois_indexer -lib/rwhois/net-10.0.0.0-8/attribute_defs/contact.tmpl -lib/rwhois/net-10.0.0.0-8/attribute_defs/guardian.tmpl -lib/rwhois/net-10.0.0.0-8/attribute_defs/host.tmpl -lib/rwhois/net-10.0.0.0-8/attribute_defs/network.tmpl -lib/rwhois/net-10.0.0.0-8/attribute_defs/referral.tmpl -lib/rwhois/net-10.0.0.0-8/data/network/network.txt -lib/rwhois/net-10.0.0.0-8/data/referral/referral.txt -lib/rwhois/net-10.0.0.0-8/schema -lib/rwhois/net-10.0.0.0-8/soa -lib/rwhois/rwhoisd.allow -lib/rwhois/rwhoisd.auth_area -lib/rwhois/rwhoisd.conf -lib/rwhois/rwhoisd.deny -lib/rwhois/rwhoisd.dir -lib/rwhois/rwhoisd.root -lib/rwhois/rwhoisd.x.dir -lib/rwhois/sbin/rwhoisd -share/doc/rwhois/INSTALL.html -share/doc/rwhois/TODO -share/doc/rwhois/UPGRADE -share/doc/rwhois/operations_guide.html -share/doc/rwhois/operations_guide.txt -share/doc/rwhois/rfc2167.txt -share/doc/rwhois/security.html -share/doc/rwhois/security.txt -@dirrm share/doc/rwhois -@dirrm lib/rwhois/sbin -@dirrm lib/rwhois/net-10.0.0.0-8/data/referral -@dirrm lib/rwhois/net-10.0.0.0-8/data/network -@dirrm lib/rwhois/net-10.0.0.0-8/data -@dirrm lib/rwhois/net-10.0.0.0-8/attribute_defs -@dirrm lib/rwhois/net-10.0.0.0-8 -@dirrm lib/rwhois/bin -@dirrm lib/rwhois/a.com/data/referral -@dirrm lib/rwhois/a.com/data/org -@dirrm lib/rwhois/a.com/data/host -@dirrm lib/rwhois/a.com/data/guardian -@dirrm lib/rwhois/a.com/data/domain -@dirrm lib/rwhois/a.com/data/contact -@dirrm lib/rwhois/a.com/data/asn -@dirrm lib/rwhois/a.com/data -@dirrm lib/rwhois/a.com/attribute_defs -@dirrm lib/rwhois/a.com -@dirrm lib/rwhois diff --git a/net/samba3/Makefile b/net/samba3/Makefile deleted file mode 100644 index 5080bdef450a..000000000000 --- a/net/samba3/Makefile +++ /dev/null @@ -1,140 +0,0 @@ -# New ports collection makefile for: samba -# Date created: 11th Feb 1995 -# Whom: gpalmer -# -# $FreeBSD$ -# - -PORTNAME= samba -PORTVERSION= 2.2.1a -PORTREVISION= 2 -CATEGORIES= net -MASTER_SITES= ftp://ftp.samba.org/pub/samba/%SUBDIR%/ \ - ftp://samba.anu.edu.au/pub/samba/%SUBDIR%/ \ - ftp://de.samba.org/pub/mirror/samba/%SUBDIR%/ \ - ftp://se.samba.org/pub/samba/%SUBDIR%/ \ - ftp://ftp.sunet.se/pub/unix/utilities/samba/%SUBDIR%/ -MASTER_SITE_SUBDIR= . old-versions alpha old -DISTNAME= samba-${PORTVERSION} - -MAINTAINER= dwcjr@FreeBSD.org - -.if defined(WITH_CUPS) -LIB_DEPENDS= cups.2:${PORTSDIR}/print/cups -.endif - -# directories -VARDIR= /var -SAMBA_SPOOL= ${VARDIR}/spool/samba -SAMBA_LOGDIR= ${VARDIR}/log -SAMBA_PRIVATE= ${PREFIX}/private -SAMBA_CONFDIR= ${PREFIX}/etc -# sample files -STARTUP_SCRIPT= ${PREFIX}/etc/rc.d/samba.sh.sample -SAMPLE_CONFIG= ${SAMBA_CONFDIR}/smb.conf.default -DOCSDIR= ${PREFIX}/share/doc/samba - - -NO_LATEST_LINK= yes -USE_AUTOCONF= yes -CONFIGURE_ARGS= --libdir=${SAMBA_CONFDIR} \ - --localstatedir=${VARDIR} --with-swatdir=${PREFIX}/share/swat \ - --with-sambabook=${PREFIX}/share/swat/using_samba \ - --with-lockdir=${VARDIR}/lock --with-privatedir=${SAMBA_PRIVATE} \ - --with-pam - -.include <bsd.port.pre.mk> - -.if defined(KRB5_HOME) && exists(${KRB5_HOME}) -CONFIGURE_ARGS+= --with-krb5=${KRB5_HOME} -.endif - -.if defined(WITH_CUPS) -# This enables CUPS printing support in Samba. -CONFIGURE_ARGS+= --with-cups=${LOCALBASE} -.endif - -.if defined(WITH_ACL_SUPPORT) -.if ${OSVERSION} < 500018 -BROKEN= "Requires a recent FreeBSD 5.0-CURRENT" -.else -CONFIGURE_ARGS+= --with-acl-support -.endif -.endif - -WRKSRC= ${WRKDIR}/${DISTNAME}/source - -MAN1= findsmb.1 make_smbcodepage.1 rpcclient.1 make_unicodemap.1 \ - nmblookup.1 smbcacls.1 smbclient.1 smbcontrol.1 smbrun.1 \ - smbsh.1 smbstatus.1 smbtar.1 testparm.1 \ - testprns.1 wbinfo.1 -MAN5= lmhosts.5 smb.conf.5 smbpasswd.5 -MAN7= samba.7 -MAN8= nmbd.8 smbd.8 smbmnt.8 smbmount.8 \ - smbpasswd.8 smbspool.8 smbumount.8 swat.8 winbindd.8 - -post-install: - ${MKDIR} ${PREFIX}/share/examples/samba - ${CP} -rp ${WRKDIR}/${DISTNAME}/examples/* ${PREFIX}/share/examples/samba - @if [ ! -f ${STARTUP_SCRIPT} ]; then \ - ${ECHO} "Installing ${STARTUP_SCRIPT} startup file." ; \ - ${INSTALL_SCRIPT} ${FILESDIR}/samba.sh.sample \ - ${STARTUP_SCRIPT} ; \ - fi - @test -d ${SAMBA_SPOOL} || ${MKDIR} ${SAMBA_SPOOL} && ${CHMOD} 1777 ${SAMBA_SPOOL} - @if [ ! -f ${SAMPLE_CONFIG} ]; then \ - ${SED} -e 's!%%SAMBA_SPOOL%%!${SAMBA_SPOOL}!' \ - -e 's!%%SAMBA_LOGDIR%%!${SAMBA_LOGDIR}!' \ - -e 's!%%SAMBA_CONFDIR%%!${SAMBA_CONFDIR}!' \ - ${FILESDIR}/smb.conf.default \ - > ${SAMPLE_CONFIG} ; \ - fi - ${INSTALL_SCRIPT} ${WRKDIR}/${DISTNAME}/source/script/mksmbpasswd.sh ${PREFIX}/bin/make_smbpasswd - if [ ! -d ${SAMBA_PRIVATE} ] ; then \ - ${MKDIR} ${SAMBA_PRIVATE} ; \ - ${CHOWN} root:wheel ${SAMBA_PRIVATE} ; \ - fi - ${CHMOD} 700 ${SAMBA_PRIVATE} - if [ ! -f ${SAMBA_PRIVATE}/smbpasswd ] ; then \ - ${CAT} /etc/passwd | ${GREP} -v "^#" | ${PREFIX}/bin/make_smbpasswd > ${SAMBA_PRIVATE}/smbpasswd ; \ - ${CHMOD} 600 ${SAMBA_PRIVATE}/smbpasswd ; \ - fi - ${CHMOD} 500 ${SAMBA_PRIVATE} - ${CHOWN} root:wheel ${PREFIX}/bin/smbpasswd - ${CHMOD} 111 ${PREFIX}/bin/smbpasswd -.if defined(PACKAGE_BUILDING) - ${ECHO} "private/smbpasswd" >> ${TMPPLIST} - ${ECHO} "@dirrm private" >> ${TMPPLIST} -.else - ${ECHO} "@unexec ${ECHO} \"Warning: If you will *NOT* use this package anymore, please remove %D/private/smbpasswd manually.\"" >> ${TMPPLIST} -.endif - -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} - @${INSTALL_DATA} ${FILESDIR}/README.FreeBSD ${DOCSDIR} - for i in ${WRKDIR}/${DISTNAME}/README \ - ${WRKDIR}/${DISTNAME}/COPYING \ - ${WRKDIR}/${DISTNAME}/Manifest \ - ${WRKDIR}/${DISTNAME}/Read-Manifest-Now \ - ${WRKDIR}/${DISTNAME}/Roadmap \ - ${WRKDIR}/${DISTNAME}/WHATSNEW.txt \ - ${WRKDIR}/${DISTNAME}/docs/*.reg \ - ${WRKDIR}/${DISTNAME}/docs/THANKS \ - ${WRKDIR}/${DISTNAME}/docs/announce \ - ${WRKDIR}/${DISTNAME}/docs/history ; do \ - ${INSTALL_DATA} $$i ${DOCSDIR} ; \ - done - for i in faq htmldocs textdocs ; do \ - ${MKDIR} ${DOCSDIR}/$$i ; \ - for j in ${WRKDIR}/${DISTNAME}/docs/$$i/* ; do \ - if [ $$j != ${WRKDIR}/${DISTNAME}/docs/htmldocs/using_samba ] ; then \ - if [ $$j != ${WRKDIR}/${DISTNAME}/docs/textdocs/outdated ] ; then \ - ${INSTALL_DATA} $$j ${DOCSDIR}/$$i ;\ - fi; \ - fi; \ - done \ - done - @${INSTALL_DATA} ${WRKDIR}/${DISTNAME}/swat/README ${DOCSDIR}/README.swat -.endif - -.include <bsd.port.post.mk> diff --git a/net/samba3/distinfo b/net/samba3/distinfo deleted file mode 100644 index fd388b9182c6..000000000000 --- a/net/samba3/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (samba-2.2.1a.tar.gz) = c8810245887bc080191d755fab961760 diff --git a/net/samba3/files/README.FreeBSD b/net/samba3/files/README.FreeBSD deleted file mode 100644 index 67cc86c58cb2..000000000000 --- a/net/samba3/files/README.FreeBSD +++ /dev/null @@ -1,21 +0,0 @@ -If you want to use samba ports, - -1. Copy /usr/local/etc/smb.conf.default to /usr/local/etc/smb.conf, and edit - it. -2. Copy /usr/local/etc/rc.d/samba.sh.sample to /usr/local/etc/rc.d/samba.sh -3. Type /usr/local/etc/rc.d/samba.sh or reboot. - -See document files in /usr/local/share/doc/samba and example config files in -/usr/local/share/examples/samba for details. - -FreeBSD Samba ports for localization and encrypt passwords support are no -longer provided because these supports have been integrated into the -original distribution since 1.9.18. If you're Western European or Japanese -Windows users, please set "client code page" parameter in smb.conf (1.9.18 -does not support Chinese Windows. If you want to use Chinese samba, please -use chinese/samba port). See smb.conf.sample for details. If you want to -use NT4+SP3 or Win95+updates clients, set "encrypt passwords" parameter to -yes and use smbpasswd [username] to use /usr/local/private/smbpasswd for -authentication. - -FreeBSD SAMBA ports maintainer: Tatsumi Hosokawa <hosokawa@jp.FreeBSD.org> diff --git a/net/samba3/files/patch-aa b/net/samba3/files/patch-aa deleted file mode 100644 index af170104b851..000000000000 --- a/net/samba3/files/patch-aa +++ /dev/null @@ -1,35 +0,0 @@ ---- Makefile.in.orig Fri Mar 23 16:38:06 2001 -+++ Makefile.in Fri Mar 23 18:12:53 2001 -@@ -43,11 +43,11 @@ - # set these to where to find various files - # These can be overridden by command line switches (see smbd(8)) - # or in smb.conf (see smb.conf(5)) --LOGFILEBASE = @logfilebase@ -+LOGFILEBASE = $(VARDIR)/log - CONFIGFILE = $(CONFIGDIR)/smb.conf - LMHOSTSFILE = $(CONFIGDIR)/lmhosts - DRIVERFILE = $(CONFIGDIR)/printers.def --PASSWD_PROGRAM = /bin/passwd -+PASSWD_PROGRAM = /usr/bin/passwd - # This is where smbpasswd et al go - PRIVATEDIR = @privatedir@ - -@@ -60,6 +60,9 @@ - # the directory where lock files go - LOCKDIR = @lockdir@ - -+# the directory where pid files go -+PIDFILEDIR = $(VARDIR)/run -+ - # The directory where code page definition files go - CODEPAGEDIR = @codepagedir@ - -@@ -78,7 +81,7 @@ - PASSWD_FLAGS = -DPASSWD_PROGRAM=\"$(PASSWD_PROGRAM)\" -DSMB_PASSWD_FILE=\"$(SMB_PASSWD_FILE)\" -DTDB_PASSWD_FILE=\"$(TDB_PASSWD_FILE)\" - FLAGS1 = $(CFLAGS) -Iinclude -I$(srcdir)/include -I$(srcdir)/ubiqx -I$(srcdir)/smbwrapper $(CPPFLAGS) -DLOGFILEBASE=\"$(LOGFILEBASE)\" - FLAGS2 = -DCONFIGFILE=\"$(CONFIGFILE)\" -DLMHOSTSFILE=\"$(LMHOSTSFILE)\" --FLAGS3 = -DSWATDIR=\"$(SWATDIR)\" -DSBINDIR=\"$(SBINDIR)\" -DLOCKDIR=\"$(LOCKDIR)\" -DCODEPAGEDIR=\"$(CODEPAGEDIR)\" -+FLAGS3 = -DSWATDIR=\"$(SWATDIR)\" -DSBINDIR=\"$(SBINDIR)\" -DLOCKDIR=\"$(LOCKDIR)\" -DPIDFILEDIR=\"$(PIDFILEDIR)\" -DSMBRUN=\"$(SMBRUN)\" -DCODEPAGEDIR=\"$(CODEPAGEDIR)\" - FLAGS4 = -DDRIVERFILE=\"$(DRIVERFILE)\" -DBINDIR=\"$(BINDIR)\" - FLAGS5 = $(FLAGS1) $(FLAGS2) $(FLAGS3) $(FLAGS4) -DHAVE_INCLUDES_H - FLAGS = $(ISA) $(FLAGS5) $(PASSWD_FLAGS) diff --git a/net/samba3/files/patch-ab b/net/samba3/files/patch-ab deleted file mode 100644 index 7cc000262680..000000000000 --- a/net/samba3/files/patch-ab +++ /dev/null @@ -1,35 +0,0 @@ ---- param/loadparm.c.orig Fri Feb 2 00:42:53 2001 -+++ param/loadparm.c Fri Feb 2 00:45:23 2001 -@@ -108,6 +108,7 @@ - char *szAddPrinterCommand; - char *szDeletePrinterCommand; - char *szLockDir; -+ char *szPidDir; - char *szRootdir; - char *szDefaultService; - char *szDfree; -@@ -948,6 +949,8 @@ - {"auto services", P_STRING, P_GLOBAL, &Globals.szAutoServices, NULL, NULL, FLAG_DOS_STRING}, - {"lock dir", P_STRING, P_GLOBAL, &Globals.szLockDir, NULL, NULL, 0}, - {"lock directory", P_STRING, P_GLOBAL, &Globals.szLockDir, NULL, NULL, 0}, -+ {"pidfile dir", P_STRING, P_GLOBAL, &Globals.szPidDir, NULL, NULL, 0}, -+ {"pidfile directory", P_STRING, P_GLOBAL, &Globals.szPidDir, NULL, NULL, 0}, - #ifdef WITH_UTMP - {"utmp dir", P_STRING, P_GLOBAL, &Globals.szUtmpDir, NULL, NULL, 0}, - {"utmp directory", P_STRING, P_GLOBAL, &Globals.szUtmpDir, NULL, NULL, 0}, -@@ -1171,6 +1174,7 @@ - string_set(&Globals.szPasswdProgram, PASSWD_PROGRAM); - string_set(&Globals.szPrintcapname, PRINTCAP_NAME); - string_set(&Globals.szLockDir, LOCKDIR); -+ string_set(&Globals.szPidDir, PIDFILEDIR); - #ifdef WITH_UTMP - string_set(&Globals.szUtmpDir, ""); - string_set(&Globals.szWtmpDir, ""); -@@ -1403,6 +1407,7 @@ - FN_GLOBAL_STRING(lp_addprinter_cmd, &Globals.szAddPrinterCommand) - FN_GLOBAL_STRING(lp_deleteprinter_cmd, &Globals.szDeletePrinterCommand) - FN_GLOBAL_STRING(lp_lockdir, &Globals.szLockDir) -+FN_GLOBAL_STRING(lp_piddir, &Globals.szPidDir) - #ifdef WITH_UTMP - FN_GLOBAL_STRING(lp_utmpdir, &Globals.szUtmpDir) - FN_GLOBAL_STRING(lp_wtmpdir, &Globals.szWtmpDir) diff --git a/net/samba3/files/patch-ac b/net/samba3/files/patch-ac deleted file mode 100644 index 0527cb5a32f8..000000000000 --- a/net/samba3/files/patch-ac +++ /dev/null @@ -1,20 +0,0 @@ ---- lib/pidfile.c.orig Fri Feb 2 00:38:09 2001 -+++ lib/pidfile.c Fri Feb 2 00:38:26 2001 -@@ -39,7 +39,7 @@ - unsigned ret; - pstring pidFile; - -- slprintf(pidFile, sizeof(pidFile)-1, "%s/%s.pid", lp_lockdir(), name); -+ slprintf(pidFile, sizeof(pidFile)-1, "%s/%s.pid", lp_piddir(), name); - - fd = sys_open(pidFile, O_NONBLOCK | O_RDWR, 0644); - if (fd == -1) { -@@ -80,7 +80,7 @@ - pstring pidFile; - pid_t pid; - -- slprintf(pidFile, sizeof(pidFile)-1, "%s/%s.pid", lp_lockdir(), name); -+ slprintf(pidFile, sizeof(pidFile)-1, "%s/%s.pid", lp_piddir(), name); - - pid = pidfile_pid(name); - if (pid != 0) { diff --git a/net/samba3/files/patch-ae b/net/samba3/files/patch-ae deleted file mode 100644 index 252ac19c8e63..000000000000 --- a/net/samba3/files/patch-ae +++ /dev/null @@ -1,11 +0,0 @@ ---- script/convert_smbpasswd.orig Thu Nov 5 11:50:17 1998 -+++ script/convert_smbpasswd Wed Feb 10 00:02:01 1999 -@@ -7,7 +7,7 @@ - # with trying to work out how to get the seconds since 1970 - # in awk or the shell. JRA. - # --nawk 'BEGIN {FS=":"} -+awk 'BEGIN {FS=":"} - { - if( $0 ~ "^#" ) { - print $0 diff --git a/net/samba3/files/patch-ah b/net/samba3/files/patch-ah deleted file mode 100644 index e97b12388c05..000000000000 --- a/net/samba3/files/patch-ah +++ /dev/null @@ -1,12 +0,0 @@ ---- lib/util_sock.c.orig Fri Feb 2 12:09:17 2001 -+++ lib/util_sock.c Fri Feb 2 12:09:36 2001 -@@ -28,6 +28,9 @@ - extern int sslFd; - #endif /* WITH_SSL */ - -+#undef MSG_WAITALL -+#define MSG_WAITALL 0 -+ - extern int DEBUGLEVEL; - - /* the last IP received from */ diff --git a/net/samba3/files/patch-aj b/net/samba3/files/patch-aj deleted file mode 100644 index ad93c26811da..000000000000 --- a/net/samba3/files/patch-aj +++ /dev/null @@ -1,14 +0,0 @@ ---- include/local.h.orig Thu Nov 11 03:36:00 1999 -+++ include/local.h Fri Feb 4 11:33:01 2000 -@@ -171,9 +171,9 @@ - * Default passwd chat script. - */ - --#define DEFAULT_PASSWD_CHAT "*new*password* %n\\n *new*password* %n\\n *changed*" -+#define DEFAULT_PASSWD_CHAT "*\\n*ew\\spassword* %n\\n *ew\\spassword* %n\\n *updating\\sthe\\sdatabase...\\npasswd:\\sdone\\n" - - /* Minimum length of allowed password when changing UNIX password. */ --#define MINPASSWDLENGTH 5 -+#define MINPASSWDLENGTH 6 - - #endif diff --git a/net/samba3/files/patch-ba b/net/samba3/files/patch-ba deleted file mode 100644 index 14c0d89b492a..000000000000 --- a/net/samba3/files/patch-ba +++ /dev/null @@ -1,43 +0,0 @@ ---- configure.in.orig Tue Apr 17 19:00:52 2001 -+++ configure.in Thu Jun 7 13:49:53 2001 -@@ -234,9 +234,6 @@ - AC_CHECK_TYPE(offset_t,loff_t) - AC_CHECK_TYPE(ssize_t, int) - --# we need libcups for CUPS support... --AC_CHECK_LIB(cups,httpConnect) -- - # we need libdl for PAM and the new VFS code - AC_CHECK_LIB(dl,main) - -@@ -1258,7 +1255,7 @@ - --without-krb5 Don't include Kerberos 5 support (default)], - [ AC_MSG_RESULT(yes) - AC_DEFINE(KRB5_AUTH) -- LIBS="$LIBS -ldes425 -lkrb5 -lcrypto -lcom_err" -+ LIBS="$LIBS -ldes425 -lkrb5 -lk5crypto -lcom_err" - CFLAGS="$CFLAGS -I$withval/include" - LDFLAGS="$LDFLAGS -L$withval/lib"], - AC_MSG_RESULT(no) -@@ -1486,6 +1483,21 @@ - esac ], - AC_MSG_RESULT(no) - ) -+ -+################################################# -+# check for CUPS printing support -+AC_MSG_CHECKING(whether to use CUPS printing) -+AC_ARG_WITH(cups, -+[ --with-cups=base-dir Include CUPS printing support -+ --without-cups Don't include CUPS printing support (default)], -+[ AC_MSG_RESULT(yes) -+ LIBS="$LIBS -lcups" -+ CFLAGS="$CFLAGS -I$withval/include" -+ LDFLAGS="$LDFLAGS -L$withval/lib" -+ AC_CHECK_LIB(cups,httpConnect)], -+ AC_MSG_RESULT(no) -+) -+ - - ################################################# - # check for experimental disk-quotas support diff --git a/net/samba3/files/patch-bb b/net/samba3/files/patch-bb deleted file mode 100644 index 0f70c69c78f4..000000000000 --- a/net/samba3/files/patch-bb +++ /dev/null @@ -1,10 +0,0 @@ ---- include/proto.h.orig Fri Feb 2 15:34:50 2001 -+++ include/proto.h Fri Feb 2 16:13:03 2001 -@@ -1420,6 +1420,7 @@ - char *lp_addprinter_cmd(void); - char *lp_deleteprinter_cmd(void); - char *lp_lockdir(void); -+char *lp_piddir(void); - char *lp_utmpdir(void); - char *lp_wtmpdir(void); - char *lp_utmp_hostname(void); diff --git a/net/samba3/files/samba.sh.sample b/net/samba3/files/samba.sh.sample deleted file mode 100644 index e6807ad6d145..000000000000 --- a/net/samba3/files/samba.sh.sample +++ /dev/null @@ -1,22 +0,0 @@ -#!/bin/sh -smbspool=/var/spool/samba -pidfiledir=/var/run -smbd=/usr/local/sbin/smbd -nmbd=/usr/local/sbin/nmbd - -# start -if [ "x$1" = "x" -o "x$1" = "xstart" ]; then - if [ -f $smbd ]; then - if [ -d $smbspool ]; then - rm -f $smbspool/* - fi - echo -n ' Samba' - $smbd -D - $nmbd -D - fi - -# stop -elif [ "x$1" = "xstop" ]; then - kill `cat $pidfiledir/smbd.pid` - kill `cat $pidfiledir/nmbd.pid` -fi diff --git a/net/samba3/files/smb.conf.default b/net/samba3/files/smb.conf.default deleted file mode 100644 index ef0d65a03705..000000000000 --- a/net/samba3/files/smb.conf.default +++ /dev/null @@ -1,283 +0,0 @@ -# This is the main Samba configuration file. You should read the -# smb.conf(5) manual page in order to understand the options listed -# here. Samba has a huge number of configurable options (perhaps too -# many!) most of which are not shown in this example -# -# Any line which starts with a ; (semi-colon) or a # (hash) -# is a comment and is ignored. In this example we will use a # -# for commentry and a ; for parts of the config file that you -# may wish to enable -# -# NOTE: Whenever you modify this file you should run the command "testparm" -# to check that you have not many any basic syntactic errors. -# -#======================= Global Settings ===================================== -[global] - -# workgroup = NT-Domain-Name or Workgroup-Name, eg: REDHAT4 - workgroup = MYGROUP - -# server string is the equivalent of the NT Description field - server string = Samba Server - -# This option is important for security. It allows you to restrict -# connections to machines which are on your local network. The -# following example restricts access to two C class networks and -# the "loopback" interface. For more examples of the syntax see -# the smb.conf man page -; hosts allow = 192.168.1. 192.168.2. 127. - -# If you want to automatically load your printer list rather -# than setting them up individually then you'll need this - load printers = yes - -# you may wish to override the location of the printcap file -; printcap name = /etc/printcap - -# on SystemV system setting printcap name to lpstat should allow -# you to automatically obtain a printer list from the SystemV spool -# system -; printcap name = lpstat - -# It should not be necessary to specify the print system type unless -# it is non-standard. Currently supported print systems include: -# bsd, sysv, plp, lprng, aix, hpux, qnx -; printing = bsd - -# Uncomment this if you want a guest account, you must add this to /etc/passwd -# otherwise the user "nobody" is used -; guest account = pcguest - -# this tells Samba to use a separate log file for each machine -# that connects - log file = %%SAMBA_LOGDIR%%/log.%m - -# Put a capping on the size of the log files (in Kb). - max log size = 50 - -# Security mode. Most people will want user level security. See -# security_level.txt for details. - security = user -# Use password server option only with security = server -; password server = <NT-Server-Name> - -# You may wish to use password encryption. Please read -# ENCRYPTION.txt, Win95.txt and WinNT.txt in the Samba documentation. -# Do not enable this option unless you have read those documents -; encrypt passwords = yes - -# Using the following line enables you to customise your configuration -# on a per machine basis. The %m gets replaced with the netbios name -# of the machine that is connecting -; include = %%SAMBA_CONFDIR%%/smb.conf.%m - -# Most people will find that this option gives better performance. -# See speed.txt and the manual pages for details - socket options = TCP_NODELAY - -# Configure Samba to use multiple interfaces -# If you have multiple network interfaces then you must list them -# here. See the man page for details. -; interfaces = 192.168.12.2/24 192.168.13.2/24 - -# Browser Control Options: -# set local master to no if you don't want Samba to become a master -# browser on your network. Otherwise the normal election rules apply -; local master = no - -# OS Level determines the precedence of this server in master browser -# elections. The default value should be reasonable -; os level = 33 - -# Domain Master specifies Samba to be the Domain Master Browser. This -# allows Samba to collate browse lists between subnets. Don't use this -# if you already have a Windows NT domain controller doing this job -; domain master = yes - -# Preferred Master causes Samba to force a local browser election on startup -# and gives it a slightly higher chance of winning the election -; preferred master = yes - -# Use only if you have an NT server on your network that has been -# configured at install time to be a primary domain controller. -; domain controller = <NT-Domain-Controller-SMBName> - -# Enable this if you want Samba to be a domain logon server for -# Windows95 workstations. -; domain logons = yes - -# if you enable domain logons then you may want a per-machine or -# per user logon script -# run a specific logon batch file per workstation (machine) -; logon script = %m.bat -# run a specific logon batch file per username -; logon script = %U.bat - -# Where to store roving profiles (only for Win95 and WinNT) -# %L substitutes for this servers netbios name, %U is username -# You must uncomment the [Profiles] share below -; logon path = \\%L\Profiles\%U - -# Windows Internet Name Serving Support Section: -# WINS Support - Tells the NMBD component of Samba to enable it's WINS Server -; wins support = yes - -# WINS Server - Tells the NMBD components of Samba to be a WINS Client -# Note: Samba can be either a WINS Server, or a WINS Client, but NOT both -; wins server = w.x.y.z - -# WINS Proxy - Tells Samba to answer name resolution queries on -# behalf of a non WINS capable client, for this to work there must be -# at least one WINS Server on the network. The default is NO. -; wins proxy = yes - -# DNS Proxy - tells Samba whether or not to try to resolve NetBIOS names -# via DNS nslookups. The built-in default for versions 1.9.17 is yes, -# this has been changed in version 1.9.18 to no. - dns proxy = no - -# Client codepage settings - -# for Greek users -; client code page=737 - -# for European users (Latin 1) -; client code page=850 - -# for European users (Latin 2) -; client code page=852 - -# for Icelandic users -; client code page=861 - -# for Cyrillic users -; client code page=866 - -# for Japanese Users -; client code page=932 -; coding system=cap - -# for Simplified Chinese Users -; client code page=936 -; coding system=cap - -# for Korean Users -; client code page=949 -; coding system=cap - -# for Traditional Chinese Users -; client code page=950 -; coding system=cap - -#============================ Share Definitions ============================== -[homes] - comment = Home Directories - browseable = no - writeable = yes - -# Un-comment the following and create the netlogon directory for Domain Logons -; [netlogon] -; comment = Network Logon Service -; path = /usr/local/samba/lib/netlogon -; guest ok = yes -; writeable = no -; share modes = no - - -# Un-comment the following to provide a specific roving profile share -# the default is to use the user's home directory -;[Profiles] -; path = /usr/local/samba/profiles -; browseable = no -; guest ok = yes - - -# NOTE: If you have a BSD-style print system there is no need to -# specifically define each individual printer -[printers] - comment = All Printers - path = %%SAMBA_SPOOL%% - browseable = no -# Set public = yes to allow user 'guest account' to print - guest ok = no - writeable = no - printable = yes - -# This one is useful for people to share files -;[tmp] -; comment = Temporary file space -; path = /tmp -; read only = no -; public = yes - -# A publicly accessible directory, but read only, except for people in -# the "staff" group -;[public] -; comment = Public Stuff -; path = /home/samba -; public = yes -; writeable = yes -; printable = no -; write list = @staff - -# Other examples. -# -# A private printer, usable only by fred. Spool data will be placed in fred's -# home directory. Note that fred must have write access to the spool directory, -# wherever it is. -;[fredsprn] -; comment = Fred's Printer -; valid users = fred -; path = /homes/fred -; printer = freds_printer -; public = no -; writeable = no -; printable = yes - -# A private directory, usable only by fred. Note that fred requires write -# access to the directory. -;[fredsdir] -; comment = Fred's Service -; path = /usr/somewhere/private -; valid users = fred -; public = no -; writeable = yes -; printable = no - -# a service which has a different directory for each machine that connects -# this allows you to tailor configurations to incoming machines. You could -# also use the %U option to tailor it by user name. -# The %m gets replaced with the machine name that is connecting. -;[pchome] -; comment = PC Directories -; path = /usr/pc/%m -; public = no -; writeable = yes - -# A publicly accessible directory, read/write to all users. Note that all files -# created in the directory by users will be owned by the default user, so -# any user with access can delete any other user's files. Obviously this -# directory must be writeable by the default user. Another user could of course -# be specified, in which case all files would be owned by that user instead. -;[public] -; path = /usr/somewhere/else/public -; public = yes -; only guest = yes -; writeable = yes -; printable = no - -# The following two entries demonstrate how to share a directory so that two -# users can place files there that will be owned by the specific users. In this -# setup, the directory should be writeable by both users and should have the -# sticky bit set on it to prevent abuse. Obviously this could be extended to -# as many users as required. -;[myshare] -; comment = Mary's and Fred's stuff -; path = /usr/somewhere/shared -; valid users = mary fred -; public = no -; writeable = yes -; printable = no -; create mask = 0765 - - diff --git a/net/samba3/pkg-comment b/net/samba3/pkg-comment deleted file mode 100644 index 21f25f97e695..000000000000 --- a/net/samba3/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -A free SMB and CIFS client and server for UNIX diff --git a/net/samba3/pkg-descr b/net/samba3/pkg-descr deleted file mode 100644 index b49d3d9ac57c..000000000000 --- a/net/samba3/pkg-descr +++ /dev/null @@ -1,12 +0,0 @@ -The Samba suite is a set of programs which run under the FreeBSD -operating system. These programs deliver most of the important -functionality of a Microsoft Lan Manager server. That is, they support -remote access to FreeBSD filespace and FreeBSD printers from Lan Manager -compatible clients. In practical terms, this means that such clients -can connect to and use FreeBSD filespace as if it was a local disk drive, -or FreeBSD printers as if they were local printers. - -Some of the most popular Lan Manager compatible clients include Lan -Manager itself, Windows for Workgroups, OS/2 and Windows NT. - -WWW: http://www.samba.org/ diff --git a/net/samba3/pkg-plist b/net/samba3/pkg-plist deleted file mode 100644 index 3a227933e325..000000000000 --- a/net/samba3/pkg-plist +++ /dev/null @@ -1,474 +0,0 @@ -bin/make_printerdef -bin/make_smbcodepage -bin/make_smbpasswd -bin/make_unicodemap -bin/nmblookup -bin/rpcclient -bin/smbcacls -bin/smbclient -bin/smbcontrol -bin/smbpasswd -bin/smbspool -bin/smbstatus -bin/smbtar -bin/testparm -bin/testprns -etc/codepages/codepage.1251 -etc/codepages/codepage.437 -etc/codepages/codepage.737 -etc/codepages/codepage.775 -etc/codepages/codepage.850 -etc/codepages/codepage.852 -etc/codepages/codepage.857 -etc/codepages/codepage.861 -etc/codepages/codepage.866 -etc/codepages/codepage.932 -etc/codepages/codepage.936 -etc/codepages/codepage.949 -etc/codepages/codepage.950 -etc/codepages/unicode_map.437 -etc/codepages/unicode_map.737 -etc/codepages/unicode_map.775 -etc/codepages/unicode_map.850 -etc/codepages/unicode_map.852 -etc/codepages/unicode_map.857 -etc/codepages/unicode_map.861 -etc/codepages/unicode_map.866 -etc/codepages/unicode_map.932 -etc/codepages/unicode_map.936 -etc/codepages/unicode_map.949 -etc/codepages/unicode_map.950 -etc/codepages/unicode_map.ISO8859-1 -etc/codepages/unicode_map.ISO8859-13 -etc/codepages/unicode_map.ISO8859-15 -etc/codepages/unicode_map.ISO8859-2 -etc/codepages/unicode_map.ISO8859-5 -etc/codepages/unicode_map.ISO8859-7 -etc/codepages/unicode_map.ISO8859-9 -etc/codepages/unicode_map.KOI8-R -etc/rc.d/samba.sh.sample -etc/smb.conf.default -sbin/nmbd -sbin/smbd -sbin/swat -%%PORTDOCS%%share/doc/samba/COPYING -%%PORTDOCS%%share/doc/samba/Manifest -%%PORTDOCS%%share/doc/samba/NT4-Locking.reg -%%PORTDOCS%%share/doc/samba/NT4_PlainPassword.reg -%%PORTDOCS%%share/doc/samba/README -%%PORTDOCS%%share/doc/samba/README.FreeBSD -%%PORTDOCS%%share/doc/samba/README.swat -%%PORTDOCS%%share/doc/samba/Read-Manifest-Now -%%PORTDOCS%%share/doc/samba/Roadmap -%%PORTDOCS%%share/doc/samba/THANKS -%%PORTDOCS%%share/doc/samba/WHATSNEW.txt -%%PORTDOCS%%share/doc/samba/Win2000_PlainPassword.reg -%%PORTDOCS%%share/doc/samba/Win95_PlainPassword.reg -%%PORTDOCS%%share/doc/samba/Win98_PlainPassword.reg -%%PORTDOCS%%share/doc/samba/Win9X-CacheHandling.reg -%%PORTDOCS%%share/doc/samba/WinME_PlainPassword.reg -%%PORTDOCS%%share/doc/samba/WindowsTerminalServer.reg -%%PORTDOCS%%share/doc/samba/announce -%%PORTDOCS%%share/doc/samba/faq/Samba-Server-FAQ-1.html -%%PORTDOCS%%share/doc/samba/faq/Samba-Server-FAQ-2.html -%%PORTDOCS%%share/doc/samba/faq/Samba-Server-FAQ.html -%%PORTDOCS%%share/doc/samba/faq/Samba-Server-FAQ.sgml -%%PORTDOCS%%share/doc/samba/faq/Samba-meta-FAQ-1.html -%%PORTDOCS%%share/doc/samba/faq/Samba-meta-FAQ-2.html -%%PORTDOCS%%share/doc/samba/faq/Samba-meta-FAQ-3.html -%%PORTDOCS%%share/doc/samba/faq/Samba-meta-FAQ-4.html -%%PORTDOCS%%share/doc/samba/faq/Samba-meta-FAQ-5.html -%%PORTDOCS%%share/doc/samba/faq/Samba-meta-FAQ-6.html -%%PORTDOCS%%share/doc/samba/faq/Samba-meta-FAQ.html -%%PORTDOCS%%share/doc/samba/faq/Samba-meta-FAQ.sgml -%%PORTDOCS%%share/doc/samba/faq/Samba-meta-FAQ.txt -%%PORTDOCS%%share/doc/samba/faq/sambafaq-1.html -%%PORTDOCS%%share/doc/samba/faq/sambafaq-2.html -%%PORTDOCS%%share/doc/samba/faq/sambafaq-3.html -%%PORTDOCS%%share/doc/samba/faq/sambafaq-4.html -%%PORTDOCS%%share/doc/samba/faq/sambafaq-5.html -%%PORTDOCS%%share/doc/samba/faq/sambafaq.html -%%PORTDOCS%%share/doc/samba/faq/sambafaq.sgml -%%PORTDOCS%%share/doc/samba/faq/sambafaq.txt -%%PORTDOCS%%share/doc/samba/history -%%PORTDOCS%%share/doc/samba/htmldocs/CVS-Access.html -%%PORTDOCS%%share/doc/samba/htmldocs/DOMAIN_MEMBER.html -%%PORTDOCS%%share/doc/samba/htmldocs/ENCRYPTION.html -%%PORTDOCS%%share/doc/samba/htmldocs/Integrating-with-Windows.html -%%PORTDOCS%%share/doc/samba/htmldocs/NT_Security.html -%%PORTDOCS%%share/doc/samba/htmldocs/OS2-Client-HOWTO.html -%%PORTDOCS%%share/doc/samba/htmldocs/PAM-Authentication-And-Samba.html -%%PORTDOCS%%share/doc/samba/htmldocs/Samba-HOWTO-Collection.html -%%PORTDOCS%%share/doc/samba/htmldocs/Samba-PDC-HOWTO.html -%%PORTDOCS%%share/doc/samba/htmldocs/UNIX_INSTALL.html -%%PORTDOCS%%share/doc/samba/htmldocs/findsmb.1.html -%%PORTDOCS%%share/doc/samba/htmldocs/lmhosts.5.html -%%PORTDOCS%%share/doc/samba/htmldocs/make_smbcodepage.1.html -%%PORTDOCS%%share/doc/samba/htmldocs/make_unicodemap.1.html -%%PORTDOCS%%share/doc/samba/htmldocs/msdfs_setup.html -%%PORTDOCS%%share/doc/samba/htmldocs/nmbd.8.html -%%PORTDOCS%%share/doc/samba/htmldocs/nmblookup.1.html -%%PORTDOCS%%share/doc/samba/htmldocs/printer_driver2.html -%%PORTDOCS%%share/doc/samba/htmldocs/rpcclient.1.html -%%PORTDOCS%%share/doc/samba/htmldocs/samba-pdc-faq.html -%%PORTDOCS%%share/doc/samba/htmldocs/samba-pdc-howto.html -%%PORTDOCS%%share/doc/samba/htmldocs/samba.7.html -%%PORTDOCS%%share/doc/samba/htmldocs/smb.conf.5.html -%%PORTDOCS%%share/doc/samba/htmldocs/smbcacls.1.html -%%PORTDOCS%%share/doc/samba/htmldocs/smbclient.1.html -%%PORTDOCS%%share/doc/samba/htmldocs/smbcontrol.1.html -%%PORTDOCS%%share/doc/samba/htmldocs/smbd.8.html -%%PORTDOCS%%share/doc/samba/htmldocs/smbmnt.8.html -%%PORTDOCS%%share/doc/samba/htmldocs/smbmount.8.html -%%PORTDOCS%%share/doc/samba/htmldocs/smbpasswd.5.html -%%PORTDOCS%%share/doc/samba/htmldocs/smbpasswd.8.html -%%PORTDOCS%%share/doc/samba/htmldocs/smbrun.1.html -%%PORTDOCS%%share/doc/samba/htmldocs/smbsh.1.html -%%PORTDOCS%%share/doc/samba/htmldocs/smbspool.8.html -%%PORTDOCS%%share/doc/samba/htmldocs/smbstatus.1.html -%%PORTDOCS%%share/doc/samba/htmldocs/smbtar.1.html -%%PORTDOCS%%share/doc/samba/htmldocs/smbumount.8.html -%%PORTDOCS%%share/doc/samba/htmldocs/swat.8.html -%%PORTDOCS%%share/doc/samba/htmldocs/testparm.1.html -%%PORTDOCS%%share/doc/samba/htmldocs/testprns.1.html -%%PORTDOCS%%share/doc/samba/htmldocs/wbinfo.1.html -%%PORTDOCS%%share/doc/samba/htmldocs/wfw_slip.htm -%%PORTDOCS%%share/doc/samba/htmldocs/winbind.html -%%PORTDOCS%%share/doc/samba/htmldocs/winbindd.8.html -%%PORTDOCS%%share/doc/samba/textdocs/Application_Serving.txt -%%PORTDOCS%%share/doc/samba/textdocs/BROWSING-Config.txt -%%PORTDOCS%%share/doc/samba/textdocs/BROWSING.txt -%%PORTDOCS%%share/doc/samba/textdocs/BUGS.txt -%%PORTDOCS%%share/doc/samba/textdocs/DHCP-Server-Configuration.txt -%%PORTDOCS%%share/doc/samba/textdocs/DIAGNOSIS.txt -%%PORTDOCS%%share/doc/samba/textdocs/DNIX.txt -%%PORTDOCS%%share/doc/samba/textdocs/Faxing.txt -%%PORTDOCS%%share/doc/samba/textdocs/GOTCHAS.txt -%%PORTDOCS%%share/doc/samba/textdocs/HINTS.txt -%%PORTDOCS%%share/doc/samba/textdocs/INSTALL.sambatar -%%PORTDOCS%%share/doc/samba/textdocs/Imprints.txt -%%PORTDOCS%%share/doc/samba/textdocs/Macintosh_Clients.txt -%%PORTDOCS%%share/doc/samba/textdocs/NetBIOS.txt -%%PORTDOCS%%share/doc/samba/textdocs/PROFILES.txt -%%PORTDOCS%%share/doc/samba/textdocs/Passwords.txt -%%PORTDOCS%%share/doc/samba/textdocs/Printing.txt -%%PORTDOCS%%share/doc/samba/textdocs/README.DCEDFS -%%PORTDOCS%%share/doc/samba/textdocs/README.jis -%%PORTDOCS%%share/doc/samba/textdocs/README.sambatar -%%PORTDOCS%%share/doc/samba/textdocs/Recent-FAQs.txt -%%PORTDOCS%%share/doc/samba/textdocs/RoutedNetworks.txt -%%PORTDOCS%%share/doc/samba/textdocs/SCO.txt -%%PORTDOCS%%share/doc/samba/textdocs/SMBTAR.notes -%%PORTDOCS%%share/doc/samba/textdocs/SSLeay.txt -%%PORTDOCS%%share/doc/samba/textdocs/Speed.txt -%%PORTDOCS%%share/doc/samba/textdocs/Speed2.txt -%%PORTDOCS%%share/doc/samba/textdocs/Tracing.txt -%%PORTDOCS%%share/doc/samba/textdocs/UNIX-SMB.txt -%%PORTDOCS%%share/doc/samba/textdocs/UNIX_SECURITY.txt -%%PORTDOCS%%share/doc/samba/textdocs/Win95.txt -%%PORTDOCS%%share/doc/samba/textdocs/WinNT.txt -%%PORTDOCS%%share/doc/samba/textdocs/cifsntdomain.txt -%%PORTDOCS%%share/doc/samba/textdocs/kurs.pdf -%%PORTDOCS%%share/doc/samba/textdocs/kurs.tex -%%PORTDOCS%%share/doc/samba/textdocs/logo.ps -%%PORTDOCS%%share/doc/samba/textdocs/security_level.txt -share/examples/samba/LDAP/README -share/examples/samba/LDAP/export2_smbpasswd.pl -share/examples/samba/LDAP/export_smbpasswd.pl -share/examples/samba/LDAP/import2_smbpasswd.pl -share/examples/samba/LDAP/import_smbpasswd.pl -share/examples/samba/LDAP/ldapchpasswd -share/examples/samba/LDAP/ldapsync.pl -share/examples/samba/LDAP/samba.schema - -share/examples/samba/README -share/examples/samba/VFS/.cvsignore -share/examples/samba/VFS/Makefile -share/examples/samba/VFS/README -share/examples/samba/VFS/block/Makefile -share/examples/samba/VFS/block/block.c -share/examples/samba/VFS/block/samba-block.conf -share/examples/samba/VFS/block/smb.conf -share/examples/samba/VFS/audit.c -share/examples/samba/VFS/skel.c -share/examples/samba/appliance/Makefile -share/examples/samba/appliance/README -share/examples/samba/appliance/appliance.spec -share/examples/samba/appliance/build.sh -share/examples/samba/appliance/smb.conf-appliance -share/examples/samba/autofs/auto.a -share/examples/samba/dce-dfs/README -share/examples/samba/dce-dfs/smb.conf -share/examples/samba/libsmbclient/testsmbc.c -share/examples/samba/libsmbclient/tree.c -share/examples/samba/misc/extra_smbstatus -share/examples/samba/misc/modify_samba_config.pl -share/examples/samba/misc/swat.pl -share/examples/samba/misc/wall.perl -share/examples/samba/printer-accounting/README -share/examples/samba/printer-accounting/acct-all -share/examples/samba/printer-accounting/acct-sum -share/examples/samba/printer-accounting/hp5-redir -share/examples/samba/printer-accounting/lp-acct -share/examples/samba/printer-accounting/printcap -share/examples/samba/printing/smbprint -share/examples/samba/printing/smbprint.newer -share/examples/samba/printing/smbprint.sysv -share/examples/samba/simple/README -share/examples/samba/simple/smb.conf -share/examples/samba/smb.conf.default -share/examples/samba/svr4-startup/README -share/examples/samba/svr4-startup/samba.server -share/examples/samba/thoralf/smb.conf -share/examples/samba/tridge/README -share/examples/samba/tridge/smb.conf -share/examples/samba/tridge/smb.conf.WinNT -share/examples/samba/tridge/smb.conf.fjall -share/examples/samba/tridge/smb.conf.lapland -share/examples/samba/tridge/smb.conf.vittjokk -share/examples/samba/validchars/msdos70.out -share/examples/samba/validchars/nwdos70.out -share/examples/samba/validchars/readme -share/examples/samba/validchars/validchr.c -share/examples/samba/validchars/validchr.com -share/swat/help/CVS-Access.html -share/swat/help/DOMAIN_MEMBER.html -share/swat/help/ENCRYPTION.html -share/swat/help/Integrating-with-Windows.html -share/swat/help/NT_Security.html -share/swat/help/OS2-Client-HOWTO.html -share/swat/help/PAM-Authentication-And-Samba.html -share/swat/help/Samba-HOWTO-Collection.html -share/swat/help/Samba-PDC-HOWTO.html -share/swat/help/UNIX_INSTALL.html -share/swat/help/findsmb.1.html -share/swat/help/lmhosts.5.html -share/swat/help/make_smbcodepage.1.html -share/swat/help/make_unicodemap.1.html -share/swat/help/msdfs_setup.html -share/swat/help/nmbd.8.html -share/swat/help/nmblookup.1.html -share/swat/help/printer_driver2.html -share/swat/help/rpcclient.1.html -share/swat/help/samba-pdc-faq.html -share/swat/help/samba-pdc-howto.html -share/swat/help/samba.7.html -share/swat/help/smb.conf.5.html -share/swat/help/smbcacls.1.html -share/swat/help/smbclient.1.html -share/swat/help/smbcontrol.1.html -share/swat/help/smbd.8.html -share/swat/help/smbmnt.8.html -share/swat/help/smbmount.8.html -share/swat/help/smbpasswd.5.html -share/swat/help/smbpasswd.8.html -share/swat/help/smbrun.1.html -share/swat/help/smbsh.1.html -share/swat/help/smbspool.8.html -share/swat/help/smbstatus.1.html -share/swat/help/smbtar.1.html -share/swat/help/smbumount.8.html -share/swat/help/swat.8.html -share/swat/help/testparm.1.html -share/swat/help/testprns.1.html -share/swat/help/wbinfo.1.html -share/swat/help/welcome.html -share/swat/help/winbind.html -share/swat/help/winbindd.8.html -share/swat/images/globals.gif -share/swat/images/home.gif -share/swat/images/passwd.gif -share/swat/images/printers.gif -share/swat/images/samba.gif -share/swat/images/shares.gif -share/swat/images/status.gif -share/swat/images/viewconfig.gif -share/swat/include/footer.html -share/swat/include/header.html -share/swat/using_samba/appa_01.html -share/swat/using_samba/appa_02.html -share/swat/using_samba/appa_03.html -share/swat/using_samba/appa_04.html -share/swat/using_samba/appa_05.html -share/swat/using_samba/appb_01.html -share/swat/using_samba/appb_02.html -share/swat/using_samba/appb_03.html -share/swat/using_samba/appc_01.html -share/swat/using_samba/appd_01.html -share/swat/using_samba/appe_01.html -share/swat/using_samba/appf_01.html -share/swat/using_samba/ch01_01.html -share/swat/using_samba/ch01_02.html -share/swat/using_samba/ch01_03.html -share/swat/using_samba/ch01_04.html -share/swat/using_samba/ch01_05.html -share/swat/using_samba/ch01_06.html -share/swat/using_samba/ch01_07.html -share/swat/using_samba/ch01_08.html -share/swat/using_samba/ch02_01.html -share/swat/using_samba/ch02_02.html -share/swat/using_samba/ch02_03.html -share/swat/using_samba/ch02_04.html -share/swat/using_samba/ch02_05.html -share/swat/using_samba/ch02_06.html -share/swat/using_samba/ch03_01.html -share/swat/using_samba/ch03_02.html -share/swat/using_samba/ch03_03.html -share/swat/using_samba/ch04_01.html -share/swat/using_samba/ch04_02.html -share/swat/using_samba/ch04_03.html -share/swat/using_samba/ch04_04.html -share/swat/using_samba/ch04_05.html -share/swat/using_samba/ch04_06.html -share/swat/using_samba/ch04_07.html -share/swat/using_samba/ch04_08.html -share/swat/using_samba/ch05_01.html -share/swat/using_samba/ch05_02.html -share/swat/using_samba/ch05_03.html -share/swat/using_samba/ch05_04.html -share/swat/using_samba/ch05_05.html -share/swat/using_samba/ch06_01.html -share/swat/using_samba/ch06_02.html -share/swat/using_samba/ch06_03.html -share/swat/using_samba/ch06_04.html -share/swat/using_samba/ch06_05.html -share/swat/using_samba/ch06_06.html -share/swat/using_samba/ch07_01.html -share/swat/using_samba/ch07_02.html -share/swat/using_samba/ch07_03.html -share/swat/using_samba/ch08_01.html -share/swat/using_samba/ch08_02.html -share/swat/using_samba/ch08_03.html -share/swat/using_samba/ch08_04.html -share/swat/using_samba/ch08_05.html -share/swat/using_samba/ch08_06.html -share/swat/using_samba/ch08_07.html -share/swat/using_samba/ch09_01.html -share/swat/using_samba/ch09_02.html -share/swat/using_samba/ch09_03.html -share/swat/using_samba/figs/sam.0101.gif -share/swat/using_samba/figs/sam.0102.gif -share/swat/using_samba/figs/sam.0103.gif -share/swat/using_samba/figs/sam.0104.gif -share/swat/using_samba/figs/sam.0105.gif -share/swat/using_samba/figs/sam.0106.gif -share/swat/using_samba/figs/sam.0107.gif -share/swat/using_samba/figs/sam.0108.gif -share/swat/using_samba/figs/sam.0109.gif -share/swat/using_samba/figs/sam.0110.gif -share/swat/using_samba/figs/sam.0111.gif -share/swat/using_samba/figs/sam.0112.gif -share/swat/using_samba/figs/sam.0113.gif -share/swat/using_samba/figs/sam.0114.gif -share/swat/using_samba/figs/sam.0201.gif -share/swat/using_samba/figs/sam.0202.gif -share/swat/using_samba/figs/sam.0203.gif -share/swat/using_samba/figs/sam.0204.gif -share/swat/using_samba/figs/sam.0301.gif -share/swat/using_samba/figs/sam.0302.gif -share/swat/using_samba/figs/sam.0303.gif -share/swat/using_samba/figs/sam.0304.gif -share/swat/using_samba/figs/sam.0305.gif -share/swat/using_samba/figs/sam.0306.gif -share/swat/using_samba/figs/sam.0307.gif -share/swat/using_samba/figs/sam.0308.gif -share/swat/using_samba/figs/sam.0309.gif -share/swat/using_samba/figs/sam.0310.gif -share/swat/using_samba/figs/sam.0311.gif -share/swat/using_samba/figs/sam.0312.gif -share/swat/using_samba/figs/sam.0313.gif -share/swat/using_samba/figs/sam.0314.gif -share/swat/using_samba/figs/sam.0315.gif -share/swat/using_samba/figs/sam.0316.gif -share/swat/using_samba/figs/sam.0317.gif -share/swat/using_samba/figs/sam.0318.gif -share/swat/using_samba/figs/sam.0319.gif -share/swat/using_samba/figs/sam.0320.gif -share/swat/using_samba/figs/sam.0321.gif -share/swat/using_samba/figs/sam.0322.gif -share/swat/using_samba/figs/sam.0323.gif -share/swat/using_samba/figs/sam.0324.gif -share/swat/using_samba/figs/sam.0325.gif -share/swat/using_samba/figs/sam.0326.gif -share/swat/using_samba/figs/sam.0327.gif -share/swat/using_samba/figs/sam.0328.gif -share/swat/using_samba/figs/sam.0401.gif -share/swat/using_samba/figs/sam.0402.gif -share/swat/using_samba/figs/sam.0403.gif -share/swat/using_samba/figs/sam.0404.gif -share/swat/using_samba/figs/sam.0405.gif -share/swat/using_samba/figs/sam.0406.gif -share/swat/using_samba/figs/sam.0407.gif -share/swat/using_samba/figs/sam.0501.gif -share/swat/using_samba/figs/sam.0502.gif -share/swat/using_samba/figs/sam.0503.gif -share/swat/using_samba/figs/sam.0504.gif -share/swat/using_samba/figs/sam.0505.gif -share/swat/using_samba/figs/sam.0506.gif -share/swat/using_samba/figs/sam.0507.gif -share/swat/using_samba/figs/sam.0508.gif -share/swat/using_samba/figs/sam.0601.gif -share/swat/using_samba/figs/sam.0602.gif -share/swat/using_samba/figs/sam.0603.gif -share/swat/using_samba/figs/sam.0604.gif -share/swat/using_samba/figs/sam.0605.gif -share/swat/using_samba/figs/sam.0606.gif -share/swat/using_samba/figs/sam.0701.gif -share/swat/using_samba/figs/sam.0702.gif -share/swat/using_samba/figs/sam.0703.gif -share/swat/using_samba/figs/sam.0704.gif -share/swat/using_samba/figs/sam.0705.gif -share/swat/using_samba/figs/sam.0706.gif -share/swat/using_samba/figs/sam.0707.gif -share/swat/using_samba/figs/sam.0708.gif -share/swat/using_samba/figs/sam.0709.gif -share/swat/using_samba/figs/sam.0801.gif -share/swat/using_samba/figs/sam.0802.gif -share/swat/using_samba/figs/sam.0803.gif -share/swat/using_samba/figs/sam.0804.gif -share/swat/using_samba/figs/sam.0805.gif -share/swat/using_samba/figs/sam.0901.gif -share/swat/using_samba/figs/sam.0902.gif -share/swat/using_samba/figs/sam.0903.gif -share/swat/using_samba/figs/sam.0904.gif -share/swat/using_samba/figs/sam.0905.gif -share/swat/using_samba/figs/sam.aa01.gif -share/swat/using_samba/figs/sam.ab01.gif -share/swat/using_samba/figs/sam.ab02.gif -share/swat/using_samba/gifs/index.gif -share/swat/using_samba/gifs/samba.s.gif -share/swat/using_samba/gifs/txthome.gif -share/swat/using_samba/gifs/txtnexta.gif -share/swat/using_samba/gifs/txtpreva.gif -share/swat/using_samba/index.html -share/swat/using_samba/inx.html -share/swat/using_samba/licenseinfo.html -share/swat/using_samba/this_edition.html -@dirrm share/swat/using_samba/gifs -@dirrm share/swat/using_samba/figs -@dirrm share/swat/using_samba -@dirrm share/swat/include -@dirrm share/swat/images -@dirrm share/swat/help -@dirrm share/swat -@dirrm share/examples/samba/validchars -@dirrm share/examples/samba/tridge -@dirrm share/examples/samba/thoralf -@dirrm share/examples/samba/svr4-startup -@dirrm share/examples/samba/simple -@dirrm share/examples/samba/printing -@dirrm share/examples/samba/printer-accounting -@dirrm share/examples/samba/misc -@dirrm share/examples/samba/libsmbclient -@dirrm share/examples/samba/dce-dfs -@dirrm share/examples/samba/autofs -@dirrm share/examples/samba/appliance -@dirrm share/examples/samba/LDAP -@dirrm share/examples/samba/VFS/block -@dirrm share/examples/samba/VFS -@dirrm share/examples/samba -%%PORTDOCS%%@dirrm share/doc/samba/textdocs -%%PORTDOCS%%@dirrm share/doc/samba/htmldocs -%%PORTDOCS%%@dirrm share/doc/samba/faq -%%PORTDOCS%%@dirrm share/doc/samba -@dirrm etc/codepages diff --git a/net/sdr/Makefile b/net/sdr/Makefile deleted file mode 100644 index 9d59b2a9304c..000000000000 --- a/net/sdr/Makefile +++ /dev/null @@ -1,28 +0,0 @@ -# New ports collection makefile for: sdr -# Date created: 5 September 1996 -# Whom: Bill Fenner <fenner@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= sdr -PORTVERSION= 2.9 -CATEGORIES= mbone tk82 -MASTER_SITES= http://www-mice.cs.ucl.ac.uk/multimedia/software/sdr/2.9/ - -MAINTAINER= fenner@FreeBSD.org - -LIB_DEPENDS= tk82.1:${PORTSDIR}/x11-toolkits/tk82 -BUILD_DEPENDS= ${LOCALBASE}/lib/libuclmmbase.a:${PORTSDIR}/devel/uclmmbase - -WRKSRC= ${WRKDIR}/sdr/freebsd -HAS_CONFIGURE= yes -USE_GMAKE= yes -USE_X_PREFIX= yes - -RESTRICTED= "Contains DES cryptography." - -post-extract: - @${CP} ${FILESDIR}/Makefile.freebsd ${WRKSRC}/Makefile.freebsd - -.include <bsd.port.mk> diff --git a/net/sdr/distinfo b/net/sdr/distinfo deleted file mode 100644 index 67a5bc2cd609..000000000000 --- a/net/sdr/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (sdr-2.9.tar.gz) = ef0a3c8b92f7b3babf42ca5bd561fdd3 diff --git a/net/sdr/files/Makefile.freebsd b/net/sdr/files/Makefile.freebsd deleted file mode 100644 index e412d81c1f99..000000000000 --- a/net/sdr/files/Makefile.freebsd +++ /dev/null @@ -1,8 +0,0 @@ -CC = gcc -g -O -fwritable-strings -INCLUDES = -I${X11BASE}/include -I${LOCALBASE}/include/tk8.2 -I${LOCALBASE}/include/tcl8.2 -I${LOCALBASE}/include/uclmmbase -LIBS = -L${LOCALBASE}/lib -ltk82 -ltcl82 -luclmmbase -L${X11BASE}/lib -lX11 -lz -lm -CFLAGS = $(INCLUDES) -DDIFF_BYTE_ORDER -DFREEBSD -DNORANDPROTO -DDEFINED_ERRLIST -Wall -DAUTH -DHAVE_ZLIB -DFreeBSD - -all:: sdr -install: - install -s -c -o root -g wheel -m 555 sdr ${PREFIX}/bin diff --git a/net/sdr/files/patch-ab b/net/sdr/files/patch-ab deleted file mode 100644 index ca6c5f8fe01f..000000000000 --- a/net/sdr/files/patch-ab +++ /dev/null @@ -1,11 +0,0 @@ ---- ../src/Makefile.template.orig Tue May 25 16:27:44 1999 -+++ ../src/Makefile.template Thu Nov 4 11:05:39 1999 -@@ -88,7 +88,7 @@ - $(SDR_UI_FILES): tcl2c - - parsed_plugins.tcl: ../src/plugin2tcl.tcl -- tclsh8.0 ../src/plugin2tcl.tcl -+ tclsh8.2 ../src/plugin2tcl.tcl - - uweb: $(WWWOBJS) - $(CC) -ggdb -o uweb $(WWWOBJS) $(LIBS) diff --git a/net/sdr/files/patch-ac b/net/sdr/files/patch-ac deleted file mode 100644 index 8499cceb284b..000000000000 --- a/net/sdr/files/patch-ac +++ /dev/null @@ -1,11 +0,0 @@ ---- ../src/plugin2tcl.tcl.orig Sun Mar 19 20:33:42 2000 -+++ ../src/plugin2tcl.tcl Sun Mar 19 20:35:39 2000 -@@ -8,7 +8,7 @@ - puts $file "set createrules \"$createrules\"" - foreach ary {tooldata mediadata fmts protos protonames fmtnames mappings attrs attrnames attrvaluenames attrflags noattrflags noattrlist defattrlist withattrs macros macrokeys fmtlayers} { - foreach key [array names $ary] { -- puts $file "set [set ary]($key) \"[set [set ary]($key)]\"" -+ puts $file [list set [set ary]($key) [set [set ary]($key)]] - } - } - close $file diff --git a/net/sdr/pkg-comment b/net/sdr/pkg-comment deleted file mode 100644 index 9b614924d614..000000000000 --- a/net/sdr/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Multicast Session Directory diff --git a/net/sdr/pkg-descr b/net/sdr/pkg-descr deleted file mode 100644 index 4c6400374ee6..000000000000 --- a/net/sdr/pkg-descr +++ /dev/null @@ -1,6 +0,0 @@ -Sdr is a session directory tool designed to allow the advertisement -and joining of multicast conferences. It was originally based on -sd written by Van Jacobson at LBNL, but implements a later version -of the session description protocol than sd does. - -WWW: http://www-mice.cs.ucl.ac.uk/multimedia/software/sdr/ diff --git a/net/sdr/pkg-plist b/net/sdr/pkg-plist deleted file mode 100644 index 3b663de62fc5..000000000000 --- a/net/sdr/pkg-plist +++ /dev/null @@ -1 +0,0 @@ -bin/sdr diff --git a/net/trafshow3/Makefile b/net/trafshow3/Makefile deleted file mode 100644 index 90a82ab3f172..000000000000 --- a/net/trafshow3/Makefile +++ /dev/null @@ -1,38 +0,0 @@ -# New ports collection makefile for: trafshow -# Date created: 25 September 1996 -# Whom: igor@zynaps.ru -# -# $FreeBSD$ -# - -PORTNAME= trafshow -PORTVERSION= 3.1 -PORTREVISION= 1 -CATEGORIES= net -MASTER_SITES= ftp://ftp.nsk.su/pub/RinetSoftware/ -EXTRACT_SUFX= .tgz - -MAINTAINER= jseger@FreeBSD.org - -.include <bsd.port.pre.mk> -.if ${OSVERSION} < 400010 -LIB_DEPENDS= ncurses.5:${PORTSDIR}/devel/ncurses -.endif - -GNU_CONFIGURE= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include/ncurses -I${LOCALBASE}/include" \ - LIBS="-L${LOCALBASE}/lib" -ALL_TARGET= trafshow - -MAN1= trafshow.1 - -post-patch: - @${PERL} -pi -e "s|%%PREFIX%%|${PREFIX}|g" ${WRKSRC}/*.c - -do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/trafshow ${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/trafshow.1 ${PREFIX}/man/man1 - ${INSTALL_DATA} ${WRKSRC}/.trafshow ${PREFIX}/etc/trafshow.dist - ${CP} ${PREFIX}/etc/trafshow.dist ${PREFIX}/etc/trafshow - -.include <bsd.port.post.mk> diff --git a/net/trafshow3/distinfo b/net/trafshow3/distinfo deleted file mode 100644 index f404b24464cf..000000000000 --- a/net/trafshow3/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (trafshow-3.1.tgz) = 085b99f160002a269b358aab1c5004f0 diff --git a/net/trafshow3/files/patch-ac b/net/trafshow3/files/patch-ac deleted file mode 100644 index c15ab541f4d8..000000000000 --- a/net/trafshow3/files/patch-ac +++ /dev/null @@ -1,11 +0,0 @@ ---- color.c.orig Mon Jan 24 10:59:01 2000 -+++ color.c Mon Jan 24 10:57:36 2000 -@@ -336,7 +336,7 @@ - error(1, "init_color_mask: getpwuid"); - (void) sprintf(buf, "%s/.%s", pw->pw_dir, program_name); - if ((fp = fopen(buf, "r")) == NULL) { -- (void) strcpy(buf, "/etc/"); -+ (void) strcpy(buf, "%%PREFIX%%/etc/"); - (void) strcat(buf, program_name); - if ((fp = fopen(buf, "r")) == NULL) return 0; - } diff --git a/net/trafshow3/files/patch-af b/net/trafshow3/files/patch-af deleted file mode 100644 index dba73df91ae9..000000000000 --- a/net/trafshow3/files/patch-af +++ /dev/null @@ -1,13 +0,0 @@ ---- Makefile.in.orig Mon Aug 24 13:54:16 1998 -+++ Makefile.in Tue May 2 00:51:47 2000 -@@ -28,8 +28,8 @@ - - PROG = trafshow - CC = @CC@ --CCOPT = @V_CCOPT@ --INCLS = -I. @V_INCLS@ -+CCOPT = @CFLAGS@ -+INCLS = -I. @CPPFLAGS@ - DEFS = @DEFS@ - - CFLAGS = $(CCOPT) $(DEFS) $(INCLS) diff --git a/net/trafshow3/files/patch-ag b/net/trafshow3/files/patch-ag deleted file mode 100644 index b4003dcf9649..000000000000 --- a/net/trafshow3/files/patch-ag +++ /dev/null @@ -1,12 +0,0 @@ ---- util.c.orig Fri Sep 15 06:51:11 2000 -+++ util.c Thu Sep 21 14:35:33 2000 -@@ -129,6 +129,9 @@ - #ifdef IPPROTO_ENCAP - { "encap",IPPROTO_ENCAP}, - #endif -+#ifdef IPPROTO_IPV6 -+ { "ipv6", IPPROTO_IPV6}, -+#endif - { "ip", IPPROTO_IP }, - { "raw", IPPROTO_RAW }, - { NULL, -1 }, diff --git a/net/trafshow3/pkg-comment b/net/trafshow3/pkg-comment deleted file mode 100644 index bef4f1007643..000000000000 --- a/net/trafshow3/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Full screen visualization of the network traffic diff --git a/net/trafshow3/pkg-descr b/net/trafshow3/pkg-descr deleted file mode 100644 index cd1260b6aaa3..000000000000 --- a/net/trafshow3/pkg-descr +++ /dev/null @@ -1,17 +0,0 @@ -TrafShow continuously display the information regarding packet -traffic on the configured network interface that match the boolean -expression. It periodically sort and updates this information. It -may be useful for locating suspicious network traffic on the net. - -To use TrafShow, your kernel must be rebuilt with the following line -added to your kernel config file (/sys/i386/conf/<YourMachine>): - -pseudo-device bpfilter 4 # Berkeley packet filter - -The number after bpfilter is the number of interfaces that can be -examined simultaneously. See section 5.8.3 of Handbook for details. - -WWW: http://www.rinetsoft.nsk.su/trafshow/index_en.html - -- Igor -igor@zynaps.ru diff --git a/net/trafshow3/pkg-plist b/net/trafshow3/pkg-plist deleted file mode 100644 index 00f2059110f7..000000000000 --- a/net/trafshow3/pkg-plist +++ /dev/null @@ -1,4 +0,0 @@ -bin/trafshow -@unexec if cmp -s %D/etc/trafshow %D/etc/trafshow.dist; then rm -f %D/etc/trafshow; fi -etc/trafshow.dist -@exec if [ ! -f %D/etc/trafshow.dist ]; then cp -p %D/%F %B/trafshow.dist; fi diff --git a/net/trafshow4/Makefile b/net/trafshow4/Makefile deleted file mode 100644 index 90a82ab3f172..000000000000 --- a/net/trafshow4/Makefile +++ /dev/null @@ -1,38 +0,0 @@ -# New ports collection makefile for: trafshow -# Date created: 25 September 1996 -# Whom: igor@zynaps.ru -# -# $FreeBSD$ -# - -PORTNAME= trafshow -PORTVERSION= 3.1 -PORTREVISION= 1 -CATEGORIES= net -MASTER_SITES= ftp://ftp.nsk.su/pub/RinetSoftware/ -EXTRACT_SUFX= .tgz - -MAINTAINER= jseger@FreeBSD.org - -.include <bsd.port.pre.mk> -.if ${OSVERSION} < 400010 -LIB_DEPENDS= ncurses.5:${PORTSDIR}/devel/ncurses -.endif - -GNU_CONFIGURE= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include/ncurses -I${LOCALBASE}/include" \ - LIBS="-L${LOCALBASE}/lib" -ALL_TARGET= trafshow - -MAN1= trafshow.1 - -post-patch: - @${PERL} -pi -e "s|%%PREFIX%%|${PREFIX}|g" ${WRKSRC}/*.c - -do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/trafshow ${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/trafshow.1 ${PREFIX}/man/man1 - ${INSTALL_DATA} ${WRKSRC}/.trafshow ${PREFIX}/etc/trafshow.dist - ${CP} ${PREFIX}/etc/trafshow.dist ${PREFIX}/etc/trafshow - -.include <bsd.port.post.mk> diff --git a/net/trafshow4/distinfo b/net/trafshow4/distinfo deleted file mode 100644 index f404b24464cf..000000000000 --- a/net/trafshow4/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (trafshow-3.1.tgz) = 085b99f160002a269b358aab1c5004f0 diff --git a/net/trafshow4/files/patch-ac b/net/trafshow4/files/patch-ac deleted file mode 100644 index c15ab541f4d8..000000000000 --- a/net/trafshow4/files/patch-ac +++ /dev/null @@ -1,11 +0,0 @@ ---- color.c.orig Mon Jan 24 10:59:01 2000 -+++ color.c Mon Jan 24 10:57:36 2000 -@@ -336,7 +336,7 @@ - error(1, "init_color_mask: getpwuid"); - (void) sprintf(buf, "%s/.%s", pw->pw_dir, program_name); - if ((fp = fopen(buf, "r")) == NULL) { -- (void) strcpy(buf, "/etc/"); -+ (void) strcpy(buf, "%%PREFIX%%/etc/"); - (void) strcat(buf, program_name); - if ((fp = fopen(buf, "r")) == NULL) return 0; - } diff --git a/net/trafshow4/files/patch-af b/net/trafshow4/files/patch-af deleted file mode 100644 index dba73df91ae9..000000000000 --- a/net/trafshow4/files/patch-af +++ /dev/null @@ -1,13 +0,0 @@ ---- Makefile.in.orig Mon Aug 24 13:54:16 1998 -+++ Makefile.in Tue May 2 00:51:47 2000 -@@ -28,8 +28,8 @@ - - PROG = trafshow - CC = @CC@ --CCOPT = @V_CCOPT@ --INCLS = -I. @V_INCLS@ -+CCOPT = @CFLAGS@ -+INCLS = -I. @CPPFLAGS@ - DEFS = @DEFS@ - - CFLAGS = $(CCOPT) $(DEFS) $(INCLS) diff --git a/net/trafshow4/files/patch-ag b/net/trafshow4/files/patch-ag deleted file mode 100644 index b4003dcf9649..000000000000 --- a/net/trafshow4/files/patch-ag +++ /dev/null @@ -1,12 +0,0 @@ ---- util.c.orig Fri Sep 15 06:51:11 2000 -+++ util.c Thu Sep 21 14:35:33 2000 -@@ -129,6 +129,9 @@ - #ifdef IPPROTO_ENCAP - { "encap",IPPROTO_ENCAP}, - #endif -+#ifdef IPPROTO_IPV6 -+ { "ipv6", IPPROTO_IPV6}, -+#endif - { "ip", IPPROTO_IP }, - { "raw", IPPROTO_RAW }, - { NULL, -1 }, diff --git a/net/trafshow4/pkg-comment b/net/trafshow4/pkg-comment deleted file mode 100644 index bef4f1007643..000000000000 --- a/net/trafshow4/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Full screen visualization of the network traffic diff --git a/net/trafshow4/pkg-descr b/net/trafshow4/pkg-descr deleted file mode 100644 index cd1260b6aaa3..000000000000 --- a/net/trafshow4/pkg-descr +++ /dev/null @@ -1,17 +0,0 @@ -TrafShow continuously display the information regarding packet -traffic on the configured network interface that match the boolean -expression. It periodically sort and updates this information. It -may be useful for locating suspicious network traffic on the net. - -To use TrafShow, your kernel must be rebuilt with the following line -added to your kernel config file (/sys/i386/conf/<YourMachine>): - -pseudo-device bpfilter 4 # Berkeley packet filter - -The number after bpfilter is the number of interfaces that can be -examined simultaneously. See section 5.8.3 of Handbook for details. - -WWW: http://www.rinetsoft.nsk.su/trafshow/index_en.html - -- Igor -igor@zynaps.ru diff --git a/net/trafshow4/pkg-plist b/net/trafshow4/pkg-plist deleted file mode 100644 index 00f2059110f7..000000000000 --- a/net/trafshow4/pkg-plist +++ /dev/null @@ -1,4 +0,0 @@ -bin/trafshow -@unexec if cmp -s %D/etc/trafshow %D/etc/trafshow.dist; then rm -f %D/etc/trafshow; fi -etc/trafshow.dist -@exec if [ ! -f %D/etc/trafshow.dist ]; then cp -p %D/%F %B/trafshow.dist; fi diff --git a/net/unison-devel/Makefile b/net/unison-devel/Makefile deleted file mode 100644 index c8431aebbc4e..000000000000 --- a/net/unison-devel/Makefile +++ /dev/null @@ -1,27 +0,0 @@ -# New ports collection makefile for: unison -# Date created: 4 October 2000 -# Whom: Dan Pelleg <dpelleg+unison@cs.cmu.edu> -# -# $FreeBSD$ -# - -PORTNAME= unison -PORTVERSION= 2.7.1 -CATEGORIES= net -MASTER_SITES= http://www.cis.upenn.edu/~bcpierce/unison/download/stable/unison-${PORTVERSION}/ -DISTNAME= src -DIST_SUBDIR= unison-${PORTVERSION} - -MAINTAINER= dpelleg+unison@cs.cmu.edu - -BUILD_DEPENDS= ocamlc:${PORTSDIR}/lang/ocaml - -WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} - -USE_GMAKE= yes -MAKE_ARGS= UISTYLE=text CFLAGS="" - -post-install: - strip ${PREFIX}/bin/unison - -.include <bsd.port.mk> diff --git a/net/unison-devel/distinfo b/net/unison-devel/distinfo deleted file mode 100644 index cf725dc985f1..000000000000 --- a/net/unison-devel/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (unison-2.7.1/src.tar.gz) = a83b78764b8f141eff8468ca2a1d5ecc diff --git a/net/unison-devel/files/patch-aa b/net/unison-devel/files/patch-aa deleted file mode 100644 index a14c18bfa972..000000000000 --- a/net/unison-devel/files/patch-aa +++ /dev/null @@ -1,27 +0,0 @@ ---- Makefile.orig Tue Aug 28 16:27:01 2001 -+++ Makefile Wed Aug 29 09:15:09 2001 -@@ -62,12 +62,12 @@ - ###################################################################### - # Installation - --INSTALLDIR = $(HOME)/bin/ -+INSTALLDIR = ${PREFIX}/bin/ - - install: $(NAME)$(EXEC_EXT) -- -mv $(INSTALLDIR)/$(NAME)$(EXEC_EXT) /tmp/$(NAME)-$(shell echo $$$$) -+# -mv $(INSTALLDIR)/$(NAME)$(EXEC_EXT) /tmp/$(NAME)-$(shell echo $$$$) - cp $(NAME)$(EXEC_EXT) $(INSTALLDIR) -- cp $(NAME)$(EXEC_EXT) $(INSTALLDIR)$(NAME)-$(VERSION)$(EXEC_EXT) -+# cp $(NAME)$(EXEC_EXT) $(INSTALLDIR)$(NAME)-$(VERSION)$(EXEC_EXT) - @# If we're running at Penn, install a public version too - if [ -d /plclub/bin ]; then cp $(NAME)$(EXEC_EXT) /plclub/bin/$(NAME)-$(VERSION)$(EXEC_EXT); fi - -@@ -231,7 +231,7 @@ - tags: - -$(ETAGS) *.ml *.mli *.txt - --all:: TAGS -+#all:: TAGS - - TAGS: - $(MAKE) tags diff --git a/net/unison-devel/pkg-comment b/net/unison-devel/pkg-comment deleted file mode 100644 index 140bbf544904..000000000000 --- a/net/unison-devel/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -A user-level file synchronization tool diff --git a/net/unison-devel/pkg-descr b/net/unison-devel/pkg-descr deleted file mode 100644 index 5ae58aebb642..000000000000 --- a/net/unison-devel/pkg-descr +++ /dev/null @@ -1,15 +0,0 @@ -Unison is a file-synchronization tool for Unix and Windows. It allows two -replicas of a collection of files and directories to be stored on different -hosts (or different disks on the same host), modified separately, and then -brought up to date by propagating the changes in each replica to the other. - -Unison shares a number of features with tools such as configuration -management packages (CVS, PRCS, etc.) distributed filesystems (Coda, etc.) -uni-directional mirroring utilities (rsync, etc.) and other synchronizers -(Intellisync, Reconcile, etc). - -WWW: http://www.cis.upenn.edu/~bcpierce/unison/ - -- Dan Pelleg - -dpelleg+unison@cs.cmu.edu diff --git a/net/unison-devel/pkg-plist b/net/unison-devel/pkg-plist deleted file mode 100644 index 31b7bedb59e4..000000000000 --- a/net/unison-devel/pkg-plist +++ /dev/null @@ -1 +0,0 @@ -bin/unison diff --git a/net/unison232/Makefile b/net/unison232/Makefile deleted file mode 100644 index c8431aebbc4e..000000000000 --- a/net/unison232/Makefile +++ /dev/null @@ -1,27 +0,0 @@ -# New ports collection makefile for: unison -# Date created: 4 October 2000 -# Whom: Dan Pelleg <dpelleg+unison@cs.cmu.edu> -# -# $FreeBSD$ -# - -PORTNAME= unison -PORTVERSION= 2.7.1 -CATEGORIES= net -MASTER_SITES= http://www.cis.upenn.edu/~bcpierce/unison/download/stable/unison-${PORTVERSION}/ -DISTNAME= src -DIST_SUBDIR= unison-${PORTVERSION} - -MAINTAINER= dpelleg+unison@cs.cmu.edu - -BUILD_DEPENDS= ocamlc:${PORTSDIR}/lang/ocaml - -WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} - -USE_GMAKE= yes -MAKE_ARGS= UISTYLE=text CFLAGS="" - -post-install: - strip ${PREFIX}/bin/unison - -.include <bsd.port.mk> diff --git a/net/unison232/distinfo b/net/unison232/distinfo deleted file mode 100644 index cf725dc985f1..000000000000 --- a/net/unison232/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (unison-2.7.1/src.tar.gz) = a83b78764b8f141eff8468ca2a1d5ecc diff --git a/net/unison232/files/patch-aa b/net/unison232/files/patch-aa deleted file mode 100644 index a14c18bfa972..000000000000 --- a/net/unison232/files/patch-aa +++ /dev/null @@ -1,27 +0,0 @@ ---- Makefile.orig Tue Aug 28 16:27:01 2001 -+++ Makefile Wed Aug 29 09:15:09 2001 -@@ -62,12 +62,12 @@ - ###################################################################### - # Installation - --INSTALLDIR = $(HOME)/bin/ -+INSTALLDIR = ${PREFIX}/bin/ - - install: $(NAME)$(EXEC_EXT) -- -mv $(INSTALLDIR)/$(NAME)$(EXEC_EXT) /tmp/$(NAME)-$(shell echo $$$$) -+# -mv $(INSTALLDIR)/$(NAME)$(EXEC_EXT) /tmp/$(NAME)-$(shell echo $$$$) - cp $(NAME)$(EXEC_EXT) $(INSTALLDIR) -- cp $(NAME)$(EXEC_EXT) $(INSTALLDIR)$(NAME)-$(VERSION)$(EXEC_EXT) -+# cp $(NAME)$(EXEC_EXT) $(INSTALLDIR)$(NAME)-$(VERSION)$(EXEC_EXT) - @# If we're running at Penn, install a public version too - if [ -d /plclub/bin ]; then cp $(NAME)$(EXEC_EXT) /plclub/bin/$(NAME)-$(VERSION)$(EXEC_EXT); fi - -@@ -231,7 +231,7 @@ - tags: - -$(ETAGS) *.ml *.mli *.txt - --all:: TAGS -+#all:: TAGS - - TAGS: - $(MAKE) tags diff --git a/net/unison232/pkg-comment b/net/unison232/pkg-comment deleted file mode 100644 index 140bbf544904..000000000000 --- a/net/unison232/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -A user-level file synchronization tool diff --git a/net/unison232/pkg-descr b/net/unison232/pkg-descr deleted file mode 100644 index 5ae58aebb642..000000000000 --- a/net/unison232/pkg-descr +++ /dev/null @@ -1,15 +0,0 @@ -Unison is a file-synchronization tool for Unix and Windows. It allows two -replicas of a collection of files and directories to be stored on different -hosts (or different disks on the same host), modified separately, and then -brought up to date by propagating the changes in each replica to the other. - -Unison shares a number of features with tools such as configuration -management packages (CVS, PRCS, etc.) distributed filesystems (Coda, etc.) -uni-directional mirroring utilities (rsync, etc.) and other synchronizers -(Intellisync, Reconcile, etc). - -WWW: http://www.cis.upenn.edu/~bcpierce/unison/ - -- Dan Pelleg - -dpelleg+unison@cs.cmu.edu diff --git a/net/unison232/pkg-plist b/net/unison232/pkg-plist deleted file mode 100644 index 31b7bedb59e4..000000000000 --- a/net/unison232/pkg-plist +++ /dev/null @@ -1 +0,0 @@ -bin/unison diff --git a/net/wb/Makefile b/net/wb/Makefile deleted file mode 100644 index 7fbb109f2605..000000000000 --- a/net/wb/Makefile +++ /dev/null @@ -1,39 +0,0 @@ -# New ports collection makefile for: wb -# Date created: 2 Novermber 1996 -# Whom: fenner -# -# $FreeBSD$ -# - -PORTNAME= wb -PORTVERSION= 1.59 -CATEGORIES= mbone -MASTER_SITES= ftp://ftp.ee.lbl.gov/conferencing/wb/ -DISTFILES= i386-wb-1.59.tar.Z - -MAINTAINER= fenner@FreeBSD.org - -NO_WRKSUBDIR= yes -NO_BUILD= yes -USE_X_PREFIX= yes - -# XXX ghostscript, ghostscript3, ghostscript4 or ghostscript5 will all do. -RUN_DEPENDS= gs:${PORTSDIR}/print/ghostscript-gnu - -.include <bsd.port.pre.mk> - -.if ${PORTOBJFORMAT} == "elf" -STRIP= -.endif - -do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/wb ${PREFIX}/bin -.if !defined(NOPORTDOCS) - ${MKDIR} ${PREFIX}/share/doc/wb - ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/wb - ${INSTALL_DATA} ${WRKSRC}/CHANGES ${PREFIX}/share/doc/wb - ${INSTALL_DATA} ${WRKSRC}/NOTES ${PREFIX}/share/doc/wb - ${INSTALL_DATA} ${WRKSRC}/lblwb.ps ${PREFIX}/share/doc/wb -.endif - -.include <bsd.port.post.mk> diff --git a/net/wb/distinfo b/net/wb/distinfo deleted file mode 100644 index 40cefca1c0bb..000000000000 --- a/net/wb/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (i386-wb-1.59.tar.Z) = 7601eb1192ee2774940d805500c0a9ce diff --git a/net/wb/pkg-comment b/net/wb/pkg-comment deleted file mode 100644 index 8bd2e20b0482..000000000000 --- a/net/wb/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -A shared drawing (whiteboard) tool using multicast diff --git a/net/wb/pkg-descr b/net/wb/pkg-descr deleted file mode 100644 index 9c196397ccc9..000000000000 --- a/net/wb/pkg-descr +++ /dev/null @@ -1,16 +0,0 @@ -This is a beta-release of the LBL 'whiteboard'. - -Before using wb, read the file NOTES from the distribution (note -especially the .sd.tcl change needed if you are running sd v1.14 -or earlier) and print and read the postscript file lblwb.ps. - -If you simply want a shared "whiteboard" drawing surface, you -don't need to do anything but install wb. But wb can also be -used to export, view and annotate arbitrary PostScript files. -If you want to include PostScript images in your wb conference, -either your X server has to support Display PostScript (the DEC -& SGI X servers do) or wb has to be able to exec the public -domain postscript renderer `GhostScript'. If you want to -render postscript with Ghostscript, it has to be installed on -your machine and has to be in your shell search path with the -name "gs". diff --git a/net/wb/pkg-plist b/net/wb/pkg-plist deleted file mode 100644 index 084fc240b5dd..000000000000 --- a/net/wb/pkg-plist +++ /dev/null @@ -1,6 +0,0 @@ -bin/wb -share/doc/wb/README -share/doc/wb/CHANGES -share/doc/wb/NOTES -share/doc/wb/lblwb.ps -@dirrm share/doc/wb diff --git a/net/wireshark/Makefile b/net/wireshark/Makefile deleted file mode 100644 index 339f78a21f87..000000000000 --- a/net/wireshark/Makefile +++ /dev/null @@ -1,44 +0,0 @@ -# New ports collection makefile for: ethereal -# Date created: 10 August 1998 -# Whom: Bill Fumerola <billf@chc-chimes.com> -# -# $FreeBSD$ -# - -PORTNAME= ethereal -PORTVERSION= 0.8.19 -PORTREVISION= 1 -CATEGORIES= net ipv6 -MASTER_SITES= ftp://ftp.ethereal.com/pub/ethereal/ \ - ftp://gd.tuwien.ac.at/infosys/security/ethereal/ \ - ftp://ftp.sunet.se/pub/network/monitoring/ethereal/ \ - ftp://the.wiretapped.net/pub/security/packet-sniffing/ethereal/ - -MAINTAINER= billf@FreeBSD.org - -.if defined(WITH_SNMP) -LIB_DEPENDS= snmp.4:${PORTSDIR}/net/net-snmp -.endif - -USE_X_PREFIX= yes -USE_GTK= yes -USE_LIBTOOL= yes -LIBTOOLFILES= configure epan/configure wiretap/configure -.if defined(WITH_SNMP) -CONFIGURE_ARGS+= --enable-snmp=yes -.if exists(/usr/include/openssl/crypto.h) -CONFIGURE_ARGS+= --with-ssl=/usr -.endif -.else -CONFIGURE_ARGS+= --enable-snmp=no -.endif -PLIST_SUB= PORTVERSION=${PORTVERSION} - -MAN1= ethereal.1 tethereal.1 editcap.1 mergecap.1 text2pcap.1 - -pre-install: -.for i in ${MAN1} - ${INSTALL_MAN} ${WRKSRC}/${i} ${PREFIX}/man/man1 -.endfor - -.include <bsd.port.mk> diff --git a/net/wireshark/distinfo b/net/wireshark/distinfo deleted file mode 100644 index fc66037b8cfb..000000000000 --- a/net/wireshark/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (ethereal-0.8.19.tar.gz) = dd9041866f61b7d172c43dce0187181c diff --git a/net/wireshark/files/patch-ac b/net/wireshark/files/patch-ac deleted file mode 100644 index dc3ca1b5bb19..000000000000 --- a/net/wireshark/files/patch-ac +++ /dev/null @@ -1,15 +0,0 @@ ---- doc/Makefile.in.orig Wed Aug 1 22:49:55 2001 -+++ doc/Makefile.in Wed Aug 1 22:52:18 2001 -@@ -273,6 +273,12 @@ - --release=$(VERSION) \ - > ../editcap.1 - -+../mergecap.1: mergecap.pod ../config.h -+ pod2man $(srcdir)/mergecap.pod \ -+ --center="The Ethereal Network Analyzer" \ -+ --release=$(VERSION) \ -+ > ../mergecap.1 -+ - ../text2pcap.1: text2pcap.pod ../config.h - pod2man $(srcdir)/text2pcap.pod \ - --center="The Ethereal Network Analyzer" \ diff --git a/net/wireshark/pkg-comment b/net/wireshark/pkg-comment deleted file mode 100644 index 798083f0bf7e..000000000000 --- a/net/wireshark/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -An X11/GTK network analyzer/capture tool diff --git a/net/wireshark/pkg-descr b/net/wireshark/pkg-descr deleted file mode 100644 index fd7658ffd4b6..000000000000 --- a/net/wireshark/pkg-descr +++ /dev/null @@ -1,7 +0,0 @@ -A network analyzer that lets you capture and interactively browse the -contents of Ethernet frames. Packet data can be read from a file, or -live from a local network interface. - -WWW: http://www.ethereal.com/ - -Bill Fumerola <billf@chc-chimes.com> diff --git a/net/wireshark/pkg-plist b/net/wireshark/pkg-plist deleted file mode 100644 index 79caf46429b8..000000000000 --- a/net/wireshark/pkg-plist +++ /dev/null @@ -1,11 +0,0 @@ -bin/editcap -bin/ethereal -bin/mergecap -bin/tethereal -bin/text2pcap -etc/manuf -lib/ethereal/plugins/%%PORTVERSION%%/gryphon.so -lib/ethereal/plugins/%%PORTVERSION%%/mgcp.so -@dirrm lib/ethereal/plugins/%%PORTVERSION%% -@dirrm lib/ethereal/plugins -@dirrm lib/ethereal diff --git a/net/xmlrpc-c-devel/Makefile b/net/xmlrpc-c-devel/Makefile deleted file mode 100644 index f9d268983d10..000000000000 --- a/net/xmlrpc-c-devel/Makefile +++ /dev/null @@ -1,27 +0,0 @@ -# ex:ts=8 -# New ports collection makefile for: xmlrpc-c -# Date created: Mar 8, 2001 -# Whom: Ying-Chieh Liao <ijliao@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= xmlrpc-c -PORTVERSION= 0.9.10 -CATEGORIES= net -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= ${PORTNAME} - -MAINTAINER= ports@FreeBSD.org - -LIB_DEPENDS= wwwcore.1:${PORTSDIR}/www/libwww -RUN_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/Frontier/Client.pm:${PORTSDIR}/net/p5-Frontier-RPC - -USE_LIBTOOL= yes -USE_GMAKE= yes -INSTALLS_SHLIB= yes - -post-install: - @${RM} -f ${PREFIX}/lib/*.la - -.include <bsd.port.mk> diff --git a/net/xmlrpc-c-devel/distinfo b/net/xmlrpc-c-devel/distinfo deleted file mode 100644 index b9fe002e8db1..000000000000 --- a/net/xmlrpc-c-devel/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (xmlrpc-c-0.9.10.tar.gz) = 847410fae881f0fb641a186db6c8c015 diff --git a/net/xmlrpc-c-devel/pkg-comment b/net/xmlrpc-c-devel/pkg-comment deleted file mode 100644 index 66fb3d0e0202..000000000000 --- a/net/xmlrpc-c-devel/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -XML-RPC library for C and C++ diff --git a/net/xmlrpc-c-devel/pkg-descr b/net/xmlrpc-c-devel/pkg-descr deleted file mode 100644 index 41931be8cb1d..000000000000 --- a/net/xmlrpc-c-devel/pkg-descr +++ /dev/null @@ -1,17 +0,0 @@ -XML-RPC is a quick-and-easy way to make procedure calls over the Internet. -It converts the procedure call into XML document, sends it to a remote -server using HTTP, and gets back the response as XML. - -This library provides a modular implementation of XML-RPC for C and C++. - - - C API and experimental C++ API. - - Modular XML-RPC core: If you want, you can supply all your own HTTP - code. - - Synchronous and asynchronous XML-RPC clients based on w3c-libwww. - - Multithreaded XML-RPC server based on the Abyss web server. - - Full support for basic types, including <struct>, <array> and <base64>. - - Extensive test suites to help verify correct behavior and correct - error handling. - - Passes the official XML-RPC validator1 test suite. - -WWW: http://xmlrpc-c.sourceforge.net/ diff --git a/net/xmlrpc-c-devel/pkg-plist b/net/xmlrpc-c-devel/pkg-plist deleted file mode 100644 index 0b7b3f9d3c6c..000000000000 --- a/net/xmlrpc-c-devel/pkg-plist +++ /dev/null @@ -1,31 +0,0 @@ -bin/meerkat-app-list -bin/query-meerkat -bin/xml-rpc-api2txt -bin/xmlrpc-c-config -include/XmlRpcCpp.h -include/xmlrpc.h -include/xmlrpc_abyss.h -include/xmlrpc_cgi.h -include/xmlrpc_client.h -lib/libxmlrpc.a -lib/libxmlrpc.so -lib/libxmlrpc.so.7 -lib/libxmlrpc_abyss.a -lib/libxmlrpc_abyss.so -lib/libxmlrpc_abyss.so.7 -lib/libxmlrpc_abyss_server.a -lib/libxmlrpc_abyss_server.so -lib/libxmlrpc_abyss_server.so.7 -lib/libxmlrpc_cgi.a -lib/libxmlrpc_cgi.so -lib/libxmlrpc_cgi.so.7 -lib/libxmlrpc_client.a -lib/libxmlrpc_client.so -lib/libxmlrpc_client.so.7 -lib/libxmlrpc_cpp.a -lib/libxmlrpc_xmlparse.a -lib/libxmlrpc_xmlparse.so -lib/libxmlrpc_xmlparse.so.7 -lib/libxmlrpc_xmltok.a -lib/libxmlrpc_xmltok.so -lib/libxmlrpc_xmltok.so.7 diff --git a/net/zebra-devel/Makefile b/net/zebra-devel/Makefile deleted file mode 100644 index ca213ec9ce9f..000000000000 --- a/net/zebra-devel/Makefile +++ /dev/null @@ -1,58 +0,0 @@ -# New ports collection makefile for: zebra -# Date created: So 31 Mai 1998 11:00:30 CEST -# Whom: Andreas Klemm <andreas@klemm.gtn.com> -# -# $FreeBSD$ -# - -PORTNAME= zebra -PORTVERSION= 0.92a -CATEGORIES= net ipv6 -MASTER_SITES= ftp://ftp.zebra.org/pub/zebra/ - -MAINTAINER= andreas_and_joe@tao.org.uk - -GNU_CONFIGURE= yes -CONFIGURE_ARGS+=--sysconfdir=${PREFIX}/etc/zebra -SCRIPTS_ENV= WRKDIRPREFIX=${WRKDIRPREFIX} - -MAN1= vtysh.1 -MAN8= bgpd.8 ospf6d.8 ospfd.8 ripd.8 ripngd.8 zebra.8 - -.if !defined(BATCH) -pre-configure: - @${RM} -f ${WRKDIRPREFIX}${.CURDIR}/Makefile.inc - -post-clean: - @${RM} -f ${WRKDIRPREFIX}${.CURDIR}/Makefile.inc - -.if exists(${WRKDIRPREFIX}${.CURDIR}/Makefile.inc) -.include "${WRKDIRPREFIX}${.CURDIR}/Makefile.inc" -.endif -.endif - -.include <bsd.port.pre.mk> - -.if ${OSVERSION} >= 400014 -PLIST:= ${WRKDIR}/PLIST -pre-install: - @${CAT} ${PKGDIR}/pkg-plist.v6 ${PKGDIR}/pkg-plist > ${PLIST} -.else -CONFIGURE_ARGS+=--disable-ospf6d --disable-ripngd -.endif - -post-install: - @( cd ${WRKSRC}/doc; rm -f zebra*info*; ${MAKE} zebra.info install ) - @${ECHO} "===> installing zebra startup file..." - @${SED} -e "s=!!PREFIX!!=${PREFIX}=" \ - < ${FILESDIR}/zebractl.sh \ - > ${PREFIX}/sbin/zebractl - @${CHMOD} 555 ${PREFIX}/sbin/zebractl - @${ECHO} "Make these entries in /etc/rc.conf to start zebra:" - @${ECHO} "defaultrouter=\"NO\"" - @${ECHO} "router_enable=\"YES\"" - @${ECHO} "router=\"${PREFIX}/sbin/zebractl\"" - @${ECHO} "router_flags=\"start\"" - @${ECHO} "done." - -.include <bsd.port.post.mk> diff --git a/net/zebra-devel/distinfo b/net/zebra-devel/distinfo deleted file mode 100644 index b81565a0ff0b..000000000000 --- a/net/zebra-devel/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (zebra-0.92a.tar.gz) = d6725243ec245b77eb24b3ba7c0bf65c diff --git a/net/zebra-devel/files/patch-zebra_Makefile.in b/net/zebra-devel/files/patch-zebra_Makefile.in deleted file mode 100644 index 47c586510848..000000000000 --- a/net/zebra-devel/files/patch-zebra_Makefile.in +++ /dev/null @@ -1,15 +0,0 @@ ---- zebra/Makefile.in.orig Thu Jan 11 11:22:36 2001 -+++ zebra/Makefile.in Thu Jan 11 11:23:00 2001 -@@ -331,10 +331,10 @@ - - - zebra : $(zebra_OBJECTS) $(otherobj) ../lib/libzebra.a -- $(CC) -g -o zebra $(zebra_OBJECTS) $(otherobj) ../lib/libzebra.a $(LIBS) $(LIB_IPV6) -+ $(CC) -o zebra $(zebra_OBJECTS) $(otherobj) ../lib/libzebra.a $(LIBS) $(LIB_IPV6) - - client : client_main.o ../lib/libzebra.a -- $(CC) -g -o client client_main.o ../lib/libzebra.a $(LIBS) $(LIB_IPV6) -+ $(CC) -o client client_main.o ../lib/libzebra.a $(LIBS) $(LIB_IPV6) - - install-sysconfDATA: $(sysconf_DATA) - @$(NORMAL_INSTALL) diff --git a/net/zebra-devel/files/zebractl.sh b/net/zebra-devel/files/zebractl.sh deleted file mode 100644 index cdfa9bc5986a..000000000000 --- a/net/zebra-devel/files/zebractl.sh +++ /dev/null @@ -1,54 +0,0 @@ -#! /bin/sh -# -# $FreeBSD: /tmp/pcvs/ports/net/zebra-devel/files/Attic/zebractl.sh,v 1.7 2001-06-21 17:39:10 joe Exp $ -# -# zebra start/stop script by "Andreas Klemm <andreas@FreeBSD.ORG>" -# - -usage() -{ - echo "$0: usage: $0 [ start | stop | restart ]" - exit 1 -} - -if [ $# -lt 1 ]; then - echo "$0: error: one argument needed"; usage -elif [ $# -gt 1 ]; then - echo "$0: error: only one argument needed"; usage -fi - -case $1 in - start) - if [ ! -f !!PREFIX!!/etc/zebra/zebra.conf ]; then - echo "error: zebra.conf config file is mandatory" - exit 1 - fi - [ -f !!PREFIX!!/etc/zebra/zebra.conf ] \ - && !!PREFIX!!/sbin/zebra -d && echo -n ' zebra' - [ -f !!PREFIX!!/etc/zebra/ripd.conf ] \ - && !!PREFIX!!/sbin/ripd -d && echo -n ' ripd' - [ -f !!PREFIX!!/etc/zebra/ripngd.conf ] \ - && !!PREFIX!!/sbin/ripngd -d && echo -n ' ripngd' - [ -f !!PREFIX!!/etc/zebra/ospfd.conf ] \ - && !!PREFIX!!/sbin/ospfd -d && echo -n ' ospfd' - [ -f !!PREFIX!!/etc/zebra/bgpd.conf ] \ - && !!PREFIX!!/sbin/bgpd -d && echo -n ' bgpd' - ;; - - stop) - [ -f !!PREFIX!!/etc/zebra/ripd.conf ] && killall ripd - [ -f !!PREFIX!!/etc/zebra/ripngd.conf ] && killall ripngd - [ -f !!PREFIX!!/etc/zebra/ospfd.conf ] && killall ospfd - [ -f !!PREFIX!!/etc/zebra/bgpd.conf ] && killall bgpd - [ -f !!PREFIX!!/etc/zebra/zebra.conf ] && killall zebra - ;; - restart) - $0 stop - $0 start - ;; - - *) echo "$0: error: unknown option $1" - usage - ;; -esac -exit 0 diff --git a/net/zebra-devel/pkg-comment b/net/zebra-devel/pkg-comment deleted file mode 100644 index df7c38434b5c..000000000000 --- a/net/zebra-devel/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Free RIPv1, RIPv2, OSPFv2, BGP4 route software (server/reflector) diff --git a/net/zebra-devel/pkg-descr b/net/zebra-devel/pkg-descr deleted file mode 100644 index 005d35bc4f1b..000000000000 --- a/net/zebra-devel/pkg-descr +++ /dev/null @@ -1,15 +0,0 @@ -GNU Zebra is a free software (distributed under GNU Generic Public -License) which manages TCP/IP based routing protocols. - -It supports BGP-4 protocol as described in RFC1771 (A Border Gateway -Protocol 4) and RIPv1, RIPv2 and OSPFv2. - -Zebra uses multithread technology under multithread supported UNIX -kernels. However it can be run under not-multithread supported -UNIX kernels. - -Zebra is intended to be used as a Route Server and a Route Reflector. -Zebra is not a toolkit, it provides full routing power under a new -architecture. - -WWW: http://www.zebra.org/ diff --git a/net/zebra-devel/pkg-plist b/net/zebra-devel/pkg-plist deleted file mode 100644 index 10e30b77236a..000000000000 --- a/net/zebra-devel/pkg-plist +++ /dev/null @@ -1,19 +0,0 @@ -sbin/bgpd -sbin/ospfd -sbin/ripd -sbin/ripngd -sbin/zebra -sbin/zebractl -etc/zebra/bgpd.conf.sample -etc/zebra/bgpd.conf.sample2 -etc/zebra/ospfd.conf.sample -etc/zebra/ripd.conf.sample -etc/zebra/ripngd.conf.sample -etc/zebra/zebra.conf.sample -@unexec install-info --delete %D/info/zebra.info %D/info/dir -info/zebra.info -info/zebra.info-1 -info/zebra.info-2 -info/zebra.info-3 -@exec install-info %D/info/zebra.info %D/info/dir -@dirrm etc/zebra diff --git a/net/zebra-devel/pkg-plist.v6 b/net/zebra-devel/pkg-plist.v6 deleted file mode 100644 index a8519a7a98c9..000000000000 --- a/net/zebra-devel/pkg-plist.v6 +++ /dev/null @@ -1,2 +0,0 @@ -sbin/ospf6d -etc/zebra/ospf6d.conf.sample diff --git a/net/zebra-devel/scripts/configure b/net/zebra-devel/scripts/configure deleted file mode 100644 index f2a02dc53a82..000000000000 --- a/net/zebra-devel/scripts/configure +++ /dev/null @@ -1,61 +0,0 @@ -#! /bin/sh - -# $FreeBSD$ - -# configure - zebra compile time option configurator -# by Andreas Klemm <andreas@FreeBSD.org> - -if [ "$BATCH" != "yes" -a "$BATCH" != "YES" ]; then - -# -# configure - zebra compile time options -# - -/usr/bin/dialog --title "Zebra Compile Time Options" --clear \ - --checklist "\n\ -Select compile time options for zebra port:" -1 -1 8 \ -LIBPAM "enable PAM authentication for vtysh" OFF \ -OSPF_NSSA "turn on undergoing NSSA feature" OFF \ -SNMP "enable SNMP support" OFF \ -TCP-ZEBRA "enable TCP/IP socket connection" OFF \ -2> /tmp/zebra-checklist.$$ - -retval=$? - -if [ -s /tmp/zebra-checklist.$$ ]; then - set `cat /tmp/zebra-checklist.$$` -fi -rm -f /tmp/zebra-checklist.$$ - -case $retval in - 0) if [ -z "$*" ]; then - echo "Nothing selected" - fi - ;; - 1) echo "Cancel pressed." - exit 1 - ;; -esac - -/bin/mkdir -p ${WRKDIRPREFIX}${CURDIR} -exec > ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - -while [ "$1" ]; do - case $1 in - \"LIBPAM\") - echo CONFIGURE_ARGS+=--with-libpam - ;; - \"OSPF_NSSA\") - echo CONFIGURE_ARGS+=--enable-nssa - ;; - \"SNMP\") - echo CONFIGURE_ARGS+=--enable-snmp - ;; - \"TCP-ZEBRA\") - echo CONFIGURE_ARGS+=--enable-tcp-zebra - ;; - esac - shift -done - -fi # if $BATCH diff --git a/net/zebra-pj/Makefile b/net/zebra-pj/Makefile deleted file mode 100644 index ca213ec9ce9f..000000000000 --- a/net/zebra-pj/Makefile +++ /dev/null @@ -1,58 +0,0 @@ -# New ports collection makefile for: zebra -# Date created: So 31 Mai 1998 11:00:30 CEST -# Whom: Andreas Klemm <andreas@klemm.gtn.com> -# -# $FreeBSD$ -# - -PORTNAME= zebra -PORTVERSION= 0.92a -CATEGORIES= net ipv6 -MASTER_SITES= ftp://ftp.zebra.org/pub/zebra/ - -MAINTAINER= andreas_and_joe@tao.org.uk - -GNU_CONFIGURE= yes -CONFIGURE_ARGS+=--sysconfdir=${PREFIX}/etc/zebra -SCRIPTS_ENV= WRKDIRPREFIX=${WRKDIRPREFIX} - -MAN1= vtysh.1 -MAN8= bgpd.8 ospf6d.8 ospfd.8 ripd.8 ripngd.8 zebra.8 - -.if !defined(BATCH) -pre-configure: - @${RM} -f ${WRKDIRPREFIX}${.CURDIR}/Makefile.inc - -post-clean: - @${RM} -f ${WRKDIRPREFIX}${.CURDIR}/Makefile.inc - -.if exists(${WRKDIRPREFIX}${.CURDIR}/Makefile.inc) -.include "${WRKDIRPREFIX}${.CURDIR}/Makefile.inc" -.endif -.endif - -.include <bsd.port.pre.mk> - -.if ${OSVERSION} >= 400014 -PLIST:= ${WRKDIR}/PLIST -pre-install: - @${CAT} ${PKGDIR}/pkg-plist.v6 ${PKGDIR}/pkg-plist > ${PLIST} -.else -CONFIGURE_ARGS+=--disable-ospf6d --disable-ripngd -.endif - -post-install: - @( cd ${WRKSRC}/doc; rm -f zebra*info*; ${MAKE} zebra.info install ) - @${ECHO} "===> installing zebra startup file..." - @${SED} -e "s=!!PREFIX!!=${PREFIX}=" \ - < ${FILESDIR}/zebractl.sh \ - > ${PREFIX}/sbin/zebractl - @${CHMOD} 555 ${PREFIX}/sbin/zebractl - @${ECHO} "Make these entries in /etc/rc.conf to start zebra:" - @${ECHO} "defaultrouter=\"NO\"" - @${ECHO} "router_enable=\"YES\"" - @${ECHO} "router=\"${PREFIX}/sbin/zebractl\"" - @${ECHO} "router_flags=\"start\"" - @${ECHO} "done." - -.include <bsd.port.post.mk> diff --git a/net/zebra-pj/distinfo b/net/zebra-pj/distinfo deleted file mode 100644 index b81565a0ff0b..000000000000 --- a/net/zebra-pj/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (zebra-0.92a.tar.gz) = d6725243ec245b77eb24b3ba7c0bf65c diff --git a/net/zebra-pj/files/patch-zebra_Makefile.in b/net/zebra-pj/files/patch-zebra_Makefile.in deleted file mode 100644 index 47c586510848..000000000000 --- a/net/zebra-pj/files/patch-zebra_Makefile.in +++ /dev/null @@ -1,15 +0,0 @@ ---- zebra/Makefile.in.orig Thu Jan 11 11:22:36 2001 -+++ zebra/Makefile.in Thu Jan 11 11:23:00 2001 -@@ -331,10 +331,10 @@ - - - zebra : $(zebra_OBJECTS) $(otherobj) ../lib/libzebra.a -- $(CC) -g -o zebra $(zebra_OBJECTS) $(otherobj) ../lib/libzebra.a $(LIBS) $(LIB_IPV6) -+ $(CC) -o zebra $(zebra_OBJECTS) $(otherobj) ../lib/libzebra.a $(LIBS) $(LIB_IPV6) - - client : client_main.o ../lib/libzebra.a -- $(CC) -g -o client client_main.o ../lib/libzebra.a $(LIBS) $(LIB_IPV6) -+ $(CC) -o client client_main.o ../lib/libzebra.a $(LIBS) $(LIB_IPV6) - - install-sysconfDATA: $(sysconf_DATA) - @$(NORMAL_INSTALL) diff --git a/net/zebra-pj/files/zebractl.sh b/net/zebra-pj/files/zebractl.sh deleted file mode 100644 index 4d7ff4fd8a5a..000000000000 --- a/net/zebra-pj/files/zebractl.sh +++ /dev/null @@ -1,54 +0,0 @@ -#! /bin/sh -# -# $FreeBSD: /tmp/pcvs/ports/net/zebra-pj/files/Attic/zebractl.sh,v 1.7 2001-06-21 17:39:10 joe Exp $ -# -# zebra start/stop script by "Andreas Klemm <andreas@FreeBSD.ORG>" -# - -usage() -{ - echo "$0: usage: $0 [ start | stop | restart ]" - exit 1 -} - -if [ $# -lt 1 ]; then - echo "$0: error: one argument needed"; usage -elif [ $# -gt 1 ]; then - echo "$0: error: only one argument needed"; usage -fi - -case $1 in - start) - if [ ! -f !!PREFIX!!/etc/zebra/zebra.conf ]; then - echo "error: zebra.conf config file is mandatory" - exit 1 - fi - [ -f !!PREFIX!!/etc/zebra/zebra.conf ] \ - && !!PREFIX!!/sbin/zebra -d && echo -n ' zebra' - [ -f !!PREFIX!!/etc/zebra/ripd.conf ] \ - && !!PREFIX!!/sbin/ripd -d && echo -n ' ripd' - [ -f !!PREFIX!!/etc/zebra/ripngd.conf ] \ - && !!PREFIX!!/sbin/ripngd -d && echo -n ' ripngd' - [ -f !!PREFIX!!/etc/zebra/ospfd.conf ] \ - && !!PREFIX!!/sbin/ospfd -d && echo -n ' ospfd' - [ -f !!PREFIX!!/etc/zebra/bgpd.conf ] \ - && !!PREFIX!!/sbin/bgpd -d && echo -n ' bgpd' - ;; - - stop) - [ -f !!PREFIX!!/etc/zebra/ripd.conf ] && killall ripd - [ -f !!PREFIX!!/etc/zebra/ripngd.conf ] && killall ripngd - [ -f !!PREFIX!!/etc/zebra/ospfd.conf ] && killall ospfd - [ -f !!PREFIX!!/etc/zebra/bgpd.conf ] && killall bgpd - [ -f !!PREFIX!!/etc/zebra/zebra.conf ] && killall zebra - ;; - restart) - $0 stop - $0 start - ;; - - *) echo "$0: error: unknown option $1" - usage - ;; -esac -exit 0 diff --git a/net/zebra-pj/pkg-comment b/net/zebra-pj/pkg-comment deleted file mode 100644 index df7c38434b5c..000000000000 --- a/net/zebra-pj/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Free RIPv1, RIPv2, OSPFv2, BGP4 route software (server/reflector) diff --git a/net/zebra-pj/pkg-descr b/net/zebra-pj/pkg-descr deleted file mode 100644 index 005d35bc4f1b..000000000000 --- a/net/zebra-pj/pkg-descr +++ /dev/null @@ -1,15 +0,0 @@ -GNU Zebra is a free software (distributed under GNU Generic Public -License) which manages TCP/IP based routing protocols. - -It supports BGP-4 protocol as described in RFC1771 (A Border Gateway -Protocol 4) and RIPv1, RIPv2 and OSPFv2. - -Zebra uses multithread technology under multithread supported UNIX -kernels. However it can be run under not-multithread supported -UNIX kernels. - -Zebra is intended to be used as a Route Server and a Route Reflector. -Zebra is not a toolkit, it provides full routing power under a new -architecture. - -WWW: http://www.zebra.org/ diff --git a/net/zebra-pj/pkg-plist b/net/zebra-pj/pkg-plist deleted file mode 100644 index 10e30b77236a..000000000000 --- a/net/zebra-pj/pkg-plist +++ /dev/null @@ -1,19 +0,0 @@ -sbin/bgpd -sbin/ospfd -sbin/ripd -sbin/ripngd -sbin/zebra -sbin/zebractl -etc/zebra/bgpd.conf.sample -etc/zebra/bgpd.conf.sample2 -etc/zebra/ospfd.conf.sample -etc/zebra/ripd.conf.sample -etc/zebra/ripngd.conf.sample -etc/zebra/zebra.conf.sample -@unexec install-info --delete %D/info/zebra.info %D/info/dir -info/zebra.info -info/zebra.info-1 -info/zebra.info-2 -info/zebra.info-3 -@exec install-info %D/info/zebra.info %D/info/dir -@dirrm etc/zebra diff --git a/net/zebra-pj/pkg-plist.v6 b/net/zebra-pj/pkg-plist.v6 deleted file mode 100644 index a8519a7a98c9..000000000000 --- a/net/zebra-pj/pkg-plist.v6 +++ /dev/null @@ -1,2 +0,0 @@ -sbin/ospf6d -etc/zebra/ospf6d.conf.sample diff --git a/net/zebra-pj/scripts/configure b/net/zebra-pj/scripts/configure deleted file mode 100644 index f2a02dc53a82..000000000000 --- a/net/zebra-pj/scripts/configure +++ /dev/null @@ -1,61 +0,0 @@ -#! /bin/sh - -# $FreeBSD$ - -# configure - zebra compile time option configurator -# by Andreas Klemm <andreas@FreeBSD.org> - -if [ "$BATCH" != "yes" -a "$BATCH" != "YES" ]; then - -# -# configure - zebra compile time options -# - -/usr/bin/dialog --title "Zebra Compile Time Options" --clear \ - --checklist "\n\ -Select compile time options for zebra port:" -1 -1 8 \ -LIBPAM "enable PAM authentication for vtysh" OFF \ -OSPF_NSSA "turn on undergoing NSSA feature" OFF \ -SNMP "enable SNMP support" OFF \ -TCP-ZEBRA "enable TCP/IP socket connection" OFF \ -2> /tmp/zebra-checklist.$$ - -retval=$? - -if [ -s /tmp/zebra-checklist.$$ ]; then - set `cat /tmp/zebra-checklist.$$` -fi -rm -f /tmp/zebra-checklist.$$ - -case $retval in - 0) if [ -z "$*" ]; then - echo "Nothing selected" - fi - ;; - 1) echo "Cancel pressed." - exit 1 - ;; -esac - -/bin/mkdir -p ${WRKDIRPREFIX}${CURDIR} -exec > ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - -while [ "$1" ]; do - case $1 in - \"LIBPAM\") - echo CONFIGURE_ARGS+=--with-libpam - ;; - \"OSPF_NSSA\") - echo CONFIGURE_ARGS+=--enable-nssa - ;; - \"SNMP\") - echo CONFIGURE_ARGS+=--enable-snmp - ;; - \"TCP-ZEBRA\") - echo CONFIGURE_ARGS+=--enable-tcp-zebra - ;; - esac - shift -done - -fi # if $BATCH |