diff options
| author | cvs2svn <cvs2svn@FreeBSD.org> | 2003-10-02 20:55:58 +0000 |
|---|---|---|
| committer | cvs2svn <cvs2svn@FreeBSD.org> | 2003-10-02 20:55:58 +0000 |
| commit | 1cf501d6f87b43d3b20cdc1df1942dccff3796bd (patch) | |
| tree | 888348323662d1fceb365259a7bc1b95e8e8d3f1 /net | |
| parent | 6919c4e8e4b89639d4e9698d9c257a0dd4103be9 (diff) | |
Notes
Diffstat (limited to 'net')
443 files changed, 0 insertions, 18785 deletions
diff --git a/net/arpwatch-devel/Makefile b/net/arpwatch-devel/Makefile deleted file mode 100644 index 182f699e0dce..000000000000 --- a/net/arpwatch-devel/Makefile +++ /dev/null @@ -1,39 +0,0 @@ -# New ports collection makefile for: arpwatch -# Date created: March 24 1997 -# Whom: Brian Somers <brian@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= arpwatch -PORTVERSION= 2.1.a11 -PORTREVISION= 2 -CATEGORIES= net -MASTER_SITES= http://www.Awfulhak.org/arpwatch/ \ - ftp://ftp.ee.lbl.gov/ -DISTNAME= arpwatch-2.1a11 - -MAINTAINER= brian@FreeBSD.org -COMMENT= Monitor arp & rarp requests - -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} 755 ${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 259a9cbdac1f..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"/arpwatch/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 b292b25116d0..000000000000 --- a/net/arpwatch-devel/files/patch-ah +++ /dev/null @@ -1,55 +0,0 @@ ---- report.c.orig Sun Oct 1 00:41:10 2000 -+++ report.c Thu May 16 11:34:33 2002 -@@ -45,6 +45,8 @@ - - #include <ctype.h> - #include <errno.h> -+#include <fcntl.h> -+#include <paths.h> - #include <signal.h> - #include <stdio.h> - #include <stdlib.h> -@@ -70,6 +72,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 +244,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>"; -@@ -344,6 +348,25 @@ - exit(1); - } - /* XXX Need to freopen()? */ -+ -+ /* -+ * Open /dev/null as stdout and stderr so that sendmail 8.12.1 (and -+ * above ?) won't complain about missing file descriptors. -+ */ -+ if ((fd = open(_PATH_DEVNULL, O_RDWR)) == -1) { -+ syslog(LOG_ERR, "Cannot open %s: %m", _PATH_DEVNULL); -+ exit(1); -+ } -+ if (dup2(fd, STDOUT_FILENO) == -1) { -+ syslog(LOG_ERR, "Cannot dup2 %s to stdout: %m", _PATH_DEVNULL); -+ exit(1); -+ } -+ if (dup2(fd, STDERR_FILENO) == -1) { -+ syslog(LOG_ERR, "Cannot dup2 %s to stderr: %m", _PATH_DEVNULL); -+ exit(1); -+ } -+ close(fd); -+ - /* Always Deliver interactively (pause when child depth gets large) */ - execl(sendmail, "sendmail", "-odi", watcher, NULL); - syslog(LOG_ERR, "execl: %s: %m", sendmail); 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-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 c33b4d0fe796..000000000000 --- a/net/ayttm/Makefile +++ /dev/null @@ -1,56 +0,0 @@ -# New ports collection makefile for: everybuddy -# Date created: 1 Mar 2000 -# Whom: Jim Mock <jim@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= everybuddy -PORTVERSION= 0.4.3 -PORTREVISION= 1 -CATEGORIES= net -MASTER_SITES= http://www.everybuddy.com/files/ - -MAINTAINER= jim@FreeBSD.org -COMMENT= A "chat" program that combines AIM, ICQ, and Yahoo! Chat into one - -LIB_DEPENDS= audiofile.0:${PORTSDIR}/audio/libaudiofile \ - iconv.3:${PORTSDIR}/converters/libiconv \ - ltdl.4:${PORTSDIR}/devel/libltdl - -USE_X_PREFIX= yes -WANT_GNOME= yes -USE_GNOME= gtk12 -USE_REINPLACE= yes -USE_GMAKE= yes -USE_BISON= yes -USE_LIBTOOL= yes -LIBTOOLFLAGS= # none -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LIBS="-L${LOCALBASE}/lib -laudiofile" -CONFIGURE_ARGS= --disable-arts - -MAN1= everybuddy.1 - -.include <bsd.port.pre.mk> - -.if ${HAVE_GNOME:Mesound}!="" -USE_GNOME+= esound -PKGNAMESUFFIX= -esound -.else -CONFIGURE_ARGS+= --disable-esd -.endif - -pre-patch: - @${REINPLACE_CMD} -e \ - 's|-lpthread|${PTHREAD_LIBS:S/"//g}|g; \ - s|-lpthreads|${PTHREAD_LIBS:S/"//g}|g; \ - s|-D_REENTRANT -Wall -g|-D_REENTRANT ${PTHREAD_CFLAGS}|g' \ - ${WRKSRC}/configure - @${FIND} ${WRKSRC} -name "Makefile.in" | ${XARGS} ${REINPLACE_CMD} -e \ - 's|^Utilitiesdir|#Utilitiesdir|g; \ - s|^Utilities_DATA|#Utilities_DATA|g; \ - s|[(]datadir[)]/everybuddy|(prefix)/lib/everybuddy|g; \ - s|-module|-module -avoid-version|g' - -.include <bsd.port.post.mk> diff --git a/net/ayttm/distinfo b/net/ayttm/distinfo deleted file mode 100644 index 41506341c8ba..000000000000 --- a/net/ayttm/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (everybuddy-0.4.3.tar.gz) = dc0679cbf1205423d20cfaf37bc520f2 diff --git a/net/ayttm/files/patch-configure b/net/ayttm/files/patch-configure deleted file mode 100644 index f38e9730d772..000000000000 --- a/net/ayttm/files/patch-configure +++ /dev/null @@ -1,10 +0,0 @@ ---- configure.orig Fri May 17 09:04:56 2002 -+++ configure Thu May 30 01:12:46 2002 -@@ -5451,6 +5451,7 @@ - - # This can be used to rebuild libtool when needed - LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh" -+$ac_aux_dir/ltconfig $LIBTOOL_DEPS - - # Always use our own libtool. - LIBTOOL='$(SHELL) $(top_builddir)/libtool' diff --git a/net/ayttm/files/patch-yahoo.c b/net/ayttm/files/patch-yahoo.c deleted file mode 100644 index e5476d61aef5..000000000000 --- a/net/ayttm/files/patch-yahoo.c +++ /dev/null @@ -1,12 +0,0 @@ ---- modules/yahoo2/yahoo.c.orig Sun Jul 14 17:43:14 2002 -+++ modules/yahoo2/yahoo.c Wed Aug 7 23:55:36 2002 -@@ -24,8 +24,8 @@ - */ - - #include <netdb.h> --#include <sys/socket.h> - #include <sys/types.h> -+#include <sys/socket.h> - #include <netinet/in.h> - #include <arpa/inet.h> - diff --git a/net/ayttm/pkg-descr b/net/ayttm/pkg-descr deleted file mode 100644 index 14dd4a31b33c..000000000000 --- a/net/ayttm/pkg-descr +++ /dev/null @@ -1,7 +0,0 @@ -Everybuddy is a chat application that "combines" several different -ones including AIM, ICQ, Yahoo, MSN, Jabber and IRC, including -(limited) support for file transfers. - -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 fb6809ddb37b..000000000000 --- a/net/ayttm/pkg-plist +++ /dev/null @@ -1,55 +0,0 @@ -bin/contact-update.pl -bin/everybuddy -bin/update.pl -lib/everybuddy/modules/aim-toc.la -lib/everybuddy/modules/aim-toc.so -lib/everybuddy/modules/autotrans.la -lib/everybuddy/modules/autotrans.so -lib/everybuddy/modules/giles_smiles.la -lib/everybuddy/modules/giles_smiles.so -lib/everybuddy/modules/icq.la -lib/everybuddy/modules/icq.so -lib/everybuddy/modules/import_gaim.la -lib/everybuddy/modules/import_gaim.so -lib/everybuddy/modules/import_gnomeicu.la -lib/everybuddy/modules/import_gnomeicu.so -lib/everybuddy/modules/importicq.la -lib/everybuddy/modules/importicq.so -lib/everybuddy/modules/importlicq.la -lib/everybuddy/modules/importlicq.so -lib/everybuddy/modules/irc.la -lib/everybuddy/modules/irc.so -lib/everybuddy/modules/jabber.la -lib/everybuddy/modules/jabber.so -lib/everybuddy/modules/middle.la -lib/everybuddy/modules/middle.so -lib/everybuddy/modules/msn_smileys.la -lib/everybuddy/modules/msn_smileys.so -lib/everybuddy/modules/msn2.la -lib/everybuddy/modules/msn2.so -lib/everybuddy/modules/notes.la -lib/everybuddy/modules/notes.so -lib/everybuddy/modules/rainbow.la -lib/everybuddy/modules/rainbow.so -lib/everybuddy/modules/smileys2.la -lib/everybuddy/modules/smileys2.so -lib/everybuddy/modules/smileysc.la -lib/everybuddy/modules/smileysc.so -lib/everybuddy/modules/yahoo_smileys.la -lib/everybuddy/modules/yahoo_smileys.so -lib/everybuddy/modules/yahoo2.la -lib/everybuddy/modules/yahoo2.so -share/locale/fr/LC_MESSAGES/everybuddy.mo -share/locale/de/LC_MESSAGES/everybuddy.mo -share/locale/pt_PT/LC_MESSAGES/everybuddy.mo -share/locale/tr/LC_MESSAGES/everybuddy.mo -share/locale/es/LC_MESSAGES/everybuddy.mo -share/locale/ja/LC_MESSAGES/everybuddy.mo -share/sounds/everybuddy/BuddyArrive.au -share/sounds/everybuddy/BuddyLeave.au -share/sounds/everybuddy/Receive.au -share/sounds/everybuddy/Send.au -@dirrm share/sounds/everybuddy -@unexec rmdir %D/share/sounds 2>/dev/null || true -@dirrm lib/everybuddy/modules -@dirrm lib/everybuddy diff --git a/net/citrix_xenapp/Makefile b/net/citrix_xenapp/Makefile deleted file mode 100644 index c1f72a059c7b..000000000000 --- a/net/citrix_xenapp/Makefile +++ /dev/null @@ -1,93 +0,0 @@ -# New ports collection makefile for: Citrix(R) ICA(R) Client -# Date created: 20 Sep 1998 -# Whom: msmith -# -# $FreeBSD$ -# - -PORTNAME= citrix_ica -PORTVERSION= 7.00 -PORTREVISION= 1 -CATEGORIES= net comms linux -MASTER_SITES= -DISTNAME= ${PORTNAME}-linuxx86-${PORTVERSION} - -MAINTAINER= mbr@FreeBSD.org -COMMENT= Citrix(R) client for the Microsoft Windows Terminal Server - -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" - -NO_WRKSUBDIR= yes -NO_BUILD= yes - -CDIR= ${PREFIX}/ICAClient -BINDIR= ${PREFIX}/bin - -NSCP= /usr/local/libexec/netscape \ - /usr/local/libexec/netscape-linux \ - /usr/local/netscape \ - /usr/local/netscape-linux \ - /usr/local/lib/netscape \ - /usr/local/lib/netscape-linux \ - ${MOZILLA_HOME} - -.include <bsd.port.pre.mk> - -.if exists(${PREFIX}/bin/kde-config) -HAVE_KDE= "\\ny" -.endif - -.if defined(BATCH) || defined(PACKAGE_BUILDING) -IGNORE='The distribution file for this port may not be automatically fetched due to licensing restrictions.' -.endif - -do-fetch: -.if !exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}) - @${ECHO} "" - @${ECHO} "You have to fetch the file manually after reading and" - @${ECHO} "agreeing to the license at:" - @${ECHO} "" - @${ECHO} "http://www.citrix.com/download/bin/license.asp?client=linux" - @${ECHO} "" - @${ECHO} "Once linuxx86.tar.gz has been downloaded move it to" - @${ECHO} "${DISTDIR}/${DISTNAME}${EXTRACT_SUFX} and restart the build." - @${ECHO} "" - @${FALSE} -.endif - -do-install: - @if (test -d "${CDIR}") ; \ - then \ - ${ECHO} "-----------------------------------------------------------" ; \ - ${ECHO} "" ; \ - ${ECHO} "A ${CDIR} installation does already exist." ; \ - ${ECHO} "Please move it away or delete the old port" ; \ - ${ECHO} "" ; \ - ${ECHO} "-----------------------------------------------------------" ; \ - ${FALSE} ; \ - fi - - @${ECHO_CMD} -e "1\n${CDIR}\ny\ny\ny\ny${HAVE_KDE}\n3" > ${WRKSRC}/response ; - @for dir in ${NSCP}; do \ - if [ -e $${dir}/plugins/libnullplugin.so ]; then \ - BIN=`${FILE} $${dir}/plugins/libnullplugin.so | ${AWK} '{print $$11}'` ; \ - case $${BIN} in \ - \(SYSV\),) \ - ${ECHO_CMD} -e "1\n${CDIR}\ny\ny\ny${HAVE_KDE}\n3" > ${WRKSRC}/response ; \ - esac \ - fi \ - done - - ${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 763c96f5868e..000000000000 --- a/net/citrix_xenapp/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (citrix_ica-linuxx86-7.00.tar.gz) = d4efd8075afc1e96646cad4acb740033 diff --git a/net/citrix_xenapp/files/patch-linuxx86::hinst b/net/citrix_xenapp/files/patch-linuxx86::hinst deleted file mode 100644 index 750ceb4f2af3..000000000000 --- a/net/citrix_xenapp/files/patch-linuxx86::hinst +++ /dev/null @@ -1,132 +0,0 @@ ---- linuxx86/hinst.orig Thu May 22 12:30:28 2003 -+++ linuxx86/hinst Mon Aug 11 16:52:05 2003 -@@ -2132,10 +2132,34 @@ - # - ############################################################################### - -+check_for_ns() { -+ BIN=`/usr/bin/file $1/plugins/libnullplugin.so | /usr/bin/awk '{print $11}'` -+ case ${BIN} in -+ \(SYSV\),) -+ NETSCAPE_DIR="$1" -+ PLUGIN_PATH="$s/plugins" -+ FOUND_NS="TRUE" -+ esac -+} -+ -+NSCP="/usr/local/libexec/netscape \ -+ /usr/local/libexec/netscape-linux \ -+ /usr/local/netscape \ -+ /usr/local/netscape-linux \ -+ /usr/local/lib/netscape \ -+ /usr/local/lib/netscape-linux \ -+ /usr/local/lib/linux-mozilla \ -+ /usr/local/lib/mozilla \ -+ $MOZILLA_HOME" -+ -+for dir in ${NSCP}; do -+ if [ -e $dir/plugins/libnullplugin.so ]; then -+ check_for_ns $dir; -+ fi -+done -+ - INST_DIR=$ICAInstDir - TMP_NAME=/tmp/ICAnetscape.$$ --NETSCAPE_DIR="/usr/local/lib/netscape" --PLUGIN_PATH="/usr/local/netscape/plugins" - PLUGIN_NAME=npica.so - PLUGIN_CLASS=ICAClObj.class - MAILCAP_FILE=mailcap -@@ -2206,36 +2230,29 @@ - - netscape_integrate() - { -- $ECHO_CMD $integrate_netscape1 - if test -z "$SU_INSTALL" - then - set_npui_variables - found_netscape - else - search_ok=0 -- EXTRA_BROWSERS=`find_browsers` -- -- if test -d "/usr/lib/netscape"\ -- || test -d "/usr/local/netscape"\ -- || test -d "/opt/netscape"\ -- || test -d "/usr/local/lib/netscape"\ -- || test -d "/usr/dt/appconfig/netscape"\ -- || test "$MOZILLA_HOME" != "" -a -d "$MOZILLA_HOME"\ -- || test "$EXTRA_BROWSERS" != "" -- then -+ -+ case ${FOUND_NS} in -+ TRUE) - $ECHO_CMD $integrate_netscape3 - found_netscape -- else -+ ;; -+ *) - echo_no_nl $integrate_netscape2 - getyesno $INSTALLER_NO -- if [ "$ANSWER" = "$INSTALLER_YES" ] -- then -+ if [ "$ANSWER" = "$INSTALLER_YES" ]; then - found_netscape - else - $ECHO_CMD $integrate_netscape6 - fi -- fi -- fi -+ ;; -+ esac -+ fi - - # Create utility script files in install root. - create_wfica_script -@@ -2866,37 +2883,6 @@ - echo "$BINDIR" - } - --################################################################################ --# --# find_browsers --# --# Returns a list of directories containing new-style mozilla-based browsers --# that may be launched by files on the $PATH. --# --################################################################################ --find_browsers() --{ -- PROGS="netscape mozilla" -- DIST_BIN_DIR="" -- STANDARD_DIRS="/usr/local/netscape /usr/local/mozilla" -- for d in `echo $PATH | sed "s/:/ /g"` $STANDARD_DIRS -- do -- echo $d -- done | sort -u | while read d -- do -- for p in $PROGS -- do -- # Find the each instance of each named browser -- PROG=$d/$p -- if test -f $PROG -- then -- # Where is the installation and what version is it? -- find_extra_bin_dirs $PROG -- fi -- done -- done | sort -u --} -- - BROWSER_LIST_KEY="BROWSER_DIR" - ################################################################################ - # -@@ -3119,6 +3105,8 @@ - wfcmgr_NAME='Citrix ICA Client' - DEFAULT_DT_TARGET_DIRS="/usr/share/applications \ - /usr/share/applnk/Applications \ -+ /usr/local/share/applnk/Internet \ -+ /usr/local/share/applnk/Networking \ - /usr/share/applnk-redhat/Internet \ - /usr/share/applnk-mdk/Networking" - DEFAULT_DT_FOLDER="Applications" diff --git a/net/citrix_xenapp/files/patch-setupwfc b/net/citrix_xenapp/files/patch-setupwfc deleted file mode 100644 index 0d1b30ea8bfa..000000000000 --- a/net/citrix_xenapp/files/patch-setupwfc +++ /dev/null @@ -1,11 +0,0 @@ ---- setupwfc.orig Wed Apr 17 18:32:45 2002 -+++ setupwfc Mon Jul 8 18:28:31 2002 -@@ -382,7 +382,7 @@ - # We assume that an Intel-based linux system will have an x86 - # processor. We also assume that this is reported by uname -m - # "ix86" where x is some number. -- if uname -m | grep 86 2>&1 >/dev/null ;then -+ if uname -m | grep i[3456]86 2>&1 >/dev/null ;then - PLATFORM=linuxx86 - DISP_PLATFORM="Linux (x86)" - elif uname -m | grep -i arm 2>&1 >/dev/null ;then 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 e0279ba0d816..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-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 ef0b484f8912..000000000000 --- a/net/citrix_xenapp/pkg-plist +++ /dev/null @@ -1,133 +0,0 @@ -@unexec if [ -f %D/lib/netscape-linux/mime.types ]; then (/bin/cat %D/lib/netscape-linux/mime.types | /usr/bin/grep -v "application/x-ica" > %D/lib/netscape-linux/mime.types.tmp; mv %D/lib/netscape-linux/mime.types.tmp %D/lib/netscape-linux/mime.types); fi -@unexec if [ -f %D/lib/netscape-linux/mailcap ]; then (/bin/cat %D/lib/netscape-linux/mailcap | /usr/bin/grep -v "application/x-ica" > %D/lib/netscape-linux/mailcap.tmp; /bin/mv %D/lib/netscape-linux/mailcap.tmp %D/lib/netscape-linux/mailcap); fi -@unexec if [ -e %D/lib/netscape-linux/plugins/npica.so ]; then (/bin/rm %D/lib/netscape-linux/plugins/npica.so); fi -ICAClient/.config/appsrv.ini -ICAClient/.config/keyboard.ini -ICAClient/.config/module.ini -ICAClient/.config/wfclient.ini -ICAClient/Npica -ICAClient/Npica.ad -ICAClient/PDCRYPT1.DLL -ICAClient/PDCRYPT2.DLL -ICAClient/SSL.DLL -ICAClient/VDSCARD.DLL -ICAClient/Wfcmgr -ICAClient/Wfcmgr.ad -ICAClient/Wfica -ICAClient/Wfica.ad -ICAClient/config/.server -ICAClient/config/appsrv.ini -ICAClient/config/module.ini -ICAClient/config/wfclient.ini -ICAClient/desktop/wfcmgr.desktop -ICAClient/desktop/Citrix_PNA.desktop -ICAClient/eula.txt -ICAClient/help/index.htm -ICAClient/icons/ica16.xpm -ICAClient/icons/ica32.xpm -ICAClient/icons/ica48.xpm -ICAClient/icons/ica64.xpm -ICAClient/icons/pn32.xpm -ICAClient/install.txt -ICAClient/keyboard/age2.kbd -ICAClient/keyboard/agex2.kbd -ICAClient/keyboard/automatic.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/dg.kbd -ICAClient/keyboard/dgfr.kbd -ICAClient/keyboard/dggr.kbd -ICAClient/keyboard/dguk.kbd -ICAClient/keyboard/dgus.kbd -ICAClient/keyboard/hp101.kbd -ICAClient/keyboard/hpfritf.kbd -ICAClient/keyboard/hpgritf.kbd -ICAClient/keyboard/hpint101.kbd -ICAClient/keyboard/hpintps2.kbd -ICAClient/keyboard/hpitf.kbd -ICAClient/keyboard/hpps2.kbd -ICAClient/keyboard/hpuk101.kbd -ICAClient/keyboard/hpukitf.kbd -ICAClient/keyboard/hpukps2.kbd -ICAClient/keyboard/hpus101.kbd -ICAClient/keyboard/hpusitf.kbd -ICAClient/keyboard/hpusps2.kbd -ICAClient/keyboard/ibm.kbd -ICAClient/keyboard/keyboard.ini -ICAClient/keyboard/linux.kbd -ICAClient/keyboard/mac101.kbd -ICAClient/keyboard/ncdn-101.kbd -ICAClient/keyboard/ncdn-102.kbd -ICAClient/keyboard/netbsd.kbd -ICAClient/keyboard/scoos5.kbd -ICAClient/keyboard/scouw2.kbd -ICAClient/keyboard/sg.kbd -ICAClient/keyboard/sgindy.kbd -ICAClient/keyboard/sgindyfr.kbd -ICAClient/keyboard/sgindygr.kbd -ICAClient/keyboard/sgindyuk.kbd -ICAClient/keyboard/sgindyus.kbd -ICAClient/keyboard/sngr.kbd -ICAClient/keyboard/sparc3.kbd -ICAClient/keyboard/sparc4.kbd -ICAClient/keyboard/sparc5.kbd -ICAClient/keyboard/sparc6usb.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/trimodal.kbd -ICAClient/keystore/cacerts/BTCTRoot.crt -ICAClient/keystore/cacerts/Class3PCA_G2_v2.crt -ICAClient/keystore/cacerts/Class4PCA_G2_v2.crt -ICAClient/keystore/cacerts/GTECTGlobalRoot.crt -ICAClient/keystore/cacerts/GTECTRoot.crt -ICAClient/keystore/cacerts/Pcs3ss_v4.crt -ICAClient/keystore/cacerts/SecureServer.crt -ICAClient/nls/C -ICAClient/nls/en/pna.nls -ICAClient/npica.so -ICAClient/pkginf/F.core.linuxx86 -ICAClient/pkginf/Ver.core.linuxx86 -ICAClient/pkginf/changeno.dat -ICAClient/readme.txt -ICAClient/setupwfc -ICAClient/util/XCapture -ICAClient/util/XCapture.ad -ICAClient/util/echo_cmd -ICAClient/util/hinst -ICAClient/util/icalicense.sh -ICAClient/util/nslaunch -ICAClient/util/xcapture -ICAClient/wfcmgr -ICAClient/wfica -ICAClient/wfica.sh -ICAClient/wfica_assoc.sh -bin/wfcmgr -bin/wfica -@dirrm ICAClient/.config -@dirrm ICAClient/cache/zlcache -@dirrm ICAClient/cache -@dirrm ICAClient/config -@dirrm ICAClient/desktop -@dirrm ICAClient/help -@dirrm ICAClient/icons -@dirrm ICAClient/keyboard -@dirrm ICAClient/keystore/cacerts -@dirrm ICAClient/keystore -@dirrm ICAClient/nls/en -@dirrm ICAClient/nls -@dirrm ICAClient/pkginf -@dirrm ICAClient/util -@dirrm ICAClient diff --git a/net/ekiga/Makefile b/net/ekiga/Makefile deleted file mode 100644 index e54e20ae91a0..000000000000 --- a/net/ekiga/Makefile +++ /dev/null @@ -1,47 +0,0 @@ -# Ports collection Makefile for: gnomemeeting -# Date created: 24/07/2001 -# Whom: roger@FreeBSD.org -# -# $FreeBSD$ -# - -PORTNAME= gnomemeeting -PORTVERSION= 0.98.5 -CATEGORIES= net gnome -MASTER_SITES= http://www.gnomemeeting.org/downloads/0.98.0/sources/ \ - ftp://ftp.gnome.org/pub/GNOME/sources/gnomemeeting/0.98/ - -MAINTAINER= roger@FreeBSD.org -COMMENT= GNOME H323 Video Conferencing program, similar to NetMeeting - -LIB_DEPENDS= ldap.2:${PORTSDIR}/net/openldap20-client -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_BZIP2= yes -USE_X_PREFIX= yes -USE_GMAKE= yes -USE_GNOME= libgnomeui libbonobo gnomeprefix gnomehack -USE_BISON= yes -# Clear configure target so we stop getting binaries prefixed with i386-portbld-freebsd46 -CONFIGURE_TARGET= -GNU_CONFIGURE= YES -CONFIGURE_ENV= OSTYPE=${OPSYS} \ - LIBS="-L${PREFIX}/lib -L${LOCALBASE}/lib" \ - PTLIBDIR=${WRKDIRPREFIX}${.CURDIR}/../../devel/pwlib/work/pwlib \ - OPENH323DIR=${WRKDIRPREFIX}${.CURDIR}/../openh323/work/openh323 \ - SDL_CONFIG=${LOCALBASE}/bin/sdl11-config \ - CPPFLAGS="-I${LOCALBASE}/include" - -CONFIGURE_ARGS= --with-ptlib-includes=${WRKDIRPREFIX}${.CURDIR}/../../devel/pwlib/work/pwlib/include/ptlib \ - --with-ptlib-libs=${WRKDIRPREFIX}${.CURDIR}/../../devel/pwlib/work/pwlib/lib \ - --with-openh323-includes=${WRKDIRPREFIX}${.CURDIR}/../openh323/work/openh323/include \ - --with-openh323-libs=${WRKDIRPREFIX}${.CURDIR}/../openh323/work/openh323/lib \ - --with-ldap-includes=${LOCALBASE}/include \ - --with-openldap-libs=${LOCALBASE}/lib - -MAN1= gnomemeeting.1 -.include <bsd.port.mk> diff --git a/net/ekiga/distinfo b/net/ekiga/distinfo deleted file mode 100644 index b88fba04bbec..000000000000 --- a/net/ekiga/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (gnomemeeting-0.98.5.tar.bz2) = fa11d5f3e6adb924f91aaa92099b6269 diff --git a/net/ekiga/files/patch-endpoint b/net/ekiga/files/patch-endpoint deleted file mode 100644 index c906400224db..000000000000 --- a/net/ekiga/files/patch-endpoint +++ /dev/null @@ -1,37 +0,0 @@ -*** src/endpoint.cpp.orig Thu Jul 31 17:26:36 2003 ---- src/endpoint.cpp Fri Sep 5 11:40:58 2003 -*************** GMH323EndPoint::GMH323EndPoint () -*** 176,183 **** - - /* Use IPv6 address family by default if available. */ - #ifdef P_HAS_IPV6 -! if (PIPSocket::IsIpAddressFamilyV6Supported()) -! PIPSocket::SetDefaultIpAddressFamilyV6(); - #endif - - rtp_port_range = ---- 176,185 ---- - - /* Use IPv6 address family by default if available. */ - #ifdef P_HAS_IPV6 -! // ENABLING THIS CAUSES PWLIB TO GIVE AN ASSERTION WHEN THERE IS AN -! // INCOMING CALL -! // if (PIPSocket::IsIpAddressFamilyV6Supported()) -! // PIPSocket::SetDefaultIpAddressFamilyV6(); - #endif - - rtp_port_range = -*************** GMH323EndPoint::TranslateTCPAddress(PIPS -*** 682,687 **** ---- 684,694 ---- - - && !((remoteAddr.Byte1() == 172) - && ((remoteAddr.Byte2() >= 16)&&(remoteAddr.Byte2()<=31))) -+ -+ && !((remoteAddr.Byte1() == 127) -+ &&(remoteAddr.Byte2()== 0) -+ &&(remoteAddr.Byte3()==0) -+ &&(remoteAddr.Byte4()==1)) - - && !(remoteAddr.Byte1() == 10)) { - diff --git a/net/ekiga/pkg-descr b/net/ekiga/pkg-descr deleted file mode 100644 index 9a8d6e495a8d..000000000000 --- a/net/ekiga/pkg-descr +++ /dev/null @@ -1,9 +0,0 @@ -Gnomemeeting is a 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, OhPhone and CPhone. - -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 79dfb5ad7a18..000000000000 --- a/net/ekiga/pkg-plist +++ /dev/null @@ -1,116 +0,0 @@ -share/gnome/pixmaps/gnomemeeting-logo-icon.png -share/gnome/pixmaps/gnomemeeting-logo.png -share/gnome/pixmaps/gnomemeeting-splash.png -bin/gnomemeeting -bin/gnomemeeting-config-tool -libdata/bonobo/servers/gnomemeeting.server -share/locale/am/LC_MESSAGES/gnomemeeting.mo -share/locale/az/LC_MESSAGES/gnomemeeting.mo -share/locale/be/LC_MESSAGES/gnomemeeting.mo -share/locale/ca/LC_MESSAGES/gnomemeeting.mo -share/locale/cs/LC_MESSAGES/gnomemeeting.mo -share/locale/cy/LC_MESSAGES/gnomemeeting.mo -share/locale/da/LC_MESSAGES/gnomemeeting.mo -share/locale/de/LC_MESSAGES/gnomemeeting.mo -share/locale/el/LC_MESSAGES/gnomemeeting.mo -share/locale/es/LC_MESSAGES/gnomemeeting.mo -share/locale/fi/LC_MESSAGES/gnomemeeting.mo -share/locale/fr/LC_MESSAGES/gnomemeeting.mo -share/locale/ga/LC_MESSAGES/gnomemeeting.mo -share/locale/gl/LC_MESSAGES/gnomemeeting.mo -share/locale/hu/LC_MESSAGES/gnomemeeting.mo -share/locale/it/LC_MESSAGES/gnomemeeting.mo -share/locale/ja/LC_MESSAGES/gnomemeeting.mo -share/locale/ko/LC_MESSAGES/gnomemeeting.mo -share/locale/lv/LC_MESSAGES/gnomemeeting.mo -share/locale/ml/LC_MESSAGES/gnomemeeting.mo -share/locale/ms/LC_MESSAGES/gnomemeeting.mo -share/locale/nl/LC_MESSAGES/gnomemeeting.mo -share/locale/no/LC_MESSAGES/gnomemeeting.mo -share/locale/pl/LC_MESSAGES/gnomemeeting.mo -share/locale/pt/LC_MESSAGES/gnomemeeting.mo -share/locale/pt_BR/LC_MESSAGES/gnomemeeting.mo -share/locale/ro/LC_MESSAGES/gnomemeeting.mo -share/locale/ru/LC_MESSAGES/gnomemeeting.mo -share/locale/sk/LC_MESSAGES/gnomemeeting.mo -share/locale/sq/LC_MESSAGES/gnomemeeting.mo -share/locale/sr/LC_MESSAGES/gnomemeeting.mo -share/locale/sr@Latn/LC_MESSAGES/gnomemeeting.mo -share/locale/sv/LC_MESSAGES/gnomemeeting.mo -share/locale/ta/LC_MESSAGES/gnomemeeting.mo -share/locale/tr/LC_MESSAGES/gnomemeeting.mo -share/locale/uk/LC_MESSAGES/gnomemeeting.mo -share/locale/vi/LC_MESSAGES/gnomemeeting.mo -share/locale/wa/LC_MESSAGES/gnomemeeting.mo -share/locale/zh_CN/LC_MESSAGES/gnomemeeting.mo -share/locale/zh_TW/LC_MESSAGES/gnomemeeting.mo -share/gnome/sounds/gnomemeeting/gnomemeeting.wav -etc/sound/events/gnomemeeting.soundlist -share/gnome/gnomemeeting/xdap/ils_nm_reg.xml -share/gnome/gnomemeeting/xdap/ils_nm_unreg.xml -share/gnome/gnomemeeting/xdap/ils_nm_mod.xml -share/gnome/applications/gnomemeeting.desktop -etc/gconf/schemas/gnomemeeting.schemas -etc/gconf/gconf.xml.defaults/apps/gnomemeeting/%gconf.xml -etc/gconf/gconf.xml.defaults/apps/gnomemeeting/audio_codecs/%gconf.xml -etc/gconf/gconf.xml.defaults/apps/gnomemeeting/audio_settings/%gconf.xml -etc/gconf/gconf.xml.defaults/apps/gnomemeeting/call_forwarding/%gconf.xml -etc/gconf/gconf.xml.defaults/apps/gnomemeeting/contacts/%gconf.xml -etc/gconf/gconf.xml.defaults/apps/gnomemeeting/devices/%gconf.xml -etc/gconf/gconf.xml.defaults/apps/gnomemeeting/gatekeeper/%gconf.xml -etc/gconf/gconf.xml.defaults/apps/gnomemeeting/general/%gconf.xml -etc/gconf/gconf.xml.defaults/apps/gnomemeeting/history/%gconf.xml -etc/gconf/gconf.xml.defaults/apps/gnomemeeting/ldap/%gconf.xml -etc/gconf/gconf.xml.defaults/apps/gnomemeeting/personal_data/%gconf.xml -etc/gconf/gconf.xml.defaults/apps/gnomemeeting/ports/%gconf.xml -etc/gconf/gconf.xml.defaults/apps/gnomemeeting/video_display/%gconf.xml -etc/gconf/gconf.xml.defaults/apps/gnomemeeting/video_settings/%gconf.xml -etc/gconf/gconf.xml.defaults/apps/gnomemeeting/view/%gconf.xml -etc/gconf/gconf.xml.defaults/schemas/apps/gnomemeeting/%gconf.xml -etc/gconf/gconf.xml.defaults/schemas/apps/gnomemeeting/audio_codecs/%gconf.xml -etc/gconf/gconf.xml.defaults/schemas/apps/gnomemeeting/audio_settings/%gconf.xml -etc/gconf/gconf.xml.defaults/schemas/apps/gnomemeeting/call_forwarding/%gconf.xml -etc/gconf/gconf.xml.defaults/schemas/apps/gnomemeeting/contacts/%gconf.xml -etc/gconf/gconf.xml.defaults/schemas/apps/gnomemeeting/devices/%gconf.xml -etc/gconf/gconf.xml.defaults/schemas/apps/gnomemeeting/gatekeeper/%gconf.xml -etc/gconf/gconf.xml.defaults/schemas/apps/gnomemeeting/general/%gconf.xml -etc/gconf/gconf.xml.defaults/schemas/apps/gnomemeeting/history/%gconf.xml -etc/gconf/gconf.xml.defaults/schemas/apps/gnomemeeting/ldap/%gconf.xml -etc/gconf/gconf.xml.defaults/schemas/apps/gnomemeeting/personal_data/%gconf.xml -etc/gconf/gconf.xml.defaults/schemas/apps/gnomemeeting/ports/%gconf.xml -etc/gconf/gconf.xml.defaults/schemas/apps/gnomemeeting/video_display/%gconf.xml -etc/gconf/gconf.xml.defaults/schemas/apps/gnomemeeting/video_settings/%gconf.xml -etc/gconf/gconf.xml.defaults/schemas/apps/gnomemeeting/view/%gconf.xml -@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnomemeeting/view -@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnomemeeting/video_settings -@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnomemeeting/video_display -@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnomemeeting/ports -@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnomemeeting/personal_data -@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnomemeeting/ldap -@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnomemeeting/history -@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnomemeeting/general -@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnomemeeting/gatekeeper -@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnomemeeting/devices -@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnomemeeting/contacts -@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnomemeeting/call_forwarding -@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnomemeeting/audio_settings -@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnomemeeting/audio_codecs -@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnomemeeting -@dirrm etc/gconf/gconf.xml.defaults/apps/gnomemeeting/view -@dirrm etc/gconf/gconf.xml.defaults/apps/gnomemeeting/video_settings -@dirrm etc/gconf/gconf.xml.defaults/apps/gnomemeeting/video_display -@dirrm etc/gconf/gconf.xml.defaults/apps/gnomemeeting/ports -@dirrm etc/gconf/gconf.xml.defaults/apps/gnomemeeting/personal_data -@dirrm etc/gconf/gconf.xml.defaults/apps/gnomemeeting/ldap -@dirrm etc/gconf/gconf.xml.defaults/apps/gnomemeeting/history -@dirrm etc/gconf/gconf.xml.defaults/apps/gnomemeeting/general -@dirrm etc/gconf/gconf.xml.defaults/apps/gnomemeeting/gatekeeper -@dirrm etc/gconf/gconf.xml.defaults/apps/gnomemeeting/devices -@dirrm etc/gconf/gconf.xml.defaults/apps/gnomemeeting/contacts -@dirrm etc/gconf/gconf.xml.defaults/apps/gnomemeeting/call_forwarding -@dirrm etc/gconf/gconf.xml.defaults/apps/gnomemeeting/audio_settings -@dirrm etc/gconf/gconf.xml.defaults/apps/gnomemeeting/audio_codecs -@dirrm etc/gconf/gconf.xml.defaults/apps/gnomemeeting -@dirrm share/gnome/sounds/gnomemeeting -@dirrm share/gnome/gnomemeeting/xdap -@dirrm share/gnome/gnomemeeting diff --git a/net/freeradius2/Makefile b/net/freeradius2/Makefile deleted file mode 100644 index f83937c11472..000000000000 --- a/net/freeradius2/Makefile +++ /dev/null @@ -1,89 +0,0 @@ -# New ports collection makefile for: freeradius -# Date created: May 9 2002 -# Whom: Brian Somers <brian@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= freeradius -PORTVERSION= 0.8.1 -CATEGORIES= net -MASTER_SITES= ftp://ftp.freeradius.org/pub/radius/ \ - ftp://ftp.Awfulhak.org/pub/radius/ - -MAINTAINER= brian@FreeBSD.org -COMMENT= A free RADIUS server implementation - -LIB_DEPENDS= gdbm.3:${PORTSDIR}/databases/gdbm - -LOGDIR?= /var/log - -USE_GMAKE= yes -USE_LIBTOOL= yes -CONFIGURE_ARGS= --prefix=${PREFIX} --quiet --with-logdir=${LOGDIR} \ - --localstatedir=/var - -.if defined(WITH_OPENLDAP_VER) -.if ${WITH_OPENLDAP_VER} == 20 || ${WITH_OPENLDAP_VER} == 21 -LIB_DEPENDS+= ldap.2:${PORTSDIR}/net/openldap${WITH_OPENLDAP_VER} -LIB_DEPENDS+= lber.2:${PORTSDIR}/net/openldap${WITH_OPENLDAP_VER} -.else -BROKEN= "WITH_OPENLDAP_VER must be 20 or 21" -.endif -PLIST_SUB+= LDAP="" -.else -CONFIGURE_ARGS+=--without-rlm_ldap -PLIST_SUB+= LDAP="@comment " -.endif - -.if defined(WITH_MYSQL_VER) -.if ${WITH_MYSQL_VER} == 41 -LIB_DEPENDS+= mysqlclient.14:${PORTSDIR}/databases/mysql41-client -.elif ${WITH_MYSQL_VER} == 40 -LIB_DEPENDS+= mysqlclient.12:${PORTSDIR}/databases/mysql40-client -.elif ${WITH_MYSQL_VER} == 3 -LIB_DEPENDS+= mysqlclient.10:${PORTSDIR}/databases/mysql323-client -.else -BROKEN= "WITH_MYSQL_VER must be 3, 40 or 41" -.endif -PLIST_SUB+= MYSQL="" -.else -CONFIGURE_ARGS+=--without-rlm_sql_mysql -PLIST_SUB+= MYSQL="@comment " -.endif - -# rlm_x99_token seems broken -CONFIGURE_ARGS+=--without-rlm_x99_token -PLIST_SUB+= TOKEN="@comment " - -INSTALLS_SHLIB= yes - -MAN1= radclient.1 radlast.1 radtest.1 raduse.1 radwho.1 radzap.1 -MAN5= acct_users.5 clients.5 dictionary.5 naslist.5 radiusd.conf.5 \ - users.5 -MAN8= builddbm.8 radiusd.8 radrelay.8 radwatch.8 - -RADDB= acct_users attrs clients clients.conf dictionary \ - dictionary.acc dictionary.alcatel dictionary.alteon \ - dictionary.altiga dictionary.aptis dictionary.ascend \ - dictionary.bay dictionary.cisco dictionary.cisco.bbsm \ - dictionary.cisco.vpn3000 dictionary.cisco.vpn5000 \ - dictionary.colubris dictionary.columbia_university \ - dictionary.compat dictionary.erx dictionary.foundry \ - dictionary.freeradius dictionary.juniper \ - dictionary.livingston dictionary.microsoft \ - dictionary.nomadix dictionary.quintum dictionary.redback \ - dictionary.shasta dictionary.shiva dictionary.tunnel \ - dictionary.usr dictionary.versanet hints huntgroups \ - ldap.attrmap mssql.conf naslist naspasswd oraclesql.conf \ - postgresql.conf preproxy_users proxy.conf radiusd.conf \ - realms snmp.conf sql.conf users x99.conf x99passwd.sample - -post-install: - @${MKDIR} ${PREFIX}/etc/raddb -.for db in ${RADDB} - ${INSTALL_DATA} ${WRKSRC}/raddb/${db} ${PREFIX}/etc/raddb/${db}.sample -.endfor - ${INSTALL_SCRIPT} ${FILESDIR}/radiusd.sh ${PREFIX}/etc/rc.d/radiusd.sh - -.include <bsd.port.mk> diff --git a/net/freeradius2/distinfo b/net/freeradius2/distinfo deleted file mode 100644 index 7feca3855fc5..000000000000 --- a/net/freeradius2/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (freeradius-0.8.1.tar.gz) = 2693a9067a112d2c4f5dfb98a531f25d diff --git a/net/freeradius2/files/patch-aa b/net/freeradius2/files/patch-aa deleted file mode 100644 index 8a2f691bc3de..000000000000 --- a/net/freeradius2/files/patch-aa +++ /dev/null @@ -1,36 +0,0 @@ ---- Makefile.orig Tue Apr 8 11:51:28 2003 -+++ Makefile Tue Apr 8 11:51:38 2003 -@@ -34,33 +34,6 @@ - $(INSTALL) -m 644 $$p $(R)$(mandir)/man$$i; \ - done \ - done -- @echo "Creating/updating files in $(R)$(raddbdir)"; \ -- cd raddb; \ -- for i in [a-c]* [e-z]*; do \ -- [ $$i != radiusd.conf.in -a ! -f $(R)$(raddbdir)/$$i ] && \ -- $(INSTALL) -m 644 $$i $(R)$(raddbdir); \ -- done; \ -- chmod 600 $(R)$(raddbdir)/naspasswd $(R)$(raddbdir)/clients $(R)$(raddbdir)/clients.conf; \ -- for i in dictionary*; do \ -- [ ! -f $(R)$(raddbdir)/$$i ] && $(INSTALL) -m 644 $$i $(R)$(raddbdir); \ -- if [ "`find $$i -newer $(R)$(raddbdir)/$$i`" ]; then \ -- echo "** $(R)$(raddbdir)/$$i"; \ -- nt=1; \ -- fi; \ -- done; \ -- if [ "$$nt" ]; then \ -- echo "**";\ -- echo "** WARNING ** WARNING ** WARNING ** WARNING ** WARNING ** WARNING ** WARNING **";\ -- echo "** WARNING ** WARNING ** WARNING ** WARNING ** WARNING ** WARNING ** WARNING **";\ -- echo "**";\ -- echo "** The sample configuration files in `pwd`";\ -- echo "** are newer than those in $(R)$(raddbdir)";\ -- echo "**";\ -- echo "** Please investigate and manually copy (if appropriate) the files listed above.";\ -- echo "**";\ -- echo "** WARNING ** WARNING ** WARNING ** WARNING ** WARNING ** WARNING ** WARNING **";\ -- echo "** WARNING ** WARNING ** WARNING ** WARNING ** WARNING ** WARNING ** WARNING **";\ -- fi - - common: - @for dir in $(SUBDIRS); do \ diff --git a/net/freeradius2/files/patch-ab b/net/freeradius2/files/patch-ab deleted file mode 100644 index f9beec55bde7..000000000000 --- a/net/freeradius2/files/patch-ab +++ /dev/null @@ -1,19 +0,0 @@ ---- src/modules/rlm_mschap/rlm_mschap.c.orig Tue Apr 8 11:53:05 2003 -+++ src/modules/rlm_mschap/rlm_mschap.c Tue Apr 8 11:53:32 2003 -@@ -260,10 +260,15 @@ - SHA1_CTX Context; - char hash[20]; - -+ const char *name; -+ -+ name = strchr(user_name, '\\'); -+ name = name == NULL ? user_name : name + 1; -+ - SHA1Init(&Context); - SHA1Update(&Context, peer_challenge, 16); - SHA1Update(&Context, auth_challenge, 16); -- SHA1Update(&Context, user_name, strlen(user_name)); -+ SHA1Update(&Context, name, strlen(name)); - SHA1Final(hash, &Context); - memcpy(challenge, hash, 8); - } diff --git a/net/freeradius2/files/radiusd.sh b/net/freeradius2/files/radiusd.sh deleted file mode 100644 index 798339462cd1..000000000000 --- a/net/freeradius2/files/radiusd.sh +++ /dev/null @@ -1,38 +0,0 @@ -#!/bin/sh - -# RADIUSD_FLAGS='-xxyzsf -l stdout' -RADIUSD_FLAGS= - -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) - "$PREFIX"/sbin/radiusd $RADIUSD_FLAGS && echo -n " radiusd" - ;; -stop) - if [ -f /var/run/radiusd/radiusd.pid ]; then - kill `cat /var/run/radiusd/radiusd.pid` && echo -n ' radiusd' - fi - ;; -*) - echo "Usage: `basename $0` {start|stop}" >&2 - exit 64 - ;; -esac - -exit 0 diff --git a/net/freeradius2/pkg-descr b/net/freeradius2/pkg-descr deleted file mode 100644 index 044d72cbf88d..000000000000 --- a/net/freeradius2/pkg-descr +++ /dev/null @@ -1,24 +0,0 @@ - All code in this server was written from scratch. - The server is mostly compatible with livingston radiusd-2.01 - (no menus or s/key support though) but with more feautures, such as: - - o Can limit max. number of simultaneous logins on a per-user basis! - o Multiple DEFAULT entries, that can optionally fall-through. - o In fact, every entry can fall-through - o Deny/permit access based on huntgroup users dials into - o Set certain parameters (such as static IP address) based on huntgroup - o Extra "hints" file that can select SLIP/PPP/rlogin based on - username pattern (Puser or user.ppp is PPP, plain "user" is rlogin etc). - o Can execute an external program when user has authenticated (for example - to run a sendmail queue). - o Can use `$INCLUDE filename' in radiusd.conf, users, and dictionary files - o Can act as a proxy server, relaying requests to a remote server - o Supports Vendor-Specific attributes - o No good documentation at all, just like the original radiusd 1.16! - - Then of course for general RADIUS questions, especially if you are using - Livingston / Lucent RABU equipment, there is the portmaster-radius mailing - list. Send mail to portmaster-radius-request@livingston.com to find - out how to subscribe. - -WWW: http://www.freeradius.org/ diff --git a/net/freeradius2/pkg-plist b/net/freeradius2/pkg-plist deleted file mode 100644 index c4da0b07690f..000000000000 --- a/net/freeradius2/pkg-plist +++ /dev/null @@ -1,211 +0,0 @@ -bin/radclient -bin/radlast -bin/radrelay -bin/radtest -bin/raduse -bin/radwho -bin/radzap -bin/rlm_dbm_cat -bin/rlm_dbm_parser -bin/smbencrypt -etc/raddb/acct_users.sample -etc/raddb/attrs.sample -etc/raddb/clients.conf.sample -etc/raddb/clients.sample -etc/raddb/dictionary.acc.sample -etc/raddb/dictionary.alcatel.sample -etc/raddb/dictionary.alteon.sample -etc/raddb/dictionary.altiga.sample -etc/raddb/dictionary.aptis.sample -etc/raddb/dictionary.ascend.sample -etc/raddb/dictionary.bay.sample -etc/raddb/dictionary.cisco.bbsm.sample -etc/raddb/dictionary.cisco.sample -etc/raddb/dictionary.cisco.vpn3000.sample -etc/raddb/dictionary.cisco.vpn5000.sample -etc/raddb/dictionary.colubris.sample -etc/raddb/dictionary.columbia_university.sample -etc/raddb/dictionary.compat.sample -etc/raddb/dictionary.erx.sample -etc/raddb/dictionary.foundry.sample -etc/raddb/dictionary.freeradius.sample -etc/raddb/dictionary.juniper.sample -etc/raddb/dictionary.livingston.sample -etc/raddb/dictionary.microsoft.sample -etc/raddb/dictionary.nomadix.sample -etc/raddb/dictionary.quintum.sample -etc/raddb/dictionary.redback.sample -etc/raddb/dictionary.sample -etc/raddb/dictionary.shasta.sample -etc/raddb/dictionary.shiva.sample -etc/raddb/dictionary.tunnel.sample -etc/raddb/dictionary.usr.sample -etc/raddb/dictionary.versanet.sample -etc/raddb/hints.sample -etc/raddb/huntgroups.sample -etc/raddb/ldap.attrmap.sample -etc/raddb/mssql.conf.sample -etc/raddb/naslist.sample -etc/raddb/naspasswd.sample -etc/raddb/oraclesql.conf.sample -etc/raddb/postgresql.conf.sample -etc/raddb/preproxy_users.sample -etc/raddb/proxy.conf.sample -etc/raddb/radiusd.conf.sample -etc/raddb/realms.sample -etc/raddb/snmp.conf.sample -etc/raddb/sql.conf.sample -etc/raddb/users.sample -etc/raddb/x99.conf.sample -etc/raddb/x99passwd.sample.sample -etc/rc.d/radiusd.sh -include/ltdl.h -lib/libltdl.a -lib/libltdl.la -lib/libltdl.so -lib/libltdl.so.4 -lib/libradius-0.8.1.la -lib/libradius-0.8.1.so -lib/libradius.a -lib/libradius.la -lib/libradius.so -lib/rlm_acct_unique-0.8.1.la -lib/rlm_acct_unique-0.8.1.so -lib/rlm_acct_unique.a -lib/rlm_acct_unique.la -lib/rlm_acct_unique.so -lib/rlm_always-0.8.1.la -lib/rlm_always-0.8.1.so -lib/rlm_always.a -lib/rlm_always.la -lib/rlm_always.so -lib/rlm_attr_filter-0.8.1.la -lib/rlm_attr_filter-0.8.1.so -lib/rlm_attr_filter.a -lib/rlm_attr_filter.la -lib/rlm_attr_filter.so -lib/rlm_attr_rewrite-0.8.1.la -lib/rlm_attr_rewrite-0.8.1.so -lib/rlm_attr_rewrite.a -lib/rlm_attr_rewrite.la -lib/rlm_attr_rewrite.so -lib/rlm_chap-0.8.1.la -lib/rlm_chap-0.8.1.so -lib/rlm_chap.a -lib/rlm_chap.la -lib/rlm_chap.so -lib/rlm_counter-0.8.1.la -lib/rlm_counter-0.8.1.so -lib/rlm_counter.a -lib/rlm_counter.la -lib/rlm_counter.so -lib/rlm_dbm-0.8.1.la -lib/rlm_dbm-0.8.1.so -lib/rlm_dbm.a -lib/rlm_dbm.la -lib/rlm_dbm.so -lib/rlm_detail-0.8.1.la -lib/rlm_detail-0.8.1.so -lib/rlm_detail.a -lib/rlm_detail.la -lib/rlm_detail.so -lib/rlm_eap-0.8.1.la -lib/rlm_eap-0.8.1.so -lib/rlm_eap.a -lib/rlm_eap.la -lib/rlm_eap.so -lib/rlm_eap_md5-0.8.1.la -lib/rlm_eap_md5-0.8.1.so -lib/rlm_eap_md5.a -lib/rlm_eap_md5.la -lib/rlm_eap_md5.so -lib/rlm_eap_tls-0.8.1.la -lib/rlm_eap_tls-0.8.1.so -lib/rlm_eap_tls.a -lib/rlm_eap_tls.la -lib/rlm_eap_tls.so -lib/rlm_expr-0.8.1.la -lib/rlm_expr-0.8.1.so -lib/rlm_expr.a -lib/rlm_expr.la -lib/rlm_expr.so -lib/rlm_fastusers-0.8.1.la -lib/rlm_fastusers-0.8.1.so -lib/rlm_fastusers.a -lib/rlm_fastusers.la -lib/rlm_fastusers.so -lib/rlm_files-0.8.1.la -lib/rlm_files-0.8.1.so -lib/rlm_files.a -lib/rlm_files.la -lib/rlm_files.so -%%LDAP%%lib/rlm_ldap-0.8.1.la -%%LDAP%%lib/rlm_ldap-0.8.1.so -%%LDAP%%lib/rlm_ldap.a -%%LDAP%%lib/rlm_ldap.la -%%LDAP%%lib/rlm_ldap.so -lib/rlm_mschap-0.8.1.la -lib/rlm_mschap-0.8.1.so -lib/rlm_mschap.a -lib/rlm_mschap.la -lib/rlm_mschap.so -lib/rlm_ns_mta_md5-0.8.1.la -lib/rlm_ns_mta_md5-0.8.1.so -lib/rlm_ns_mta_md5.a -lib/rlm_ns_mta_md5.la -lib/rlm_ns_mta_md5.so -lib/rlm_pam-0.8.1.la -lib/rlm_pam-0.8.1.so -lib/rlm_pam.a -lib/rlm_pam.la -lib/rlm_pam.so -lib/rlm_pap-0.8.1.la -lib/rlm_pap-0.8.1.so -lib/rlm_pap.a -lib/rlm_pap.la -lib/rlm_pap.so -lib/rlm_preprocess-0.8.1.la -lib/rlm_preprocess-0.8.1.so -lib/rlm_preprocess.a -lib/rlm_preprocess.la -lib/rlm_preprocess.so -lib/rlm_radutmp-0.8.1.la -lib/rlm_radutmp-0.8.1.so -lib/rlm_radutmp.a -lib/rlm_radutmp.la -lib/rlm_radutmp.so -lib/rlm_realm-0.8.1.la -lib/rlm_realm-0.8.1.so -lib/rlm_realm.a -lib/rlm_realm.la -lib/rlm_realm.so -lib/rlm_sql-0.8.1.la -lib/rlm_sql-0.8.1.so -lib/rlm_sql.a -lib/rlm_sql.la -lib/rlm_sql.so -%%MYSQL%%lib/rlm_sql_mysql.a -%%MYSQL%%lib/rlm_sql_mysql.la -%%MYSQL%%lib/rlm_sql_mysql.so -%%MYSQL%%lib/rlm_sql_mysql.so.0 -lib/rlm_unix-0.8.1.la -lib/rlm_unix-0.8.1.so -lib/rlm_unix.a -lib/rlm_unix.la -lib/rlm_unix.so -%%TOKEN%%lib/rlm_x99_token-0.8.1.la -%%TOKEN%%lib/rlm_x99_token-0.8.1.so -%%TOKEN%%lib/rlm_x99_token.a -%%TOKEN%%lib/rlm_x99_token.la -%%TOKEN%%lib/rlm_x99_token.so -sbin/check-radiusd-config -sbin/checkrad -sbin/radiusd -sbin/radwatch -sbin/rc.radiusd -@dirrm etc/raddb -@exec mkdir -p /var/log/raddb -@exec chmod -R og= /var/log/raddb -@unexec rm -fr /var/log/raddb -@exec mkdir -p /var/run/radiusd -@unexec rm -fr /var/run/radiusd diff --git a/net/gnomeicu/gnomeicu/Makefile b/net/gnomeicu/gnomeicu/Makefile deleted file mode 100644 index a84f5de3c166..000000000000 --- a/net/gnomeicu/gnomeicu/Makefile +++ /dev/null @@ -1,53 +0,0 @@ -# Ports collection Makefile for: GnomeICU -# Date created: 03/16/1999 -# Whom: nectar@FreeBSD.org -# -# $FreeBSD$ -# - -PORTNAME= gnomeicu2 -PORTVERSION= 0.99 -CATEGORIES= net gnome -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= gnomeicu -DISTNAME= gnomeicu-${PORTVERSION} - -MAINTAINER= gnome@FreeBSD.org -COMMENT= GNOME2 ICQ client - -LIB_DEPENDS+= gnet-glib2.7:${PORTSDIR}/net/gnet-glib2 \ - gdbm.3:${PORTSDIR}/databases/gdbm - -USE_BZIP2= yes -USE_X_PREFIX= yes -USE_GNOME= gnomeprefix gnomehack libglade2 gnomepanel libxml2 -USE_GMAKE= yes -USE_LIBTOOL= 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 -.elif defined(WITH_SOCKS5) -BUILD_DEPENDS+= ${LOCALBASE}/lib/libsocks5.a:${PORTSDIR}/net/socks5 -SOCKSFLAGS= -DSOCKS -include ${LOCALBASE}/include/socks.h -SOCKSLIBS= -lsocks5 -.endif - -CONFIGURE_ARGS= --with-statusmenu -CONFIGURE_ENV= CPPFLAGS="${SOCKSFLAGS} -I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" LIBS="-liconv ${SOCKSLIBS} -lintl" \ - CFLAGS="${CFLAGS}" - -post-patch: - @${REINPLACE_CMD} -e 's|gnet|gnet-glib2|g' ${WRKSRC}/configure - @${REINPLACE_CMD} -e 's|GNOME_PARAM_GNOME_DATADIR|GNOME_PARAM_APP_DATADIR|g' \ - ${WRKSRC}/src/gnomeicu.c - -.include <bsd.port.mk> diff --git a/net/gnomeicu/gnomeicu/distinfo b/net/gnomeicu/gnomeicu/distinfo deleted file mode 100644 index b9d643189d9f..000000000000 --- a/net/gnomeicu/gnomeicu/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (gnomeicu-0.99.tar.bz2) = d5e49557a3ed3545b98c3749257e58ef diff --git a/net/gnomeicu/gnomeicu/files/patch-configure b/net/gnomeicu/gnomeicu/files/patch-configure deleted file mode 100644 index c6ee752e9833..000000000000 --- a/net/gnomeicu/gnomeicu/files/patch-configure +++ /dev/null @@ -1,13 +0,0 @@ - -$FreeBSD$ - ---- configure 2002/09/11 08:57:13 1.1 -+++ configure 2002/09/11 08:57:46 -@@ -7490,6 +7490,7 @@ - - # This can be used to rebuild libtool when needed - LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh" -+$ac_aux_dir/ltconfig $LIBTOOL_DEPS - - # Always use our own libtool. - LIBTOOL='$(SHELL) $(top_builddir)/libtool' diff --git a/net/gnomeicu/gnomeicu/files/patch-src::gnomeicu-client.c b/net/gnomeicu/gnomeicu/files/patch-src::gnomeicu-client.c deleted file mode 100644 index c3a82000bfca..000000000000 --- a/net/gnomeicu/gnomeicu/files/patch-src::gnomeicu-client.c +++ /dev/null @@ -1,13 +0,0 @@ ---- src/gnomeicu-client.c.orig Sun Sep 29 14:59:15 2002 -+++ src/gnomeicu-client.c Sun Sep 29 14:59:25 2002 -@@ -17,9 +17,9 @@ - #include <stdio.h> - #include <stdlib.h> - #include <string.h> -+#include <sys/types.h> - #include <sys/socket.h> - #include <sys/stat.h> --#include <sys/types.h> - #include <sys/un.h> - #include <unistd.h> - diff --git a/net/gnomeicu/gnomeicu/files/patch-src::icu_db.c b/net/gnomeicu/gnomeicu/files/patch-src::icu_db.c deleted file mode 100644 index 3df66fcf8c50..000000000000 --- a/net/gnomeicu/gnomeicu/files/patch-src::icu_db.c +++ /dev/null @@ -1,17 +0,0 @@ - -$FreeBSD$ - ---- src/icu_db.c.orig Sat Jun 22 22:11:46 2002 -+++ src/icu_db.c Wed Sep 11 11:45:05 2002 -@@ -27,7 +27,11 @@ - - #include <fcntl.h> - #include <errno.h> -+#if defined(HAVE_STDLIB_H) -+#include <stdlib.h> -+#else - #include <malloc.h> -+#endif - #include <stdio.h> - #include <string.h> - #include <sys/param.h> diff --git a/net/gnomeicu/gnomeicu/files/patch-src_userserver.c b/net/gnomeicu/gnomeicu/files/patch-src_userserver.c deleted file mode 100644 index 0e602dbbc662..000000000000 --- a/net/gnomeicu/gnomeicu/files/patch-src_userserver.c +++ /dev/null @@ -1,17 +0,0 @@ ---- src/userserver.c.orig Mon Mar 10 16:49:07 2003 -+++ src/userserver.c Mon Mar 10 16:49:16 2003 -@@ -27,13 +27,13 @@ - - #include <gdk/gdk.h> - #include <gdk/gdkkeysyms.h> -+#include <sys/types.h> - #include <errno.h> - #include <netinet/in.h> - #include <pwd.h> - #include <stdio.h> - #include <stdlib.h> - #include <string.h> --#include <sys/types.h> - #include <sys/socket.h> - #include <sys/stat.h> - #include <sys/un.h> diff --git a/net/gnomeicu/gnomeicu/pkg-descr b/net/gnomeicu/gnomeicu/pkg-descr deleted file mode 100644 index df8c0c64984b..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 - Gnome2, a growingly popular desktop environment. GnomeICU is released - under the GNU Public License, and is available free of charge. - -WWW: http://gnomeicu.sourceforge.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 c4e12d3b045e..000000000000 --- a/net/gnomeicu/gnomeicu/pkg-plist +++ /dev/null @@ -1,313 +0,0 @@ -bin/gnomeicu -bin/gnomeicu-client -etc/gconf/gconf.xml.defaults/apps/gnomeicu/%gconf.xml -etc/gconf/gconf.xml.defaults/apps/gnomeicu/general/%gconf.xml -etc/gconf/gconf.xml.defaults/apps/gnomeicu/general/connections/%gconf.xml -etc/gconf/gconf.xml.defaults/apps/gnomeicu/general/events/%gconf.xml -etc/gconf/gconf.xml.defaults/apps/gnomeicu/general/files/%gconf.xml -etc/gconf/gconf.xml.defaults/apps/gnomeicu/general/status/%gconf.xml -etc/gconf/gconf.xml.defaults/apps/gnomeicu/general/themes/%gconf.xml -etc/gconf/gconf.xml.defaults/apps/gnomeicu/general/ui/%gconf.xml -etc/gconf/gconf.xml.defaults/apps/gnomeicu/icq/%gconf.xml -etc/gconf/gconf.xml.defaults/apps/gnomeicu/icq/color/%gconf.xml -etc/gconf/gconf.xml.defaults/apps/gnomeicu/icq/network/%gconf.xml -etc/gconf/gconf.xml.defaults/schemas/apps/gnomeicu/%gconf.xml -etc/gconf/gconf.xml.defaults/schemas/apps/gnomeicu/general/%gconf.xml -etc/gconf/gconf.xml.defaults/schemas/apps/gnomeicu/general/connections/%gconf.xml -etc/gconf/gconf.xml.defaults/schemas/apps/gnomeicu/general/events/%gconf.xml -etc/gconf/gconf.xml.defaults/schemas/apps/gnomeicu/general/files/%gconf.xml -etc/gconf/gconf.xml.defaults/schemas/apps/gnomeicu/general/status/%gconf.xml -etc/gconf/gconf.xml.defaults/schemas/apps/gnomeicu/general/themes/%gconf.xml -etc/gconf/gconf.xml.defaults/schemas/apps/gnomeicu/general/ui/%gconf.xml -etc/gconf/gconf.xml.defaults/schemas/apps/gnomeicu/icq/%gconf.xml -etc/gconf/gconf.xml.defaults/schemas/apps/gnomeicu/icq/color/%gconf.xml -etc/gconf/gconf.xml.defaults/schemas/apps/gnomeicu/icq/network/%gconf.xml -etc/gconf/schemas/gnomeicu.schemas -etc/sound/events/GnomeICU.soundlist -share/gnome/applications/GnomeICU.desktop -share/gnome/gnomeicu/emoticons/AIM/angel.xpm -share/gnome/gnomeicu/emoticons/AIM/bigsmile.xpm -share/gnome/gnomeicu/emoticons/AIM/crossedlips.xpm -share/gnome/gnomeicu/emoticons/AIM/cry.xpm -share/gnome/gnomeicu/emoticons/AIM/embarrassed.xpm -share/gnome/gnomeicu/emoticons/AIM/emoticon-data -share/gnome/gnomeicu/emoticons/AIM/kiss.xpm -share/gnome/gnomeicu/emoticons/AIM/sad.xpm -share/gnome/gnomeicu/emoticons/AIM/scream.xpm -share/gnome/gnomeicu/emoticons/AIM/smile.xpm -share/gnome/gnomeicu/emoticons/AIM/smile8.xpm -share/gnome/gnomeicu/emoticons/AIM/think.xpm -share/gnome/gnomeicu/emoticons/AIM/tongue.xpm -share/gnome/gnomeicu/emoticons/AIM/wink.xpm -share/gnome/gnomeicu/emoticons/Always/Annoyed.bmp -share/gnome/gnomeicu/emoticons/Always/Disgusted.bmp -share/gnome/gnomeicu/emoticons/Always/Drooling.bmp -share/gnome/gnomeicu/emoticons/Always/Giggling.bmp -share/gnome/gnomeicu/emoticons/Always/Jokingly.bmp -share/gnome/gnomeicu/emoticons/Always/Shocked.bmp -share/gnome/gnomeicu/emoticons/Always/Surprised-F.bmp -share/gnome/gnomeicu/emoticons/Always/Surprised-M.bmp -share/gnome/gnomeicu/emoticons/Always/Whining.bmp -share/gnome/gnomeicu/emoticons/Always/asl.gif -share/gnome/gnomeicu/emoticons/Always/bat.gif -share/gnome/gnomeicu/emoticons/Always/beer.gif -share/gnome/gnomeicu/emoticons/Always/boy.gif -share/gnome/gnomeicu/emoticons/Always/broken_heart.gif -share/gnome/gnomeicu/emoticons/Always/cake.gif -share/gnome/gnomeicu/emoticons/Always/camera.gif -share/gnome/gnomeicu/emoticons/Always/cat.gif -share/gnome/gnomeicu/emoticons/Always/clock.gif -share/gnome/gnomeicu/emoticons/Always/coffee.gif -share/gnome/gnomeicu/emoticons/Always/cuffs.gif -share/gnome/gnomeicu/emoticons/Always/dog.gif -share/gnome/gnomeicu/emoticons/Always/dude_hug.gif -share/gnome/gnomeicu/emoticons/Always/emoticon-data -share/gnome/gnomeicu/emoticons/Always/envelope.gif -share/gnome/gnomeicu/emoticons/Always/film.gif -share/gnome/gnomeicu/emoticons/Always/girl.gif -share/gnome/gnomeicu/emoticons/Always/girl_hug.gif -share/gnome/gnomeicu/emoticons/Always/heart.gif -share/gnome/gnomeicu/emoticons/Always/martini.gif -share/gnome/gnomeicu/emoticons/Always/messenger.gif -share/gnome/gnomeicu/emoticons/Always/moon.gif -share/gnome/gnomeicu/emoticons/Always/musical_note.gif -share/gnome/gnomeicu/emoticons/Always/phone.gif -share/gnome/gnomeicu/emoticons/Always/present.gif -share/gnome/gnomeicu/emoticons/Always/rainbow.gif -share/gnome/gnomeicu/emoticons/Always/rose.gif -share/gnome/gnomeicu/emoticons/Always/star.gif -share/gnome/gnomeicu/emoticons/Always/sun.gif -share/gnome/gnomeicu/emoticons/Always/thumbs_down.gif -share/gnome/gnomeicu/emoticons/Always/thumbs_up.gif -share/gnome/gnomeicu/emoticons/Always/wilted_rose.gif -share/gnome/gnomeicu/emoticons/Default/bigsmile.png -share/gnome/gnomeicu/emoticons/Default/cry.png -share/gnome/gnomeicu/emoticons/Default/emoticon-data -share/gnome/gnomeicu/emoticons/Default/glasses.png -share/gnome/gnomeicu/emoticons/Default/sad.png -share/gnome/gnomeicu/emoticons/Default/scream.png -share/gnome/gnomeicu/emoticons/Default/smile.png -share/gnome/gnomeicu/emoticons/Default/smile2.png -share/gnome/gnomeicu/emoticons/Default/smile8.png -share/gnome/gnomeicu/emoticons/Default/straight.png -share/gnome/gnomeicu/emoticons/Default/tongue.png -share/gnome/gnomeicu/emoticons/Default/unsure.png -share/gnome/gnomeicu/emoticons/Default/wink.png -share/gnome/gnomeicu/emoticons/MSN/angel.gif -share/gnome/gnomeicu/emoticons/MSN/angry.gif -share/gnome/gnomeicu/emoticons/MSN/bigsmile.gif -share/gnome/gnomeicu/emoticons/MSN/confused.gif -share/gnome/gnomeicu/emoticons/MSN/cry.gif -share/gnome/gnomeicu/emoticons/MSN/devil.gif -share/gnome/gnomeicu/emoticons/MSN/embaressed.gif -share/gnome/gnomeicu/emoticons/MSN/emoticon-data -share/gnome/gnomeicu/emoticons/MSN/kiss.gif -share/gnome/gnomeicu/emoticons/MSN/light.gif -share/gnome/gnomeicu/emoticons/MSN/sad.gif -share/gnome/gnomeicu/emoticons/MSN/shocked.gif -share/gnome/gnomeicu/emoticons/MSN/smile.gif -share/gnome/gnomeicu/emoticons/MSN/smile8.gif -share/gnome/gnomeicu/emoticons/MSN/straight.gif -share/gnome/gnomeicu/emoticons/MSN/tongue.gif -share/gnome/gnomeicu/emoticons/MSN/wink.gif -share/gnome/gnomeicu/emoticons/Yahoo/alien.gif -share/gnome/gnomeicu/emoticons/Yahoo/angel.gif -share/gnome/gnomeicu/emoticons/Yahoo/angry.gif -share/gnome/gnomeicu/emoticons/Yahoo/bigsmile.gif -share/gnome/gnomeicu/emoticons/Yahoo/blush.gif -share/gnome/gnomeicu/emoticons/Yahoo/clown.gif -share/gnome/gnomeicu/emoticons/Yahoo/cow.gif -share/gnome/gnomeicu/emoticons/Yahoo/cowboy.gif -share/gnome/gnomeicu/emoticons/Yahoo/devil.gif -share/gnome/gnomeicu/emoticons/Yahoo/emoticon-data -share/gnome/gnomeicu/emoticons/Yahoo/flag.gif -share/gnome/gnomeicu/emoticons/Yahoo/green.gif -share/gnome/gnomeicu/emoticons/Yahoo/hrmph.gif -share/gnome/gnomeicu/emoticons/Yahoo/ignore.gif -share/gnome/gnomeicu/emoticons/Yahoo/kiss.gif -share/gnome/gnomeicu/emoticons/Yahoo/light.gif -share/gnome/gnomeicu/emoticons/Yahoo/monkey.gif -share/gnome/gnomeicu/emoticons/Yahoo/nerd.gif -share/gnome/gnomeicu/emoticons/Yahoo/pig.gif -share/gnome/gnomeicu/emoticons/Yahoo/pumpkin.gif -share/gnome/gnomeicu/emoticons/Yahoo/quiet.gif -share/gnome/gnomeicu/emoticons/Yahoo/rofl.gif -share/gnome/gnomeicu/emoticons/Yahoo/rose.gif -share/gnome/gnomeicu/emoticons/Yahoo/sad.gif -share/gnome/gnomeicu/emoticons/Yahoo/shocked.gif -share/gnome/gnomeicu/emoticons/Yahoo/skull.gif -share/gnome/gnomeicu/emoticons/Yahoo/sleep.gif -share/gnome/gnomeicu/emoticons/Yahoo/smile.gif -share/gnome/gnomeicu/emoticons/Yahoo/smile8.gif -share/gnome/gnomeicu/emoticons/Yahoo/stop.gif -share/gnome/gnomeicu/emoticons/Yahoo/straight.gif -share/gnome/gnomeicu/emoticons/Yahoo/tongue.gif -share/gnome/gnomeicu/emoticons/Yahoo/wail.gif -share/gnome/gnomeicu/emoticons/Yahoo/wink.gif -share/gnome/gnomeicu/emoticons/Yahoo/wonder.gif -share/gnome/gnomeicu/glade/addcontact.glade -share/gnome/gnomeicu/glade/auth.glade -share/gnome/gnomeicu/glade/auto_respond.glade -share/gnome/gnomeicu/glade/grpmgr.glade -share/gnome/gnomeicu/glade/history.glade -share/gnome/gnomeicu/glade/main.glade -share/gnome/gnomeicu/glade/message.glade -share/gnome/gnomeicu/glade/prefs.glade -share/gnome/gnomeicu/glade/user_info.glade -share/gnome/gnomeicu/glade/welcome.glade -share/gnome/gnomeicu/icons/Default/gnomeicu-animation.gif -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-group.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.gif -share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-auth.png -share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-away.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.gif -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-away.png -share/gnome/gnomeicu/icons/reDubbed/gnomeicu-dnd.png -share/gnome/gnomeicu/icons/reDubbed/gnomeicu-ffc.png -share/gnome/gnomeicu/icons/reDubbed/gnomeicu-info -share/gnome/gnomeicu/icons/reDubbed/gnomeicu-inv.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-online.png -share/gnome/gnomeicu/prefs_icon_gnomeicu.png -share/gnome/gnomeicu/prefs_icon_icq.png -share/gnome/help/gnomeicu/C/gnomeicu.xml -share/gnome/omf/gnomeicu/gnomeicu-C.omf -@exec scrollkeeper-install -q %D/share/gnome/omf/gnomeicu/gnomeicu-C.omf 2>/dev/null || /usr/bin/true -share/gnome/pixmaps/gnome-gnomeicu.png -share/gnome/sounds/gnomeicu/Auth.wav -share/gnome/sounds/gnomeicu/File.wav -share/gnome/sounds/gnomeicu/Online.wav -share/gnome/sounds/gnomeicu/URL.wav -share/gnome/sounds/gnomeicu/contlist.wav -share/gnome/sounds/gnomeicu/message.wav -share/locale/am/LC_MESSAGES/gnomeicu.mo -share/locale/az/LC_MESSAGES/gnomeicu.mo -share/locale/bg/LC_MESSAGES/gnomeicu.mo -share/locale/ca/LC_MESSAGES/gnomeicu.mo -share/locale/cs/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/eu/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/he/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/lv/LC_MESSAGES/gnomeicu.mo -share/locale/ms/LC_MESSAGES/gnomeicu.mo -share/locale/nl/LC_MESSAGES/gnomeicu.mo -share/locale/nn/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/sk/LC_MESSAGES/gnomeicu.mo -share/locale/sl/LC_MESSAGES/gnomeicu.mo -share/locale/sv/LC_MESSAGES/gnomeicu.mo -share/locale/th/LC_MESSAGES/gnomeicu.mo -share/locale/tr/LC_MESSAGES/gnomeicu.mo -share/locale/uk/LC_MESSAGES/gnomeicu.mo -share/locale/vi/LC_MESSAGES/gnomeicu.mo -share/locale/zh_CN/LC_MESSAGES/gnomeicu.mo -share/locale/zh_TW/LC_MESSAGES/gnomeicu.mo -@dirrm share/gnome/sounds/gnomeicu -@dirrm share/gnome/omf/gnomeicu -@dirrm share/gnome/help/gnomeicu/C -@dirrm share/gnome/help/gnomeicu -@dirrm share/gnome/gnomeicu/icons/reDubbed -@dirrm share/gnome/gnomeicu/icons/Gradients -@dirrm share/gnome/gnomeicu/icons/Eyeballs -@dirrm share/gnome/gnomeicu/icons/Default -@dirrm share/gnome/gnomeicu/icons -@dirrm share/gnome/gnomeicu/glade -@dirrm share/gnome/gnomeicu/emoticons/Yahoo -@dirrm share/gnome/gnomeicu/emoticons/MSN -@dirrm share/gnome/gnomeicu/emoticons/Default -@dirrm share/gnome/gnomeicu/emoticons/Always -@dirrm share/gnome/gnomeicu/emoticons/AIM -@dirrm share/gnome/gnomeicu/emoticons -@dirrm share/gnome/gnomeicu -@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnomeicu/icq/network -@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnomeicu/icq/color -@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnomeicu/icq -@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnomeicu/general/ui -@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnomeicu/general/themes -@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnomeicu/general/status -@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnomeicu/general/files -@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnomeicu/general/events -@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnomeicu/general/connections -@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnomeicu/general -@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnomeicu -@dirrm etc/gconf/gconf.xml.defaults/apps/gnomeicu/icq/network -@dirrm etc/gconf/gconf.xml.defaults/apps/gnomeicu/icq/color -@dirrm etc/gconf/gconf.xml.defaults/apps/gnomeicu/icq -@dirrm etc/gconf/gconf.xml.defaults/apps/gnomeicu/general/ui -@dirrm etc/gconf/gconf.xml.defaults/apps/gnomeicu/general/themes -@dirrm etc/gconf/gconf.xml.defaults/apps/gnomeicu/general/status -@dirrm etc/gconf/gconf.xml.defaults/apps/gnomeicu/general/files -@dirrm etc/gconf/gconf.xml.defaults/apps/gnomeicu/general/events -@dirrm etc/gconf/gconf.xml.defaults/apps/gnomeicu/general/connections -@dirrm etc/gconf/gconf.xml.defaults/apps/gnomeicu/general -@dirrm etc/gconf/gconf.xml.defaults/apps/gnomeicu -@unexec scrollkeeper-uninstall -q %D/share/gnome/omf/gnomeicu/gnomeicu-C.omf 2>/dev/null || /usr/bin/true diff --git a/net/haproxy-devel/Makefile b/net/haproxy-devel/Makefile deleted file mode 100644 index 8d0116ff012e..000000000000 --- a/net/haproxy-devel/Makefile +++ /dev/null @@ -1,44 +0,0 @@ -# New ports collection Makefile for: haproxy -# Date created: Apr 30, 2003 -# Whom: Clement Laforet -# -# $FreeBSD$ -# - -PORTNAME= haproxy -PORTVERSION= 1.1.21 -PORTREVISION= 0 -CATEGORIES= net www -MASTER_SITES= http://w.ods.org/tools/haproxy/ \ - http://w.ods.org/tools/haproxy/old/ - -MAINTAINER= sheepkiller@cultdeadsheep.org -COMMENT= High-performance and highly-robust TCP/HTTP load balancer - -STATS_INTERVAL?= 0 -REGEX_TYPE?= libc - -MAKE_ENV+= REGEX=${REGEX_TYPE} INTERVAL=${STATS_INTERVAL} - -.if defined(WITH_PCRE) -REGEX_TYPE= pcre -PKGNAMESUFFIX= -pcre -LIB_DEPENDS+= pcre.0:${PORTSDIR}/devel/pcre -.endif - -pre-fetch: - @${ECHO_MSG} "" - @${ECHO_MSG} "Available options:" - @${ECHO_MSG} "WITH_PCRE: Use pcre regex engine" - @${ECHO_MSG} "STATS_INTERVAL=###: Statistics interval in milliseconds," - @${ECHO_MSG} " (default to 0, disabled)" - @${ECHO_MSG} "" - -do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/haproxy ${PREFIX}/sbin - ${INSTALL_DATA} ${WRKSRC}/examples/haproxy.cfg \ - ${PREFIX}/etc/haproxy.cfg.sample - ${INSTALL_SCRIPT} ${FILESDIR}/haproxy.sh \ - ${PREFIX}/etc/rc.d/haproxy.sh.sample - -.include <bsd.port.mk> diff --git a/net/haproxy-devel/distinfo b/net/haproxy-devel/distinfo deleted file mode 100644 index 29d53b11d553..000000000000 --- a/net/haproxy-devel/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (haproxy-1.1.21.tar.gz) = 181d68471dd02c63c5a3dc65e9d6cdfe diff --git a/net/haproxy-devel/files/haproxy.sh b/net/haproxy-devel/files/haproxy.sh deleted file mode 100644 index e51b6a855662..000000000000 --- a/net/haproxy-devel/files/haproxy.sh +++ /dev/null @@ -1,22 +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/haproxy ] && \ - [ -r ${PREFIX}/etc/haproxy.cfg ] && \ - ${PREFIX}/sbin/haproxy -f ${PREFIX}/etc/haproxy.cfg && \ - echo -n ' haproxy' - - ;; - stop) - killall haproxy && echo -n ' haproxy' - ;; - *) - echo "Usage: `basename $0` {start|stop}" >&2 - ;; -esac diff --git a/net/haproxy-devel/files/patch-Makefile b/net/haproxy-devel/files/patch-Makefile deleted file mode 100644 index dba4715d5658..000000000000 --- a/net/haproxy-devel/files/patch-Makefile +++ /dev/null @@ -1,71 +0,0 @@ ---- Makefile.orig Tue May 6 00:11:59 2003 -+++ Makefile Tue Jun 3 16:22:55 2003 -@@ -1,22 +1,21 @@ - # Select target OS. TARGET must match a system for which COPTS and LIBS are - # correctly defined below. - # You can set it on make's command line. eg: make TARGET=solaris --TARGET = linux24 -+#TARGET = linux24 - #TARGET = linux22 - #TARGET = solaris - #TARGET = solarisv9 - #TARGET = openbsd -- --CC = gcc --LD = gcc -+TARGET = FreeBSD - - # By default, we use libc's regex. --REGEX=libc -+#REGEX=libc - #REGEX=pcre - - # This is the directory hosting include/pcre.h and lib/libpcre.* when REGEX=pcre --PCREDIR := $(shell pcre-config --prefix 2>/dev/null || :) -+#PCREDIR := $(shell pcre-config --prefix 2>/dev/null || :) - #PCREDIR=/usr/local -+PCREDIR=${LOCALBASE} - - # This is for Linux 2.4 with netfilter - COPTS.linux24 = -O2 -DNETFILTER -@@ -38,14 +37,17 @@ - COPTS.openbsd = -O2 - LIBS.openbsd = - -+COPTS.FreeBSD = -O2 -+LIBS.FreeBSD = -+ - COPTS.libc= - LIBS.libs= - - COPTS.pcre=-DUSE_PCRE -I$(PCREDIR)/include - LIBS.pcre=-L$(PCREDIR)/lib -lpcreposix -lpcre - --#DEBUG = --DEBUG = -g -+DEBUG = -+#DEBUG = -g - - COPTS=$(COPTS.$(TARGET)) $(COPTS.$(REGEX)) - LIBS=$(LIBS.$(TARGET)) $(LIBS.$(REGEX)) -@@ -53,16 +55,13 @@ - # - use -DSTATTIME=0 to disable statistics, else specify an interval in - # milliseconds. - # - use -DTPROXY to compile with transparent proxy support. --CFLAGS = -Wall $(COPTS) $(DEBUG) -DSTATTIME=0 -DTPROXY --LDFLAGS = -g -+CFLAGS+= -Wall $(COPTS) $(DEBUG) -DSTATTIME=$(INTERVAL) -+LDFLAGS+= - - all: haproxy - --haproxy: haproxy.o -- $(LD) $(LDFLAGS) -o $@ $^ $(LIBS) -- --%.o: %.c -- $(CC) $(CFLAGS) -c -o $@ $< -+haproxy: -+ $(CC) $(CFLAGS) haproxy.c $(LIBS) $(LDFLAGS) -o haproxy - - clean: - rm -f *.[oas] *~ core haproxy test nohup.out gmon.out diff --git a/net/haproxy-devel/pkg-descr b/net/haproxy-devel/pkg-descr deleted file mode 100644 index fa6780fd9794..000000000000 --- a/net/haproxy-devel/pkg-descr +++ /dev/null @@ -1,9 +0,0 @@ -HAproxy is a high-performance and highly-robust TCP/HTTP load balancer which -provides cookie-based persistence, automatic failover, header insertion, -deletion, modification on the fly, advanced logging contents to help trouble- -shooting buggy applications and/or networks, and a few other features. It uses -its own state machine to achieve up to ten thousands hits per second on modern -hardware, even with thousands simultaneous connections. It currently lacks SSL -and keep-alive, both of which are planned. - -WWW: http://w.ods.org/tools/haproxy/ diff --git a/net/haproxy-devel/pkg-plist b/net/haproxy-devel/pkg-plist deleted file mode 100644 index 06889061006d..000000000000 --- a/net/haproxy-devel/pkg-plist +++ /dev/null @@ -1,3 +0,0 @@ -sbin/haproxy -etc/haproxy.cfg.sample -etc/rc.d/haproxy.sh.sample diff --git a/net/hping/Makefile b/net/hping/Makefile deleted file mode 100644 index 4f69015871f3..000000000000 --- a/net/hping/Makefile +++ /dev/null @@ -1,36 +0,0 @@ -# New ports collection makefile for: hping -# Date Created: 5 Oct 2000 -# Whom: Roman Shterenzon <roman@xpert.com> -# -# $FreeBSD$ -# - -PORTNAME= hping -PORTVERSION= 2.0.0r2 -PORTREVISION= 2 -PORTEPOCH= 1 -CATEGORIES= security net -MASTER_SITES= http://www.hping.org/ -DISTNAME= hping2.0.0-rc2 - -MAINTAINER= ecu@ipv42.net -COMMENT= Network auditing tool - -WRKSRC= ${WRKDIR}/hping2-rc2 -GNU_CONFIGURE= yes -CONFIGURE_ARGS+= --force-libpcap -USE_GMAKE= yes - -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 56cc24b5e5cc..000000000000 --- a/net/hping/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (hping2.0.0-rc2.tar.gz) = f9ab1f84ec89f2a1c428988231d554b0 diff --git a/net/hping/files/patch-Makefile.in b/net/hping/files/patch-Makefile.in deleted file mode 100644 index 07e0dd9d3ddc..000000000000 --- a/net/hping/files/patch-Makefile.in +++ /dev/null @@ -1,13 +0,0 @@ ---- Makefile.in.orig Wed Aug 15 04:02:53 2001 -+++ Makefile.in Mon Nov 18 09:10:12 2002 -@@ -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= -Wall @CFLAGS@ @PCAP_INCLUDE@ - DEBUG= -g - #uncomment the following if you need libpcap based build under linux - #(not raccomanded) diff --git a/net/hping/files/patch-configure b/net/hping/files/patch-configure deleted file mode 100644 index b7dda57f7370..000000000000 --- a/net/hping/files/patch-configure +++ /dev/null @@ -1,10 +0,0 @@ ---- configure.orig Fri Sep 14 22:04:25 2001 -+++ configure Fri Sep 14 22:05:02 2001 -@@ -99,6 +99,7 @@ - -e "s^@PCAP_INCLUDE@^$PCAP_INCLUDE^g" \ - -e "s^@MANPATH@^$INSTALL_MANPATH^g" \ - -e "s^@SOLARISLIB@^$SOLARISLIB^g" \ -+ -e "s^@CFLAGS@^$CFLAGS^g" \ - <Makefile.in > Makefile - - # diff --git a/net/hping/files/patch-memlockall b/net/hping/files/patch-memlockall deleted file mode 100644 index e613a3f17a22..000000000000 --- a/net/hping/files/patch-memlockall +++ /dev/null @@ -1,11 +0,0 @@ ---- memlockall.c.orig Sun Nov 17 18:04:44 2002 -+++ memlockall.c Sun Nov 17 18:04:43 2002 -@@ -13,7 +13,7 @@ - - int memlockall(void) - { --#ifdef _POSIX_MEMLOCK -+#if _POSIX_MEMLOCK == 1 - return ( mlockall(MCL_CURRENT|MCL_FUTURE) ); - #endif - return (-1); diff --git a/net/hping/files/patch-memunlockall b/net/hping/files/patch-memunlockall deleted file mode 100644 index 4a67466433f7..000000000000 --- a/net/hping/files/patch-memunlockall +++ /dev/null @@ -1,11 +0,0 @@ ---- memunlockall.c.orig Sun Nov 17 18:04:44 2002 -+++ memunlockall.c Sun Nov 17 18:04:43 2002 -@@ -13,7 +13,7 @@ - - int memunlockall(void) - { --#ifdef _POSIX_MEMLOCK -+#if _POSIX_MEMLOCK == 1 - return ( munlockall() ); - #endif - return(-1); diff --git a/net/hping/files/patch-warnings b/net/hping/files/patch-warnings deleted file mode 100644 index 4ded8a219920..000000000000 --- a/net/hping/files/patch-warnings +++ /dev/null @@ -1,145 +0,0 @@ -*** datafiller.c.org Sun Mar 30 13:18:24 2003 ---- datafiller.c Sun Mar 30 13:20:22 2003 -*************** -*** 14,19 **** ---- 14,20 ---- - #include <sys/stat.h> - #include <fcntl.h> - #include <string.h> /* memset */ -+ #include <stdlib.h> - - #include "hping2.h" - #include "globals.h" - - -*** libpcap_stuff.c.org Sun Mar 30 13:19:42 2003 ---- libpcap_stuff.c Sun Mar 30 13:25:51 2003 -*************** -*** 17,22 **** ---- 17,23 ---- - #include <sys/ioctl.h> - #include <pcap.h> - #include <net/bpf.h> -+ #include <string.h> - - #include "globals.h" - - -*** listen.c.org Sun Mar 30 13:19:24 2003 ---- listen.c Sun Mar 30 13:24:31 2003 -*************** -*** 14,19 **** ---- 14,20 ---- - #include <sys/types.h> - #include <sys/socket.h> - #include <netinet/in.h> -+ #include <stdlib.h> - - #include "hping2.h" /* hping2.h includes hcmp.h */ - #include "globals.h" - - -*** resolve.c.org Sun Mar 30 13:18:51 2003 ---- resolve.c Sun Mar 30 13:22:02 2003 -*************** -*** 15,20 **** ---- 15,21 ---- - #include <sys/socket.h> - #include <netinet/in.h> - #include <arpa/inet.h> -+ #include <stdlib.h> - - void resolve (struct sockaddr * addr, char *hostname) - { - - -*** rtt.c.org Sun Mar 30 13:19:33 2003 ---- rtt.c Mon Mar 31 17:32:40 2003 -*************** -*** 72,82 **** - printf("\n\nSANITY CHECK in rtt.c FAILED!\n"); - printf("- seqnum = %d\n", *seqp); - printf("- status = %d\n", status); -! printf("- get_usec() = %ld\n", get_usec()); -! printf("- delaytable.usec = %ld\n", delaytable[tablepos].usec); -! printf("- usec_delay = %ld\n", usec_delay); -! printf("- time(NULL) = %ld\n", time(NULL)); -! printf("- delaytable.sec = %ld\n", delaytable[tablepos].sec); - printf("- sec_delay = %ld\n", sec_delay); - printf("- ms_delay = %f\n", *ms_delay); - printf("END SANITY CHECK REPORT\n\n"); ---- 72,83 ---- - printf("\n\nSANITY CHECK in rtt.c FAILED!\n"); - printf("- seqnum = %d\n", *seqp); - printf("- status = %d\n", status); -! /* time_t is __int32_t on i386 FreeBSD */ -! printf("- get_usec() = %ld\n", (long)get_usec()); -! printf("- delaytable.usec = %ld\n", (long)delaytable[tablepos].usec); -! printf("- usec_delay = %ld\n", (long)usec_delay); -! printf("- time(NULL) = %ld\n", (long)time(NULL)); -! printf("- delaytable.sec = %ld\n", (long)delaytable[tablepos].sec); - printf("- sec_delay = %ld\n", sec_delay); - printf("- ms_delay = %f\n", *ms_delay); - printf("END SANITY CHECK REPORT\n\n"); - - -*** statistics.c.org Sun Mar 30 13:19:02 2003 ---- statistics.c Sun Mar 30 13:22:18 2003 -*************** -*** 9,14 **** ---- 9,15 ---- - */ - - #include <stdio.h> -+ #include <stdlib.h> - - #include "hping2.h" - #include "globals.h" - - -*** version.c.org Sun Mar 30 13:19:17 2003 ---- version.c Sun Mar 30 13:23:17 2003 -*************** -*** 9,14 **** ---- 9,15 ---- - */ - - #include <stdio.h> -+ #include <stdlib.h> - - #include "release.h" - #include "hping2.h" - - -*** waitpacket.c.org Sun Mar 30 13:18:32 2003 ---- waitpacket.c Sun Mar 30 20:28:13 2003 -*************** -*** 13,18 **** ---- 13,19 ---- - #include <time.h> - #include <ctype.h> - #include <unistd.h> -+ #include <stdlib.h> - - #include "hping2.h" - #include "globals.h" - -*** waitpacket.c.org Sun Mar 30 13:18:32 2003 ---- waitpacket.c Sun Mar 30 20:28:13 2003 -*************** -*** 179,185 **** - (unsigned int) ntohl(icmp_tstamp.orig), - (unsigned int) ntohl(icmp_tstamp.recv), - (unsigned int) ntohl(icmp_tstamp.tran)); -! printf("ICMP timestamp RTT tsrtt=%lu\n\n", - (get_midnight_ut_ms() - ntohl(icmp_tstamp.orig))); - } - ---- 180,186 ---- - (unsigned int) ntohl(icmp_tstamp.orig), - (unsigned int) ntohl(icmp_tstamp.recv), - (unsigned int) ntohl(icmp_tstamp.tran)); -! printf("ICMP timestamp RTT tsrtt=%u\n\n", - (get_midnight_ut_ms() - ntohl(icmp_tstamp.orig))); - } - diff --git a/net/hping/pkg-descr b/net/hping/pkg-descr deleted file mode 100644 index d62dcd7dddbf..000000000000 --- a/net/hping/pkg-descr +++ /dev/null @@ -1,23 +0,0 @@ -hping is a command-line oriented TCP/IP packet assembler/analyzer. -The interface is inspired to the ping(8) unix command, but hping isn't -only able to send ICMP echo requests. It supports TCP, UDP, ICMP and -RAW-IP protocols, has a traceroute mode, the ability to send files -between a covered channel, and many other features. -While hping was mainly used as a security tool in the past, it can be -used in many ways by people that don't care about security to test -networks and hosts. A subset of the stuff you can do using hping: - - - 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. - -WWW: http://www.hping.org/ - --- Nicolas Jombart <ecu@ipv42.net> 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 4c071b20e263..000000000000 --- a/net/imm/Makefile +++ /dev/null @@ -1,43 +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 -COMMENT= Internet Image(or other data) Multicaster (and receiver) - -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-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/isc-dhcp3-server/Makefile b/net/isc-dhcp3-server/Makefile deleted file mode 100644 index 4bdee6352da3..000000000000 --- a/net/isc-dhcp3-server/Makefile +++ /dev/null @@ -1,175 +0,0 @@ -# ex:ts=8 -# Ports collection makefile for: dhcp -# Date created: 7 Mar 1996 -# Whom: se -# -# $FreeBSD$ -# - -PORTNAME= dhcp -PORTVERSION= 3.0.1.r12 -CATEGORIES= net -MASTER_SITES= ${MASTER_SITE_ISC} -MASTER_SITE_SUBDIR= dhcp dhcp/dhcp-3.0-history -PKGNAMEPREFIX= isc- -PKGNAMESUFFIX= 3 -DISTNAME= ${PORTNAME}-${RELEASE}${VERSION}${PATCHLEVEL} - -MAINTAINER= cyrille.lefevre@laposte.net -COMMENT= ISC Dynamic Host Configuration Protocol client and server code - -USE_REINPLACE= yes - -.include <bsd.port.pre.mk> - -# Global variables -# - -HAS_CONFIGURE= yes - -MAN1= omshell.1 -MAN3= dhcpctl.3 omapi.3 omshell.3 -MAN5= dhclient.conf.5 dhclient.leases.5 \ - dhcp-eval.5 dhcp-options.5 dhcpd.conf.5 \ - dhcpd.leases.5 -MAN8= dhclient.8 dhclient-script.8 dhcpd.8 dhcrelay.8 - -MSG_FILE= ${PKGDIR}/pkg-message -PKGMESSAGE= ${WRKDIR}/pkg-message - -# Local variables -# - -# for instance, possible versions are: -# 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 -# so, the magic things are: -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 - -BIN_FILES= dhclient dhcpd dhcrelay omshell -CONF_FILES= dhclient.conf -RC_FILES= isc-dhcpd isc-dhcrelay -DOC_FILES= ANONCVS CHANGES COPYRIGHT README RELNOTES -SAMP_FILES= client/dhclient.conf server/dhcpd.conf -DATA_FILES= dhclient.leases dhcpd.leases - -SAMP_SUFX= .sample - -CONF_DIR= ${PREFIX}/etc -RC_DIR= ${PREFIX}/etc/rc.d -DOCSDIR= ${PREFIX}/share/doc/${PKGBASE} -DATADIR= /var/db - -STRIP_CMD?= strip - -# Post-patch -# - -post-patch: patch-scripts patch-makefile-conf \ - patch-makefiles-dist patch-man-pages \ - patch-pkgmessage - -patch-scripts: - @${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|g' \ - ${WRKSRC}/client/scripts/freebsd - -patch-makefile-conf: - @${REINPLACE_CMD} -e 's|^DEBUG[ ]*=|# DEBUG ?=|g' \ - ${WRKSRC}/Makefile.conf - -patch-makefiles-dist: -.for subdir in ${PATCH_SUBDIRS} - @${REINPLACE_CMD} -e 's|^CFLAGS[ ]*=|CFLAGS +=|g' \ - ${WRKSRC}/${subdir}/Makefile.dist -.endfor - -# temporary hack - no patch file needed for this typo. -patch-man-pages: - @${REINPLACE_CMD} -e '/^\.Fd$$/d' ${WRKSRC}/dhcpctl/dhcpctl.3 - -patch-pkgmessage: - @${SED} 's|%%PREFIX%%|${PREFIX}|g;s|%%MAN1PREFIX%%|${MAN1PREFIX}|g' \ - ${MSG_FILE} > ${PKGMESSAGE} - -# Post-install -# - -post-install: strip-binary-files install-startup-files \ - install-doc-files install-sample-files \ - create-conf-files create-data-files \ - display-message - -strip-binary-files: -.for file in ${BIN_FILES} -.if exists(${PREFIX}/bin/${file}) - @${STRIP_CMD} ${PREFIX}/bin/${file} -.endif -.if exists(${PREFIX}/sbin/${file}) - @${STRIP_CMD} ${PREFIX}/sbin/${file} -.endif -.endfor - -install-startup-files: -.for file in ${RC_FILES} -.if exists(${FILESDIR}/rc.${file}.conf${SAMP_SUFX}) - @${INSTALL_DATA} ${FILESDIR}/rc.${file}.conf${SAMP_SUFX} ${CONF_DIR} -.if !exists(${CONF_DIR}/rc.${file}.conf) - @${INSTALL_DATA} ${FILESDIR}/rc.${file}.conf${SAMP_SUFX} \ - ${CONF_DIR}/rc.${file}.conf -.endif -.endif -.if exists(${FILESDIR}/${file}.sh${SAMP_SUFX}) - @${INSTALL_SCRIPT} ${FILESDIR}/${file}.sh${SAMP_SUFX} ${RC_DIR} -.endif -.endfor - -install-doc-files: -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} -.for file in ${DOC_FILES} - @${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR} -.endfor -.endif - -install-sample-files: -.for file in ${SAMP_FILES} - @${INSTALL_DATA} ${WRKSRC}/${file} ${CONF_DIR}/${file:T}${SAMP_SUFX} -.endfor - -create-conf-files: -.for file in ${CONF_FILES} -.if !exists(${CONF_DIR}/${file}) - @${TOUCH} ${CONF_DIR}/${file} -.endif -.endfor - -create-data-files: -.for file in ${DATA_FILES} -.if !exists(${DATADIR}/${file}) - @${TOUCH} ${DATADIR}/${file} -.endif -.endfor - -display-message: - @${ECHO_MSG} - @${CAT} ${PKGMESSAGE} - @${ECHO_MSG} - -.include <bsd.port.post.mk> diff --git a/net/isc-dhcp3-server/distinfo b/net/isc-dhcp3-server/distinfo deleted file mode 100644 index 8f17696d97cc..000000000000 --- a/net/isc-dhcp3-server/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (dhcp-3.0.1rc12.tar.gz) = cf00193dcf349c888a62e4462ae1eb9c -MD5 (dhcp3_3.0+3.0.1rc9-2.2.diff.gz) = 9d555df929ea70ef2b36f7455298a79f 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 17472ab3bb71..000000000000 --- a/net/isc-dhcp3-server/files/isc-dhcpd.sh.sample +++ /dev/null @@ -1,78 +0,0 @@ -#! /bin/sh -# -# $FreeBSD$ -# -# Start or stop isc-dhcpd. -# - -rc_file=${0##*/} -rc_arg=$1 - -# override these variables in ${PREFIX}/etc/rc.isc-dhcpd.conf -dhcpd_options= # command option(s) -dhcpd_ifaces= # ethernet interface(s) - -if ! PREFIX=$(expr $0 : "\(/.*\)/etc/rc\.d/${rc_file}\$"); then - echo "${rc_file}: Cannot determine PREFIX." >&2 - echo "Please use the complete pathname." >&2 - exit 64 -fi - -rcconf_dir=${PREFIX}/etc -rcconf_file=rc.${rc_file%.sh}.conf -rcconf_path=${rcconf_dir}/${rcconf_file} - -if [ -f ${rcconf_path} ]; then - . ${rcconf_path} -fi - -program_dir=${PREFIX}/sbin -program_file=dhcpd -program_path=${program_dir}/${program_file} - -config_dir=${PREFIX}/etc -config_file=${program_file}.conf -config_path=${config_dir}/${config_file} - -pid_dir=/var/run -pid_file=${program_file}.pid -pid_path=${pid_dir}/${pid_file} - -syslog_facility=daemon.err - -case "$rc_arg" in -start) - if [ ! -x ${program_path} ]; then - logger -sp ${syslog_facility} -t ${program_file} \ - "unable to start: ${program_path} is missing." - exit 72 - fi - if [ ! -f ${config_path} ]; then - logger -sp ${syslog_facility} -t ${program_file} \ - "unable to start: ${config_path} is missing." - exit 72 - fi - ${program_path} ${dhcpd_options} ${dhcpd_ifaces} && - echo -n " ${program_file}" - ;; -stop) - if [ -r ${pid_path} ]; then - kill $(cat ${pid_path}) 2> /dev/null - else - killall ${program_file} 2> /dev/null - fi - ;; -restart) - $0 stop - $0 start - ;; -status) - ps -auxww | egrep ${program_file} | egrep -v "($0|egrep)" - ;; -*) - echo "usage: ${rc_file} {start|stop|restart|status}" >&2 - exit 64 - ;; -esac - -exit 0 diff --git a/net/isc-dhcp3-server/files/isc-dhcrelay.sh.sample b/net/isc-dhcp3-server/files/isc-dhcrelay.sh.sample deleted file mode 100644 index de5f111d133c..000000000000 --- a/net/isc-dhcp3-server/files/isc-dhcrelay.sh.sample +++ /dev/null @@ -1,78 +0,0 @@ -#! /bin/sh -# -# $FreeBSD$ -# -# Start or stop isc-dhcrelay. -# - -rc_file=${0##*/} -rc_arg=$1 - -# override these variables in ${PREFIX}/etc/rc.isc-dhcrelay.conf -dhcrelay_options= # command option(s) -dhcrelay_ifaces= # ethernet interface(s) -dhcrelay_servers= # dhcpd server(s) - -if ! PREFIX=$(expr $0 : "\(/.*\)/etc/rc\.d/${rc_file}\$"); then - echo "${rc_file}: Cannot determine PREFIX." >&2 - echo "Please use the complete pathname." >&2 - exit 64 -fi - -rcconf_dir=${PREFIX}/etc -rcconf_file=rc.${rc_file%.sh}.conf -rcconf_path=${rcconf_dir}/${rcconf_file} - -if [ -f ${rcconf_path} ]; then - . ${rcconf_path} -fi - -program_dir=${PREFIX}/sbin -program_file=dhcrelay -program_path=${program_dir}/${program_file} - -pid_dir=/var/run -pid_file=${program_file}.pid -pid_path=${pid_dir}/${pid_file} - -syslog_facility=daemon.err - -case "$rc_arg" in -start) - if [ ! -x ${program_path} ]; then - logger -sp ${syslog_facility} -t ${program_file} \ - "unable to start: ${program_path} is missing." - exit 72 - fi - if [ -z "${dhcrelay_servers}" ]; then - logger -sp ${syslog_facility} -t ${program_file} \ - "unable to start: no dhcpd server(s) configured." - exit 64 - fi - ifaces= - for iface in ${dhcrelay_ifaces}; do - ifaces="$ifaces -i $iface" - done - ${program_path} ${dhcrelay_options} ${ifaces} ${dhcrelay_servers} && - echo -n " ${program_file}" - ;; -stop) - if [ -r ${pid_path} ]; then - kill $(cat ${pid_path}) 2> /dev/null - else - killall ${program_file} 2> /dev/null - fi - ;; -restart) - $0 stop - $0 start - ;; -status) - ps -auxww | egrep ${program_file} | egrep -v "($0|egrep)" - ;; -*) - echo "usage: ${rc_file} {start|stop|restart|status}" >&2 - ;; -esac - -exit 0 diff --git a/net/isc-dhcp3-server/files/patch-dhcpd.conf b/net/isc-dhcp3-server/files/patch-dhcpd.conf deleted file mode 100644 index 030e89874d8d..000000000000 --- a/net/isc-dhcp3-server/files/patch-dhcpd.conf +++ /dev/null @@ -1,12 +0,0 @@ ---- server/dhcpd.conf.orig Thu Jan 25 03:33:11 2001 -+++ server/dhcpd.conf Wed Jan 30 22:06:52 2002 -@@ -14,6 +14,9 @@ - # network, the authoritative directive should be uncommented. - #authoritative; - -+# ad-hoc DNS update scheme - set to "none" to disable dynamic DNS updates. -+ddns-update-style ad-hoc; -+ - # Use this to send dhcp log messages to a different log file (you also - # have to hack syslog.conf to complete the redirection). - log-facility local7; diff --git a/net/isc-dhcp3-server/files/patch-freebsd b/net/isc-dhcp3-server/files/patch-freebsd deleted file mode 100644 index 61a0e0c093a8..000000000000 --- a/net/isc-dhcp3-server/files/patch-freebsd +++ /dev/null @@ -1,38 +0,0 @@ ---- client/scripts/freebsd.orig Tue Feb 19 17:59:35 2002 -+++ client/scripts/freebsd Mon Apr 15 15:31:21 2002 -@@ -20,17 +20,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 -@@ -39,11 +39,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 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 65f79b6a7550..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=\"$(VARRUN)/dhclient.pid\" diff --git a/net/isc-dhcp3-server/files/rc.isc-dhcpd.conf.sample b/net/isc-dhcp3-server/files/rc.isc-dhcpd.conf.sample deleted file mode 100644 index edfe4bd7dc50..000000000000 --- a/net/isc-dhcp3-server/files/rc.isc-dhcpd.conf.sample +++ /dev/null @@ -1,7 +0,0 @@ -# $FreeBSD$ -# -# isc-dhcpd startup configuration file. -# - -dhcpd_options= # command option(s) -dhcpd_ifaces= # ethernet interface(s) diff --git a/net/isc-dhcp3-server/files/rc.isc-dhcrelay.conf.sample b/net/isc-dhcp3-server/files/rc.isc-dhcrelay.conf.sample deleted file mode 100644 index b647c62f6137..000000000000 --- a/net/isc-dhcp3-server/files/rc.isc-dhcrelay.conf.sample +++ /dev/null @@ -1,8 +0,0 @@ -# $FreeBSD$ -# -# isc-dhcrelay startup configuration file. -# - -dhcrelay_options= # command option(s) -dhcrelay_ifaces= # ethernet interface(s) -dhcrelay_servers= # dhcpd server(s) 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-message b/net/isc-dhcp3-server/pkg-message deleted file mode 100644 index 412bb440a02f..000000000000 --- a/net/isc-dhcp3-server/pkg-message +++ /dev/null @@ -1,23 +0,0 @@ -**** To setup dhclient, you may need to edit /etc/rc.conf to replace the - base system dhclient, such as : - dhcp_program="%%PREFIX%%/sbin/dhclient" - dhcp_flags="-q" - See dhclient(8), using the following command, for details about other - possible options: - MANPATH=%%MAN1PREFIX%%/man man 8 dhclient - -**** To setup dhcpd, you may have to copy %%PREFIX%%/etc/dhcpd.conf.sample - to %%PREFIX%%/etc/dhcpd.conf for editing. You also have to rename - %%PREFIX%%/etc/rc.d/isc-dhcpd.sh.sample to %%PREFIX%%/etc/rc.d/isc-\ - dhcpd.sh to enable automatic startup. - %%PREFIX%%/etc/rc.isc-dhcpd.conf may be edited to tune some startup - variables such as `dhcpd_options' or `dhcpd_ifaces', both defaulted - to `nothing'. See dhcpd(8) for details about possible options. - -**** To setup dhcrelay, you have to rename %%PREFIX%%/etc/rc.d/isc-\ - dhcrelay.sh.sample to %%PREFIX%%/etc/rc.d/isc-dhcrelay.sh to - enable automatic startup. - %%PREFIX%%/etc/rc.isc-dhcrelay.conf may need to be edited to setup - the `dhcrelay_servers' as required. If needed, you may also tune - `dhcrelay_options' and `dhcrelay_ifaces', both defaulted to `nothing'. - See dhcrelay(8) for details about possible options. diff --git a/net/isc-dhcp3-server/pkg-plist b/net/isc-dhcp3-server/pkg-plist deleted file mode 100644 index e23d06935e9a..000000000000 --- a/net/isc-dhcp3-server/pkg-plist +++ /dev/null @@ -1,45 +0,0 @@ -@comment $FreeBSD$ -bin/omshell -etc/dhclient.conf.sample -@exec [ -f %D/etc/dhclient.conf ] || touch %D/etc/dhclient.conf -@unexec [ -L %D/etc/dhclient.conf -o -s %D/etc/dhclient.conf ] || rm -f %D/etc/dhclient.conf -etc/dhcpd.conf.sample -@unexec if cmp -s %D/etc/rc.isc-dhcpd.conf %D/etc/rc.isc-dhcpd.conf.sample; then rm -f %D/etc/rc.isc-dhcpd.conf; fi -etc/rc.isc-dhcpd.conf.sample -@exec [ -f %D/etc/rc.isc-dhcpd.conf ] || cp %D/etc/rc.isc-dhcpd.conf.sample %D/etc/rc.isc-dhcpd.conf -@unexec if cmp -s %D/etc/rc.isc-dhcrelay.conf %D/etc/rc.isc-dhcrelay.conf.sample; then rm -f %D/etc/rc.isc-dhcrelay.conf; fi -etc/rc.isc-dhcrelay.conf.sample -@exec [ -f %D/etc/rc.isc-dhcrelay.conf ] || cp %D/etc/rc.isc-dhcrelay.conf.sample %D/etc/rc.isc-dhcrelay.conf -etc/rc.d/isc-dhcpd.sh.sample -@unexec rm -f etc/rc.d/isc-dhcpd.sh -etc/rc.d/isc-dhcrelay.sh.sample -@unexec rm -f etc/rc.d/isc-dhcrelay.sh -include/dhcpctl.h -include/isc-dhcp/boolean.h -include/isc-dhcp/dst.h -include/isc-dhcp/int.h -include/isc-dhcp/lang.h -include/isc-dhcp/list.h -include/isc-dhcp/result.h -include/isc-dhcp/types.h -include/omapip/alloc.h -include/omapip/buffer.h -include/omapip/omapip.h -lib/libdhcpctl.a -lib/libomapi.a -sbin/dhclient -sbin/dhclient-script -sbin/dhcpd -sbin/dhcrelay -%%PORTDOCS%%%%DOCSDIR%%/ANONCVS -%%PORTDOCS%%%%DOCSDIR%%/CHANGES -%%PORTDOCS%%%%DOCSDIR%%/COPYRIGHT -%%PORTDOCS%%%%DOCSDIR%%/README -%%PORTDOCS%%%%DOCSDIR%%/RELNOTES -%%PORTDOCS%%@dirrm %%DOCSDIR%% -@dirrm include/omapip -@dirrm include/isc-dhcp -@exec [ -f /var/db/dhclient.leases ] || touch /var/db/dhclient.leases -@unexec [ -s /var/db/dhclient.leases ] || rm -f /var/db/dhclient.leases -@exec [ -f /var/db/dhcpd.leases ] || touch /var/db/dhcpd.leases -@unexec [ -s /var/db/dhcpd.leases ] || rm -f /var/db/dhcpd.leases diff --git a/net/isc-dhcp30-server/Makefile b/net/isc-dhcp30-server/Makefile deleted file mode 100644 index 4bdee6352da3..000000000000 --- a/net/isc-dhcp30-server/Makefile +++ /dev/null @@ -1,175 +0,0 @@ -# ex:ts=8 -# Ports collection makefile for: dhcp -# Date created: 7 Mar 1996 -# Whom: se -# -# $FreeBSD$ -# - -PORTNAME= dhcp -PORTVERSION= 3.0.1.r12 -CATEGORIES= net -MASTER_SITES= ${MASTER_SITE_ISC} -MASTER_SITE_SUBDIR= dhcp dhcp/dhcp-3.0-history -PKGNAMEPREFIX= isc- -PKGNAMESUFFIX= 3 -DISTNAME= ${PORTNAME}-${RELEASE}${VERSION}${PATCHLEVEL} - -MAINTAINER= cyrille.lefevre@laposte.net -COMMENT= ISC Dynamic Host Configuration Protocol client and server code - -USE_REINPLACE= yes - -.include <bsd.port.pre.mk> - -# Global variables -# - -HAS_CONFIGURE= yes - -MAN1= omshell.1 -MAN3= dhcpctl.3 omapi.3 omshell.3 -MAN5= dhclient.conf.5 dhclient.leases.5 \ - dhcp-eval.5 dhcp-options.5 dhcpd.conf.5 \ - dhcpd.leases.5 -MAN8= dhclient.8 dhclient-script.8 dhcpd.8 dhcrelay.8 - -MSG_FILE= ${PKGDIR}/pkg-message -PKGMESSAGE= ${WRKDIR}/pkg-message - -# Local variables -# - -# for instance, possible versions are: -# 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 -# so, the magic things are: -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 - -BIN_FILES= dhclient dhcpd dhcrelay omshell -CONF_FILES= dhclient.conf -RC_FILES= isc-dhcpd isc-dhcrelay -DOC_FILES= ANONCVS CHANGES COPYRIGHT README RELNOTES -SAMP_FILES= client/dhclient.conf server/dhcpd.conf -DATA_FILES= dhclient.leases dhcpd.leases - -SAMP_SUFX= .sample - -CONF_DIR= ${PREFIX}/etc -RC_DIR= ${PREFIX}/etc/rc.d -DOCSDIR= ${PREFIX}/share/doc/${PKGBASE} -DATADIR= /var/db - -STRIP_CMD?= strip - -# Post-patch -# - -post-patch: patch-scripts patch-makefile-conf \ - patch-makefiles-dist patch-man-pages \ - patch-pkgmessage - -patch-scripts: - @${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|g' \ - ${WRKSRC}/client/scripts/freebsd - -patch-makefile-conf: - @${REINPLACE_CMD} -e 's|^DEBUG[ ]*=|# DEBUG ?=|g' \ - ${WRKSRC}/Makefile.conf - -patch-makefiles-dist: -.for subdir in ${PATCH_SUBDIRS} - @${REINPLACE_CMD} -e 's|^CFLAGS[ ]*=|CFLAGS +=|g' \ - ${WRKSRC}/${subdir}/Makefile.dist -.endfor - -# temporary hack - no patch file needed for this typo. -patch-man-pages: - @${REINPLACE_CMD} -e '/^\.Fd$$/d' ${WRKSRC}/dhcpctl/dhcpctl.3 - -patch-pkgmessage: - @${SED} 's|%%PREFIX%%|${PREFIX}|g;s|%%MAN1PREFIX%%|${MAN1PREFIX}|g' \ - ${MSG_FILE} > ${PKGMESSAGE} - -# Post-install -# - -post-install: strip-binary-files install-startup-files \ - install-doc-files install-sample-files \ - create-conf-files create-data-files \ - display-message - -strip-binary-files: -.for file in ${BIN_FILES} -.if exists(${PREFIX}/bin/${file}) - @${STRIP_CMD} ${PREFIX}/bin/${file} -.endif -.if exists(${PREFIX}/sbin/${file}) - @${STRIP_CMD} ${PREFIX}/sbin/${file} -.endif -.endfor - -install-startup-files: -.for file in ${RC_FILES} -.if exists(${FILESDIR}/rc.${file}.conf${SAMP_SUFX}) - @${INSTALL_DATA} ${FILESDIR}/rc.${file}.conf${SAMP_SUFX} ${CONF_DIR} -.if !exists(${CONF_DIR}/rc.${file}.conf) - @${INSTALL_DATA} ${FILESDIR}/rc.${file}.conf${SAMP_SUFX} \ - ${CONF_DIR}/rc.${file}.conf -.endif -.endif -.if exists(${FILESDIR}/${file}.sh${SAMP_SUFX}) - @${INSTALL_SCRIPT} ${FILESDIR}/${file}.sh${SAMP_SUFX} ${RC_DIR} -.endif -.endfor - -install-doc-files: -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} -.for file in ${DOC_FILES} - @${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR} -.endfor -.endif - -install-sample-files: -.for file in ${SAMP_FILES} - @${INSTALL_DATA} ${WRKSRC}/${file} ${CONF_DIR}/${file:T}${SAMP_SUFX} -.endfor - -create-conf-files: -.for file in ${CONF_FILES} -.if !exists(${CONF_DIR}/${file}) - @${TOUCH} ${CONF_DIR}/${file} -.endif -.endfor - -create-data-files: -.for file in ${DATA_FILES} -.if !exists(${DATADIR}/${file}) - @${TOUCH} ${DATADIR}/${file} -.endif -.endfor - -display-message: - @${ECHO_MSG} - @${CAT} ${PKGMESSAGE} - @${ECHO_MSG} - -.include <bsd.port.post.mk> diff --git a/net/isc-dhcp30-server/distinfo b/net/isc-dhcp30-server/distinfo deleted file mode 100644 index 8f17696d97cc..000000000000 --- a/net/isc-dhcp30-server/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (dhcp-3.0.1rc12.tar.gz) = cf00193dcf349c888a62e4462ae1eb9c -MD5 (dhcp3_3.0+3.0.1rc9-2.2.diff.gz) = 9d555df929ea70ef2b36f7455298a79f 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 17472ab3bb71..000000000000 --- a/net/isc-dhcp30-server/files/isc-dhcpd.sh.sample +++ /dev/null @@ -1,78 +0,0 @@ -#! /bin/sh -# -# $FreeBSD$ -# -# Start or stop isc-dhcpd. -# - -rc_file=${0##*/} -rc_arg=$1 - -# override these variables in ${PREFIX}/etc/rc.isc-dhcpd.conf -dhcpd_options= # command option(s) -dhcpd_ifaces= # ethernet interface(s) - -if ! PREFIX=$(expr $0 : "\(/.*\)/etc/rc\.d/${rc_file}\$"); then - echo "${rc_file}: Cannot determine PREFIX." >&2 - echo "Please use the complete pathname." >&2 - exit 64 -fi - -rcconf_dir=${PREFIX}/etc -rcconf_file=rc.${rc_file%.sh}.conf -rcconf_path=${rcconf_dir}/${rcconf_file} - -if [ -f ${rcconf_path} ]; then - . ${rcconf_path} -fi - -program_dir=${PREFIX}/sbin -program_file=dhcpd -program_path=${program_dir}/${program_file} - -config_dir=${PREFIX}/etc -config_file=${program_file}.conf -config_path=${config_dir}/${config_file} - -pid_dir=/var/run -pid_file=${program_file}.pid -pid_path=${pid_dir}/${pid_file} - -syslog_facility=daemon.err - -case "$rc_arg" in -start) - if [ ! -x ${program_path} ]; then - logger -sp ${syslog_facility} -t ${program_file} \ - "unable to start: ${program_path} is missing." - exit 72 - fi - if [ ! -f ${config_path} ]; then - logger -sp ${syslog_facility} -t ${program_file} \ - "unable to start: ${config_path} is missing." - exit 72 - fi - ${program_path} ${dhcpd_options} ${dhcpd_ifaces} && - echo -n " ${program_file}" - ;; -stop) - if [ -r ${pid_path} ]; then - kill $(cat ${pid_path}) 2> /dev/null - else - killall ${program_file} 2> /dev/null - fi - ;; -restart) - $0 stop - $0 start - ;; -status) - ps -auxww | egrep ${program_file} | egrep -v "($0|egrep)" - ;; -*) - echo "usage: ${rc_file} {start|stop|restart|status}" >&2 - exit 64 - ;; -esac - -exit 0 diff --git a/net/isc-dhcp30-server/files/isc-dhcrelay.sh.sample b/net/isc-dhcp30-server/files/isc-dhcrelay.sh.sample deleted file mode 100644 index de5f111d133c..000000000000 --- a/net/isc-dhcp30-server/files/isc-dhcrelay.sh.sample +++ /dev/null @@ -1,78 +0,0 @@ -#! /bin/sh -# -# $FreeBSD$ -# -# Start or stop isc-dhcrelay. -# - -rc_file=${0##*/} -rc_arg=$1 - -# override these variables in ${PREFIX}/etc/rc.isc-dhcrelay.conf -dhcrelay_options= # command option(s) -dhcrelay_ifaces= # ethernet interface(s) -dhcrelay_servers= # dhcpd server(s) - -if ! PREFIX=$(expr $0 : "\(/.*\)/etc/rc\.d/${rc_file}\$"); then - echo "${rc_file}: Cannot determine PREFIX." >&2 - echo "Please use the complete pathname." >&2 - exit 64 -fi - -rcconf_dir=${PREFIX}/etc -rcconf_file=rc.${rc_file%.sh}.conf -rcconf_path=${rcconf_dir}/${rcconf_file} - -if [ -f ${rcconf_path} ]; then - . ${rcconf_path} -fi - -program_dir=${PREFIX}/sbin -program_file=dhcrelay -program_path=${program_dir}/${program_file} - -pid_dir=/var/run -pid_file=${program_file}.pid -pid_path=${pid_dir}/${pid_file} - -syslog_facility=daemon.err - -case "$rc_arg" in -start) - if [ ! -x ${program_path} ]; then - logger -sp ${syslog_facility} -t ${program_file} \ - "unable to start: ${program_path} is missing." - exit 72 - fi - if [ -z "${dhcrelay_servers}" ]; then - logger -sp ${syslog_facility} -t ${program_file} \ - "unable to start: no dhcpd server(s) configured." - exit 64 - fi - ifaces= - for iface in ${dhcrelay_ifaces}; do - ifaces="$ifaces -i $iface" - done - ${program_path} ${dhcrelay_options} ${ifaces} ${dhcrelay_servers} && - echo -n " ${program_file}" - ;; -stop) - if [ -r ${pid_path} ]; then - kill $(cat ${pid_path}) 2> /dev/null - else - killall ${program_file} 2> /dev/null - fi - ;; -restart) - $0 stop - $0 start - ;; -status) - ps -auxww | egrep ${program_file} | egrep -v "($0|egrep)" - ;; -*) - echo "usage: ${rc_file} {start|stop|restart|status}" >&2 - ;; -esac - -exit 0 diff --git a/net/isc-dhcp30-server/files/patch-dhcpd.conf b/net/isc-dhcp30-server/files/patch-dhcpd.conf deleted file mode 100644 index 030e89874d8d..000000000000 --- a/net/isc-dhcp30-server/files/patch-dhcpd.conf +++ /dev/null @@ -1,12 +0,0 @@ ---- server/dhcpd.conf.orig Thu Jan 25 03:33:11 2001 -+++ server/dhcpd.conf Wed Jan 30 22:06:52 2002 -@@ -14,6 +14,9 @@ - # network, the authoritative directive should be uncommented. - #authoritative; - -+# ad-hoc DNS update scheme - set to "none" to disable dynamic DNS updates. -+ddns-update-style ad-hoc; -+ - # Use this to send dhcp log messages to a different log file (you also - # have to hack syslog.conf to complete the redirection). - log-facility local7; diff --git a/net/isc-dhcp30-server/files/patch-freebsd b/net/isc-dhcp30-server/files/patch-freebsd deleted file mode 100644 index 61a0e0c093a8..000000000000 --- a/net/isc-dhcp30-server/files/patch-freebsd +++ /dev/null @@ -1,38 +0,0 @@ ---- client/scripts/freebsd.orig Tue Feb 19 17:59:35 2002 -+++ client/scripts/freebsd Mon Apr 15 15:31:21 2002 -@@ -20,17 +20,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 -@@ -39,11 +39,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 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 65f79b6a7550..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=\"$(VARRUN)/dhclient.pid\" diff --git a/net/isc-dhcp30-server/files/rc.isc-dhcpd.conf.sample b/net/isc-dhcp30-server/files/rc.isc-dhcpd.conf.sample deleted file mode 100644 index edfe4bd7dc50..000000000000 --- a/net/isc-dhcp30-server/files/rc.isc-dhcpd.conf.sample +++ /dev/null @@ -1,7 +0,0 @@ -# $FreeBSD$ -# -# isc-dhcpd startup configuration file. -# - -dhcpd_options= # command option(s) -dhcpd_ifaces= # ethernet interface(s) diff --git a/net/isc-dhcp30-server/files/rc.isc-dhcrelay.conf.sample b/net/isc-dhcp30-server/files/rc.isc-dhcrelay.conf.sample deleted file mode 100644 index b647c62f6137..000000000000 --- a/net/isc-dhcp30-server/files/rc.isc-dhcrelay.conf.sample +++ /dev/null @@ -1,8 +0,0 @@ -# $FreeBSD$ -# -# isc-dhcrelay startup configuration file. -# - -dhcrelay_options= # command option(s) -dhcrelay_ifaces= # ethernet interface(s) -dhcrelay_servers= # dhcpd server(s) 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-message b/net/isc-dhcp30-server/pkg-message deleted file mode 100644 index 412bb440a02f..000000000000 --- a/net/isc-dhcp30-server/pkg-message +++ /dev/null @@ -1,23 +0,0 @@ -**** To setup dhclient, you may need to edit /etc/rc.conf to replace the - base system dhclient, such as : - dhcp_program="%%PREFIX%%/sbin/dhclient" - dhcp_flags="-q" - See dhclient(8), using the following command, for details about other - possible options: - MANPATH=%%MAN1PREFIX%%/man man 8 dhclient - -**** To setup dhcpd, you may have to copy %%PREFIX%%/etc/dhcpd.conf.sample - to %%PREFIX%%/etc/dhcpd.conf for editing. You also have to rename - %%PREFIX%%/etc/rc.d/isc-dhcpd.sh.sample to %%PREFIX%%/etc/rc.d/isc-\ - dhcpd.sh to enable automatic startup. - %%PREFIX%%/etc/rc.isc-dhcpd.conf may be edited to tune some startup - variables such as `dhcpd_options' or `dhcpd_ifaces', both defaulted - to `nothing'. See dhcpd(8) for details about possible options. - -**** To setup dhcrelay, you have to rename %%PREFIX%%/etc/rc.d/isc-\ - dhcrelay.sh.sample to %%PREFIX%%/etc/rc.d/isc-dhcrelay.sh to - enable automatic startup. - %%PREFIX%%/etc/rc.isc-dhcrelay.conf may need to be edited to setup - the `dhcrelay_servers' as required. If needed, you may also tune - `dhcrelay_options' and `dhcrelay_ifaces', both defaulted to `nothing'. - See dhcrelay(8) for details about possible options. diff --git a/net/isc-dhcp30-server/pkg-plist b/net/isc-dhcp30-server/pkg-plist deleted file mode 100644 index e23d06935e9a..000000000000 --- a/net/isc-dhcp30-server/pkg-plist +++ /dev/null @@ -1,45 +0,0 @@ -@comment $FreeBSD$ -bin/omshell -etc/dhclient.conf.sample -@exec [ -f %D/etc/dhclient.conf ] || touch %D/etc/dhclient.conf -@unexec [ -L %D/etc/dhclient.conf -o -s %D/etc/dhclient.conf ] || rm -f %D/etc/dhclient.conf -etc/dhcpd.conf.sample -@unexec if cmp -s %D/etc/rc.isc-dhcpd.conf %D/etc/rc.isc-dhcpd.conf.sample; then rm -f %D/etc/rc.isc-dhcpd.conf; fi -etc/rc.isc-dhcpd.conf.sample -@exec [ -f %D/etc/rc.isc-dhcpd.conf ] || cp %D/etc/rc.isc-dhcpd.conf.sample %D/etc/rc.isc-dhcpd.conf -@unexec if cmp -s %D/etc/rc.isc-dhcrelay.conf %D/etc/rc.isc-dhcrelay.conf.sample; then rm -f %D/etc/rc.isc-dhcrelay.conf; fi -etc/rc.isc-dhcrelay.conf.sample -@exec [ -f %D/etc/rc.isc-dhcrelay.conf ] || cp %D/etc/rc.isc-dhcrelay.conf.sample %D/etc/rc.isc-dhcrelay.conf -etc/rc.d/isc-dhcpd.sh.sample -@unexec rm -f etc/rc.d/isc-dhcpd.sh -etc/rc.d/isc-dhcrelay.sh.sample -@unexec rm -f etc/rc.d/isc-dhcrelay.sh -include/dhcpctl.h -include/isc-dhcp/boolean.h -include/isc-dhcp/dst.h -include/isc-dhcp/int.h -include/isc-dhcp/lang.h -include/isc-dhcp/list.h -include/isc-dhcp/result.h -include/isc-dhcp/types.h -include/omapip/alloc.h -include/omapip/buffer.h -include/omapip/omapip.h -lib/libdhcpctl.a -lib/libomapi.a -sbin/dhclient -sbin/dhclient-script -sbin/dhcpd -sbin/dhcrelay -%%PORTDOCS%%%%DOCSDIR%%/ANONCVS -%%PORTDOCS%%%%DOCSDIR%%/CHANGES -%%PORTDOCS%%%%DOCSDIR%%/COPYRIGHT -%%PORTDOCS%%%%DOCSDIR%%/README -%%PORTDOCS%%%%DOCSDIR%%/RELNOTES -%%PORTDOCS%%@dirrm %%DOCSDIR%% -@dirrm include/omapip -@dirrm include/isc-dhcp -@exec [ -f /var/db/dhclient.leases ] || touch /var/db/dhclient.leases -@unexec [ -s /var/db/dhclient.leases ] || rm -f /var/db/dhclient.leases -@exec [ -f /var/db/dhcpd.leases ] || touch /var/db/dhcpd.leases -@unexec [ -s /var/db/dhcpd.leases ] || rm -f /var/db/dhcpd.leases diff --git a/net/isc-dhcp31-server/Makefile b/net/isc-dhcp31-server/Makefile deleted file mode 100644 index 4bdee6352da3..000000000000 --- a/net/isc-dhcp31-server/Makefile +++ /dev/null @@ -1,175 +0,0 @@ -# ex:ts=8 -# Ports collection makefile for: dhcp -# Date created: 7 Mar 1996 -# Whom: se -# -# $FreeBSD$ -# - -PORTNAME= dhcp -PORTVERSION= 3.0.1.r12 -CATEGORIES= net -MASTER_SITES= ${MASTER_SITE_ISC} -MASTER_SITE_SUBDIR= dhcp dhcp/dhcp-3.0-history -PKGNAMEPREFIX= isc- -PKGNAMESUFFIX= 3 -DISTNAME= ${PORTNAME}-${RELEASE}${VERSION}${PATCHLEVEL} - -MAINTAINER= cyrille.lefevre@laposte.net -COMMENT= ISC Dynamic Host Configuration Protocol client and server code - -USE_REINPLACE= yes - -.include <bsd.port.pre.mk> - -# Global variables -# - -HAS_CONFIGURE= yes - -MAN1= omshell.1 -MAN3= dhcpctl.3 omapi.3 omshell.3 -MAN5= dhclient.conf.5 dhclient.leases.5 \ - dhcp-eval.5 dhcp-options.5 dhcpd.conf.5 \ - dhcpd.leases.5 -MAN8= dhclient.8 dhclient-script.8 dhcpd.8 dhcrelay.8 - -MSG_FILE= ${PKGDIR}/pkg-message -PKGMESSAGE= ${WRKDIR}/pkg-message - -# Local variables -# - -# for instance, possible versions are: -# 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 -# so, the magic things are: -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 - -BIN_FILES= dhclient dhcpd dhcrelay omshell -CONF_FILES= dhclient.conf -RC_FILES= isc-dhcpd isc-dhcrelay -DOC_FILES= ANONCVS CHANGES COPYRIGHT README RELNOTES -SAMP_FILES= client/dhclient.conf server/dhcpd.conf -DATA_FILES= dhclient.leases dhcpd.leases - -SAMP_SUFX= .sample - -CONF_DIR= ${PREFIX}/etc -RC_DIR= ${PREFIX}/etc/rc.d -DOCSDIR= ${PREFIX}/share/doc/${PKGBASE} -DATADIR= /var/db - -STRIP_CMD?= strip - -# Post-patch -# - -post-patch: patch-scripts patch-makefile-conf \ - patch-makefiles-dist patch-man-pages \ - patch-pkgmessage - -patch-scripts: - @${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|g' \ - ${WRKSRC}/client/scripts/freebsd - -patch-makefile-conf: - @${REINPLACE_CMD} -e 's|^DEBUG[ ]*=|# DEBUG ?=|g' \ - ${WRKSRC}/Makefile.conf - -patch-makefiles-dist: -.for subdir in ${PATCH_SUBDIRS} - @${REINPLACE_CMD} -e 's|^CFLAGS[ ]*=|CFLAGS +=|g' \ - ${WRKSRC}/${subdir}/Makefile.dist -.endfor - -# temporary hack - no patch file needed for this typo. -patch-man-pages: - @${REINPLACE_CMD} -e '/^\.Fd$$/d' ${WRKSRC}/dhcpctl/dhcpctl.3 - -patch-pkgmessage: - @${SED} 's|%%PREFIX%%|${PREFIX}|g;s|%%MAN1PREFIX%%|${MAN1PREFIX}|g' \ - ${MSG_FILE} > ${PKGMESSAGE} - -# Post-install -# - -post-install: strip-binary-files install-startup-files \ - install-doc-files install-sample-files \ - create-conf-files create-data-files \ - display-message - -strip-binary-files: -.for file in ${BIN_FILES} -.if exists(${PREFIX}/bin/${file}) - @${STRIP_CMD} ${PREFIX}/bin/${file} -.endif -.if exists(${PREFIX}/sbin/${file}) - @${STRIP_CMD} ${PREFIX}/sbin/${file} -.endif -.endfor - -install-startup-files: -.for file in ${RC_FILES} -.if exists(${FILESDIR}/rc.${file}.conf${SAMP_SUFX}) - @${INSTALL_DATA} ${FILESDIR}/rc.${file}.conf${SAMP_SUFX} ${CONF_DIR} -.if !exists(${CONF_DIR}/rc.${file}.conf) - @${INSTALL_DATA} ${FILESDIR}/rc.${file}.conf${SAMP_SUFX} \ - ${CONF_DIR}/rc.${file}.conf -.endif -.endif -.if exists(${FILESDIR}/${file}.sh${SAMP_SUFX}) - @${INSTALL_SCRIPT} ${FILESDIR}/${file}.sh${SAMP_SUFX} ${RC_DIR} -.endif -.endfor - -install-doc-files: -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} -.for file in ${DOC_FILES} - @${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR} -.endfor -.endif - -install-sample-files: -.for file in ${SAMP_FILES} - @${INSTALL_DATA} ${WRKSRC}/${file} ${CONF_DIR}/${file:T}${SAMP_SUFX} -.endfor - -create-conf-files: -.for file in ${CONF_FILES} -.if !exists(${CONF_DIR}/${file}) - @${TOUCH} ${CONF_DIR}/${file} -.endif -.endfor - -create-data-files: -.for file in ${DATA_FILES} -.if !exists(${DATADIR}/${file}) - @${TOUCH} ${DATADIR}/${file} -.endif -.endfor - -display-message: - @${ECHO_MSG} - @${CAT} ${PKGMESSAGE} - @${ECHO_MSG} - -.include <bsd.port.post.mk> diff --git a/net/isc-dhcp31-server/distinfo b/net/isc-dhcp31-server/distinfo deleted file mode 100644 index 8f17696d97cc..000000000000 --- a/net/isc-dhcp31-server/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (dhcp-3.0.1rc12.tar.gz) = cf00193dcf349c888a62e4462ae1eb9c -MD5 (dhcp3_3.0+3.0.1rc9-2.2.diff.gz) = 9d555df929ea70ef2b36f7455298a79f 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 17472ab3bb71..000000000000 --- a/net/isc-dhcp31-server/files/isc-dhcpd.sh.sample +++ /dev/null @@ -1,78 +0,0 @@ -#! /bin/sh -# -# $FreeBSD$ -# -# Start or stop isc-dhcpd. -# - -rc_file=${0##*/} -rc_arg=$1 - -# override these variables in ${PREFIX}/etc/rc.isc-dhcpd.conf -dhcpd_options= # command option(s) -dhcpd_ifaces= # ethernet interface(s) - -if ! PREFIX=$(expr $0 : "\(/.*\)/etc/rc\.d/${rc_file}\$"); then - echo "${rc_file}: Cannot determine PREFIX." >&2 - echo "Please use the complete pathname." >&2 - exit 64 -fi - -rcconf_dir=${PREFIX}/etc -rcconf_file=rc.${rc_file%.sh}.conf -rcconf_path=${rcconf_dir}/${rcconf_file} - -if [ -f ${rcconf_path} ]; then - . ${rcconf_path} -fi - -program_dir=${PREFIX}/sbin -program_file=dhcpd -program_path=${program_dir}/${program_file} - -config_dir=${PREFIX}/etc -config_file=${program_file}.conf -config_path=${config_dir}/${config_file} - -pid_dir=/var/run -pid_file=${program_file}.pid -pid_path=${pid_dir}/${pid_file} - -syslog_facility=daemon.err - -case "$rc_arg" in -start) - if [ ! -x ${program_path} ]; then - logger -sp ${syslog_facility} -t ${program_file} \ - "unable to start: ${program_path} is missing." - exit 72 - fi - if [ ! -f ${config_path} ]; then - logger -sp ${syslog_facility} -t ${program_file} \ - "unable to start: ${config_path} is missing." - exit 72 - fi - ${program_path} ${dhcpd_options} ${dhcpd_ifaces} && - echo -n " ${program_file}" - ;; -stop) - if [ -r ${pid_path} ]; then - kill $(cat ${pid_path}) 2> /dev/null - else - killall ${program_file} 2> /dev/null - fi - ;; -restart) - $0 stop - $0 start - ;; -status) - ps -auxww | egrep ${program_file} | egrep -v "($0|egrep)" - ;; -*) - echo "usage: ${rc_file} {start|stop|restart|status}" >&2 - exit 64 - ;; -esac - -exit 0 diff --git a/net/isc-dhcp31-server/files/isc-dhcrelay.sh.sample b/net/isc-dhcp31-server/files/isc-dhcrelay.sh.sample deleted file mode 100644 index de5f111d133c..000000000000 --- a/net/isc-dhcp31-server/files/isc-dhcrelay.sh.sample +++ /dev/null @@ -1,78 +0,0 @@ -#! /bin/sh -# -# $FreeBSD$ -# -# Start or stop isc-dhcrelay. -# - -rc_file=${0##*/} -rc_arg=$1 - -# override these variables in ${PREFIX}/etc/rc.isc-dhcrelay.conf -dhcrelay_options= # command option(s) -dhcrelay_ifaces= # ethernet interface(s) -dhcrelay_servers= # dhcpd server(s) - -if ! PREFIX=$(expr $0 : "\(/.*\)/etc/rc\.d/${rc_file}\$"); then - echo "${rc_file}: Cannot determine PREFIX." >&2 - echo "Please use the complete pathname." >&2 - exit 64 -fi - -rcconf_dir=${PREFIX}/etc -rcconf_file=rc.${rc_file%.sh}.conf -rcconf_path=${rcconf_dir}/${rcconf_file} - -if [ -f ${rcconf_path} ]; then - . ${rcconf_path} -fi - -program_dir=${PREFIX}/sbin -program_file=dhcrelay -program_path=${program_dir}/${program_file} - -pid_dir=/var/run -pid_file=${program_file}.pid -pid_path=${pid_dir}/${pid_file} - -syslog_facility=daemon.err - -case "$rc_arg" in -start) - if [ ! -x ${program_path} ]; then - logger -sp ${syslog_facility} -t ${program_file} \ - "unable to start: ${program_path} is missing." - exit 72 - fi - if [ -z "${dhcrelay_servers}" ]; then - logger -sp ${syslog_facility} -t ${program_file} \ - "unable to start: no dhcpd server(s) configured." - exit 64 - fi - ifaces= - for iface in ${dhcrelay_ifaces}; do - ifaces="$ifaces -i $iface" - done - ${program_path} ${dhcrelay_options} ${ifaces} ${dhcrelay_servers} && - echo -n " ${program_file}" - ;; -stop) - if [ -r ${pid_path} ]; then - kill $(cat ${pid_path}) 2> /dev/null - else - killall ${program_file} 2> /dev/null - fi - ;; -restart) - $0 stop - $0 start - ;; -status) - ps -auxww | egrep ${program_file} | egrep -v "($0|egrep)" - ;; -*) - echo "usage: ${rc_file} {start|stop|restart|status}" >&2 - ;; -esac - -exit 0 diff --git a/net/isc-dhcp31-server/files/patch-dhcpd.conf b/net/isc-dhcp31-server/files/patch-dhcpd.conf deleted file mode 100644 index 030e89874d8d..000000000000 --- a/net/isc-dhcp31-server/files/patch-dhcpd.conf +++ /dev/null @@ -1,12 +0,0 @@ ---- server/dhcpd.conf.orig Thu Jan 25 03:33:11 2001 -+++ server/dhcpd.conf Wed Jan 30 22:06:52 2002 -@@ -14,6 +14,9 @@ - # network, the authoritative directive should be uncommented. - #authoritative; - -+# ad-hoc DNS update scheme - set to "none" to disable dynamic DNS updates. -+ddns-update-style ad-hoc; -+ - # Use this to send dhcp log messages to a different log file (you also - # have to hack syslog.conf to complete the redirection). - log-facility local7; diff --git a/net/isc-dhcp31-server/files/patch-freebsd b/net/isc-dhcp31-server/files/patch-freebsd deleted file mode 100644 index 61a0e0c093a8..000000000000 --- a/net/isc-dhcp31-server/files/patch-freebsd +++ /dev/null @@ -1,38 +0,0 @@ ---- client/scripts/freebsd.orig Tue Feb 19 17:59:35 2002 -+++ client/scripts/freebsd Mon Apr 15 15:31:21 2002 -@@ -20,17 +20,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 -@@ -39,11 +39,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 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 65f79b6a7550..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=\"$(VARRUN)/dhclient.pid\" diff --git a/net/isc-dhcp31-server/files/rc.isc-dhcpd.conf.sample b/net/isc-dhcp31-server/files/rc.isc-dhcpd.conf.sample deleted file mode 100644 index edfe4bd7dc50..000000000000 --- a/net/isc-dhcp31-server/files/rc.isc-dhcpd.conf.sample +++ /dev/null @@ -1,7 +0,0 @@ -# $FreeBSD$ -# -# isc-dhcpd startup configuration file. -# - -dhcpd_options= # command option(s) -dhcpd_ifaces= # ethernet interface(s) diff --git a/net/isc-dhcp31-server/files/rc.isc-dhcrelay.conf.sample b/net/isc-dhcp31-server/files/rc.isc-dhcrelay.conf.sample deleted file mode 100644 index b647c62f6137..000000000000 --- a/net/isc-dhcp31-server/files/rc.isc-dhcrelay.conf.sample +++ /dev/null @@ -1,8 +0,0 @@ -# $FreeBSD$ -# -# isc-dhcrelay startup configuration file. -# - -dhcrelay_options= # command option(s) -dhcrelay_ifaces= # ethernet interface(s) -dhcrelay_servers= # dhcpd server(s) 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-message b/net/isc-dhcp31-server/pkg-message deleted file mode 100644 index 412bb440a02f..000000000000 --- a/net/isc-dhcp31-server/pkg-message +++ /dev/null @@ -1,23 +0,0 @@ -**** To setup dhclient, you may need to edit /etc/rc.conf to replace the - base system dhclient, such as : - dhcp_program="%%PREFIX%%/sbin/dhclient" - dhcp_flags="-q" - See dhclient(8), using the following command, for details about other - possible options: - MANPATH=%%MAN1PREFIX%%/man man 8 dhclient - -**** To setup dhcpd, you may have to copy %%PREFIX%%/etc/dhcpd.conf.sample - to %%PREFIX%%/etc/dhcpd.conf for editing. You also have to rename - %%PREFIX%%/etc/rc.d/isc-dhcpd.sh.sample to %%PREFIX%%/etc/rc.d/isc-\ - dhcpd.sh to enable automatic startup. - %%PREFIX%%/etc/rc.isc-dhcpd.conf may be edited to tune some startup - variables such as `dhcpd_options' or `dhcpd_ifaces', both defaulted - to `nothing'. See dhcpd(8) for details about possible options. - -**** To setup dhcrelay, you have to rename %%PREFIX%%/etc/rc.d/isc-\ - dhcrelay.sh.sample to %%PREFIX%%/etc/rc.d/isc-dhcrelay.sh to - enable automatic startup. - %%PREFIX%%/etc/rc.isc-dhcrelay.conf may need to be edited to setup - the `dhcrelay_servers' as required. If needed, you may also tune - `dhcrelay_options' and `dhcrelay_ifaces', both defaulted to `nothing'. - See dhcrelay(8) for details about possible options. diff --git a/net/isc-dhcp31-server/pkg-plist b/net/isc-dhcp31-server/pkg-plist deleted file mode 100644 index e23d06935e9a..000000000000 --- a/net/isc-dhcp31-server/pkg-plist +++ /dev/null @@ -1,45 +0,0 @@ -@comment $FreeBSD$ -bin/omshell -etc/dhclient.conf.sample -@exec [ -f %D/etc/dhclient.conf ] || touch %D/etc/dhclient.conf -@unexec [ -L %D/etc/dhclient.conf -o -s %D/etc/dhclient.conf ] || rm -f %D/etc/dhclient.conf -etc/dhcpd.conf.sample -@unexec if cmp -s %D/etc/rc.isc-dhcpd.conf %D/etc/rc.isc-dhcpd.conf.sample; then rm -f %D/etc/rc.isc-dhcpd.conf; fi -etc/rc.isc-dhcpd.conf.sample -@exec [ -f %D/etc/rc.isc-dhcpd.conf ] || cp %D/etc/rc.isc-dhcpd.conf.sample %D/etc/rc.isc-dhcpd.conf -@unexec if cmp -s %D/etc/rc.isc-dhcrelay.conf %D/etc/rc.isc-dhcrelay.conf.sample; then rm -f %D/etc/rc.isc-dhcrelay.conf; fi -etc/rc.isc-dhcrelay.conf.sample -@exec [ -f %D/etc/rc.isc-dhcrelay.conf ] || cp %D/etc/rc.isc-dhcrelay.conf.sample %D/etc/rc.isc-dhcrelay.conf -etc/rc.d/isc-dhcpd.sh.sample -@unexec rm -f etc/rc.d/isc-dhcpd.sh -etc/rc.d/isc-dhcrelay.sh.sample -@unexec rm -f etc/rc.d/isc-dhcrelay.sh -include/dhcpctl.h -include/isc-dhcp/boolean.h -include/isc-dhcp/dst.h -include/isc-dhcp/int.h -include/isc-dhcp/lang.h -include/isc-dhcp/list.h -include/isc-dhcp/result.h -include/isc-dhcp/types.h -include/omapip/alloc.h -include/omapip/buffer.h -include/omapip/omapip.h -lib/libdhcpctl.a -lib/libomapi.a -sbin/dhclient -sbin/dhclient-script -sbin/dhcpd -sbin/dhcrelay -%%PORTDOCS%%%%DOCSDIR%%/ANONCVS -%%PORTDOCS%%%%DOCSDIR%%/CHANGES -%%PORTDOCS%%%%DOCSDIR%%/COPYRIGHT -%%PORTDOCS%%%%DOCSDIR%%/README -%%PORTDOCS%%%%DOCSDIR%%/RELNOTES -%%PORTDOCS%%@dirrm %%DOCSDIR%% -@dirrm include/omapip -@dirrm include/isc-dhcp -@exec [ -f /var/db/dhclient.leases ] || touch /var/db/dhclient.leases -@unexec [ -s /var/db/dhclient.leases ] || rm -f /var/db/dhclient.leases -@exec [ -f /var/db/dhcpd.leases ] || touch /var/db/dhcpd.leases -@unexec [ -s /var/db/dhcpd.leases ] || rm -f /var/db/dhcpd.leases diff --git a/net/isc-dhcp40-server/Makefile b/net/isc-dhcp40-server/Makefile deleted file mode 100644 index 4bdee6352da3..000000000000 --- a/net/isc-dhcp40-server/Makefile +++ /dev/null @@ -1,175 +0,0 @@ -# ex:ts=8 -# Ports collection makefile for: dhcp -# Date created: 7 Mar 1996 -# Whom: se -# -# $FreeBSD$ -# - -PORTNAME= dhcp -PORTVERSION= 3.0.1.r12 -CATEGORIES= net -MASTER_SITES= ${MASTER_SITE_ISC} -MASTER_SITE_SUBDIR= dhcp dhcp/dhcp-3.0-history -PKGNAMEPREFIX= isc- -PKGNAMESUFFIX= 3 -DISTNAME= ${PORTNAME}-${RELEASE}${VERSION}${PATCHLEVEL} - -MAINTAINER= cyrille.lefevre@laposte.net -COMMENT= ISC Dynamic Host Configuration Protocol client and server code - -USE_REINPLACE= yes - -.include <bsd.port.pre.mk> - -# Global variables -# - -HAS_CONFIGURE= yes - -MAN1= omshell.1 -MAN3= dhcpctl.3 omapi.3 omshell.3 -MAN5= dhclient.conf.5 dhclient.leases.5 \ - dhcp-eval.5 dhcp-options.5 dhcpd.conf.5 \ - dhcpd.leases.5 -MAN8= dhclient.8 dhclient-script.8 dhcpd.8 dhcrelay.8 - -MSG_FILE= ${PKGDIR}/pkg-message -PKGMESSAGE= ${WRKDIR}/pkg-message - -# Local variables -# - -# for instance, possible versions are: -# 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 -# so, the magic things are: -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 - -BIN_FILES= dhclient dhcpd dhcrelay omshell -CONF_FILES= dhclient.conf -RC_FILES= isc-dhcpd isc-dhcrelay -DOC_FILES= ANONCVS CHANGES COPYRIGHT README RELNOTES -SAMP_FILES= client/dhclient.conf server/dhcpd.conf -DATA_FILES= dhclient.leases dhcpd.leases - -SAMP_SUFX= .sample - -CONF_DIR= ${PREFIX}/etc -RC_DIR= ${PREFIX}/etc/rc.d -DOCSDIR= ${PREFIX}/share/doc/${PKGBASE} -DATADIR= /var/db - -STRIP_CMD?= strip - -# Post-patch -# - -post-patch: patch-scripts patch-makefile-conf \ - patch-makefiles-dist patch-man-pages \ - patch-pkgmessage - -patch-scripts: - @${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|g' \ - ${WRKSRC}/client/scripts/freebsd - -patch-makefile-conf: - @${REINPLACE_CMD} -e 's|^DEBUG[ ]*=|# DEBUG ?=|g' \ - ${WRKSRC}/Makefile.conf - -patch-makefiles-dist: -.for subdir in ${PATCH_SUBDIRS} - @${REINPLACE_CMD} -e 's|^CFLAGS[ ]*=|CFLAGS +=|g' \ - ${WRKSRC}/${subdir}/Makefile.dist -.endfor - -# temporary hack - no patch file needed for this typo. -patch-man-pages: - @${REINPLACE_CMD} -e '/^\.Fd$$/d' ${WRKSRC}/dhcpctl/dhcpctl.3 - -patch-pkgmessage: - @${SED} 's|%%PREFIX%%|${PREFIX}|g;s|%%MAN1PREFIX%%|${MAN1PREFIX}|g' \ - ${MSG_FILE} > ${PKGMESSAGE} - -# Post-install -# - -post-install: strip-binary-files install-startup-files \ - install-doc-files install-sample-files \ - create-conf-files create-data-files \ - display-message - -strip-binary-files: -.for file in ${BIN_FILES} -.if exists(${PREFIX}/bin/${file}) - @${STRIP_CMD} ${PREFIX}/bin/${file} -.endif -.if exists(${PREFIX}/sbin/${file}) - @${STRIP_CMD} ${PREFIX}/sbin/${file} -.endif -.endfor - -install-startup-files: -.for file in ${RC_FILES} -.if exists(${FILESDIR}/rc.${file}.conf${SAMP_SUFX}) - @${INSTALL_DATA} ${FILESDIR}/rc.${file}.conf${SAMP_SUFX} ${CONF_DIR} -.if !exists(${CONF_DIR}/rc.${file}.conf) - @${INSTALL_DATA} ${FILESDIR}/rc.${file}.conf${SAMP_SUFX} \ - ${CONF_DIR}/rc.${file}.conf -.endif -.endif -.if exists(${FILESDIR}/${file}.sh${SAMP_SUFX}) - @${INSTALL_SCRIPT} ${FILESDIR}/${file}.sh${SAMP_SUFX} ${RC_DIR} -.endif -.endfor - -install-doc-files: -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} -.for file in ${DOC_FILES} - @${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR} -.endfor -.endif - -install-sample-files: -.for file in ${SAMP_FILES} - @${INSTALL_DATA} ${WRKSRC}/${file} ${CONF_DIR}/${file:T}${SAMP_SUFX} -.endfor - -create-conf-files: -.for file in ${CONF_FILES} -.if !exists(${CONF_DIR}/${file}) - @${TOUCH} ${CONF_DIR}/${file} -.endif -.endfor - -create-data-files: -.for file in ${DATA_FILES} -.if !exists(${DATADIR}/${file}) - @${TOUCH} ${DATADIR}/${file} -.endif -.endfor - -display-message: - @${ECHO_MSG} - @${CAT} ${PKGMESSAGE} - @${ECHO_MSG} - -.include <bsd.port.post.mk> diff --git a/net/isc-dhcp40-server/distinfo b/net/isc-dhcp40-server/distinfo deleted file mode 100644 index 8f17696d97cc..000000000000 --- a/net/isc-dhcp40-server/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (dhcp-3.0.1rc12.tar.gz) = cf00193dcf349c888a62e4462ae1eb9c -MD5 (dhcp3_3.0+3.0.1rc9-2.2.diff.gz) = 9d555df929ea70ef2b36f7455298a79f 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 17472ab3bb71..000000000000 --- a/net/isc-dhcp40-server/files/isc-dhcpd.sh.sample +++ /dev/null @@ -1,78 +0,0 @@ -#! /bin/sh -# -# $FreeBSD$ -# -# Start or stop isc-dhcpd. -# - -rc_file=${0##*/} -rc_arg=$1 - -# override these variables in ${PREFIX}/etc/rc.isc-dhcpd.conf -dhcpd_options= # command option(s) -dhcpd_ifaces= # ethernet interface(s) - -if ! PREFIX=$(expr $0 : "\(/.*\)/etc/rc\.d/${rc_file}\$"); then - echo "${rc_file}: Cannot determine PREFIX." >&2 - echo "Please use the complete pathname." >&2 - exit 64 -fi - -rcconf_dir=${PREFIX}/etc -rcconf_file=rc.${rc_file%.sh}.conf -rcconf_path=${rcconf_dir}/${rcconf_file} - -if [ -f ${rcconf_path} ]; then - . ${rcconf_path} -fi - -program_dir=${PREFIX}/sbin -program_file=dhcpd -program_path=${program_dir}/${program_file} - -config_dir=${PREFIX}/etc -config_file=${program_file}.conf -config_path=${config_dir}/${config_file} - -pid_dir=/var/run -pid_file=${program_file}.pid -pid_path=${pid_dir}/${pid_file} - -syslog_facility=daemon.err - -case "$rc_arg" in -start) - if [ ! -x ${program_path} ]; then - logger -sp ${syslog_facility} -t ${program_file} \ - "unable to start: ${program_path} is missing." - exit 72 - fi - if [ ! -f ${config_path} ]; then - logger -sp ${syslog_facility} -t ${program_file} \ - "unable to start: ${config_path} is missing." - exit 72 - fi - ${program_path} ${dhcpd_options} ${dhcpd_ifaces} && - echo -n " ${program_file}" - ;; -stop) - if [ -r ${pid_path} ]; then - kill $(cat ${pid_path}) 2> /dev/null - else - killall ${program_file} 2> /dev/null - fi - ;; -restart) - $0 stop - $0 start - ;; -status) - ps -auxww | egrep ${program_file} | egrep -v "($0|egrep)" - ;; -*) - echo "usage: ${rc_file} {start|stop|restart|status}" >&2 - exit 64 - ;; -esac - -exit 0 diff --git a/net/isc-dhcp40-server/files/isc-dhcrelay.sh.sample b/net/isc-dhcp40-server/files/isc-dhcrelay.sh.sample deleted file mode 100644 index de5f111d133c..000000000000 --- a/net/isc-dhcp40-server/files/isc-dhcrelay.sh.sample +++ /dev/null @@ -1,78 +0,0 @@ -#! /bin/sh -# -# $FreeBSD$ -# -# Start or stop isc-dhcrelay. -# - -rc_file=${0##*/} -rc_arg=$1 - -# override these variables in ${PREFIX}/etc/rc.isc-dhcrelay.conf -dhcrelay_options= # command option(s) -dhcrelay_ifaces= # ethernet interface(s) -dhcrelay_servers= # dhcpd server(s) - -if ! PREFIX=$(expr $0 : "\(/.*\)/etc/rc\.d/${rc_file}\$"); then - echo "${rc_file}: Cannot determine PREFIX." >&2 - echo "Please use the complete pathname." >&2 - exit 64 -fi - -rcconf_dir=${PREFIX}/etc -rcconf_file=rc.${rc_file%.sh}.conf -rcconf_path=${rcconf_dir}/${rcconf_file} - -if [ -f ${rcconf_path} ]; then - . ${rcconf_path} -fi - -program_dir=${PREFIX}/sbin -program_file=dhcrelay -program_path=${program_dir}/${program_file} - -pid_dir=/var/run -pid_file=${program_file}.pid -pid_path=${pid_dir}/${pid_file} - -syslog_facility=daemon.err - -case "$rc_arg" in -start) - if [ ! -x ${program_path} ]; then - logger -sp ${syslog_facility} -t ${program_file} \ - "unable to start: ${program_path} is missing." - exit 72 - fi - if [ -z "${dhcrelay_servers}" ]; then - logger -sp ${syslog_facility} -t ${program_file} \ - "unable to start: no dhcpd server(s) configured." - exit 64 - fi - ifaces= - for iface in ${dhcrelay_ifaces}; do - ifaces="$ifaces -i $iface" - done - ${program_path} ${dhcrelay_options} ${ifaces} ${dhcrelay_servers} && - echo -n " ${program_file}" - ;; -stop) - if [ -r ${pid_path} ]; then - kill $(cat ${pid_path}) 2> /dev/null - else - killall ${program_file} 2> /dev/null - fi - ;; -restart) - $0 stop - $0 start - ;; -status) - ps -auxww | egrep ${program_file} | egrep -v "($0|egrep)" - ;; -*) - echo "usage: ${rc_file} {start|stop|restart|status}" >&2 - ;; -esac - -exit 0 diff --git a/net/isc-dhcp40-server/files/patch-dhcpd.conf b/net/isc-dhcp40-server/files/patch-dhcpd.conf deleted file mode 100644 index 030e89874d8d..000000000000 --- a/net/isc-dhcp40-server/files/patch-dhcpd.conf +++ /dev/null @@ -1,12 +0,0 @@ ---- server/dhcpd.conf.orig Thu Jan 25 03:33:11 2001 -+++ server/dhcpd.conf Wed Jan 30 22:06:52 2002 -@@ -14,6 +14,9 @@ - # network, the authoritative directive should be uncommented. - #authoritative; - -+# ad-hoc DNS update scheme - set to "none" to disable dynamic DNS updates. -+ddns-update-style ad-hoc; -+ - # Use this to send dhcp log messages to a different log file (you also - # have to hack syslog.conf to complete the redirection). - log-facility local7; diff --git a/net/isc-dhcp40-server/files/patch-freebsd b/net/isc-dhcp40-server/files/patch-freebsd deleted file mode 100644 index 61a0e0c093a8..000000000000 --- a/net/isc-dhcp40-server/files/patch-freebsd +++ /dev/null @@ -1,38 +0,0 @@ ---- client/scripts/freebsd.orig Tue Feb 19 17:59:35 2002 -+++ client/scripts/freebsd Mon Apr 15 15:31:21 2002 -@@ -20,17 +20,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 -@@ -39,11 +39,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 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 65f79b6a7550..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=\"$(VARRUN)/dhclient.pid\" diff --git a/net/isc-dhcp40-server/files/rc.isc-dhcpd.conf.sample b/net/isc-dhcp40-server/files/rc.isc-dhcpd.conf.sample deleted file mode 100644 index edfe4bd7dc50..000000000000 --- a/net/isc-dhcp40-server/files/rc.isc-dhcpd.conf.sample +++ /dev/null @@ -1,7 +0,0 @@ -# $FreeBSD$ -# -# isc-dhcpd startup configuration file. -# - -dhcpd_options= # command option(s) -dhcpd_ifaces= # ethernet interface(s) diff --git a/net/isc-dhcp40-server/files/rc.isc-dhcrelay.conf.sample b/net/isc-dhcp40-server/files/rc.isc-dhcrelay.conf.sample deleted file mode 100644 index b647c62f6137..000000000000 --- a/net/isc-dhcp40-server/files/rc.isc-dhcrelay.conf.sample +++ /dev/null @@ -1,8 +0,0 @@ -# $FreeBSD$ -# -# isc-dhcrelay startup configuration file. -# - -dhcrelay_options= # command option(s) -dhcrelay_ifaces= # ethernet interface(s) -dhcrelay_servers= # dhcpd server(s) 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-message b/net/isc-dhcp40-server/pkg-message deleted file mode 100644 index 412bb440a02f..000000000000 --- a/net/isc-dhcp40-server/pkg-message +++ /dev/null @@ -1,23 +0,0 @@ -**** To setup dhclient, you may need to edit /etc/rc.conf to replace the - base system dhclient, such as : - dhcp_program="%%PREFIX%%/sbin/dhclient" - dhcp_flags="-q" - See dhclient(8), using the following command, for details about other - possible options: - MANPATH=%%MAN1PREFIX%%/man man 8 dhclient - -**** To setup dhcpd, you may have to copy %%PREFIX%%/etc/dhcpd.conf.sample - to %%PREFIX%%/etc/dhcpd.conf for editing. You also have to rename - %%PREFIX%%/etc/rc.d/isc-dhcpd.sh.sample to %%PREFIX%%/etc/rc.d/isc-\ - dhcpd.sh to enable automatic startup. - %%PREFIX%%/etc/rc.isc-dhcpd.conf may be edited to tune some startup - variables such as `dhcpd_options' or `dhcpd_ifaces', both defaulted - to `nothing'. See dhcpd(8) for details about possible options. - -**** To setup dhcrelay, you have to rename %%PREFIX%%/etc/rc.d/isc-\ - dhcrelay.sh.sample to %%PREFIX%%/etc/rc.d/isc-dhcrelay.sh to - enable automatic startup. - %%PREFIX%%/etc/rc.isc-dhcrelay.conf may need to be edited to setup - the `dhcrelay_servers' as required. If needed, you may also tune - `dhcrelay_options' and `dhcrelay_ifaces', both defaulted to `nothing'. - See dhcrelay(8) for details about possible options. diff --git a/net/isc-dhcp40-server/pkg-plist b/net/isc-dhcp40-server/pkg-plist deleted file mode 100644 index e23d06935e9a..000000000000 --- a/net/isc-dhcp40-server/pkg-plist +++ /dev/null @@ -1,45 +0,0 @@ -@comment $FreeBSD$ -bin/omshell -etc/dhclient.conf.sample -@exec [ -f %D/etc/dhclient.conf ] || touch %D/etc/dhclient.conf -@unexec [ -L %D/etc/dhclient.conf -o -s %D/etc/dhclient.conf ] || rm -f %D/etc/dhclient.conf -etc/dhcpd.conf.sample -@unexec if cmp -s %D/etc/rc.isc-dhcpd.conf %D/etc/rc.isc-dhcpd.conf.sample; then rm -f %D/etc/rc.isc-dhcpd.conf; fi -etc/rc.isc-dhcpd.conf.sample -@exec [ -f %D/etc/rc.isc-dhcpd.conf ] || cp %D/etc/rc.isc-dhcpd.conf.sample %D/etc/rc.isc-dhcpd.conf -@unexec if cmp -s %D/etc/rc.isc-dhcrelay.conf %D/etc/rc.isc-dhcrelay.conf.sample; then rm -f %D/etc/rc.isc-dhcrelay.conf; fi -etc/rc.isc-dhcrelay.conf.sample -@exec [ -f %D/etc/rc.isc-dhcrelay.conf ] || cp %D/etc/rc.isc-dhcrelay.conf.sample %D/etc/rc.isc-dhcrelay.conf -etc/rc.d/isc-dhcpd.sh.sample -@unexec rm -f etc/rc.d/isc-dhcpd.sh -etc/rc.d/isc-dhcrelay.sh.sample -@unexec rm -f etc/rc.d/isc-dhcrelay.sh -include/dhcpctl.h -include/isc-dhcp/boolean.h -include/isc-dhcp/dst.h -include/isc-dhcp/int.h -include/isc-dhcp/lang.h -include/isc-dhcp/list.h -include/isc-dhcp/result.h -include/isc-dhcp/types.h -include/omapip/alloc.h -include/omapip/buffer.h -include/omapip/omapip.h -lib/libdhcpctl.a -lib/libomapi.a -sbin/dhclient -sbin/dhclient-script -sbin/dhcpd -sbin/dhcrelay -%%PORTDOCS%%%%DOCSDIR%%/ANONCVS -%%PORTDOCS%%%%DOCSDIR%%/CHANGES -%%PORTDOCS%%%%DOCSDIR%%/COPYRIGHT -%%PORTDOCS%%%%DOCSDIR%%/README -%%PORTDOCS%%%%DOCSDIR%%/RELNOTES -%%PORTDOCS%%@dirrm %%DOCSDIR%% -@dirrm include/omapip -@dirrm include/isc-dhcp -@exec [ -f /var/db/dhclient.leases ] || touch /var/db/dhclient.leases -@unexec [ -s /var/db/dhclient.leases ] || rm -f /var/db/dhclient.leases -@exec [ -f /var/db/dhcpd.leases ] || touch /var/db/dhcpd.leases -@unexec [ -s /var/db/dhcpd.leases ] || rm -f /var/db/dhcpd.leases diff --git a/net/kdenetwork4/Makefile b/net/kdenetwork4/Makefile deleted file mode 100644 index 1529b7a734ea..000000000000 --- a/net/kdenetwork4/Makefile +++ /dev/null @@ -1,57 +0,0 @@ -# -*-mode: makefile-*- -# New ports collection makefile for: kdenetwork2 -# Date created: 2 November 2001 -# Whom: will@cvs.kde.org -# -# $FreeBSD$ -# - -PORTNAME= kdenetwork -PORTVERSION= ${KDE_VERSION} -CATEGORIES?= net news kde -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${KDE_VERSION}/src -DIST_SUBDIR= KDE - -MAINTAINER?= kde@FreeBSD.org -COMMENT= Network-related programs and modules for KDE - -LIB_DEPENDS= uu.2:${PORTSDIR}/converters/uulib - -USE_KDELIBS_VER=3 -PREFIX= ${KDE_PREFIX} -KDE_BUILD_PLIST=yes - -USE_BZIP2= yes -USE_GMAKE= yes -USE_REINPLACE= yes - -GNU_CONFIGURE= yes -INSTALLS_SHLIB= yes -LDCONFIG_DIRS+= %%PREFIX%%/lib %%PREFIX%%/lib/kde3 - -.include "${.CURDIR}/../../x11/kde3/Makefile.kde" -.include <bsd.port.pre.mk> - -pre-configure:: - ${REINPLACE_CMD} -e 's@-pedantic @@g' ${WRKSRC}/configure - -.if !defined(WITHOUT_KTALKD) -UTMP?= /var/run/utmp -.if exists(${UTMP}) -PLIST_APPEND+= plist.ktalkd -.else -DO_NOT_COMPILE+= ktalkd -pre-configure:: - @${ECHO_MSG} "===> \"${UTMP}\" was not found." - @${ECHO_MSG} "===> The talk daemon (ktalkd) will not be built." -.endif # exists(${UTMP}) -.else -DO_NOT_COMPILE+= ktalkd -.endif # !defined(WITHOUT_KTALKD) - -.if defined(DO_NOT_COMPILE) -CONFIGURE_ENV+= DO_NOT_COMPILE="${DO_NOT_COMPILE}" -.endif # defined(DO_NOT_COMPILE) - -.include <bsd.port.post.mk> diff --git a/net/kdenetwork4/distinfo b/net/kdenetwork4/distinfo deleted file mode 100644 index 9de420817351..000000000000 --- a/net/kdenetwork4/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (KDE/kdenetwork-3.1.4.tar.bz2) = 83d69ab3be7b4b10b898b250eb2d9046 diff --git a/net/kdenetwork4/files/plist.base b/net/kdenetwork4/files/plist.base deleted file mode 100644 index cd2d0f8a4e10..000000000000 --- a/net/kdenetwork4/files/plist.base +++ /dev/null @@ -1,1026 +0,0 @@ -bin/dsirc -bin/kdict -bin/kget -bin/kgpgcertmanager -bin/kit -bin/kmail -bin/kmailcvt -bin/knewstickerstub -bin/knode -bin/korn -bin/kppp -bin/kppplogview -bin/krdc -bin/krfb -bin/ksirc -bin/kxmlrpcd -bin/lisa -bin/reslisa -include/kmailIface.h -include/mimelib/address.h -include/mimelib/addrlist.h -include/mimelib/binhex.h -include/mimelib/body.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/kde3/kcm_knewsticker.la -lib/kde3/kcm_knewsticker.so -lib/kde3/kcm_krfb.la -lib/kde3/kcm_krfb.so -lib/kde3/kcm_lanbrowser.la -lib/kde3/kcm_lanbrowser.so -lib/kde3/kcm_xmlrpcd.la -lib/kde3/kcm_xmlrpcd.so -lib/kde3/kded_kinetd.la -lib/kde3/kded_kinetd.so -lib/kde3/kdict_panelapplet.la -lib/kde3/kdict_panelapplet.so -lib/kde3/kfile_rfc822.la -lib/kde3/kfile_rfc822.so -lib/kde3/khtml_kget.la -lib/kde3/khtml_kget.so -lib/kde3/kio_lan.la -lib/kde3/kio_lan.so -lib/kde3/knewsticker_panelapplet.la -lib/kde3/knewsticker_panelapplet.so -lib/kde3/kpf_panelapplet.la -lib/kde3/kpf_panelapplet.so -lib/kde3/kpfpropertiesdialog.la -lib/kde3/kpfpropertiesdialog.so -lib/ksirc.la -lib/ksirc.so -lib/kxmlrpcd.la -lib/kxmlrpcd.so -lib/libkdenetwork.la -lib/libkdenetwork.so -lib/libkdenetwork.so.2 -lib/libkntsrcfilepropsdlg.la -lib/libkntsrcfilepropsdlg.so -lib/libmimelib.la -lib/libmimelib.so -lib/libmimelib.so.1 -share/applnk/.hidden/kcmkiolan.desktop -share/applnk/.hidden/kcmlisa.desktop -share/applnk/.hidden/kcmnewsticker.desktop -share/applnk/.hidden/kcmreslisa.desktop -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/More/KOrn.desktop -share/applnk/Internet/More/knewsticker-standalone.desktop -share/applnk/Internet/More/kppplogview.desktop -share/applnk/Internet/kget.desktop -share/applnk/Internet/kit.desktop -share/applnk/Internet/knewsticker-standalone.desktop -share/applnk/Internet/kppplogview.desktop -share/applnk/Internet/krdc.desktop -share/applnk/Internet/ksirc.desktop -share/applnk/Settings/Network/kcmkrfb.desktop -share/applnk/Settings/Personalization/kcmnewsticker.desktop -share/applnk/System/krfb.desktop -share/applnk/Utilities/kdict.desktop -share/applnk/Utilities/kmailcvt.desktop -share/apps/kconf_update/kmail-3.1-update-new-mail-notification-settings.pl -share/apps/kconf_update/kmail-3.1-use-UOID-for-identities.pl -share/apps/kconf_update/kmail-pgpidentity.pl -share/apps/kconf_update/kmail-upd-identities.pl -share/apps/kconf_update/kmail.upd -share/apps/kconf_update/knewsticker.upd -share/apps/kconf_update/knt-0.1-0.2.pl -share/apps/kconf_update/kpgp-3.1-upgrade-address-data.pl -share/apps/kconf_update/kpgp.upd -share/apps/kconf_update/upgrade-signature.pl -share/apps/kconf_update/upgrade-transport.pl -share/apps/kdict/icons/crystalsvg/16x16/actions/define_clip.png -share/apps/kdict/icons/crystalsvg/16x16/actions/query_erase.png -share/apps/kdict/icons/crystalsvg/22x22/actions/define_clip.png -share/apps/kdict/icons/crystalsvg/32x32/actions/define_clip.png -share/apps/kdict/kdictui.rc -share/apps/kget/icons/crystalsvg/22x22/actions/tool_clipboard.png -share/apps/kget/icons/crystalsvg/22x22/actions/tool_delay.png -share/apps/kget/icons/crystalsvg/22x22/actions/tool_delete.png -share/apps/kget/icons/crystalsvg/22x22/actions/tool_disconnect.png -share/apps/kget/icons/crystalsvg/22x22/actions/tool_dock.png -share/apps/kget/icons/crystalsvg/22x22/actions/tool_drop_target.png -share/apps/kget/icons/crystalsvg/22x22/actions/tool_expert.png -share/apps/kget/icons/crystalsvg/22x22/actions/tool_logwindow.png -share/apps/kget/icons/crystalsvg/22x22/actions/tool_normal.png -share/apps/kget/icons/crystalsvg/22x22/actions/tool_offline_mode_off.png -share/apps/kget/icons/crystalsvg/22x22/actions/tool_offline_mode_on.png -share/apps/kget/icons/crystalsvg/22x22/actions/tool_paste.png -share/apps/kget/icons/crystalsvg/22x22/actions/tool_pause.png -share/apps/kget/icons/crystalsvg/22x22/actions/tool_preferences.png -share/apps/kget/icons/crystalsvg/22x22/actions/tool_queue.png -share/apps/kget/icons/crystalsvg/22x22/actions/tool_restart.png -share/apps/kget/icons/crystalsvg/22x22/actions/tool_resume.png -share/apps/kget/icons/crystalsvg/22x22/actions/tool_shutdown.png -share/apps/kget/icons/crystalsvg/22x22/actions/tool_timer.png -share/apps/kget/icons/crystalsvg/22x22/actions/tool_uselastdir.png -share/apps/kget/kgetui.rc -share/apps/kget/pics/bar0.png -share/apps/kget/pics/bar1.png -share/apps/kget/pics/bar2.png -share/apps/kget/pics/bar3.png -share/apps/kget/pics/bar4.png -share/apps/kget/pics/bar5.png -share/apps/kget/pics/bar6.png -share/apps/kget/pics/connect0.png -share/apps/kget/pics/connect1.png -share/apps/kget/pics/connect2.png -share/apps/kget/pics/connect3.png -share/apps/kget/pics/connect4.png -share/apps/kget/pics/connect5.png -share/apps/kget/pics/connect6.png -share/apps/kget/pics/connect7.png -share/apps/kget/pics/dock.png -share/apps/kget/pics/md_delayed.png -share/apps/kget/pics/md_finished.png -share/apps/kget/pics/md_queued.png -share/apps/kget/pics/md_scheduled.png -share/apps/kget/pics/retrying.png -share/apps/kget/pics/target.png -share/apps/kget/pics/try0.png -share/apps/kget/pics/try1.png -share/apps/kget/pics/try2.png -share/apps/kget/pics/try3.png -share/apps/kget/pics/try4.png -share/apps/kget/pics/try5.png -share/apps/kget/pics/try6.png -share/apps/kget/pics/try7.png -share/apps/kget/sounds/added.wav -share/apps/kget/sounds/finished.wav -share/apps/kget/sounds/finishedall.wav -share/apps/kget/sounds/started.wav -share/apps/kgpgcertmanager/kgpgcertmanagerui.rc -share/apps/khtml/kpartplugins/kget_plug_in.rc -share/apps/kicker/applets/kdictapplet.desktop -share/apps/kicker/applets/knewsticker.desktop -share/apps/kicker/applets/kpfapplet.desktop -share/apps/kinetd/eventsrc -share/apps/kit/eventsrc -share/apps/kit/icons/crystalsvg/16x16/actions/kit_anonwarning.png -share/apps/kit/icons/crystalsvg/16x16/actions/kit_away.png -share/apps/kit/icons/crystalsvg/16x16/actions/kit_bold.png -share/apps/kit/icons/crystalsvg/16x16/actions/kit_group.png -share/apps/kit/icons/crystalsvg/16x16/actions/kit_info.png -share/apps/kit/icons/crystalsvg/16x16/actions/kit_logging.png -share/apps/kit/icons/crystalsvg/16x16/actions/kit_offline.png -share/apps/kit/icons/crystalsvg/16x16/actions/kit_online.png -share/apps/kit/icons/crystalsvg/16x16/actions/kit_sound.png -share/apps/kit/icons/crystalsvg/16x16/actions/kit_status.png -share/apps/kit/icons/crystalsvg/16x16/actions/kit_timestamping.png -share/apps/kit/icons/crystalsvg/16x16/actions/kit_warning.png -share/apps/kit/kitui.rc -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/eventsrc -share/apps/kmail/kmcomposerui.rc -share/apps/kmail/kmmainwin.rc -share/apps/kmail/pics/kdelogo.png -share/apps/kmail/pics/key.png -share/apps/kmail/pics/key_bad.png -share/apps/kmail/pics/key_ok.png -share/apps/kmail/pics/key_unknown.png -share/apps/kmail/pics/kmailwindowlayout1.png -share/apps/kmail/pics/kmailwindowlayout1_no_mime.png -share/apps/kmail/pics/kmailwindowlayout1_smart_mime.png -share/apps/kmail/pics/kmailwindowlayout2.png -share/apps/kmail/pics/kmailwindowlayout2_no_mime.png -share/apps/kmail/pics/kmailwindowlayout2_smart_mime.png -share/apps/kmail/pics/kmailwindowlayout3.png -share/apps/kmail/pics/kmailwindowlayout3_no_mime.png -share/apps/kmail/pics/kmailwindowlayout3_smart_mime.png -share/apps/kmail/pics/kmailwindowlayout4.png -share/apps/kmail/pics/kmailwindowlayout4_no_mime.png -share/apps/kmail/pics/kmailwindowlayout4_smart_mime.png -share/apps/kmail/pics/kmailwindowlayout5.png -share/apps/kmail/pics/kmailwindowlayout5_no_mime.png -share/apps/kmail/pics/kmailwindowlayout5_smart_mime.png -share/apps/kmail/pics/kmmsgdel.png -share/apps/kmail/pics/kmmsgfiller.png -share/apps/kmail/pics/kmmsgflag.png -share/apps/kmail/pics/kmmsgforwarded.png -share/apps/kmail/pics/kmmsgfullyencrypted.png -share/apps/kmail/pics/kmmsgfullysigned.png -share/apps/kmail/pics/kmmsgnew.png -share/apps/kmail/pics/kmmsgold.png -share/apps/kmail/pics/kmmsgpartiallyencrypted.png -share/apps/kmail/pics/kmmsgpartiallysigned.png -share/apps/kmail/pics/kmmsgqueued.png -share/apps/kmail/pics/kmmsgreplied.png -share/apps/kmail/pics/kmmsgsent.png -share/apps/kmail/pics/kmmsgundefinedencrypted.png -share/apps/kmail/pics/kmmsgundefinedsigned.png -share/apps/kmail/pics/kmmsgunseen.png -share/apps/kmail/pics/pgp-keys.png -share/apps/kmail/pics/pub_key_red.png -share/apps/kmail/pics/stopwatch.xbm -share/apps/kmail/pics/stopwatchMask.xbm -share/apps/kmail/profile-default-rc -share/apps/kmail/profile-high-contrast-rc -share/apps/kmail/profile-html-rc -share/apps/kmail/profile-purist-rc -share/apps/kmail/profile-secure-rc -share/apps/kmail/tips -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/crystalsvg/16x16/actions/message_reply.png -share/apps/knode/icons/crystalsvg/22x22/actions/message_reply.png -share/apps/knode/icons/crystalsvg/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/key.png -share/apps/knode/pics/key_bad.png -share/apps/knode/pics/key_ok.png -share/apps/knode/pics/key_unknown.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/Avades -share/apps/kppp/Provider/Netherlands/Bart -share/apps/kppp/Provider/Netherlands/Betuwenet%032BFree -share/apps/kppp/Provider/Netherlands/Betuwenet%032BQuality -share/apps/kppp/Provider/Netherlands/Cistron -share/apps/kppp/Provider/Netherlands/Concepts%032ICT -share/apps/kppp/Provider/Netherlands/Cubic%032Circle -share/apps/kppp/Provider/Netherlands/Cybercomm -share/apps/kppp/Provider/Netherlands/Dataweb -share/apps/kppp/Provider/Netherlands/Daxis%032Internet -share/apps/kppp/Provider/Netherlands/Demon%032Internet -share/apps/kppp/Provider/Netherlands/Energis-Ision -share/apps/kppp/Provider/Netherlands/Euronet%032anytime -share/apps/kppp/Provider/Netherlands/Euronet%032professional -share/apps/kppp/Provider/Netherlands/FlakkeeNet -share/apps/kppp/Provider/Netherlands/FreeAcces -share/apps/kppp/Provider/Netherlands/Freeler%032basis -share/apps/kppp/Provider/Netherlands/Freeler%032compleet -share/apps/kppp/Provider/Netherlands/Freeler%032voordelig -share/apps/kppp/Provider/Netherlands/HCC%032NET -share/apps/kppp/Provider/Netherlands/Hacom -share/apps/kppp/Provider/Netherlands/HetNet%032Basis%032Surfen -share/apps/kppp/Provider/Netherlands/HetNet%032Frequent%032Surfen -share/apps/kppp/Provider/Netherlands/HetNet%032Regelmatig%032Surfen -share/apps/kppp/Provider/Netherlands/IAE -share/apps/kppp/Provider/Netherlands/ILimburg -share/apps/kppp/Provider/Netherlands/InterNLnet -share/apps/kppp/Provider/Netherlands/Interbox -share/apps/kppp/Provider/Netherlands/Internet%032Acces%032Facilities -share/apps/kppp/Provider/Netherlands/Internet%032Online -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/KeyAcces%032met%0323%032cijferig%032kengetal -share/apps/kppp/Provider/Netherlands/KeyAcces%032met%0324%032cijferig%032kengetal -share/apps/kppp/Provider/Netherlands/Luna -share/apps/kppp/Provider/Netherlands/Macom -share/apps/kppp/Provider/Netherlands/Nederland.net -share/apps/kppp/Provider/Netherlands/Planet%032Internet%032Premium -share/apps/kppp/Provider/Netherlands/Planet%032Internet%032Standaard -share/apps/kppp/Provider/Netherlands/Plant%032Acces -share/apps/kppp/Provider/Netherlands/Popin -share/apps/kppp/Provider/Netherlands/PublishNet -share/apps/kppp/Provider/Netherlands/Raketnet -share/apps/kppp/Provider/Netherlands/Solcon -share/apps/kppp/Provider/Netherlands/Support%032Net -share/apps/kppp/Provider/Netherlands/Telebyte -share/apps/kppp/Provider/Netherlands/Tiscali%032Compleet -share/apps/kppp/Provider/Netherlands/Tiscali%032Gratis -share/apps/kppp/Provider/Netherlands/UwNet -share/apps/kppp/Provider/Netherlands/Via%032Networks -share/apps/kppp/Provider/Netherlands/Wannadoo%032budget -share/apps/kppp/Provider/Netherlands/Wannadoo%032budget%320plus -share/apps/kppp/Provider/Netherlands/Wannadoo%032smartpack -share/apps/kppp/Provider/Netherlands/Wirehub -share/apps/kppp/Provider/Netherlands/XS4All -share/apps/kppp/Provider/Netherlands/Zeelandnet -share/apps/kppp/Provider/Netherlands/Zon%0322 -share/apps/kppp/Provider/Netherlands/Zon%032Gratis -share/apps/kppp/Provider/Netherlands/Zon%032Inclusief -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/Slovenia/AmisNet -share/apps/kppp/Provider/Slovenia/Arnes -share/apps/kppp/Provider/Slovenia/Kiss -share/apps/kppp/Provider/Slovenia/MojNet -share/apps/kppp/Provider/Slovenia/SiOL -share/apps/kppp/Provider/Slovenia/Volja -share/apps/kppp/Provider/Sweden/.directory -share/apps/kppp/Provider/Sweden/Tiscali -share/apps/kppp/Provider/Sweden/Utfors -share/apps/kppp/Provider/Switzerland/Bluewin -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/Ukraine/.directory -share/apps/kppp/Provider/Ukraine/Adamant -share/apps/kppp/Provider/Ukraine/IPTelecom -share/apps/kppp/Provider/Ukraine/NuVse -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/United_Kingdom/UK%032Free%032Software%032Network%032ISDN -share/apps/kppp/Provider/United_Kingdom/UK%032Free%032Software%032Network%032Modem -share/apps/kppp/Provider/United_Kingdom/UKPOST%032ISDN -share/apps/kppp/Provider/United_Kingdom/UKPOST%032Modem -share/apps/kppp/Provider/Yugoslavia/041Net -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/SuOnline -share/apps/kppp/Provider/Yugoslavia/TippNet -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/Brasil_Ligbr.rst -share/apps/kppp/Rules/Brasil/Rio_de_Janeiro.rst -share/apps/kppp/Rules/Brasil/SaoPaulo.rst -share/apps/kppp/Rules/Croatia/CARNet.rst -share/apps/kppp/Rules/Czechia/Tarif_INTERNET_2002_INTERNET_MAXI_PLUS.rst -share/apps/kppp/Rules/Czechia/Tarif_INTERNET_2002_MINI.rst -share/apps/kppp/Rules/Czechia/Tarif_INTERNET_2002_STANDARD_MAXI.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/Cegetel_Local.rst -share/apps/kppp/Rules/France/Cegetel_National.rst -share/apps/kppp/Rules/France/France_Telecom_Local.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/France/Le_9_Local.rst -share/apps/kppp/Rules/France/Le_9_National.rst -share/apps/kppp/Rules/France/OneTel.rst -share/apps/kppp/Rules/France/Tele2_Local.rst -share/apps/kppp/Rules/France/Tele2_National.rst -share/apps/kppp/Rules/France/Wanadoo_Free.rst -share/apps/kppp/Rules/Germany/1und1_InternetZugang.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/Arcor_Internet_by_Call_easy.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/Callisa_City.rst -share/apps/kppp/Rules/Germany/City_Activ_Plus_Option.rst -share/apps/kppp/Rules/Germany/Cityweb.rst -share/apps/kppp/Rules/Germany/CompuservePro.rst -share/apps/kppp/Rules/Germany/E-Plus-Online_Jedermann.rst -share/apps/kppp/Rules/Germany/Easynet_easy-call.rst -share/apps/kppp/Rules/Germany/Freenet_Enterprise.rst -share/apps/kppp/Rules/Germany/Freenet_Sorglos.rst -share/apps/kppp/Rules/Germany/Freenet_StandardTarif.rst -share/apps/kppp/Rules/Germany/Freenet_Super_CbC.rst -share/apps/kppp/Rules/Germany/Freenet_special_call_by_call.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/Puretec.rst -share/apps/kppp/Rules/Germany/Telekom_City_Select_5_30.rst -share/apps/kppp/Rules/Germany/VR-Web.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_euro.rst -share/apps/kppp/Rules/Greece/Hellas_EPAK_Zone2_in_euro.rst -share/apps/kppp/Rules/Greece/Hellas_EPAK_local_in_euro.rst -share/apps/kppp/Rules/Greece/Hellas_analog_local_in_euro.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/Hungary/PapaTel.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_Internet_SpZero.rst -share/apps/kppp/Rules/Italy/Infostrada_Libero1055_Base.rst -share/apps/kppp/Rules/Italy/Infostrada_Libero1055_SpZero.rst -share/apps/kppp/Rules/Italy/Infostrada_Loc_Reg_Naz_SpZero.rst -share/apps/kppp/Rules/Italy/Infostrada_Locali_Base.rst -share/apps/kppp/Rules/Italy/Infostrada_Reg_Naz_Base.rst -share/apps/kppp/Rules/Italy/Tele2_Altri_ISP.rst -share/apps/kppp/Rules/Italy/Tele2_Internet.rst -share/apps/kppp/Rules/Italy/Telecom_Interurbane_Fino15Km.rst -share/apps/kppp/Rules/Italy/Telecom_Interurbane_Oltre15Km.rst -share/apps/kppp/Rules/Italy/Telecom_Locali.rst -share/apps/kppp/Rules/Italy/Teleconomy24_Internet.rst -share/apps/kppp/Rules/Italy/Teleconomy24_Nazionali.rst -share/apps/kppp/Rules/Italy/Teleconomy_NoStop_Internet.rst -share/apps/kppp/Rules/Italy/Wind_24ore_Internet_AltriISP.rst -share/apps/kppp/Rules/Italy/Wind_24ore_Internet_InWind.rst -share/apps/kppp/Rules/Italy/Wind_24ore_Interurbane.rst -share/apps/kppp/Rules/Italy/Wind_24ore_Urbane.rst -share/apps/kppp/Rules/Italy/Wind_Family+SuperLight_Internet_InWind.rst -share/apps/kppp/Rules/Italy/Wind_Family+SuperLight_Urbane_Interurbane.rst -share/apps/kppp/Rules/Italy/Wind_Family_Internet_AltriISP.rst -share/apps/kppp/Rules/Italy/Wind_Family_Internet_InWind.rst -share/apps/kppp/Rules/Italy/Wind_Family_Interurbane.rst -share/apps/kppp/Rules/Italy/Wind_Family_Urbane.rst -share/apps/kppp/Rules/Italy/Wind_Flat_Internet_AltriISP.rst -share/apps/kppp/Rules/Italy/Wind_Flat_Internet_InWind.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/12Move.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_Regio.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/Cistron -share/apps/kppp/Rules/Netherlands/Freeler_Basis.rst -share/apps/kppp/Rules/Netherlands/Freeler_Voordelig.rst -share/apps/kppp/Rules/Netherlands/HetNet_Regelmatig_Surfen.rst -share/apps/kppp/Rules/Netherlands/InterNLnet.rst -share/apps/kppp/Rules/Netherlands/OneTel_Spaarstand_Buiten_Regio.rst -share/apps/kppp/Rules/Netherlands/OneTel_Spaarstand_Regio.rst -share/apps/kppp/Rules/Netherlands/OneTel_Toets_1658_Buiten_Regio.rst -share/apps/kppp/Rules/Netherlands/OneTel_Toets_1658_Regio.rst -share/apps/kppp/Rules/Netherlands/Planet_Internet.rst -share/apps/kppp/Rules/Netherlands/Priority_Telecom_Nationaal.rst -share/apps/kppp/Rules/Netherlands/Priority_Telecom_Regionaal.rst -share/apps/kppp/Rules/Netherlands/Tele2_Extra_Buiten_Regio.rst -share/apps/kppp/Rules/Netherlands/Tele2_Extra_Regio.rst -share/apps/kppp/Rules/Netherlands/Tele2_Preselect_Buiten_Regio.rst -share/apps/kppp/Rules/Netherlands/Tele2_Preselect_Regio.rst -share/apps/kppp/Rules/Netherlands/Tele2_Toets_1609_Buiten_Regio.rst -share/apps/kppp/Rules/Netherlands/Tele2_Toets_1609_Regio.rst -share/apps/kppp/Rules/Netherlands/Wannadoo_Budget_Plus -share/apps/kppp/Rules/Norway/Local_Area.rst -share/apps/kppp/Rules/Norway/Long_Distance.rst -share/apps/kppp/Rules/Norway/Netcom.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/RomTelecom.rst -share/apps/kppp/Rules/Romania/Zapp-Mobile.rst -share/apps/kppp/Rules/Russia/TEMPLATE.ru -share/apps/kppp/Rules/Russia/mtu-intel_standart.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/Slovenia/omrezje_0880.rst -share/apps/kppp/Rules/Slovenia/omrezje_0889.rst -share/apps/kppp/Rules/Slovenia/stacionarno_omrezje.rst -share/apps/kppp/Rules/South_Afrika/South_Afrika.rst -share/apps/kppp/Rules/South_Afrika/South_Afrika_Justin.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/Ukraine/IPTelecom_hourly.rst -share/apps/kppp/Rules/Ukraine/NuVse_hourly.rst -share/apps/kppp/Rules/Ukraine/TEMPLATE.uk -share/apps/kppp/Rules/Ukraine/Utel_Unet.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/Yugoslavia/041_1xx_xxx.rst -share/apps/kppp/Rules/Yugoslavia/041_2xx_xxx.rst -share/apps/kppp/Rules/Yugoslavia/041_3xx_xxx.rst -share/apps/kppp/Rules/Yugoslavia/041_4xx_xxx.rst -share/apps/kppp/Rules/Yugoslavia/041_5xx_xxx.rst -share/apps/kppp/Rules/Yugoslavia/041_9xx_xxx.rst -share/apps/kppp/Rules/Yugoslavia/III_zona-preko_200km.rst -share/apps/kppp/Rules/Yugoslavia/II_zona-do_200km.rst -share/apps/kppp/Rules/Yugoslavia/I_zona-ista_mreza.rst -share/apps/kppp/Rules/Yugoslavia/Lokalni_poziv.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/krdc/pics/pindown.png -share/apps/krdc/pics/pinup.png -share/apps/krdc/pics/pointcursor.png -share/apps/krdc/pics/pointcursormask.png -share/apps/krfb/eventsrc -share/apps/krfb/pics/connection-side-image.png -share/apps/krfb/pics/eyes-closed24.png -share/apps/krfb/pics/eyes-open24.png -share/apps/ksirc/eventsrc -share/apps/ksirc/filters.pl -share/apps/ksirc/ksirc.pl -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/emoticons/biggrin.png -share/apps/ksirc/pics/emoticons/clown.png -share/apps/ksirc/pics/emoticons/cry.png -share/apps/ksirc/pics/emoticons/devil.png -share/apps/ksirc/pics/emoticons/frown.png -share/apps/ksirc/pics/emoticons/heart.png -share/apps/ksirc/pics/emoticons/loveit.png -share/apps/ksirc/pics/emoticons/puh.png -share/apps/ksirc/pics/emoticons/puh2.png -share/apps/ksirc/pics/emoticons/redface.png -share/apps/ksirc/pics/emoticons/sadley.png -share/apps/ksirc/pics/emoticons/slime.png -share/apps/ksirc/pics/emoticons/smile.png -share/apps/ksirc/pics/emoticons/wink.png -share/apps/ksirc/pics/emoticons/yummie.png -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/mdi.png -share/apps/ksirc/pics/mini-run.png -share/apps/ksirc/pics/sadsmiley.png -share/apps/ksirc/pics/sdi.png -share/apps/ksirc/pics/server.xpm -share/apps/ksirc/pics/smiley.png -share/apps/ksirc/pics/star.png -share/apps/ksirc/relnotes -share/apps/ksirc/servers.ini -share/apps/ksirc/servers.txt -share/apps/ksirc/sirc.help.gz -share/apps/lisa/README -share/config/ksircrc -share/doc/HTML/en/kcontrol/kcmtalkd/common -share/doc/HTML/en/kcontrol/kcmtalkd/index.cache.bz2 -share/doc/HTML/en/kcontrol/kcmtalkd/index.docbook -share/doc/HTML/en/kcontrol/kxmlrpcd/common -share/doc/HTML/en/kcontrol/kxmlrpcd/index.cache.bz2 -share/doc/HTML/en/kcontrol/kxmlrpcd/index.docbook -share/doc/HTML/en/kcontrol/lanbrowser/common -share/doc/HTML/en/kcontrol/lanbrowser/index.cache.bz2 -share/doc/HTML/en/kcontrol/lanbrowser/index.docbook -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.cache.bz2 -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/kgpgcertmanager/common -share/doc/HTML/en/kgpgcertmanager/index.cache.bz2 -share/doc/HTML/en/kgpgcertmanager/index.docbook -share/doc/HTML/en/kit/common -share/doc/HTML/en/kit/index.cache.bz2 -share/doc/HTML/en/kit/index.docbook -share/doc/HTML/en/kmail/common -share/doc/HTML/en/kmail/configure.docbook -share/doc/HTML/en/kmail/credits-and-licenses.docbook -share/doc/HTML/en/kmail/faq.docbook -share/doc/HTML/en/kmail/getting-started.docbook -share/doc/HTML/en/kmail/importing.docbook -share/doc/HTML/en/kmail/index.cache.bz2 -share/doc/HTML/en/kmail/index.docbook -share/doc/HTML/en/kmail/intro.docbook -share/doc/HTML/en/kmail/menus.docbook -share/doc/HTML/en/kmail/using-kmail.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/help-icon.png -share/doc/HTML/en/knewsticker/index.cache.bz2 -share/doc/HTML/en/knewsticker/index.docbook -share/doc/HTML/en/knewsticker/kcmnewsticker-filters.png -share/doc/HTML/en/knewsticker/kcmnewsticker-general.png -share/doc/HTML/en/knewsticker/kcmnewsticker-newssitedialog.png -share/doc/HTML/en/knewsticker/kcmnewsticker-newssources.png -share/doc/HTML/en/knewsticker/kcmnewsticker-scrollerprefs.png -share/doc/HTML/en/knewsticker/kcontrol-icon.png -share/doc/HTML/en/knewsticker/knewsticker-childpanel.png -share/doc/HTML/en/knewsticker/knewsticker-icon.png -share/doc/HTML/en/knewsticker/knewsticker-kicker.png -share/doc/HTML/en/knewsticker/knewsticker-ownwindow.png -share/doc/HTML/en/knewsticker/newarticle-icon.png -share/doc/HTML/en/knewsticker/newssite-icon.png -share/doc/HTML/en/knewsticker/oldarticle-icon.png -share/doc/HTML/en/knewsticker/preferences-icon.png -share/doc/HTML/en/knode/commands.docbook -share/doc/HTML/en/knode/common -share/doc/HTML/en/knode/credits.docbook -share/doc/HTML/en/knode/eyes.png -share/doc/HTML/en/knode/faq.docbook -share/doc/HTML/en/knode/gloss.docbook -share/doc/HTML/en/knode/greyball.png -share/doc/HTML/en/knode/greyballchk.png -share/doc/HTML/en/knode/index.cache.bz2 -share/doc/HTML/en/knode/index.docbook -share/doc/HTML/en/knode/install.docbook -share/doc/HTML/en/knode/introduction.docbook -share/doc/HTML/en/knode/journey.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-appearance-dialog.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/more.docbook -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/using-firststart.docbook -share/doc/HTML/en/knode/using-morefeatures.docbook -share/doc/HTML/en/knode/using-subscribing.docbook -share/doc/HTML/en/korn/common -share/doc/HTML/en/korn/index.cache.bz2 -share/doc/HTML/en/korn/index.docbook -share/doc/HTML/en/kpf/common -share/doc/HTML/en/kpf/index.cache.bz2 -share/doc/HTML/en/kpf/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.cache.bz2 -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/krfb/common -share/doc/HTML/en/krfb/index.cache.bz2 -share/doc/HTML/en/krfb/index.docbook -share/doc/HTML/en/ksirc/common -share/doc/HTML/en/ksirc/index.cache.bz2 -share/doc/HTML/en/ksirc/index.docbook -share/doc/HTML/en/ktalkd/common -share/doc/HTML/en/ktalkd/index.cache.bz2 -share/doc/HTML/en/ktalkd/index.docbook -share/doc/HTML/en/lisa/common -share/doc/HTML/en/lisa/index.cache.bz2 -share/doc/HTML/en/lisa/index.docbook -share/icons/crystalsvg/128x128/apps/kdict.png -share/icons/crystalsvg/128x128/apps/kmail.png -share/icons/crystalsvg/128x128/apps/kppp.png -share/icons/crystalsvg/16x16/apps/kdict.png -share/icons/crystalsvg/16x16/apps/kit.png -share/icons/crystalsvg/16x16/apps/kmail.png -share/icons/crystalsvg/16x16/apps/kmailcvt.png -share/icons/crystalsvg/16x16/apps/knewsticker.png -share/icons/crystalsvg/16x16/apps/knode.png -share/icons/crystalsvg/16x16/apps/korn.png -share/icons/crystalsvg/16x16/apps/kpf.png -share/icons/crystalsvg/16x16/apps/kppp.png -share/icons/crystalsvg/16x16/apps/ksirc.png -share/icons/crystalsvg/22x22/actions/khtml_kget.png -share/icons/crystalsvg/32x32/apps/kdict.png -share/icons/crystalsvg/32x32/apps/kit.png -share/icons/crystalsvg/32x32/apps/kmail.png -share/icons/crystalsvg/32x32/apps/kmailcvt.png -share/icons/crystalsvg/32x32/apps/knewsticker.png -share/icons/crystalsvg/32x32/apps/knode.png -share/icons/crystalsvg/32x32/apps/korn.png -share/icons/crystalsvg/32x32/apps/kpf.png -share/icons/crystalsvg/32x32/apps/kppp.png -share/icons/crystalsvg/32x32/apps/krdc.png -share/icons/crystalsvg/32x32/apps/krfb.png -share/icons/crystalsvg/32x32/apps/ksirc.png -share/icons/crystalsvg/48x48/apps/kdict.png -share/icons/crystalsvg/48x48/apps/kget.png -share/icons/crystalsvg/48x48/apps/kit.png -share/icons/crystalsvg/48x48/apps/kmail.png -share/icons/crystalsvg/48x48/apps/kmailcvt.png -share/icons/crystalsvg/48x48/apps/knewsticker.png -share/icons/crystalsvg/48x48/apps/knode.png -share/icons/crystalsvg/48x48/apps/korn.png -share/icons/crystalsvg/48x48/apps/kpf.png -share/icons/crystalsvg/48x48/apps/kppp.png -share/icons/crystalsvg/48x48/apps/krdc.png -share/icons/crystalsvg/48x48/apps/krfb.png -share/icons/crystalsvg/48x48/apps/ksirc.png -share/icons/crystalsvg/48x48/mimetypes/kget_list.png -share/icons/crystalsvg/64x64/apps/kdict.png -share/icons/crystalsvg/64x64/apps/kmail.png -share/icons/crystalsvg/64x64/apps/kppp.png -share/icons/locolor/16x16/apps/krfb.png -share/icons/locolor/16x16/apps/ksirc.png -share/icons/locolor/32x32/apps/krfb.png -share/icons/locolor/32x32/apps/ksirc.png -share/mimelnk/application/x-kgetlist.desktop -share/services/kded/kinetd.desktop -share/services/kfile_rfc822.desktop -share/services/kinetd_krfb.desktop -share/services/knewsservice.protocol -share/services/kntsrcfilepropsdlg.desktop -share/services/kpfpropertiesdialogplugin.desktop -share/services/kxmlrpcd.desktop -share/services/lan.protocol -share/services/rlan.protocol -share/services/vnc.protocol -share/servicetypes/kinetdmodule.desktop diff --git a/net/kdenetwork4/files/plist.base.rm b/net/kdenetwork4/files/plist.base.rm deleted file mode 100644 index 1acf462492b9..000000000000 --- a/net/kdenetwork4/files/plist.base.rm +++ /dev/null @@ -1,180 +0,0 @@ -@dirrm share/servicetypes -@dirrm share/services/kded -@dirrm share/services -@dirrm share/mimelnk/application -@dirrm share/mimelnk -@dirrm share/icons/locolor/32x32/apps -@dirrm share/icons/locolor/32x32 -@dirrm share/icons/locolor/16x16/apps -@dirrm share/icons/locolor/16x16 -@dirrm share/icons/locolor -@dirrm share/icons/crystalsvg/64x64/apps -@dirrm share/icons/crystalsvg/64x64 -@dirrm share/icons/crystalsvg/48x48/mimetypes -@dirrm share/icons/crystalsvg/48x48/apps -@dirrm share/icons/crystalsvg/48x48 -@dirrm share/icons/crystalsvg/32x32/apps -@dirrm share/icons/crystalsvg/32x32 -@dirrm share/icons/crystalsvg/22x22/actions -@dirrm share/icons/crystalsvg/22x22 -@dirrm share/icons/crystalsvg/16x16/apps -@dirrm share/icons/crystalsvg/16x16 -@dirrm share/icons/crystalsvg/128x128/apps -@dirrm share/icons/crystalsvg/128x128 -@dirrm share/icons/crystalsvg -@dirrm share/icons -@dirrm share/doc/HTML/en/lisa -@dirrm share/doc/HTML/en/ktalkd -@dirrm share/doc/HTML/en/ksirc -@dirrm share/doc/HTML/en/krfb -@dirrm share/doc/HTML/en/kppp -@dirrm share/doc/HTML/en/kpf -@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/kgpgcertmanager -@dirrm share/doc/HTML/en/kdict -@dirrm share/doc/HTML/en/kcontrol/lanbrowser -@dirrm share/doc/HTML/en/kcontrol/kxmlrpcd -@dirrm share/doc/HTML/en/kcontrol/kcmtalkd -@dirrm share/doc/HTML/en/kcontrol -@dirrm share/doc/HTML/en -@dirrm share/doc/HTML -@dirrm share/config -@dirrm share/apps/lisa -@dirrm share/apps/ksirc/pics/emoticons -@dirrm share/apps/ksirc/pics -@dirrm share/apps/ksirc -@dirrm share/apps/krfb/pics -@dirrm share/apps/krfb -@dirrm share/apps/krdc/pics -@dirrm share/apps/krdc -@dirrm share/apps/kppp/pics -@dirrm share/apps/kppp/Rules/Yugoslavia -@dirrm share/apps/kppp/Rules/Uruguay -@dirrm share/apps/kppp/Rules/United_Kingdom -@dirrm share/apps/kppp/Rules/Ukraine -@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/Slovenia -@dirrm share/apps/kppp/Rules/Slovakia -@dirrm share/apps/kppp/Rules/Singapore -@dirrm share/apps/kppp/Rules/Russia -@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/Ukraine -@dirrm share/apps/kppp/Provider/Taiwan -@dirrm share/apps/kppp/Provider/Switzerland -@dirrm share/apps/kppp/Provider/Sweden -@dirrm share/apps/kppp/Provider/Slovenia -@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/konqueror/dirtree -@dirrm share/apps/konqueror -@dirrm share/apps/knode/pics -@dirrm share/apps/knode/icons/crystalsvg/32x32/actions -@dirrm share/apps/knode/icons/crystalsvg/32x32 -@dirrm share/apps/knode/icons/crystalsvg/22x22/actions -@dirrm share/apps/knode/icons/crystalsvg/22x22 -@dirrm share/apps/knode/icons/crystalsvg/16x16/actions -@dirrm share/apps/knode/icons/crystalsvg/16x16 -@dirrm share/apps/knode/icons/crystalsvg -@dirrm share/apps/knode/icons -@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/crystalsvg/16x16/actions -@dirrm share/apps/kit/icons/crystalsvg/16x16 -@dirrm share/apps/kit/icons/crystalsvg -@dirrm share/apps/kit/icons -@dirrm share/apps/kit -@dirrm share/apps/kinetd -@dirrm share/apps/kicker/applets -@dirrm share/apps/kicker -@dirrm share/apps/khtml/kpartplugins -@dirrm share/apps/khtml -@dirrm share/apps/kgpgcertmanager -@dirrm share/apps/kget/sounds -@dirrm share/apps/kget/pics -@dirrm share/apps/kget/icons/crystalsvg/22x22/actions -@dirrm share/apps/kget/icons/crystalsvg/22x22 -@dirrm share/apps/kget/icons/crystalsvg -@dirrm share/apps/kget/icons -@dirrm share/apps/kget -@dirrm share/apps/kdict/icons/crystalsvg/32x32/actions -@dirrm share/apps/kdict/icons/crystalsvg/32x32 -@dirrm share/apps/kdict/icons/crystalsvg/22x22/actions -@dirrm share/apps/kdict/icons/crystalsvg/22x22 -@dirrm share/apps/kdict/icons/crystalsvg/16x16/actions -@dirrm share/apps/kdict/icons/crystalsvg/16x16 -@dirrm share/apps/kdict/icons/crystalsvg -@dirrm share/apps/kdict/icons -@dirrm share/apps/kdict -@dirrm share/apps/kconf_update -@dirrm share/apps -@dirrm share/applnk/Utilities -@dirrm share/applnk/System -@dirrm share/applnk/Settings/Personalization -@dirrm share/applnk/Settings/Network -@dirrm share/applnk/Settings -@dirrm share/applnk/Internet/More -@dirrm share/applnk/Internet -@dirrm share/applnk/.hidden -@dirrm share/applnk -@dirrm lib/kde3 -@dirrm include/mimelib diff --git a/net/kdenetwork4/files/plist.ktalkd b/net/kdenetwork4/files/plist.ktalkd deleted file mode 100644 index e548a4153a4b..000000000000 --- a/net/kdenetwork4/files/plist.ktalkd +++ /dev/null @@ -1,11 +0,0 @@ -bin/ktalkd -bin/ktalkdlg -bin/mail.local -lib/kde3/kcm_ktalkd.la -lib/kde3/kcm_ktalkd.so -share/applnk/Settings/Network/kcmktalkd.desktop -share/config/ktalkdrc -share/icons/crystalsvg/16x16/apps/ktalkd.png -share/icons/crystalsvg/32x32/apps/ktalkd.png -share/icons/crystalsvg/48x48/apps/ktalkd.png -share/sounds/ktalkd.wav diff --git a/net/kdenetwork4/files/plist.ktalkd.rm b/net/kdenetwork4/files/plist.ktalkd.rm deleted file mode 100644 index 9d8234148b7a..000000000000 --- a/net/kdenetwork4/files/plist.ktalkd.rm +++ /dev/null @@ -1 +0,0 @@ -@dirrm share/sounds diff --git a/net/kdenetwork4/pkg-descr b/net/kdenetwork4/pkg-descr deleted file mode 100644 index a4beda2ba2a2..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. - -WWW: http://www.kde.org/ diff --git a/net/kdenetwork4/pkg-plist b/net/kdenetwork4/pkg-plist deleted file mode 100644 index 272dc7637c16..000000000000 --- a/net/kdenetwork4/pkg-plist +++ /dev/null @@ -1,1218 +0,0 @@ -bin/dsirc -bin/kdict -bin/kget -bin/kgpgcertmanager -bin/kit -bin/kmail -bin/kmailcvt -bin/knewstickerstub -bin/knode -bin/korn -bin/kppp -bin/kppplogview -bin/krdc -bin/krfb -bin/ksirc -bin/ktalkd -bin/ktalkdlg -bin/kxmlrpcd -bin/lisa -bin/mail.local -bin/reslisa -include/kmailIface.h -include/mimelib/address.h -include/mimelib/addrlist.h -include/mimelib/binhex.h -include/mimelib/body.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/kde3/kcm_knewsticker.la -lib/kde3/kcm_knewsticker.so -lib/kde3/kcm_krfb.la -lib/kde3/kcm_krfb.so -lib/kde3/kcm_ktalkd.la -lib/kde3/kcm_ktalkd.so -lib/kde3/kcm_lanbrowser.la -lib/kde3/kcm_lanbrowser.so -lib/kde3/kcm_xmlrpcd.la -lib/kde3/kcm_xmlrpcd.so -lib/kde3/kded_kinetd.la -lib/kde3/kded_kinetd.so -lib/kde3/kdict_panelapplet.la -lib/kde3/kdict_panelapplet.so -lib/kde3/kfile_rfc822.la -lib/kde3/kfile_rfc822.so -lib/kde3/khtml_kget.la -lib/kde3/khtml_kget.so -lib/kde3/kio_lan.la -lib/kde3/kio_lan.so -lib/kde3/knewsticker_panelapplet.la -lib/kde3/knewsticker_panelapplet.so -lib/kde3/kpf_panelapplet.la -lib/kde3/kpf_panelapplet.so -lib/kde3/kpfpropertiesdialog.la -lib/kde3/kpfpropertiesdialog.so -lib/ksirc.la -lib/ksirc.so -lib/kxmlrpcd.la -lib/kxmlrpcd.so -lib/libkdenetwork.la -lib/libkdenetwork.so -lib/libkdenetwork.so.2 -lib/libkntsrcfilepropsdlg.la -lib/libkntsrcfilepropsdlg.so -lib/libmimelib.la -lib/libmimelib.so -lib/libmimelib.so.1 -share/applnk/.hidden/kcmkiolan.desktop -share/applnk/.hidden/kcmlisa.desktop -share/applnk/.hidden/kcmnewsticker.desktop -share/applnk/.hidden/kcmreslisa.desktop -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/More/KOrn.desktop -share/applnk/Internet/More/knewsticker-standalone.desktop -share/applnk/Internet/More/kppplogview.desktop -share/applnk/Internet/kget.desktop -share/applnk/Internet/kit.desktop -share/applnk/Internet/knewsticker-standalone.desktop -share/applnk/Internet/kppplogview.desktop -share/applnk/Internet/krdc.desktop -share/applnk/Internet/ksirc.desktop -share/applnk/Settings/Network/kcmkrfb.desktop -share/applnk/Settings/Network/kcmktalkd.desktop -share/applnk/Settings/Personalization/kcmnewsticker.desktop -share/applnk/System/krfb.desktop -share/applnk/Utilities/kdict.desktop -share/applnk/Utilities/kmailcvt.desktop -share/apps/kconf_update/kmail-3.1-update-new-mail-notification-settings.pl -share/apps/kconf_update/kmail-3.1-use-UOID-for-identities.pl -share/apps/kconf_update/kmail-pgpidentity.pl -share/apps/kconf_update/kmail-upd-identities.pl -share/apps/kconf_update/kmail.upd -share/apps/kconf_update/knewsticker.upd -share/apps/kconf_update/knt-0.1-0.2.pl -share/apps/kconf_update/kpgp-3.1-upgrade-address-data.pl -share/apps/kconf_update/kpgp.upd -share/apps/kconf_update/upgrade-signature.pl -share/apps/kconf_update/upgrade-transport.pl -share/apps/kdict/icons/crystalsvg/16x16/actions/define_clip.png -share/apps/kdict/icons/crystalsvg/16x16/actions/query_erase.png -share/apps/kdict/icons/crystalsvg/22x22/actions/define_clip.png -share/apps/kdict/icons/crystalsvg/32x32/actions/define_clip.png -share/apps/kdict/kdictui.rc -share/apps/kget/icons/crystalsvg/22x22/actions/tool_clipboard.png -share/apps/kget/icons/crystalsvg/22x22/actions/tool_delay.png -share/apps/kget/icons/crystalsvg/22x22/actions/tool_delete.png -share/apps/kget/icons/crystalsvg/22x22/actions/tool_disconnect.png -share/apps/kget/icons/crystalsvg/22x22/actions/tool_dock.png -share/apps/kget/icons/crystalsvg/22x22/actions/tool_drop_target.png -share/apps/kget/icons/crystalsvg/22x22/actions/tool_expert.png -share/apps/kget/icons/crystalsvg/22x22/actions/tool_logwindow.png -share/apps/kget/icons/crystalsvg/22x22/actions/tool_normal.png -share/apps/kget/icons/crystalsvg/22x22/actions/tool_offline_mode_off.png -share/apps/kget/icons/crystalsvg/22x22/actions/tool_offline_mode_on.png -share/apps/kget/icons/crystalsvg/22x22/actions/tool_paste.png -share/apps/kget/icons/crystalsvg/22x22/actions/tool_pause.png -share/apps/kget/icons/crystalsvg/22x22/actions/tool_preferences.png -share/apps/kget/icons/crystalsvg/22x22/actions/tool_queue.png -share/apps/kget/icons/crystalsvg/22x22/actions/tool_restart.png -share/apps/kget/icons/crystalsvg/22x22/actions/tool_resume.png -share/apps/kget/icons/crystalsvg/22x22/actions/tool_shutdown.png -share/apps/kget/icons/crystalsvg/22x22/actions/tool_timer.png -share/apps/kget/icons/crystalsvg/22x22/actions/tool_uselastdir.png -share/apps/kget/kgetui.rc -share/apps/kget/pics/bar0.png -share/apps/kget/pics/bar1.png -share/apps/kget/pics/bar2.png -share/apps/kget/pics/bar3.png -share/apps/kget/pics/bar4.png -share/apps/kget/pics/bar5.png -share/apps/kget/pics/bar6.png -share/apps/kget/pics/connect0.png -share/apps/kget/pics/connect1.png -share/apps/kget/pics/connect2.png -share/apps/kget/pics/connect3.png -share/apps/kget/pics/connect4.png -share/apps/kget/pics/connect5.png -share/apps/kget/pics/connect6.png -share/apps/kget/pics/connect7.png -share/apps/kget/pics/dock.png -share/apps/kget/pics/md_delayed.png -share/apps/kget/pics/md_finished.png -share/apps/kget/pics/md_queued.png -share/apps/kget/pics/md_scheduled.png -share/apps/kget/pics/retrying.png -share/apps/kget/pics/target.png -share/apps/kget/pics/try0.png -share/apps/kget/pics/try1.png -share/apps/kget/pics/try2.png -share/apps/kget/pics/try3.png -share/apps/kget/pics/try4.png -share/apps/kget/pics/try5.png -share/apps/kget/pics/try6.png -share/apps/kget/pics/try7.png -share/apps/kget/sounds/added.wav -share/apps/kget/sounds/finished.wav -share/apps/kget/sounds/finishedall.wav -share/apps/kget/sounds/started.wav -share/apps/kgpgcertmanager/kgpgcertmanagerui.rc -share/apps/khtml/kpartplugins/kget_plug_in.rc -share/apps/kicker/applets/kdictapplet.desktop -share/apps/kicker/applets/knewsticker.desktop -share/apps/kicker/applets/kpfapplet.desktop -share/apps/kinetd/eventsrc -share/apps/kit/eventsrc -share/apps/kit/icons/crystalsvg/16x16/actions/kit_anonwarning.png -share/apps/kit/icons/crystalsvg/16x16/actions/kit_away.png -share/apps/kit/icons/crystalsvg/16x16/actions/kit_bold.png -share/apps/kit/icons/crystalsvg/16x16/actions/kit_group.png -share/apps/kit/icons/crystalsvg/16x16/actions/kit_info.png -share/apps/kit/icons/crystalsvg/16x16/actions/kit_logging.png -share/apps/kit/icons/crystalsvg/16x16/actions/kit_offline.png -share/apps/kit/icons/crystalsvg/16x16/actions/kit_online.png -share/apps/kit/icons/crystalsvg/16x16/actions/kit_sound.png -share/apps/kit/icons/crystalsvg/16x16/actions/kit_status.png -share/apps/kit/icons/crystalsvg/16x16/actions/kit_timestamping.png -share/apps/kit/icons/crystalsvg/16x16/actions/kit_warning.png -share/apps/kit/kitui.rc -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/eventsrc -share/apps/kmail/kmcomposerui.rc -share/apps/kmail/kmmainwin.rc -share/apps/kmail/pics/kdelogo.png -share/apps/kmail/pics/key.png -share/apps/kmail/pics/key_bad.png -share/apps/kmail/pics/key_ok.png -share/apps/kmail/pics/key_unknown.png -share/apps/kmail/pics/kmailwindowlayout1.png -share/apps/kmail/pics/kmailwindowlayout1_no_mime.png -share/apps/kmail/pics/kmailwindowlayout1_smart_mime.png -share/apps/kmail/pics/kmailwindowlayout2.png -share/apps/kmail/pics/kmailwindowlayout2_no_mime.png -share/apps/kmail/pics/kmailwindowlayout2_smart_mime.png -share/apps/kmail/pics/kmailwindowlayout3.png -share/apps/kmail/pics/kmailwindowlayout3_no_mime.png -share/apps/kmail/pics/kmailwindowlayout3_smart_mime.png -share/apps/kmail/pics/kmailwindowlayout4.png -share/apps/kmail/pics/kmailwindowlayout4_no_mime.png -share/apps/kmail/pics/kmailwindowlayout4_smart_mime.png -share/apps/kmail/pics/kmailwindowlayout5.png -share/apps/kmail/pics/kmailwindowlayout5_no_mime.png -share/apps/kmail/pics/kmailwindowlayout5_smart_mime.png -share/apps/kmail/pics/kmmsgdel.png -share/apps/kmail/pics/kmmsgfiller.png -share/apps/kmail/pics/kmmsgflag.png -share/apps/kmail/pics/kmmsgforwarded.png -share/apps/kmail/pics/kmmsgfullyencrypted.png -share/apps/kmail/pics/kmmsgfullysigned.png -share/apps/kmail/pics/kmmsgnew.png -share/apps/kmail/pics/kmmsgold.png -share/apps/kmail/pics/kmmsgpartiallyencrypted.png -share/apps/kmail/pics/kmmsgpartiallysigned.png -share/apps/kmail/pics/kmmsgqueued.png -share/apps/kmail/pics/kmmsgreplied.png -share/apps/kmail/pics/kmmsgsent.png -share/apps/kmail/pics/kmmsgundefinedencrypted.png -share/apps/kmail/pics/kmmsgundefinedsigned.png -share/apps/kmail/pics/kmmsgunseen.png -share/apps/kmail/pics/pgp-keys.png -share/apps/kmail/pics/pub_key_red.png -share/apps/kmail/pics/stopwatch.xbm -share/apps/kmail/pics/stopwatchMask.xbm -share/apps/kmail/profile-default-rc -share/apps/kmail/profile-high-contrast-rc -share/apps/kmail/profile-html-rc -share/apps/kmail/profile-purist-rc -share/apps/kmail/profile-secure-rc -share/apps/kmail/tips -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/crystalsvg/16x16/actions/message_reply.png -share/apps/knode/icons/crystalsvg/22x22/actions/message_reply.png -share/apps/knode/icons/crystalsvg/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/key.png -share/apps/knode/pics/key_bad.png -share/apps/knode/pics/key_ok.png -share/apps/knode/pics/key_unknown.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/Avades -share/apps/kppp/Provider/Netherlands/Bart -share/apps/kppp/Provider/Netherlands/Betuwenet%032BFree -share/apps/kppp/Provider/Netherlands/Betuwenet%032BQuality -share/apps/kppp/Provider/Netherlands/Cistron -share/apps/kppp/Provider/Netherlands/Concepts%032ICT -share/apps/kppp/Provider/Netherlands/Cubic%032Circle -share/apps/kppp/Provider/Netherlands/Cybercomm -share/apps/kppp/Provider/Netherlands/Dataweb -share/apps/kppp/Provider/Netherlands/Daxis%032Internet -share/apps/kppp/Provider/Netherlands/Demon%032Internet -share/apps/kppp/Provider/Netherlands/Energis-Ision -share/apps/kppp/Provider/Netherlands/Euronet%032anytime -share/apps/kppp/Provider/Netherlands/Euronet%032professional -share/apps/kppp/Provider/Netherlands/FlakkeeNet -share/apps/kppp/Provider/Netherlands/FreeAcces -share/apps/kppp/Provider/Netherlands/Freeler%032basis -share/apps/kppp/Provider/Netherlands/Freeler%032compleet -share/apps/kppp/Provider/Netherlands/Freeler%032voordelig -share/apps/kppp/Provider/Netherlands/HCC%032NET -share/apps/kppp/Provider/Netherlands/Hacom -share/apps/kppp/Provider/Netherlands/HetNet%032Basis%032Surfen -share/apps/kppp/Provider/Netherlands/HetNet%032Frequent%032Surfen -share/apps/kppp/Provider/Netherlands/HetNet%032Regelmatig%032Surfen -share/apps/kppp/Provider/Netherlands/IAE -share/apps/kppp/Provider/Netherlands/ILimburg -share/apps/kppp/Provider/Netherlands/InterNLnet -share/apps/kppp/Provider/Netherlands/Interbox -share/apps/kppp/Provider/Netherlands/Internet%032Acces%032Facilities -share/apps/kppp/Provider/Netherlands/Internet%032Online -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/KeyAcces%032met%0323%032cijferig%032kengetal -share/apps/kppp/Provider/Netherlands/KeyAcces%032met%0324%032cijferig%032kengetal -share/apps/kppp/Provider/Netherlands/Luna -share/apps/kppp/Provider/Netherlands/Macom -share/apps/kppp/Provider/Netherlands/Nederland.net -share/apps/kppp/Provider/Netherlands/Planet%032Internet%032Premium -share/apps/kppp/Provider/Netherlands/Planet%032Internet%032Standaard -share/apps/kppp/Provider/Netherlands/Plant%032Acces -share/apps/kppp/Provider/Netherlands/Popin -share/apps/kppp/Provider/Netherlands/PublishNet -share/apps/kppp/Provider/Netherlands/Raketnet -share/apps/kppp/Provider/Netherlands/Solcon -share/apps/kppp/Provider/Netherlands/Support%032Net -share/apps/kppp/Provider/Netherlands/Telebyte -share/apps/kppp/Provider/Netherlands/Tiscali%032Compleet -share/apps/kppp/Provider/Netherlands/Tiscali%032Gratis -share/apps/kppp/Provider/Netherlands/UwNet -share/apps/kppp/Provider/Netherlands/Via%032Networks -share/apps/kppp/Provider/Netherlands/Wannadoo%032budget -share/apps/kppp/Provider/Netherlands/Wannadoo%032budget%320plus -share/apps/kppp/Provider/Netherlands/Wannadoo%032smartpack -share/apps/kppp/Provider/Netherlands/Wirehub -share/apps/kppp/Provider/Netherlands/XS4All -share/apps/kppp/Provider/Netherlands/Zeelandnet -share/apps/kppp/Provider/Netherlands/Zon%0322 -share/apps/kppp/Provider/Netherlands/Zon%032Gratis -share/apps/kppp/Provider/Netherlands/Zon%032Inclusief -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/Slovenia/AmisNet -share/apps/kppp/Provider/Slovenia/Arnes -share/apps/kppp/Provider/Slovenia/Kiss -share/apps/kppp/Provider/Slovenia/MojNet -share/apps/kppp/Provider/Slovenia/SiOL -share/apps/kppp/Provider/Slovenia/Volja -share/apps/kppp/Provider/Sweden/.directory -share/apps/kppp/Provider/Sweden/Tiscali -share/apps/kppp/Provider/Sweden/Utfors -share/apps/kppp/Provider/Switzerland/Bluewin -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/Ukraine/.directory -share/apps/kppp/Provider/Ukraine/Adamant -share/apps/kppp/Provider/Ukraine/IPTelecom -share/apps/kppp/Provider/Ukraine/NuVse -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/United_Kingdom/UK%032Free%032Software%032Network%032ISDN -share/apps/kppp/Provider/United_Kingdom/UK%032Free%032Software%032Network%032Modem -share/apps/kppp/Provider/United_Kingdom/UKPOST%032ISDN -share/apps/kppp/Provider/United_Kingdom/UKPOST%032Modem -share/apps/kppp/Provider/Yugoslavia/041Net -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/SuOnline -share/apps/kppp/Provider/Yugoslavia/TippNet -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/Brasil_Ligbr.rst -share/apps/kppp/Rules/Brasil/Rio_de_Janeiro.rst -share/apps/kppp/Rules/Brasil/SaoPaulo.rst -share/apps/kppp/Rules/Croatia/CARNet.rst -share/apps/kppp/Rules/Czechia/Tarif_INTERNET_2002_INTERNET_MAXI_PLUS.rst -share/apps/kppp/Rules/Czechia/Tarif_INTERNET_2002_MINI.rst -share/apps/kppp/Rules/Czechia/Tarif_INTERNET_2002_STANDARD_MAXI.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/Cegetel_Local.rst -share/apps/kppp/Rules/France/Cegetel_National.rst -share/apps/kppp/Rules/France/France_Telecom_Local.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/France/Le_9_Local.rst -share/apps/kppp/Rules/France/Le_9_National.rst -share/apps/kppp/Rules/France/OneTel.rst -share/apps/kppp/Rules/France/Tele2_Local.rst -share/apps/kppp/Rules/France/Tele2_National.rst -share/apps/kppp/Rules/France/Wanadoo_Free.rst -share/apps/kppp/Rules/Germany/1und1_InternetZugang.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/Arcor_Internet_by_Call_easy.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/Callisa_City.rst -share/apps/kppp/Rules/Germany/City_Activ_Plus_Option.rst -share/apps/kppp/Rules/Germany/Cityweb.rst -share/apps/kppp/Rules/Germany/CompuservePro.rst -share/apps/kppp/Rules/Germany/E-Plus-Online_Jedermann.rst -share/apps/kppp/Rules/Germany/Easynet_easy-call.rst -share/apps/kppp/Rules/Germany/Freenet_Enterprise.rst -share/apps/kppp/Rules/Germany/Freenet_Sorglos.rst -share/apps/kppp/Rules/Germany/Freenet_StandardTarif.rst -share/apps/kppp/Rules/Germany/Freenet_Super_CbC.rst -share/apps/kppp/Rules/Germany/Freenet_special_call_by_call.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/Puretec.rst -share/apps/kppp/Rules/Germany/Telekom_City_Select_5_30.rst -share/apps/kppp/Rules/Germany/VR-Web.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_euro.rst -share/apps/kppp/Rules/Greece/Hellas_EPAK_Zone2_in_euro.rst -share/apps/kppp/Rules/Greece/Hellas_EPAK_local_in_euro.rst -share/apps/kppp/Rules/Greece/Hellas_analog_local_in_euro.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/Hungary/PapaTel.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_Internet_SpZero.rst -share/apps/kppp/Rules/Italy/Infostrada_Libero1055_Base.rst -share/apps/kppp/Rules/Italy/Infostrada_Libero1055_SpZero.rst -share/apps/kppp/Rules/Italy/Infostrada_Loc_Reg_Naz_SpZero.rst -share/apps/kppp/Rules/Italy/Infostrada_Locali_Base.rst -share/apps/kppp/Rules/Italy/Infostrada_Reg_Naz_Base.rst -share/apps/kppp/Rules/Italy/Tele2_Altri_ISP.rst -share/apps/kppp/Rules/Italy/Tele2_Internet.rst -share/apps/kppp/Rules/Italy/Telecom_Interurbane_Fino15Km.rst -share/apps/kppp/Rules/Italy/Telecom_Interurbane_Oltre15Km.rst -share/apps/kppp/Rules/Italy/Telecom_Locali.rst -share/apps/kppp/Rules/Italy/Teleconomy24_Internet.rst -share/apps/kppp/Rules/Italy/Teleconomy24_Nazionali.rst -share/apps/kppp/Rules/Italy/Teleconomy_NoStop_Internet.rst -share/apps/kppp/Rules/Italy/Wind_24ore_Internet_AltriISP.rst -share/apps/kppp/Rules/Italy/Wind_24ore_Internet_InWind.rst -share/apps/kppp/Rules/Italy/Wind_24ore_Interurbane.rst -share/apps/kppp/Rules/Italy/Wind_24ore_Urbane.rst -share/apps/kppp/Rules/Italy/Wind_Family+SuperLight_Internet_InWind.rst -share/apps/kppp/Rules/Italy/Wind_Family+SuperLight_Urbane_Interurbane.rst -share/apps/kppp/Rules/Italy/Wind_Family_Internet_AltriISP.rst -share/apps/kppp/Rules/Italy/Wind_Family_Internet_InWind.rst -share/apps/kppp/Rules/Italy/Wind_Family_Interurbane.rst -share/apps/kppp/Rules/Italy/Wind_Family_Urbane.rst -share/apps/kppp/Rules/Italy/Wind_Flat_Internet_AltriISP.rst -share/apps/kppp/Rules/Italy/Wind_Flat_Internet_InWind.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/12Move.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_Regio.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/Cistron -share/apps/kppp/Rules/Netherlands/Freeler_Basis.rst -share/apps/kppp/Rules/Netherlands/Freeler_Voordelig.rst -share/apps/kppp/Rules/Netherlands/HetNet_Regelmatig_Surfen.rst -share/apps/kppp/Rules/Netherlands/InterNLnet.rst -share/apps/kppp/Rules/Netherlands/OneTel_Spaarstand_Buiten_Regio.rst -share/apps/kppp/Rules/Netherlands/OneTel_Spaarstand_Regio.rst -share/apps/kppp/Rules/Netherlands/OneTel_Toets_1658_Buiten_Regio.rst -share/apps/kppp/Rules/Netherlands/OneTel_Toets_1658_Regio.rst -share/apps/kppp/Rules/Netherlands/Planet_Internet.rst -share/apps/kppp/Rules/Netherlands/Priority_Telecom_Nationaal.rst -share/apps/kppp/Rules/Netherlands/Priority_Telecom_Regionaal.rst -share/apps/kppp/Rules/Netherlands/Tele2_Extra_Buiten_Regio.rst -share/apps/kppp/Rules/Netherlands/Tele2_Extra_Regio.rst -share/apps/kppp/Rules/Netherlands/Tele2_Preselect_Buiten_Regio.rst -share/apps/kppp/Rules/Netherlands/Tele2_Preselect_Regio.rst -share/apps/kppp/Rules/Netherlands/Tele2_Toets_1609_Buiten_Regio.rst -share/apps/kppp/Rules/Netherlands/Tele2_Toets_1609_Regio.rst -share/apps/kppp/Rules/Netherlands/Wannadoo_Budget_Plus -share/apps/kppp/Rules/Norway/Local_Area.rst -share/apps/kppp/Rules/Norway/Long_Distance.rst -share/apps/kppp/Rules/Norway/Netcom.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/RomTelecom.rst -share/apps/kppp/Rules/Romania/Zapp-Mobile.rst -share/apps/kppp/Rules/Russia/TEMPLATE.ru -share/apps/kppp/Rules/Russia/mtu-intel_standart.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/Slovenia/omrezje_0880.rst -share/apps/kppp/Rules/Slovenia/omrezje_0889.rst -share/apps/kppp/Rules/Slovenia/stacionarno_omrezje.rst -share/apps/kppp/Rules/South_Afrika/South_Afrika.rst -share/apps/kppp/Rules/South_Afrika/South_Afrika_Justin.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/Ukraine/IPTelecom_hourly.rst -share/apps/kppp/Rules/Ukraine/NuVse_hourly.rst -share/apps/kppp/Rules/Ukraine/TEMPLATE.uk -share/apps/kppp/Rules/Ukraine/Utel_Unet.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/Yugoslavia/041_1xx_xxx.rst -share/apps/kppp/Rules/Yugoslavia/041_2xx_xxx.rst -share/apps/kppp/Rules/Yugoslavia/041_3xx_xxx.rst -share/apps/kppp/Rules/Yugoslavia/041_4xx_xxx.rst -share/apps/kppp/Rules/Yugoslavia/041_5xx_xxx.rst -share/apps/kppp/Rules/Yugoslavia/041_9xx_xxx.rst -share/apps/kppp/Rules/Yugoslavia/III_zona-preko_200km.rst -share/apps/kppp/Rules/Yugoslavia/II_zona-do_200km.rst -share/apps/kppp/Rules/Yugoslavia/I_zona-ista_mreza.rst -share/apps/kppp/Rules/Yugoslavia/Lokalni_poziv.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/krdc/pics/pindown.png -share/apps/krdc/pics/pinup.png -share/apps/krdc/pics/pointcursor.png -share/apps/krdc/pics/pointcursormask.png -share/apps/krfb/eventsrc -share/apps/krfb/pics/connection-side-image.png -share/apps/krfb/pics/eyes-closed24.png -share/apps/krfb/pics/eyes-open24.png -share/apps/ksirc/eventsrc -share/apps/ksirc/filters.pl -share/apps/ksirc/ksirc.pl -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/emoticons/biggrin.png -share/apps/ksirc/pics/emoticons/clown.png -share/apps/ksirc/pics/emoticons/cry.png -share/apps/ksirc/pics/emoticons/devil.png -share/apps/ksirc/pics/emoticons/frown.png -share/apps/ksirc/pics/emoticons/heart.png -share/apps/ksirc/pics/emoticons/loveit.png -share/apps/ksirc/pics/emoticons/puh.png -share/apps/ksirc/pics/emoticons/puh2.png -share/apps/ksirc/pics/emoticons/redface.png -share/apps/ksirc/pics/emoticons/sadley.png -share/apps/ksirc/pics/emoticons/slime.png -share/apps/ksirc/pics/emoticons/smile.png -share/apps/ksirc/pics/emoticons/wink.png -share/apps/ksirc/pics/emoticons/yummie.png -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/mdi.png -share/apps/ksirc/pics/mini-run.png -share/apps/ksirc/pics/sadsmiley.png -share/apps/ksirc/pics/sdi.png -share/apps/ksirc/pics/server.xpm -share/apps/ksirc/pics/smiley.png -share/apps/ksirc/pics/star.png -share/apps/ksirc/relnotes -share/apps/ksirc/servers.ini -share/apps/ksirc/servers.txt -share/apps/ksirc/sirc.help.gz -share/apps/lisa/README -share/config/ksircrc -share/config/ktalkdrc -share/doc/HTML/en/kcontrol/kcmtalkd/common -share/doc/HTML/en/kcontrol/kcmtalkd/index.cache.bz2 -share/doc/HTML/en/kcontrol/kcmtalkd/index.docbook -share/doc/HTML/en/kcontrol/kxmlrpcd/common -share/doc/HTML/en/kcontrol/kxmlrpcd/index.cache.bz2 -share/doc/HTML/en/kcontrol/kxmlrpcd/index.docbook -share/doc/HTML/en/kcontrol/lanbrowser/common -share/doc/HTML/en/kcontrol/lanbrowser/index.cache.bz2 -share/doc/HTML/en/kcontrol/lanbrowser/index.docbook -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.cache.bz2 -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/kgpgcertmanager/common -share/doc/HTML/en/kgpgcertmanager/index.cache.bz2 -share/doc/HTML/en/kgpgcertmanager/index.docbook -share/doc/HTML/en/kit/common -share/doc/HTML/en/kit/index.cache.bz2 -share/doc/HTML/en/kit/index.docbook -share/doc/HTML/en/kmail/common -share/doc/HTML/en/kmail/configure.docbook -share/doc/HTML/en/kmail/credits-and-licenses.docbook -share/doc/HTML/en/kmail/faq.docbook -share/doc/HTML/en/kmail/getting-started.docbook -share/doc/HTML/en/kmail/importing.docbook -share/doc/HTML/en/kmail/index.cache.bz2 -share/doc/HTML/en/kmail/index.docbook -share/doc/HTML/en/kmail/intro.docbook -share/doc/HTML/en/kmail/menus.docbook -share/doc/HTML/en/kmail/using-kmail.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/help-icon.png -share/doc/HTML/en/knewsticker/index.cache.bz2 -share/doc/HTML/en/knewsticker/index.docbook -share/doc/HTML/en/knewsticker/kcmnewsticker-filters.png -share/doc/HTML/en/knewsticker/kcmnewsticker-general.png -share/doc/HTML/en/knewsticker/kcmnewsticker-newssitedialog.png -share/doc/HTML/en/knewsticker/kcmnewsticker-newssources.png -share/doc/HTML/en/knewsticker/kcmnewsticker-scrollerprefs.png -share/doc/HTML/en/knewsticker/kcontrol-icon.png -share/doc/HTML/en/knewsticker/knewsticker-childpanel.png -share/doc/HTML/en/knewsticker/knewsticker-icon.png -share/doc/HTML/en/knewsticker/knewsticker-kicker.png -share/doc/HTML/en/knewsticker/knewsticker-ownwindow.png -share/doc/HTML/en/knewsticker/newarticle-icon.png -share/doc/HTML/en/knewsticker/newssite-icon.png -share/doc/HTML/en/knewsticker/oldarticle-icon.png -share/doc/HTML/en/knewsticker/preferences-icon.png -share/doc/HTML/en/knode/commands.docbook -share/doc/HTML/en/knode/common -share/doc/HTML/en/knode/credits.docbook -share/doc/HTML/en/knode/eyes.png -share/doc/HTML/en/knode/faq.docbook -share/doc/HTML/en/knode/gloss.docbook -share/doc/HTML/en/knode/greyball.png -share/doc/HTML/en/knode/greyballchk.png -share/doc/HTML/en/knode/index.cache.bz2 -share/doc/HTML/en/knode/index.docbook -share/doc/HTML/en/knode/install.docbook -share/doc/HTML/en/knode/introduction.docbook -share/doc/HTML/en/knode/journey.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-appearance-dialog.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/more.docbook -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/using-firststart.docbook -share/doc/HTML/en/knode/using-morefeatures.docbook -share/doc/HTML/en/knode/using-subscribing.docbook -share/doc/HTML/en/korn/common -share/doc/HTML/en/korn/index.cache.bz2 -share/doc/HTML/en/korn/index.docbook -share/doc/HTML/en/kpf/common -share/doc/HTML/en/kpf/index.cache.bz2 -share/doc/HTML/en/kpf/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.cache.bz2 -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/krfb/common -share/doc/HTML/en/krfb/index.cache.bz2 -share/doc/HTML/en/krfb/index.docbook -share/doc/HTML/en/ksirc/common -share/doc/HTML/en/ksirc/index.cache.bz2 -share/doc/HTML/en/ksirc/index.docbook -share/doc/HTML/en/ktalkd/common -share/doc/HTML/en/ktalkd/index.cache.bz2 -share/doc/HTML/en/ktalkd/index.docbook -share/doc/HTML/en/lisa/common -share/doc/HTML/en/lisa/index.cache.bz2 -share/doc/HTML/en/lisa/index.docbook -share/icons/crystalsvg/128x128/apps/kdict.png -share/icons/crystalsvg/128x128/apps/kmail.png -share/icons/crystalsvg/128x128/apps/kppp.png -share/icons/crystalsvg/16x16/apps/kdict.png -share/icons/crystalsvg/16x16/apps/kit.png -share/icons/crystalsvg/16x16/apps/kmail.png -share/icons/crystalsvg/16x16/apps/kmailcvt.png -share/icons/crystalsvg/16x16/apps/knewsticker.png -share/icons/crystalsvg/16x16/apps/knode.png -share/icons/crystalsvg/16x16/apps/korn.png -share/icons/crystalsvg/16x16/apps/kpf.png -share/icons/crystalsvg/16x16/apps/kppp.png -share/icons/crystalsvg/16x16/apps/ksirc.png -share/icons/crystalsvg/16x16/apps/ktalkd.png -share/icons/crystalsvg/22x22/actions/khtml_kget.png -share/icons/crystalsvg/32x32/apps/kdict.png -share/icons/crystalsvg/32x32/apps/kit.png -share/icons/crystalsvg/32x32/apps/kmail.png -share/icons/crystalsvg/32x32/apps/kmailcvt.png -share/icons/crystalsvg/32x32/apps/knewsticker.png -share/icons/crystalsvg/32x32/apps/knode.png -share/icons/crystalsvg/32x32/apps/korn.png -share/icons/crystalsvg/32x32/apps/kpf.png -share/icons/crystalsvg/32x32/apps/kppp.png -share/icons/crystalsvg/32x32/apps/krdc.png -share/icons/crystalsvg/32x32/apps/krfb.png -share/icons/crystalsvg/32x32/apps/ksirc.png -share/icons/crystalsvg/32x32/apps/ktalkd.png -share/icons/crystalsvg/48x48/apps/kdict.png -share/icons/crystalsvg/48x48/apps/kget.png -share/icons/crystalsvg/48x48/apps/kit.png -share/icons/crystalsvg/48x48/apps/kmail.png -share/icons/crystalsvg/48x48/apps/kmailcvt.png -share/icons/crystalsvg/48x48/apps/knewsticker.png -share/icons/crystalsvg/48x48/apps/knode.png -share/icons/crystalsvg/48x48/apps/korn.png -share/icons/crystalsvg/48x48/apps/kpf.png -share/icons/crystalsvg/48x48/apps/kppp.png -share/icons/crystalsvg/48x48/apps/krdc.png -share/icons/crystalsvg/48x48/apps/krfb.png -share/icons/crystalsvg/48x48/apps/ksirc.png -share/icons/crystalsvg/48x48/apps/ktalkd.png -share/icons/crystalsvg/48x48/mimetypes/kget_list.png -share/icons/crystalsvg/64x64/apps/kdict.png -share/icons/crystalsvg/64x64/apps/kmail.png -share/icons/crystalsvg/64x64/apps/kppp.png -share/icons/locolor/16x16/apps/krfb.png -share/icons/locolor/16x16/apps/ksirc.png -share/icons/locolor/32x32/apps/krfb.png -share/icons/locolor/32x32/apps/ksirc.png -share/mimelnk/application/x-kgetlist.desktop -share/services/kded/kinetd.desktop -share/services/kfile_rfc822.desktop -share/services/kinetd_krfb.desktop -share/services/knewsservice.protocol -share/services/kntsrcfilepropsdlg.desktop -share/services/kpfpropertiesdialogplugin.desktop -share/services/kxmlrpcd.desktop -share/services/lan.protocol -share/services/rlan.protocol -share/services/vnc.protocol -share/servicetypes/kinetdmodule.desktop -share/sounds/ktalkd.wav -@dirrm share/sounds -@dirrm share/servicetypes -@dirrm share/services/kded -@dirrm share/services -@dirrm share/mimelnk/application -@dirrm share/mimelnk -@dirrm share/icons/locolor/32x32/apps -@dirrm share/icons/locolor/32x32 -@dirrm share/icons/locolor/16x16/apps -@dirrm share/icons/locolor/16x16 -@dirrm share/icons/locolor -@dirrm share/icons/crystalsvg/64x64/apps -@dirrm share/icons/crystalsvg/64x64 -@dirrm share/icons/crystalsvg/48x48/mimetypes -@dirrm share/icons/crystalsvg/48x48/apps -@dirrm share/icons/crystalsvg/48x48 -@dirrm share/icons/crystalsvg/32x32/apps -@dirrm share/icons/crystalsvg/32x32 -@dirrm share/icons/crystalsvg/22x22/actions -@dirrm share/icons/crystalsvg/22x22 -@dirrm share/icons/crystalsvg/16x16/apps -@dirrm share/icons/crystalsvg/16x16 -@dirrm share/icons/crystalsvg/128x128/apps -@dirrm share/icons/crystalsvg/128x128 -@dirrm share/icons/crystalsvg -@dirrm share/icons -@dirrm share/doc/HTML/en/lisa -@dirrm share/doc/HTML/en/ktalkd -@dirrm share/doc/HTML/en/ksirc -@dirrm share/doc/HTML/en/krfb -@dirrm share/doc/HTML/en/kppp -@dirrm share/doc/HTML/en/kpf -@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/kgpgcertmanager -@dirrm share/doc/HTML/en/kdict -@dirrm share/doc/HTML/en/kcontrol/lanbrowser -@dirrm share/doc/HTML/en/kcontrol/kxmlrpcd -@dirrm share/doc/HTML/en/kcontrol/kcmtalkd -@dirrm share/doc/HTML/en/kcontrol -@dirrm share/doc/HTML/en -@dirrm share/doc/HTML -@dirrm share/config -@dirrm share/apps/lisa -@dirrm share/apps/ksirc/pics/emoticons -@dirrm share/apps/ksirc/pics -@dirrm share/apps/ksirc -@dirrm share/apps/krfb/pics -@dirrm share/apps/krfb -@dirrm share/apps/krdc/pics -@dirrm share/apps/krdc -@dirrm share/apps/kppp/pics -@dirrm share/apps/kppp/Rules/Yugoslavia -@dirrm share/apps/kppp/Rules/Uruguay -@dirrm share/apps/kppp/Rules/United_Kingdom -@dirrm share/apps/kppp/Rules/Ukraine -@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/Slovenia -@dirrm share/apps/kppp/Rules/Slovakia -@dirrm share/apps/kppp/Rules/Singapore -@dirrm share/apps/kppp/Rules/Russia -@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/Ukraine -@dirrm share/apps/kppp/Provider/Taiwan -@dirrm share/apps/kppp/Provider/Switzerland -@dirrm share/apps/kppp/Provider/Sweden -@dirrm share/apps/kppp/Provider/Slovenia -@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/konqueror/dirtree -@dirrm share/apps/konqueror -@dirrm share/apps/knode/pics -@dirrm share/apps/knode/icons/crystalsvg/32x32/actions -@dirrm share/apps/knode/icons/crystalsvg/32x32 -@dirrm share/apps/knode/icons/crystalsvg/22x22/actions -@dirrm share/apps/knode/icons/crystalsvg/22x22 -@dirrm share/apps/knode/icons/crystalsvg/16x16/actions -@dirrm share/apps/knode/icons/crystalsvg/16x16 -@dirrm share/apps/knode/icons/crystalsvg -@dirrm share/apps/knode/icons -@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/crystalsvg/16x16/actions -@dirrm share/apps/kit/icons/crystalsvg/16x16 -@dirrm share/apps/kit/icons/crystalsvg -@dirrm share/apps/kit/icons -@dirrm share/apps/kit -@dirrm share/apps/kinetd -@dirrm share/apps/kicker/applets -@dirrm share/apps/kicker -@dirrm share/apps/khtml/kpartplugins -@dirrm share/apps/khtml -@dirrm share/apps/kgpgcertmanager -@dirrm share/apps/kget/sounds -@dirrm share/apps/kget/pics -@dirrm share/apps/kget/icons/crystalsvg/22x22/actions -@dirrm share/apps/kget/icons/crystalsvg/22x22 -@dirrm share/apps/kget/icons/crystalsvg -@dirrm share/apps/kget/icons -@dirrm share/apps/kget -@dirrm share/apps/kdict/icons/crystalsvg/32x32/actions -@dirrm share/apps/kdict/icons/crystalsvg/32x32 -@dirrm share/apps/kdict/icons/crystalsvg/22x22/actions -@dirrm share/apps/kdict/icons/crystalsvg/22x22 -@dirrm share/apps/kdict/icons/crystalsvg/16x16/actions -@dirrm share/apps/kdict/icons/crystalsvg/16x16 -@dirrm share/apps/kdict/icons/crystalsvg -@dirrm share/apps/kdict/icons -@dirrm share/apps/kdict -@dirrm share/apps/kconf_update -@dirrm share/apps -@dirrm share/applnk/Utilities -@dirrm share/applnk/System -@dirrm share/applnk/Settings/Personalization -@dirrm share/applnk/Settings/Network -@dirrm share/applnk/Settings -@dirrm share/applnk/Internet/More -@dirrm share/applnk/Internet -@dirrm share/applnk/.hidden -@dirrm share/applnk -@dirrm lib/kde3 -@dirrm include/mimelib diff --git a/net/lam7/Makefile b/net/lam7/Makefile deleted file mode 100644 index aa9741146517..000000000000 --- a/net/lam7/Makefile +++ /dev/null @@ -1,22 +0,0 @@ -# New ports collection makefile for: lam -# Date created: Aug 21 2001 -# Whom: bremner@unb.ca -# -# $FreeBSD$ -# - -PORTNAME= lam -PORTVERSION= 6.5.9 -CATEGORIES= net parallel -MASTER_SITES= http://www.lam-mpi.org/download/files/ - -MAINTAINER= bremner@unb.ca -COMMENT= Local Area Multicomputer MPI implementation - -USE_BZIP2= yes -GNU_CONFIGURE= yes -CONFIGURE_ARGS+= --with-rsh=ssh - -.include "files/manpages" - -.include <bsd.port.mk> diff --git a/net/lam7/distinfo b/net/lam7/distinfo deleted file mode 100644 index 242698245c53..000000000000 --- a/net/lam7/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (lam-6.5.9.tar.bz2) = 8a4e98da5e1ba41e68c9422635b42364 diff --git a/net/lam7/files/manpages b/net/lam7/files/manpages deleted file mode 100644 index d15c9ae26cb6..000000000000 --- a/net/lam7/files/manpages +++ /dev/null @@ -1,339 +0,0 @@ -MAN1= \ -hboot.1 \ -hcc.1 \ -hcp.1 \ -hf77.1 \ -introu.1 \ -lamboot.1 \ -lamclean.1 \ -lamd.1 \ -lamexec.1 \ -lamgrow.1 \ -lamshrink.1 \ -lamtrace.1 \ -mpiCC.1 \ -mpic++.1 \ -mpicc.1 \ -mpif77.1 \ -mpimsg.1 \ -mpirun.1 \ -mpitask.1 \ -recon.1 \ -tkill.1 \ -tping.1 \ -wipe.1 - -MAN3= \ -MPIL_Comm_gps.3 \ -MPIL_Comm_id.3 \ -MPIL_Comm_parent.3 \ -MPIL_Signal.3 \ -MPIL_Spawn.3 \ -MPIL_Trace_off.3 \ -MPIL_Trace_on.3 \ -MPIL_Type_id.3 \ -MPIL_Universe_size.3 \ -MPIO_Request_c2f.3 \ -MPIO_Request_f2c.3 \ -MPIO_Test.3 \ -MPIO_Wait.3 \ -MPI_Abort.3 \ -MPI_Accumulate.3 \ -MPI_Address.3 \ -MPI_Allgather.3 \ -MPI_Allgatherv.3 \ -MPI_Alloc_mem.3 \ -MPI_Allreduce.3 \ -MPI_Alltoall.3 \ -MPI_Alltoallv.3 \ -MPI_Attr_delete.3 \ -MPI_Attr_get.3 \ -MPI_Attr_put.3 \ -MPI_Barrier.3 \ -MPI_Bcast.3 \ -MPI_Bsend.3 \ -MPI_Bsend_init.3 \ -MPI_Buffer_attach.3 \ -MPI_Buffer_detach.3 \ -MPI_COMM_DUP_FN.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_Cartdim_get.3 \ -MPI_Close_port.3 \ -MPI_Comm_accept.3 \ -MPI_Comm_c2f.3 \ -MPI_Comm_compare.3 \ -MPI_Comm_connect.3 \ -MPI_Comm_create.3 \ -MPI_Comm_create_errhandler.3 \ -MPI_Comm_create_keyval.3 \ -MPI_Comm_delete_attr.3 \ -MPI_Comm_disconnect.3 \ -MPI_Comm_dup.3 \ -MPI_Comm_f2c.3 \ -MPI_Comm_free.3 \ -MPI_Comm_free_keyval.3 \ -MPI_Comm_get_attr.3 \ -MPI_Comm_get_errhandler.3 \ -MPI_Comm_get_name.3 \ -MPI_Comm_get_parent.3 \ -MPI_Comm_group.3 \ -MPI_Comm_join.3 \ -MPI_Comm_rank.3 \ -MPI_Comm_remote_group.3 \ -MPI_Comm_remote_size.3 \ -MPI_Comm_ser_errhandler.3 \ -MPI_Comm_set_attr.3 \ -MPI_Comm_set_name.3 \ -MPI_Comm_size.3 \ -MPI_Comm_spawn.3 \ -MPI_Comm_spawn_multiple.3 \ -MPI_Comm_split.3 \ -MPI_Comm_test_inter.3 \ -MPI_DUP_FN.3 \ -MPI_Dims_create.3 \ -MPI_Errhandler_c2f.3 \ -MPI_Errhandler_create.3 \ -MPI_Errhandler_f2c.3 \ -MPI_Errhandler_free.3 \ -MPI_Errhandler_get.3 \ -MPI_Errhandler_set.3 \ -MPI_Error_class.3 \ -MPI_Error_string.3 \ -MPI_File_c2f.3 \ -MPI_File_close.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_errhandler.3 \ -MPI_File_get_group.3 \ -MPI_File_get_info.3 \ -MPI_File_get_position.3 \ -MPI_File_get_position_shared.3 \ -MPI_File_get_size.3 \ -MPI_File_get_type_extent.3 \ -MPI_File_get_view.3 \ -MPI_File_iread.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_preallocate.3 \ -MPI_File_read.3 \ -MPI_File_read_all.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_at_all_begin.3 \ -MPI_File_read_at_all_end.3 \ -MPI_File_read_ordered.3 \ -MPI_File_read_ordered_begin.3 \ -MPI_File_read_ordered_end.3 \ -MPI_File_read_shared.3 \ -MPI_File_seek.3 \ -MPI_File_seek_shared.3 \ -MPI_File_set_atomicity.3 \ -MPI_File_set_errhandler.3 \ -MPI_File_set_info.3 \ -MPI_File_set_size.3 \ -MPI_File_set_view.3 \ -MPI_File_sync.3 \ -MPI_File_write.3 \ -MPI_File_write_all.3 \ -MPI_File_write_all_begin.3 \ -MPI_File_write_all_end.3 \ -MPI_File_write_at.3 \ -MPI_File_write_at_all.3 \ -MPI_File_write_at_all_begin.3 \ -MPI_File_write_at_all_end.3 \ -MPI_File_write_ordered.3 \ -MPI_File_write_ordered_begin.3 \ -MPI_File_write_ordered_end.3 \ -MPI_File_write_shared.3 \ -MPI_Finalize.3 \ -MPI_Finalized.3 \ -MPI_Free_mem.3 \ -MPI_Gather.3 \ -MPI_Gatherv.3 \ -MPI_Get.3 \ -MPI_Get_address.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_Graph_neighbors_count.3 \ -MPI_Graphdims_get.3 \ -MPI_Group_c2f.3 \ -MPI_Group_compare.3 \ -MPI_Group_difference.3 \ -MPI_Group_excl.3 \ -MPI_Group_f2c.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_Ibsend.3 \ -MPI_Info_c2f.3 \ -MPI_Info_create.3 \ -MPI_Info_delete.3 \ -MPI_Info_dup.3 \ -MPI_Info_f2c.3 \ -MPI_Info_free.3 \ -MPI_Info_get.3 \ -MPI_Info_get_nkeys.3 \ -MPI_Info_get_nthkey.3 \ -MPI_Info_get_valuelen.3 \ -MPI_Info_set.3 \ -MPI_Init.3 \ -MPI_Init_thread.3 \ -MPI_Initialized.3 \ -MPI_Intercomm_create.3 \ -MPI_Intercomm_merge.3 \ -MPI_Iprobe.3 \ -MPI_Irecv.3 \ -MPI_Irsend.3 \ -MPI_Is_thread_main.3 \ -MPI_Isend.3 \ -MPI_Issend.3 \ -MPI_Keyval_create.3 \ -MPI_Keyval_free.3 \ -MPI_Lookup_name.3 \ -MPI_Op_c2f.3 \ -MPI_Op_create.3 \ -MPI_Op_f2c.3 \ -MPI_Op_free.3 \ -MPI_Open_port.3 \ -MPI_Pack.3 \ -MPI_Pack_size.3 \ -MPI_Pcontrol.3 \ -MPI_Probe.3 \ -MPI_Publish_name.3 \ -MPI_Put.3 \ -MPI_Query_thread.3 \ -MPI_Recv.3 \ -MPI_Recv_init.3 \ -MPI_Reduce.3 \ -MPI_Reduce_scatter.3 \ -MPI_Request_c2f.3 \ -MPI_Request_f2c.3 \ -MPI_Request_free.3 \ -MPI_Rsend.3 \ -MPI_Rsend_init.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_Startall.3 \ -MPI_Status_c2f.3 \ -MPI_Status_f2c.3 \ -MPI_TYPE_DUP_FN.3 \ -MPI_Test.3 \ -MPI_Test_cancelled.3 \ -MPI_Testall.3 \ -MPI_Testany.3 \ -MPI_Testsome.3 \ -MPI_Topo_test.3 \ -MPI_Type_c2f.3 \ -MPI_Type_commit.3 \ -MPI_Type_contiguous.3 \ -MPI_Type_create_darray.3 \ -MPI_Type_create_extent.3 \ -MPI_Type_create_hindexed.3 \ -MPI_Type_create_hvector.3 \ -MPI_Type_create_keyval.3 \ -MPI_Type_create_struct.3 \ -MPI_Type_create_subarray.3 \ -MPI_Type_delete_attr.3 \ -MPI_Type_dup.3 \ -MPI_Type_extent.3 \ -MPI_Type_f2c.3 \ -MPI_Type_free.3 \ -MPI_Type_free_keyval.3 \ -MPI_Type_get_attr.3 \ -MPI_Type_get_contents.3 \ -MPI_Type_get_envelope.3 \ -MPI_Type_get_extent.3 \ -MPI_Type_get_name.3 \ -MPI_Type_get_true_extent.3 \ -MPI_Type_hindexed.3 \ -MPI_Type_hvector.3 \ -MPI_Type_indexed.3 \ -MPI_Type_lb.3 \ -MPI_Type_set_attr.3 \ -MPI_Type_set_name.3 \ -MPI_Type_size.3 \ -MPI_Type_struct.3 \ -MPI_Type_ub.3 \ -MPI_Type_vector.3 \ -MPI_Unpack.3 \ -MPI_WIN_DUP_FN.3 \ -MPI_Wait.3 \ -MPI_Waitall.3 \ -MPI_Waitany.3 \ -MPI_Waitsome.3 \ -MPI_Win_c2f.3 \ -MPI_Win_complete.3 \ -MPI_Win_create.3 \ -MPI_Win_create_errhandler.3 \ -MPI_Win_create_keyval.3 \ -MPI_Win_delete_attr.3 \ -MPI_Win_f2c.3 \ -MPI_Win_fence.3 \ -MPI_Win_free.3 \ -MPI_Win_free_keyval.3 \ -MPI_Win_get_attr.3 \ -MPI_Win_get_errhandler.3 \ -MPI_Win_get_group.3 \ -MPI_Win_get_name.3 \ -MPI_Win_post.3 \ -MPI_Win_set_attr.3 \ -MPI_Win_set_errhandler.3 \ -MPI_Win_set_name.3 \ -MPI_Win_start.3 \ -MPI_Win_wait.3 \ -MPI_Wtick.3 \ -MPI_Wtime.3 \ -XMPI_Buoy.3 \ -XMPI_Coloroff.3 \ -XMPI_Coloron.3 \ -libmpi.3 - -MAN5= \ -CONSTANTS.5 \ -appschema.5 \ -bhost.5 \ -conf.5 \ -lam-helpfile.5 \ -procschema.5 - -MAN7= \ -LAM.7 \ -MPI.7 \ -lam.7 \ -mpi.7 diff --git a/net/lam7/files/patch-man-mans-Makefile.in b/net/lam7/files/patch-man-mans-Makefile.in deleted file mode 100644 index 9202a2aed5e8..000000000000 --- a/net/lam7/files/patch-man-mans-Makefile.in +++ /dev/null @@ -1,7 +0,0 @@ ---- man/mans/Makefile.in Mon Jan 27 17:03:38 2003 -+++ man/mans/Makefile.in Wed Jun 18 12:18:05 2003 -@@ -193,3 +193,3 @@ - --mansdir = $(mandir)/mans -+mansdir = $(datadir)/lam - MANS = $(man_MANS) diff --git a/net/lam7/pkg-descr b/net/lam7/pkg-descr deleted file mode 100644 index fe1d0e1b5ab3..000000000000 --- a/net/lam7/pkg-descr +++ /dev/null @@ -1,10 +0,0 @@ -LAM (Local Area Multicomputer) is an MPI programming environment and -development system for heterogeneous computers on a network. With LAM, -a dedicated cluster or an existing network computing infrastructure can act -as one parallel computer solving one problem. - -LAM features extensive debugging support in the application development cycle -and peak performance for production applications. LAM features a full -implementation of the MPI communication standard. - -WWW: http://www.lam-mpi.org/ diff --git a/net/lam7/pkg-plist b/net/lam7/pkg-plist deleted file mode 100644 index d66a3db691ec..000000000000 --- a/net/lam7/pkg-plist +++ /dev/null @@ -1,82 +0,0 @@ -bin/lamclean -bin/lamexec -bin/lamgrow -bin/lamshrink -bin/lamtrace -bin/mpimsg -bin/mpirun -bin/mpitask -bin/lamd -bin/tping -bin/hboot -bin/hcc -bin/hcp -bin/mpicc -bin/mpic++ -bin/mpiCC -bin/hf77 -bin/mpif77 -bin/lamboot -bin/lamhalt -bin/lamnodes -bin/recon -bin/tkill -bin/wipe -bin/balky -etc/lam-bhost.def -etc/lam-bhost.lam -etc/lam-conf.lam -etc/lam-conf.otb -etc/lam-helpfile -include/lam_config.h -include/mpi.h -include/mpif.h -include/mpi2c++/mpi2c++_config.h -include/mpi2c++/mpi++.h -include/mpi2c++/mpi2c++_map.h -include/mpi2c++/mpi2c++_list.h -include/mpi2c++/constants.h -include/mpi2c++/functions.h -include/mpi2c++/datatype.h -include/mpi2c++/exception.h -include/mpi2c++/op.h -include/mpi2c++/status.h -include/mpi2c++/request.h -include/mpi2c++/group.h -include/mpi2c++/comm.h -include/mpi2c++/errhandler.h -include/mpi2c++/intracomm.h -include/mpi2c++/topology.h -include/mpi2c++/intercomm.h -include/mpi2c++/datatype_inln.h -include/mpi2c++/functions_inln.h -include/mpi2c++/request_inln.h -include/mpi2c++/comm_inln.h -include/mpi2c++/intracomm_inln.h -include/mpi2c++/op_inln.h -include/mpi2c++/topology_inln.h -include/mpi2c++/intercomm_inln.h -include/mpi2c++/group_inln.h -include/mpi2c++/errhandler_inln.h -include/mpi2c++/status_inln.h -include/mpi++.h -include/mpio.h -include/mpiof.h -lib/liblamf77mpi.la -lib/liblamf77mpi.a -lib/libpmpi.la -lib/libpmpi.a -lib/liblam.la -lib/liblam.a -lib/libmpi.la -lib/libmpi.a -lib/liblammpi++.a -lib/liblammpio.a -share/lam/doc/ROMIO-COPYRIGHT -share/lam/doc/ROMIO-README -share/lam/doc/ROMIO-README_LAM -share/lam/doc/romio-users-guide.ps.gz -share/lam/mpi.share -@dirrm include/mpi2c++ -@dirrm share/lam/doc -@dirrm share/lam diff --git a/net/libnet10/Makefile b/net/libnet10/Makefile deleted file mode 100644 index ac1667e963d8..000000000000 --- a/net/libnet10/Makefile +++ /dev/null @@ -1,41 +0,0 @@ -# Ports collection makefile for: libnet -# Date created: Sun Feb 3, 1999 -# Whom: shipley@dis.org -# -# $FreeBSD$ -# - -PORTNAME= libnet -PORTVERSION= 1.0.2a -PORTEPOCH= 1 -CATEGORIES= net -MASTER_SITES= http://www.packetfactory.net/libnet/dist/ - -MAINTAINER= shipley@dis.org -COMMENT= A C library for creating IP packets - -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/files/patch-ac b/net/libnet10/files/patch-ac deleted file mode 100644 index f46b75aa79ca..000000000000 --- a/net/libnet10/files/patch-ac +++ /dev/null @@ -1,11 +0,0 @@ ---- include/libnet/libnet-functions.h.orig Fri Jun 7 00:31:29 2002 -+++ include/libnet/libnet-functions.h Fri Jun 7 00:31:41 2002 -@@ -74,7 +74,7 @@ - int, /* severity */ - char *, /* error message */ - ... /* varargs */ -- ); -+ ) __printflike(2, 3); - - - /* diff --git a/net/libnet10/files/patch-include::libnet.h b/net/libnet10/files/patch-include::libnet.h deleted file mode 100644 index e33a86fa3ecc..000000000000 --- a/net/libnet10/files/patch-include::libnet.h +++ /dev/null @@ -1,15 +0,0 @@ ---- include/libnet.h.orig Fri Jul 18 15:11:05 2003 -+++ include/libnet.h Fri Jul 18 15:12:16 2003 -@@ -84,9 +84,9 @@ - #define LIBNET_VERSION "1.0.2a" - - #if (!LIBNET_LIL_ENDIAN && !LIBNET_BIG_ENDIAN) --#error "byte order has not been specified, you'll --need to #define either LIBNET_LIL_ENDIAN or LIBNET_BIG_ENDIAN. See the --documentation regarding the libnet-config script." -+#error "byte order has not been specified, you'll" -+"need to #define either LIBNET_LIL_ENDIAN or LIBNET_BIG_ENDIAN. See the" -+"documentation regarding the libnet-config script." - #endif - - #endif /* __LIBNET_H */ diff --git a/net/libnet10/pkg-descr b/net/libnet10/pkg-descr deleted file mode 100644 index 8d5811f3c0fe..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.packetfactory.net/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/libosip2/Makefile b/net/libosip2/Makefile deleted file mode 100644 index b91fcba739fe..000000000000 --- a/net/libosip2/Makefile +++ /dev/null @@ -1,28 +0,0 @@ -# ex:ts=8 -# Ports collection makefile for: libosip -# Date created: Jun 14, 2002 -# Whom: ijliao -# -# $FreeBSD$ -# - -PORTNAME= libosip -PORTVERSION= 0.9.7 -CATEGORIES= net -MASTER_SITES= ${MASTER_SITE_GNU} -MASTER_SITE_SUBDIR= osip - -MAINTAINER= ports@FreeBSD.org -COMMENT= oSIP is an implementation of SIP - -USE_REINPLACE= yes -USE_LIBTOOL= yes -LIBTOOLFLAGS= --disable-ltlibs --release-ignore -INSTALLS_SHLIB= yes - -MAN1= osip.1 - -post-patch: - @${REINPLACE_CMD} -e "s|-pthread|${PTHREAD_LIBS}|g" ${WRKSRC}/configure - -.include <bsd.port.mk> diff --git a/net/libosip2/distinfo b/net/libosip2/distinfo deleted file mode 100644 index bda935efa150..000000000000 --- a/net/libosip2/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (libosip-0.9.7.tar.gz) = 1c97d2bbc042ba318b1ad422b6109537 diff --git a/net/libosip2/files/patch-configure b/net/libosip2/files/patch-configure deleted file mode 100644 index d7ca4400c4ef..000000000000 --- a/net/libosip2/files/patch-configure +++ /dev/null @@ -1,10 +0,0 @@ ---- configure.orig Fri Sep 6 08:22:31 2002 -+++ configure Sat Oct 12 16:00:32 2002 -@@ -5181,6 +5181,7 @@ - - # This can be used to rebuild libtool when needed - LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh" -+$ac_aux_dir/ltconfig $LIBTOOL_DEPS - - # Always use our own libtool. - LIBTOOL='$(SHELL) $(top_builddir)/libtool' diff --git a/net/libosip2/pkg-descr b/net/libosip2/pkg-descr deleted file mode 100644 index 240d294f3ae5..000000000000 --- a/net/libosip2/pkg-descr +++ /dev/null @@ -1,9 +0,0 @@ -oSIP is an implementation of SIP. - -SIP stands for the Session Initiation Protocol and is described by the -rfc2543 (soon to be deprecated by latest revisions). This library aims -to provide multimedia and telecom software developers an easy and powerful -interface to initiate and control SIP based sessions in their applications. -SIP is a open standard replacement from IETF for H323. - -WWW: http://www.gnu.org/software/osip/ diff --git a/net/libosip2/pkg-plist b/net/libosip2/pkg-plist deleted file mode 100644 index 1ad162bcb007..000000000000 --- a/net/libosip2/pkg-plist +++ /dev/null @@ -1,23 +0,0 @@ -@comment $FreeBSD$ -include/osip/const.h -include/osip/dialog.h -include/osip/fifo.h -include/osip/global.h -include/osip/list.h -include/osip/md5.h -include/osip/osip.h -include/osip/port.h -include/osip/sdp.h -include/osip/sdp_negoc.h -include/osip/sema.h -include/osip/smsg.h -include/osip/smsgtypes.h -include/osip/thread.h -include/osip/urls.h -lib/libfsmtl.a -lib/libfsmtl.so -lib/libfsmtl.so.9 -lib/libosip.a -lib/libosip.so -lib/libosip.so.9 -@dirrm include/osip diff --git a/net/linneighborhood/Makefile b/net/linneighborhood/Makefile deleted file mode 100644 index 1805b0386cb0..000000000000 --- a/net/linneighborhood/Makefile +++ /dev/null @@ -1,31 +0,0 @@ -# New ports collection makefile for: LinNeighborhood -# Please read files/porters-note! -# Date created: 2003/04/06 -# Whom: Heiner <h.eichmann@gmx.de> -# -# $FreeBSD$ -# - -PORTNAME= LinNeighborhood -PORTVERSION= 0.6.5 -PORTREVISION= 2 -CATEGORIES= sysutils -MASTER_SITES= http://www.bnro.de/~schmidjo/download/ - -MAINTAINER= h.eichmann@gmx.de -COMMENT= GTK+ gui for browsing and mounting SMB filesystems - -LIB_DEPENDS= intl.5:${PORTSDIR}/devel/gettext -RUN_DEPENDS= smbclient:${PORTSDIR}/net/samba - -GNU_CONFIGURE= yes -USE_GMAKE= yes -USE_GNOME= gtk12 - -pre-configure: - ${CP} ${FILESDIR}/mntent* ${WRKSRC}/src - -post-install: - @${CAT} ${PKGMESSAGE} - -.include <bsd.port.mk> diff --git a/net/linneighborhood/distinfo b/net/linneighborhood/distinfo deleted file mode 100644 index 102d0a481c04..000000000000 --- a/net/linneighborhood/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (LinNeighborhood-0.6.5.tar.gz) = 5e50c9cef403164aca22be9ade0a7dbf diff --git a/net/linneighborhood/files/mntent.h b/net/linneighborhood/files/mntent.h deleted file mode 100644 index 1e37778b2178..000000000000 --- a/net/linneighborhood/files/mntent.h +++ /dev/null @@ -1,35 +0,0 @@ -#ifdef HAVE_MNTENT_H -#include <mntent.h> -#else - -#ifndef mntent_h_ -#define mntent_h_ - -#include <stdio.h> -#include <stdlib.h> -#include <string.h> -#include <sys/param.h> -#include <sys/ucred.h> -#include <sys/mount.h> - -#define MOUNTED "mounted" -#define MNTTYPE_NFS "nfs" - -//#define MOPTSLEN (256 - (MNAMELEN * 2 + MFSNAMELEN + 2 * sizeof(int))) - -struct mntent { - char *mnt_fsname; /* file system name */ - char *mnt_dir; /* file system path prefix */ - char *mnt_type; /* dbg, efs, nfs */ - char *mnt_opts; /* ro, hide, etc. */ - int mnt_freq; /* dump frequency, in days */ - int mnt_passno; /* pass number on parallel fsck */ -}; - -FILE * setmntent(char * filep, char * type); -struct mntent *getmntent(FILE * filep); -//char * hasmntopt(struct mntent * mnt, char * opt); -int endmntent(FILE * filep); - -#endif /* mntent_h_ */ -#endif /* not HAVE_MNTENT_H */ diff --git a/net/linneighborhood/files/mntent_compat.c b/net/linneighborhood/files/mntent_compat.c deleted file mode 100644 index 9112983e61e6..000000000000 --- a/net/linneighborhood/files/mntent_compat.c +++ /dev/null @@ -1,88 +0,0 @@ -#include "mntent.h" -#include <sys/param.h> -//#include <sys/ucred.h> -#include <sys/mount.h> -#include <fstab.h> - -struct statfs *getmntent_mntbufp; -int getmntent_mntcount = 0; -int getmntent_mntpos = 0; -char mntent_global_opts[256]; -struct mntent mntent_global_mntent; - -FILE * setmntent(char * filep, char * type) -{ - getmntent_mntpos = 0; - getmntent_mntcount = getmntinfo(&getmntent_mntbufp, MNT_WAIT); - return (FILE *)1; // dummy -} - -void getmntent_addopt(char ** c, const char * s) -{ - int i = strlen(s); - *(*c)++ = ','; - strcpy(*c, s); - *c += i; -} - -struct mntent *getmntent(FILE * filep) -{ - char *c = mntent_global_opts+2; - struct fstab *fst; - if (getmntent_mntpos >= getmntent_mntcount) - return 0; - if (getmntent_mntbufp[getmntent_mntpos].f_flags & MNT_RDONLY) strcpy(mntent_global_opts, "ro"); - else strcpy(mntent_global_opts, "rw"); - - if (getmntent_mntbufp[getmntent_mntpos].f_flags & MNT_SYNCHRONOUS) getmntent_addopt(&c, "sync"); - if (getmntent_mntbufp[getmntent_mntpos].f_flags & MNT_NOEXEC) getmntent_addopt(&c, "noexec"); - if (getmntent_mntbufp[getmntent_mntpos].f_flags & MNT_NOSUID) getmntent_addopt(&c, "nosuid"); - if (getmntent_mntbufp[getmntent_mntpos].f_flags & MNT_NODEV) getmntent_addopt(&c, "nodev"); - if (getmntent_mntbufp[getmntent_mntpos].f_flags & MNT_UNION) getmntent_addopt(&c, "union"); - if (getmntent_mntbufp[getmntent_mntpos].f_flags & MNT_ASYNC) getmntent_addopt(&c, "async"); - if (getmntent_mntbufp[getmntent_mntpos].f_flags & MNT_NOATIME) getmntent_addopt(&c, "noatime"); - if (getmntent_mntbufp[getmntent_mntpos].f_flags & MNT_NOCLUSTERR) getmntent_addopt(&c, "noclusterr"); - if (getmntent_mntbufp[getmntent_mntpos].f_flags & MNT_NOCLUSTERW) getmntent_addopt(&c, "noclusterw"); - if (getmntent_mntbufp[getmntent_mntpos].f_flags & MNT_NOSYMFOLLOW) getmntent_addopt(&c, "nosymfollow"); - if (getmntent_mntbufp[getmntent_mntpos].f_flags & MNT_SUIDDIR) getmntent_addopt(&c, "suiddir"); - - mntent_global_mntent.mnt_fsname = getmntent_mntbufp[getmntent_mntpos].f_mntfromname; - mntent_global_mntent.mnt_dir = getmntent_mntbufp[getmntent_mntpos].f_mntonname; - mntent_global_mntent.mnt_type = getmntent_mntbufp[getmntent_mntpos].f_fstypename; - mntent_global_mntent.mnt_opts = mntent_global_opts; - if ((fst = getfsspec(getmntent_mntbufp[getmntent_mntpos].f_mntfromname))) - { - mntent_global_mntent.mnt_freq = fst->fs_freq; - mntent_global_mntent.mnt_passno = fst->fs_passno; - } - else if ((fst = getfsfile(getmntent_mntbufp[getmntent_mntpos].f_mntonname))) - { - mntent_global_mntent.mnt_freq = fst->fs_freq; - mntent_global_mntent.mnt_passno = fst->fs_passno; - } - else if (strcmp(getmntent_mntbufp[getmntent_mntpos].f_fstypename, "ufs") == 0) - { - if (strcmp(getmntent_mntbufp[getmntent_mntpos].f_mntonname, "/") == 0) - { - mntent_global_mntent.mnt_freq = 1; - mntent_global_mntent.mnt_passno = 1; - } - else - { - mntent_global_mntent.mnt_freq = 2; - mntent_global_mntent.mnt_passno = 2; - } - } - else - { - mntent_global_mntent.mnt_freq = 0; - mntent_global_mntent.mnt_passno = 0; - } - ++getmntent_mntpos; - return & mntent_global_mntent; -} - -int endmntent(FILE * filep) -{ - return 0; -} diff --git a/net/linneighborhood/files/patch-Makefile.in b/net/linneighborhood/files/patch-Makefile.in deleted file mode 100644 index 4f666cbaac08..000000000000 --- a/net/linneighborhood/files/patch-Makefile.in +++ /dev/null @@ -1,29 +0,0 @@ ---- src/Makefile.in.orig Sun Jun 9 09:58:47 2002 -+++ src/Makefile.in Thu Feb 13 09:05:55 2003 -@@ -88,14 +88,14 @@ - localedir = @localedir@ - - bin_PROGRAMS = LinNeighborhood --LinNeighborhood_SOURCES = browsewrap.c data.c filesystem.c gtk_dialog.c gtk_gui.c gtk_mountdlg.c gtk_sharewindow.c gtk_tree.c guiwrap.c io.c libsmb.c lmhosts.c main.c preferences.c smbbrowse.c smbmount.c utility.c -+LinNeighborhood_SOURCES = browsewrap.c data.c filesystem.c gtk_dialog.c gtk_gui.c gtk_mountdlg.c gtk_sharewindow.c gtk_tree.c guiwrap.c io.c libsmb.c lmhosts.c main.c preferences.c smbbrowse.c smbmount.c utility.c mntent_compat.c - --noinst_HEADERS = browsewrap.h data.h define.h filesystem.h gtk_dialog.h gtk_gui.h gtk_mountdlg.h gtk_sharewindow.h gtk_tree.h guiwrap.h io.h libsmb.h preferences.h samba.h smbif.h utility.h -+noinst_HEADERS = browsewrap.h data.h define.h filesystem.h gtk_dialog.h gtk_gui.h gtk_mountdlg.h gtk_sharewindow.h gtk_tree.h guiwrap.h io.h libsmb.h preferences.h samba.h smbif.h utility.h mntent.h - - - LinNeighborhood_LDADD = @GTK_LIBS@ - INCLUDES = @GTK_CFLAGS@ -DLIBDIR=\"$(libdir)\" -DDATADIR=\"$(datadir)\" --LIBS = @GTK_LIBS@ -lpthread -+LIBS = @GTK_LIBS@ -lc_r -lutil - - EXTRA_DIST = picture - mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -@@ -110,7 +110,7 @@ - LinNeighborhood_OBJECTS = browsewrap.o data.o filesystem.o gtk_dialog.o \ - gtk_gui.o gtk_mountdlg.o gtk_sharewindow.o gtk_tree.o guiwrap.o io.o \ - libsmb.o lmhosts.o main.o preferences.o smbbrowse.o smbmount.o \ --utility.o -+utility.o mntent_compat.o - LinNeighborhood_DEPENDENCIES = - LinNeighborhood_LDFLAGS = - CFLAGS = @CFLAGS@ diff --git a/net/linneighborhood/files/patch-configure b/net/linneighborhood/files/patch-configure deleted file mode 100644 index 145bad4a5e06..000000000000 --- a/net/linneighborhood/files/patch-configure +++ /dev/null @@ -1,32 +0,0 @@ ---- configure.orig Sun Jun 9 09:58:45 2002 -+++ configure Thu Feb 13 07:53:13 2003 -@@ -4800,13 +4800,13 @@ - { (exit 1); exit 1; }; } - fi - --echo "$as_me:4803: checking for pthread_exit in -lpthread" >&5 --echo $ECHO_N "checking for pthread_exit in -lpthread... $ECHO_C" >&6 -+echo "$as_me:4803: checking for pthread_exit in -lc_r" >&5 -+echo $ECHO_N "checking for pthread_exit in -lc_r... $ECHO_C" >&6 - if test "${ac_cv_lib_pthread_pthread_exit+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 - else - ac_check_lib_save_LIBS=$LIBS --LIBS="-lpthread $LIBS" -+LIBS="-lc_r $LIBS" - cat >conftest.$ac_ext <<_ACEOF - #line 4811 "configure" - #include "confdefs.h" -@@ -4857,10 +4857,10 @@ - - if test "x$lib_pthread" = "xno" ; then - { { echo "$as_me:4859: error: -- *** libpthread.so: posix thread library no found *** -+ *** libc_r.so: posix thread library no found *** - " >&5 - echo "$as_me: error: -- *** libpthread.so: posix thread library no found *** -+ *** libc_r.so: posix thread library no found *** - " >&2;} - { (exit 1); exit 1; }; } - fi diff --git a/net/linneighborhood/files/patch-data.c b/net/linneighborhood/files/patch-data.c deleted file mode 100644 index 7138363dbe20..000000000000 --- a/net/linneighborhood/files/patch-data.c +++ /dev/null @@ -1,12 +0,0 @@ ---- src/data.c.orig Thu Apr 10 21:59:12 2003 -+++ src/data.c Thu Apr 10 22:45:59 2003 -@@ -171,6 +171,9 @@ - { - if ( mount ) - { -+ char *c = strchr(mount->machine, '@'); // remove user name from smb name -+ if (c) -+ memmove(mount->machine, c+1, strlen(c)+1); - if ( mount_list_search_by_mountpoint(mount->mountpoint) == NULL ) - { - mountlist = g_slist_append(mountlist, mount); diff --git a/net/linneighborhood/files/patch-gtk_dialog.c b/net/linneighborhood/files/patch-gtk_dialog.c deleted file mode 100644 index 357795ad7b26..000000000000 --- a/net/linneighborhood/files/patch-gtk_dialog.c +++ /dev/null @@ -1,55 +0,0 @@ ---- src/gtk_dialog.c.orig Sun Apr 6 13:07:13 2003 -+++ src/gtk_dialog.c Sun Apr 6 13:10:50 2003 -@@ -2039,34 +2039,34 @@ - gtk_widget_show(button); - - frame = gtk_frame_new(_(" smbmount version ")); -- gtk_container_border_width(GTK_CONTAINER(frame), 3); -- gtk_box_pack_start(GTK_BOX(frame_vbox), frame, FALSE, TRUE, 0); -- gtk_widget_show(frame); -+// gtk_container_border_width(GTK_CONTAINER(frame), 3); -+// gtk_box_pack_start(GTK_BOX(frame_vbox), frame, FALSE, TRUE, 0); -+// gtk_widget_show(frame); - - frame_vbox = gtk_vbox_new(FALSE, 0); -- gtk_container_border_width(GTK_CONTAINER(frame_vbox), 5); -- gtk_container_add(GTK_CONTAINER(frame), frame_vbox); -- gtk_widget_show(frame_vbox); -+// gtk_container_border_width(GTK_CONTAINER(frame_vbox), 5); -+// gtk_container_add(GTK_CONTAINER(frame), frame_vbox); -+// gtk_widget_show(frame_vbox); - - smbmount_204_radio = gtk_radio_button_new_with_label(NULL, _("version <= 2.0.4")); -- if ( globals.linux_version < LINUX_2_2 ) -- gtk_widget_set_sensitive(smbmount_204_radio, FALSE); -- gtk_box_pack_start(GTK_BOX(frame_vbox), smbmount_204_radio, FALSE, TRUE, 0); -- gtk_widget_show(smbmount_204_radio); -+// if ( globals.linux_version < LINUX_2_2 ) -+// gtk_widget_set_sensitive(smbmount_204_radio, FALSE); -+// gtk_box_pack_start(GTK_BOX(frame_vbox), smbmount_204_radio, FALSE, TRUE, 0); -+// gtk_widget_show(smbmount_204_radio); - - smbmount_205_radio = gtk_radio_button_new_with_label( - gtk_radio_button_group(GTK_RADIO_BUTTON(smbmount_204_radio)), _("version = 2.0.5")); -- if ( globals.linux_version < LINUX_2_2 ) -- gtk_widget_set_sensitive(smbmount_205_radio, FALSE); -- gtk_box_pack_start(GTK_BOX(frame_vbox), smbmount_205_radio, FALSE, TRUE, 0); -- gtk_widget_show(smbmount_205_radio); -+// if ( globals.linux_version < LINUX_2_2 ) -+// gtk_widget_set_sensitive(smbmount_205_radio, FALSE); -+// gtk_box_pack_start(GTK_BOX(frame_vbox), smbmount_205_radio, FALSE, TRUE, 0); -+// gtk_widget_show(smbmount_205_radio); - - smbmount_206_radio = gtk_radio_button_new_with_label( - gtk_radio_button_group(GTK_RADIO_BUTTON(smbmount_205_radio)), _("version >= 2.0.6")); -- if ( globals.linux_version < LINUX_2_2 ) -- gtk_widget_set_sensitive(smbmount_206_radio, FALSE); -- gtk_box_pack_start(GTK_BOX(frame_vbox), smbmount_206_radio, FALSE, TRUE, 0); -- gtk_widget_show(smbmount_206_radio); -+// if ( globals.linux_version < LINUX_2_2 ) -+// gtk_widget_set_sensitive(smbmount_206_radio, FALSE); -+// gtk_box_pack_start(GTK_BOX(frame_vbox), smbmount_206_radio, FALSE, TRUE, 0); -+// gtk_widget_show(smbmount_206_radio); - - switch ( pref.v.smbmount_version ) - { diff --git a/net/linneighborhood/files/patch-gtk_mountdlg.c b/net/linneighborhood/files/patch-gtk_mountdlg.c deleted file mode 100644 index 39a88713af63..000000000000 --- a/net/linneighborhood/files/patch-gtk_mountdlg.c +++ /dev/null @@ -1,103 +0,0 @@ ---- src/gtk_mountdlg.c.orig Wed Apr 9 19:51:41 2003 -+++ src/gtk_mountdlg.c Wed Apr 9 20:18:14 2003 -@@ -726,65 +726,65 @@ - - /*root password */ - frame = gtk_frame_new(_("Mount as Root")); -- gtk_box_pack_start(GTK_BOX (GTK_DIALOG (mount_dlg)->vbox), frame, TRUE, TRUE, 5); -- gtk_widget_show(frame); -+// gtk_box_pack_start(GTK_BOX (GTK_DIALOG (mount_dlg)->vbox), frame, TRUE, TRUE, 5); -+// gtk_widget_show(frame); - - vbox=gtk_vbox_new(FALSE,0); -- gtk_container_border_width(GTK_CONTAINER(vbox), 3); -- gtk_container_add(GTK_CONTAINER(frame),vbox); -- gtk_widget_show(vbox); -+// gtk_container_border_width(GTK_CONTAINER(vbox), 3); -+// gtk_container_add(GTK_CONTAINER(frame),vbox); -+// gtk_widget_show(vbox); - - hbox=gtk_hbox_new(FALSE,0); - /* gtk_box_pack_start(GTK_BOX (GTK_DIALOG (mount_dlg)->vbox), - hbox, TRUE, TRUE, 5); - gtk_container_border_width(GTK_CONTAINER(hbox), 3); - gtk_container_add(GTK_CONTAINER(frame),hbox); */ -- gtk_box_pack_start(GTK_BOX (vbox),hbox, TRUE, TRUE, 0); -- gtk_widget_show(hbox); -+// gtk_box_pack_start(GTK_BOX (vbox),hbox, TRUE, TRUE, 0); -+// gtk_widget_show(hbox); - - sumountcheckbox = gtk_check_button_new_with_label(_("OK")); - /* gtk_widget_set_usize(sumountcheckbox,120,-1); */ -- if (geteuid()==0) /*No root password if you are root*/ -- gtk_widget_set_sensitive(sumountcheckbox,FALSE); -- gtk_toggle_button_set_state(GTK_TOGGLE_BUTTON(sumountcheckbox),cachesupwd & sumount); -- gtk_box_pack_start (GTK_BOX (hbox), sumountcheckbox, FALSE, TRUE, 0); -- gtk_widget_show (sumountcheckbox); -+// if (geteuid()==0) /*No root password if you are root*/ -+// gtk_widget_set_sensitive(sumountcheckbox,FALSE); -+// gtk_toggle_button_set_state(GTK_TOGGLE_BUTTON(sumountcheckbox),cachesupwd & sumount); -+// gtk_box_pack_start (GTK_BOX (hbox), sumountcheckbox, FALSE, TRUE, 0); -+// gtk_widget_show (sumountcheckbox); - - label=gtk_label_new(_("Password:")); -- gtk_box_pack_start(GTK_BOX (hbox),label, FALSE, TRUE, 0); -+// gtk_box_pack_start(GTK_BOX (hbox),label, FALSE, TRUE, 0); - /* gtk_widget_set_usize(label,100,-1); */ -- gtk_label_set_justify(GTK_LABEL(label),GTK_JUSTIFY_LEFT); -- gtk_widget_show(label); -+// gtk_label_set_justify(GTK_LABEL(label),GTK_JUSTIFY_LEFT); -+// gtk_widget_show(label); - - supasswdentry= gtk_entry_new_with_max_length(MASTER_LEN); -- gtk_entry_set_visibility(GTK_ENTRY(supasswdentry), 0); -+// gtk_entry_set_visibility(GTK_ENTRY(supasswdentry), 0); - -- if (sumount && cachesupwd) -- gtk_entry_set_text (GTK_ENTRY (supasswdentry), supasswd); -- else -- gtk_entry_set_text (GTK_ENTRY (supasswdentry), ""); -+// if (sumount && cachesupwd) -+// gtk_entry_set_text (GTK_ENTRY (supasswdentry), supasswd); -+// else -+// gtk_entry_set_text (GTK_ENTRY (supasswdentry), ""); - -- gtk_widget_set_sensitive(supasswdentry,sumount&cachesupwd); -- gtk_signal_connect_object(GTK_OBJECT(supasswdentry), "key_press_event", -- GTK_SIGNAL_FUNC(smb_mount_key_press_callback), NULL); -- gtk_box_pack_start (GTK_BOX (hbox), supasswdentry, TRUE, TRUE, 5); -- gtk_widget_show (supasswdentry); -- gtk_signal_connect (GTK_OBJECT(sumountcheckbox), "toggled", -- GTK_SIGNAL_FUNC(supwentry_toggle_sensitive),supasswdentry); -+// gtk_widget_set_sensitive(supasswdentry,sumount&cachesupwd); -+// gtk_signal_connect_object(GTK_OBJECT(supasswdentry), "key_press_event", -+// GTK_SIGNAL_FUNC(smb_mount_key_press_callback), NULL); -+// gtk_box_pack_start (GTK_BOX (hbox), supasswdentry, TRUE, TRUE, 5); -+// gtk_widget_show (supasswdentry); -+// gtk_signal_connect (GTK_OBJECT(sumountcheckbox), "toggled", -+// GTK_SIGNAL_FUNC(supwentry_toggle_sensitive),supasswdentry); - - hbox=gtk_hbox_new(FALSE,0); -- gtk_box_pack_start(GTK_BOX (vbox),hbox, TRUE, TRUE, 0); -- gtk_widget_show(hbox); -+// gtk_box_pack_start(GTK_BOX (vbox),hbox, TRUE, TRUE, 0); -+// gtk_widget_show(hbox); - - sucachepwdcheckbox = gtk_check_button_new_with_label(_("Cache Root Password")); - - /* gtk_widget_set_usize(sumountcheckbox,120,-1); */ -- if (geteuid()==0) -- gtk_widget_set_sensitive(sumountcheckbox,FALSE); -- gtk_toggle_button_set_state(GTK_TOGGLE_BUTTON(sucachepwdcheckbox),cachesupwd &sumount); -- gtk_widget_set_sensitive(sucachepwdcheckbox,sumount); -- gtk_box_pack_start (GTK_BOX (hbox), sucachepwdcheckbox, FALSE, TRUE, 0); -- gtk_widget_show (sucachepwdcheckbox); -+// if (geteuid()==0) -+// gtk_widget_set_sensitive(sumountcheckbox,FALSE); -+// gtk_toggle_button_set_state(GTK_TOGGLE_BUTTON(sucachepwdcheckbox),cachesupwd &sumount); -+// gtk_widget_set_sensitive(sucachepwdcheckbox,sumount); -+// gtk_box_pack_start (GTK_BOX (hbox), sucachepwdcheckbox, FALSE, TRUE, 0); -+// gtk_widget_show (sucachepwdcheckbox); - - /*-action_area*/ - mount_button = gtk_button_new_with_label(_("Mount")); diff --git a/net/linneighborhood/files/patch-gtk_tree.c b/net/linneighborhood/files/patch-gtk_tree.c deleted file mode 100644 index f0f78a24942c..000000000000 --- a/net/linneighborhood/files/patch-gtk_tree.c +++ /dev/null @@ -1,19 +0,0 @@ ---- src/gtk_tree.c.orig Wed Apr 9 20:32:53 2003 -+++ src/gtk_tree.c Wed Apr 9 20:48:24 2003 -@@ -2011,7 +2011,7 @@ - if ( GTK_IS_TREE_ITEM(item) ) - { - box = GTK_BIN(item)->child; -- -+ if (!box) return itemtype; - step_list = GTK_BOX(box)->children->next; /* type entry */ - child = step_list->data; - label = GTK_LABEL(child->widget); -@@ -2033,7 +2033,6 @@ - static unsigned int tree_item_count (GtkTreeItem *item) - { - unsigned int ireturn; -- - if ( item != NULL ) - { - if ( item->subtree ) diff --git a/net/linneighborhood/files/patch-io.c b/net/linneighborhood/files/patch-io.c deleted file mode 100644 index 6bc1993370ec..000000000000 --- a/net/linneighborhood/files/patch-io.c +++ /dev/null @@ -1,18 +0,0 @@ ---- src/io.c.orig Fri Apr 11 16:58:15 2003 -+++ src/io.c Fri Apr 11 17:03:11 2003 -@@ -130,12 +130,12 @@ - /* save only 'not root' mounts -> plain password */ - if ( (mount != NULL) && (mount->type != mem_mount_root) ) - { -- string_ncopy(str, pref.v.smbmount_exe, MAXMACHNAMEL+MAXSHRNAMEL+PATH_LEN+19); -+ *str = 0; - temp = str; -- temp += strlen(str); - merge_mount(&temp, mount, MAXMACHNAMEL+MAXSHRNAMEL+PATH_LEN+19 - strlen(str), 1); - string_ncat(str, "\n", MAXMACHNAMEL+MAXSHRNAMEL+PATH_LEN+19); -- fwrite(str, 1, strlen(str), fd); -+ if (*temp == ' ') ++temp; -+ fwrite(temp, 1, strlen(temp), fd); - } - } - } diff --git a/net/linneighborhood/files/patch-lmhosts.c b/net/linneighborhood/files/patch-lmhosts.c deleted file mode 100644 index 9fad8a3005b6..000000000000 --- a/net/linneighborhood/files/patch-lmhosts.c +++ /dev/null @@ -1,10 +0,0 @@ ---- src/lmhosts.c.orig Thu Feb 13 08:48:40 2003 -+++ src/lmhosts.c Thu Feb 13 08:49:05 2003 -@@ -31,6 +31,7 @@ - #include <stdlib.h> - #include <string.h> - #include <ctype.h> -+#include <sys/types.h> - #include <netinet/in.h> - #include <sys/socket.h> - #include <arpa/inet.h> diff --git a/net/linneighborhood/files/patch-preferences.c b/net/linneighborhood/files/patch-preferences.c deleted file mode 100644 index 3addda166a3d..000000000000 --- a/net/linneighborhood/files/patch-preferences.c +++ /dev/null @@ -1,22 +0,0 @@ ---- src/preferences.c.orig Sun Jun 9 09:58:43 2002 -+++ src/preferences.c Sun Apr 6 13:03:32 2003 -@@ -29,6 +29,8 @@ - #include "data.h" - #include "utility.h" - #include "samba.h" -+#include <sys/types.h> -+#include <netinet/in.h> - - - #define LVERSION(major,minor,patch) (((((major)<<8)+(minor))<<8)+(patch)) -@@ -359,8 +361,8 @@ - strcpy(pref->v.filemanager_exe, "xterm -e mc $MOUNTPOINT"); - strcpy(pref->v.smbclient_exe, "smbclient"); - strcpy(pref->v.nmblookup_exe, "nmblookup"); -- strcpy(pref->v.smbmount_exe, "smbmount"); -- strcpy(pref->v.smbumount_exe, "smbumount"); -+ strcpy(pref->v.smbmount_exe, "mount_smbfs"); -+ strcpy(pref->v.smbumount_exe, "umount"); - pref->v.smbclient_arg[0] = 0; - pref->v.nmblookup_arg[0] = 0; - pref->v.smbmount_arg[0] = 0; diff --git a/net/linneighborhood/files/patch-smbbrowse.c b/net/linneighborhood/files/patch-smbbrowse.c deleted file mode 100644 index fd2f35d1fdfc..000000000000 --- a/net/linneighborhood/files/patch-smbbrowse.c +++ /dev/null @@ -1,78 +0,0 @@ ---- src/smbbrowse.c.orig Sun Jun 9 09:58:43 2002 -+++ src/smbbrowse.c Thu Apr 10 15:39:19 2003 -@@ -716,8 +716,8 @@ - browsedat->browse_state=search_head; - browsedat->lasttab=0; - if (*user==0){ -- strcpy(browsedat->userpasswdstr,"-U%"); -- strcpy(browsedat->userdummystr,"-U%"); -+ strcpy(browsedat->userpasswdstr,"-N"); -+ strcpy(browsedat->userdummystr,"-N"); - } - else - { -@@ -829,6 +829,12 @@ - dup2(browsedat->fd[1],STDOUT_FILENO); - - cArg[argcount++] = "nmblookup"; -+ cArg[argcount++] = "-S"; -+ cArg[argcount++] = "-d1"; -+ for ( loop = 0; loop < add_argcount; loop++ ) -+ { -+ cArg[argcount++] = cAddArg[loop]; -+ } - if ( *wins_name ) - { - cArg[argcount++] = "-U"; -@@ -841,12 +847,6 @@ - cArg[argcount++] = "-M"; - cArg[argcount++] = group_name; - } -- cArg[argcount++] = "-S"; -- cArg[argcount++] = "-d1"; -- for ( loop = 0; loop < add_argcount; loop++ ) -- { -- cArg[argcount++] = cAddArg[loop]; -- } - cArg[argcount++] = NULL; - - execvp(pref_get_nmblookup_exe(), cArg); -@@ -870,15 +870,16 @@ - } - else - { -- if (*wins_name) -- sprintf(logstr,"GetSMBGroups:%s -U %s -R %s -S -d1",pref_get_nmblookup_exe(),wins_name,group_type); -- else -- sprintf(logstr,"GetSMBGroups:%s -M %s -S -d1",pref_get_nmblookup_exe(),group_name); -+ sprintf(logstr,"GetSMBGroups:%s -S -d1",pref_get_nmblookup_exe()); - for ( loop = 0; loop < add_argcount; loop++ ) - { - string_ncat(logstr, " ", MAXLOGSTRLEN); - string_ncat(logstr, cAddArg[loop], MAXLOGSTRLEN); - } -+ if (*wins_name) -+ sprintf(logstr+strlen(logstr)," -U %s -R %s",wins_name,group_type); -+ else -+ sprintf(logstr+strlen(logstr)," -M %s",group_name); - gui_log_window_insert_string(logstr,1); - close(browsedat->fd[1]); - browsedat->group_master.group_name[MAXGROUPNAMEL]=0; -@@ -1028,7 +1029,7 @@ - } - browsedat=g_malloc(sizeof(HBROWSE_STRUCT)); - if (*user==0) -- strcpy(commandstr,"-U%"); -+ strcpy(commandstr,"-N"); - else - sprintf(commandstr,"-U%s%%%s",user,passwd); - -@@ -1274,7 +1275,7 @@ - } - - if (*user==0) -- strcpy(commandstr,"-U%"); -+ strcpy(commandstr,"-N"); - else - sprintf(commandstr,"-U%s%%%s",user,passwd); - argv[++argnr]="smbclient"; diff --git a/net/linneighborhood/files/patch-smbmount.c b/net/linneighborhood/files/patch-smbmount.c deleted file mode 100644 index 7d28983c406a..000000000000 --- a/net/linneighborhood/files/patch-smbmount.c +++ /dev/null @@ -1,483 +0,0 @@ ---- src/smbmount.c.orig Sun Jun 9 09:58:43 2002 -+++ src/smbmount.c Fri Apr 11 16:55:26 2003 -@@ -16,6 +16,9 @@ - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -+#include <sys/param.h> -+#include <errno.h> -+#include <poll.h> - #include <string.h> - #include <stdio.h> - #include <stdlib.h> -@@ -70,6 +73,9 @@ - } UMOUNT_STRUCT; - static GSList *umountlist = NULL; - -+void split_arguments(char * arguments, char * argv[], int * argnr, GSList ** strlist); -+char * storeInBuffer(const char * s, GSList ** strlist); -+void execvp_with_password(const char * path, char * const argv[], const char * passwd, GSList * strlist); - - char suprompt[] = "Passw"; - -@@ -322,6 +328,7 @@ - int pipe2_nok,pipe3_nok=1; - int sumount,argnr=-1,passw_lf; - char commandstr[MAXMNTCOMMANDL],commandstr1[MAXMNTCOMMANDL]; -+ char num1[10], num2[10], num3[10], num4[10], tmp[MAXMNTCOMMANDL]; - char opt_group[MAXMNTCOMMANDL]; - char dummysmbpasswd[64]; - /*#ifdef LINUX2_0 */ -@@ -345,6 +352,7 @@ - sumount=(supasswd!=NULL); - passw_lf=(*smbpasswd==0) && !linux2_0; /*smbmount 2.0.3 always waits for password, - even if called with -Uuser% or -N if server is in user level security*/ -+ passw_lf=1; - if (sumount|| passw_lf) - if (pipe(fdstdin)) - { -@@ -418,96 +426,53 @@ - else - { - /* no sumount */ -- if(linux2_0) - { -- argv[++argnr]="smbmount"; -- argv[++argnr]=servicename; -- argv[++argnr]=mount_point; -- argv[++argnr]="-c"; -- argv[++argnr]=clientname; -- argv[++argnr]="-I"; -- argv[++argnr]=ipaddr; -- if (*group_name) -+ // bugfix: mount command might consist of more than one word (example: sudo mount_smbfs) -+ split_arguments(pref_get_smbmount_exe(), argv, &argnr, &strlist); - { -- argv[++argnr]="-D"; -- argv[++argnr]=group_name; -- } -- argv[++argnr]="-U"; -- argv[++argnr]=smbuser; -- argv[++argnr]="-f";sprintf(filemodestr,"%d",filemode); -- argv[++argnr]=filemodestr; -- argv[++argnr]="-d";sprintf(dirmodestr,"%d",dirmode); -- argv[++argnr]=dirmodestr; -- argv[++argnr]="-u";sprintf(uidstr,"%d",uid); -- argv[++argnr]=uidstr; -- argv[++argnr]="-g";sprintf(gidstr,"%d",gid); -- argv[++argnr]=gidstr; -- if (*smbpasswd==0) -- argv[++argnr]="-n"; -- else -- { -- argv[++argnr]="-P"; -- argv[++argnr]=smbpasswd; -- } -- argv[++argnr]=NULL; -- } -- else -- { -- /* linux 2.2/2.4 */ -- argv[++argnr]=pref_get_smbmount_exe(); -- argv[++argnr]=servicename; -- if (pref.v.smbmount_version>SMBMOUNT_204) argv[++argnr]=mount_point; -- if (pref.v.smbmount_version<SMBMOUNT_206) -- { -- /* 2.04/2.05 */ -+ sprintf(num1,"%d", filemode); -+ sprintf(num2,"%d", dirmode); -+ sprintf(num3,"%d", uid); -+ sprintf(num4,"%d", gid); -+ strcpy(commandstr1, "//"); -+ if (strlen(smbuser)) -+ { -+ strcat(commandstr1, smbuser); -+ strcat(commandstr1, "@"); -+ } -+ if (strlen(servicename) > 2) -+ strcat(commandstr1, servicename+2); -+ argv[++argnr]="-f"; -+ argv[++argnr]=num1; -+ argv[++argnr]="-d"; -+ argv[++argnr]=num2; -+ argv[++argnr]="-u"; -+ argv[++argnr]=num3; -+ argv[++argnr]="-g"; -+ argv[++argnr]=num4; - argv[++argnr]="-I"; -- argv[++argnr]=ipaddr; -+ strcpy(tmp, ipaddr); -+ argv[++argnr]=tmp; - if (*group_name) - { - argv[++argnr]="-W"; -- argv[++argnr]=group_name; -- } -- sprintf(userpasswd,"-U%s%%%s",smbuser,smbpasswd); -- argv[++argnr]=userpasswd; -- argv[++argnr]="-d0"; -- if (pref.v.smbmount_version <SMBMOUNT_205) -- { -- argv[++argnr]="-c"; -- argv[++argnr]=commandstr; -- sprintf(commandstr,"mount %s -f %d -d %d -u %d -g %d", -- /*escape_str_smbmnt(*/mount_point/*,&strlist)*/,filemode,dirmode,uid,gid); -- } -- if ( !is_empty_string(pref.v.smbmount_arg) ) -- { -- } -- } -- else /*>=SMBMOUNT_206*/ -- { -- argv[++argnr]="-o"; -- argv[++argnr]=commandstr; -- sprintf(commandstr,"username=%s%%%s,fmask=%d,dmask=%d,uid=%d,gid=%d,ip=%s,debug=0", -- smbuser,smbpasswd,filemode,dirmode,uid,gid,ipaddr); -- if (*group_name) -- { -- strcat(commandstr,",workgroup="); -- strcat(commandstr,escape_str(group_name,&strlist)); -+ argv[++argnr]= escape_str(group_name,&strlist); - } - if ( (port >= 0) && (port < 65536) ) - { -- string_ncat(commandstr, ",port=", MAXMNTCOMMANDL); -- string_ncat(commandstr, port_str, MAXMNTCOMMANDL); -+ strcat(tmp, ":"); -+ strcat(tmp, port_str); - } - if ( !is_empty_string(pref.v.smbmount_arg) ) - { -- if ( pref.v.smbmount_arg[0] != ',' ) -- string_ncat(commandstr, ",", MAXMNTCOMMANDL); -- string_ncat(commandstr, escape_str(pref.v.smbmount_arg,&strlist), MAXMNTCOMMANDL); -+ split_arguments(pref.v.smbmount_arg, argv, &argnr, &strlist); - } - } -+ argv[++argnr]=commandstr1; -+ argv[++argnr]=mount_point; - argv[++argnr]=NULL; - } - } -- slist_free_with_data(&strlist); - mountdat=g_malloc(sizeof(MOUNT_STRUCT)); - if((pipe2_nok=pipe(fdstdout))|| (pipe3_nok=pipe(fdstderr))|| - (mountdat->childpid =fork())== -1) -@@ -521,7 +486,6 @@ - g_print(_("smbmount pipe,fork error\n")); - return; - } -- - if (!mountdat->childpid) - { - close(fdstdout[0]); -@@ -536,7 +500,7 @@ - if (sumount) - execvp("su",argv); - else -- execvp(pref_get_smbmount_exe(),argv); -+ execvp_with_password(argv[0], argv, smbpasswd, strlist); - write(STDERR_FILENO,notfound,sizeof(notfound)-1); - _exit(0); - } -@@ -547,9 +511,9 @@ - else - { - i=0; -- while(argv[i+1]) -+ while(argv[i]) - { -- mountdat->arglist[i]=g_strdup(argv[i+1]); -+ mountdat->arglist[i]=g_strdup(argv[i]); - i++; - } - mountdat->arglist[i]=NULL; -@@ -611,46 +575,9 @@ - } - else - { -- if(linux2_0) -- { -- if (*smbpasswd!=0) argv[argnr-1]=dummysmbpasswd; -- } -- else -- { -- if (pref.v.smbmount_version<SMBMOUNT_206) -- sprintf(userpasswd,"-U%s%%%s",smbuser,dummysmbpasswd); -- else -- { -- sprintf(commandstr,"username=%s%%%s,fmask=%d,dmask=%d,uid=%d,gid=%d,ip=%s,debug=0", -- smbuser,dummysmbpasswd,filemode,dirmode,uid,gid,ipaddr); -- if (*group_name){ -- strcat(commandstr,",workgroup="); -- strcat(commandstr,group_name); -- } -- if ( (port >= 0) && (port < 65536) ) -- { -- string_ncat(commandstr, ",port=", MAXMNTCOMMANDL); -- string_ncat(commandstr, port_str, MAXMNTCOMMANDL); -- } -- if ( !is_empty_string(pref.v.smbmount_arg) ) -- { -- if ( pref.v.smbmount_arg[0] != ',' ) -- string_ncat(commandstr, ",", MAXMNTCOMMANDL); -- string_ncat(commandstr, escape_str(pref.v.smbmount_arg,&strlist), MAXMNTCOMMANDL); -- } -- } -- if (passw_lf) -- { -- usleep(50000); -- close(fdstdin[0]); -- if (!waitpid(mountdat->childpid,NULL,WNOHANG)) -- write(fdstdin[1], "\n",1); -+ log_execvp_str(argv[0],argv); - close(fdstdin[1]); - } -- } -- -- log_execvp_str(pref_get_smbmount_exe(),argv); -- } - mountlist=g_slist_append(mountlist,mountdat); - mountdat->linepos=0; mountdat->linepos2=0; - mountdat->linenum=0; -@@ -901,17 +828,13 @@ - } - else - { -- argv[0]=smb ? "smbumount":"umount"; -- argv[1]=mount_point; -+ // bugfix: mount command might consist of more than one word (example: sudo mount_smbfs) -+ int argnr = -1; -+ split_arguments(pref_get_smbumount_exe(), argv, &argnr, &strlist); - if ( !is_empty_string(pref.v.smbumount_arg) ) -- { -- argv[2] = pref.v.smbumount_arg; -- argv[3] = NULL; -- } -- else -- { -- argv[2]=NULL; -- } -+ split_arguments(pref.v.smbumount_arg, argv, &argnr, &strlist); -+ argv[++argnr]=mount_point; -+ argv[++argnr] = NULL; - } - if((pipe2_nok=pipe(fdstdout))|| (pipe3_nok=pipe(fdstderr))|| - (childpid =fork())== -1) -@@ -938,7 +861,7 @@ - execvp("su",argv); - } - else -- execvp(smb ? pref_get_smbumount_exe():"umount",argv); -+ execvp_with_password(argv[0], argv, "", strlist); - write(STDERR_FILENO,notfound,sizeof(notfound)-1); - _exit(0); - } -@@ -958,7 +881,7 @@ - gui_log_window_insert_string("*",0); - } - else -- log_execvp_str(smb ? pref_get_smbumount_exe():"umount",argv); -+ log_execvp_str(argv[0], argv); - mountdat=g_malloc(sizeof(UMOUNT_STRUCT)); - umountlist=g_slist_append(umountlist,mountdat); - mountdat->childpid=childpid; -@@ -1015,6 +938,198 @@ - slist_free_with_data(&umountlist); - } - -+void split_arguments(char * arguments, char * argv[], int * argnr, GSList ** strlist) -+{ -+ char * c = argv[++*argnr] = storeInBuffer(arguments, strlist); -+ while(c = strchr(c, ' ')) -+ { -+ char *d = c+1; -+ while(*d && *d == ' ') -+ d++; -+ *c = 0; -+ c = d; -+ if (!*c) -+ break; -+ argv[++*argnr] = storeInBuffer(c, strlist); -+ } -+} -+ -+char * storeInBuffer(const char * s, GSList ** strlist) -+{ -+ int n; -+ char * ss; -+ -+ if (*s==0) return 0; -+ n = strlen(s); -+ ss=g_malloc(n+1); -+ strcpy(ss, s); -+ *strlist=g_slist_append(*strlist,ss); -+ return ss; -+} -+ -+ -+// this looks like a global variable. But each forked execvp_with_password -+// process has one copy of it. So it as a process local varible storing the -+// process ID of the forked child process, which actaully execs mount_smbfs -+int _childPid = 0; -+ -+// called, if the child proces is killed. Kills its child process as well -+void stopMountSignalHandler (int sig) -+{ -+ kill(_childPid, SIGINT); -+ waitpid(_childPid, 0, WUNTRACED); -+ _exit(0); -+} -+ -+// replaces execvp to call mount_smbfs. If mount smbfs asks for a password, it is provided. -+// This can not be sent to stdin, because BSD gets the password directly from the terminal. -+// Therfore another process with a pseudo terminal is created. -+void execvp_with_password(const char * path, char * const argv[], const char * passwd, GSList *strlist) -+{ -+ int master, i; -+ char terminal[MAXPATHLEN] = ""; -+ char * pw = NULL; -+ int slave; -+ char password[1024], result[1024]; -+ char * passwordText = "password:"; -+ int passwordTextLen = strlen(passwordText); -+ char * resp_pos = result; -+ int fdstderr[2]; -+ -+ // create a pipe to the child process for stderr. For stdout the pseudo terminal is used -+ if(pipe(fdstderr)) -+ { -+ fdstderr[0] = 0; -+ fdstderr[1] = 0; -+ } -+ -+ // create the child process and the pseudo terminal -+ _childPid = forkpty(&master, terminal, NULL, NULL); -+ -+ if (_childPid < 0) -+ { -+ if (errno == ENOENT) -+ printf("Error: Out of ptys\n"); -+ else -+ printf(result, "Error: Forkpty\n"); -+ _exit(1); -+ } -+ else if (_childPid == 0) -+ { -+ // prepare stderr pipe -+ if (fdstderr[0]) -+ { -+ close(fdstderr[0]); -+ dup2(fdstderr[1], STDERR_FILENO); -+ } -+ -+ // prepare the pseudo terminal -+ close(master); -+ slave = open(terminal, O_RDWR); -+ if (slave < 0) -+ { -+ printf("open() failed: %s", strerror(errno)); -+ kill(_childPid, SIGINT); -+ waitpid(_childPid, 0, WUNTRACED); -+ _exit(1); -+ } - -+ // launch application (mount_smbfs) -+ execvp(path, argv); -+ printf("error: %d (%s)\n", errno, strerror(errno)); -+ } -+ else -+ { -+ // prepare the stderr pipe -+ if (fdstderr[1]) -+ close(fdstderr[1]); - -+ // install the SIGIN (ctrl-c) handler -+ if (signal(SIGINT, stopMountSignalHandler) == SIG_ERR) -+ printf("error: can not install SIGINT handler\n"); -+ errno = 0; -+ *resp_pos = 0; -+ -+ // main loop: wait for childs response -+ while (!errno) -+ { -+ // prepare a poll, wich waits for output from the pseudo terminal and from stderr -+ int pollnum = 1; -+ struct pollfd polldat[2]; -+ polldat[0].fd = master; -+ polldat[0].events = POLLIN | POLLRDNORM | POLLRDBAND | POLLPRI; -+ if (fdstderr[0]) -+ { -+ pollnum = 2; -+ polldat[1].fd = fdstderr[0]; -+ polldat[1].events = POLLIN | POLLRDNORM | POLLRDBAND | POLLPRI; -+ } -+ -+ // sleep until the child terminates or sends something -+ if (poll(polldat, pollnum, 1000) < 0) -+ break; - -+ // response from childs stderr? -+ if (pollnum == 2 && polldat[1].revents) -+ { -+ // read response and send it to this process' stderr. It is connected -+ // with another pipe with the main process! -+ char s[1024]; -+ int i = read(fdstderr[0], s, 1024); -+ if (errno) -+ break; -+ if (i > 0) -+ { -+ s[i] = 0; -+ write(STDERR_FILENO, s, i); -+ } -+ } -+ -+ // response from childs stdout? -+ if (polldat[0].revents) -+ { -+ // read response and send it to this process' stdout. It is connected -+ // with another pipe with the main process. If the string 'password' -+ // was send, provide the password -+ char c; -+ if (read(master, &c, 1) <= 0 || errno) -+ break; -+ if (resp_pos - result < sizeof(result)) -+ *resp_pos++ = c; -+ *resp_pos = 0; -+ if (c == '\n') -+ { -+ printf("%s", result); -+ resp_pos = result; -+ } -+ *resp_pos = 0; -+ if (resp_pos - result >= passwordTextLen && !strcasecmp(resp_pos-passwordTextLen, passwordText)) -+ { -+ // prepare the password and send it through the pseudo terminal -+ strcpy(password, passwd); -+ strcat(password, "\n"); -+ resp_pos = result; -+ *resp_pos = 0; -+ write(master, password, strlen(password)); -+ } -+ } -+ // if the child is dead, end main loop -+ if (waitpid(_childPid,NULL,WNOHANG)) -+ break; -+ } -+ -+ // if there is unsend response, send it to the main process -+ printf("%s", result); -+ -+ // free resources -+ if (fdstderr[0]) -+ close(fdstderr[0]); -+ close(master); -+ slist_free_with_data(&strlist); -+ -+ // get childs return code to avoid zombies -+ waitpid(_childPid, 0, WUNTRACED); -+ _exit(0); -+ } -+ _exit(-1); // can not be reached -+} diff --git a/net/linneighborhood/files/patch-utility.c b/net/linneighborhood/files/patch-utility.c deleted file mode 100644 index 8ce3d9582a6b..000000000000 --- a/net/linneighborhood/files/patch-utility.c +++ /dev/null @@ -1,22 +0,0 @@ ---- src/utility.c.orig Sun Jun 9 09:58:43 2002 -+++ src/utility.c Thu Feb 13 09:56:06 2003 -@@ -16,6 +16,7 @@ - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -+#include <sys/types.h> - #include <netinet/in.h> - #include <arpa/inet.h> - #include <stdio.h> -@@ -421,9 +422,9 @@ - unsigned char path_exist (char *path) - { - DIR *dir; -- - dir = opendir(path); -- closedir(dir); -+ if (dir) -+ closedir(dir); - return ( dir != NULL ) ? 1 : 0; - } - diff --git a/net/linneighborhood/pkg-descr b/net/linneighborhood/pkg-descr deleted file mode 100644 index 085bd06e29c0..000000000000 --- a/net/linneighborhood/pkg-descr +++ /dev/null @@ -1,11 +0,0 @@ -LinNeighborhood is a Xwindow graphical port of Network Neighborhood, -running over Samba utilities and the smbfs. - -It permits to browse an SMB (CIFS) network consisting of Samba, -Windows (WfWg, 95, 98, NT) and probably (not tested) OS/2, LanManager -for DOS and others. It also offers an interface to mount the found shares. - -WWW: http://www.bnro.de/~schmidjo/index.html - --- -h.eichmann@gmx.de diff --git a/net/linneighborhood/pkg-message b/net/linneighborhood/pkg-message deleted file mode 100644 index e42459682b08..000000000000 --- a/net/linneighborhood/pkg-message +++ /dev/null @@ -1,9 +0,0 @@ -To mount shares with LinNeighborhood, there are the following possibilities: - - run it as root. (not recommended) - - give LinNeighborhood the suid flag (not recommended) - - give mount_smbfs and umount the suid flag (very bad!) - - install and configure sudo correctly and replace mount_smbfs and umount - in the preferences by "sudo mount_smbfs" and "sudo umount" (recommended). - Make sure, that all sudo rules concerning mount and umount have the - NOPASSWD flag. Otherwise two password questions might occur (one - from sudo and one from mount_smbfs) which will definitely go wrong. diff --git a/net/linneighborhood/pkg-plist b/net/linneighborhood/pkg-plist deleted file mode 100644 index dd9ec10209b5..000000000000 --- a/net/linneighborhood/pkg-plist +++ /dev/null @@ -1,15 +0,0 @@ -bin/LinNeighborhood -lib/charset.alias -share/locale/de/LC_MESSAGES/LinNeighborhood.mo -share/locale/sv/LC_MESSAGES/LinNeighborhood.mo -share/locale/ja/LC_MESSAGES/LinNeighborhood.mo -share/locale/fr/LC_MESSAGES/LinNeighborhood.mo -share/locale/ru/LC_MESSAGES/LinNeighborhood.mo -share/locale/es/LC_MESSAGES/LinNeighborhood.mo -share/locale/pt_BR/LC_MESSAGES/LinNeighborhood.mo -share/locale/tr/LC_MESSAGES/LinNeighborhood.mo -share/locale/pl/LC_MESSAGES/LinNeighborhood.mo -share/locale/it/LC_MESSAGES/LinNeighborhood.mo -share/locale/zh_TW/LC_MESSAGES/LinNeighborhood.mo -share/icons/LinNeighborhood.xpm -@unexec rmdir %D/share/icons diff --git a/net/linphone-base/Makefile b/net/linphone-base/Makefile deleted file mode 100644 index a83eb58ef9a1..000000000000 --- a/net/linphone-base/Makefile +++ /dev/null @@ -1,31 +0,0 @@ -# New ports collection makefile for: linphone -# Date created: 30 December 2002 -# Whom: Maxim Sobolev <sobomax@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= linphone -PORTVERSION= 0.11.0 -PORTREVISION= 2 -CATEGORIES= net -MASTER_SITES= http://simon.morlat.free.fr/download/${PORTVERSION}/source/ - -MAINTAINER= ports@FreeBSD.org -COMMENT= A web phone that supports SIP protocol - -LIB_DEPENDS= osip.9:${PORTSDIR}/net/libosip \ - ogg.4:${PORTSDIR}/audio/libogg - -USE_X_PREFIX= yes -USE_GMAKE= yes -USE_LIBTOOL= yes -LIBTOOLFILES= configure oRTP/configure speex/configure osipua/configure -USE_GNOME= gnomehack gnomeprefix libgnomeui gnomepanel -CONFIGURE_ARGS= --disable-ipv6 -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -MAN1= linphone.1 linphonec.1 sipomatic.1 - -.include <bsd.port.mk> diff --git a/net/linphone-base/distinfo b/net/linphone-base/distinfo deleted file mode 100644 index b0c90d677c5c..000000000000 --- a/net/linphone-base/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (linphone-0.11.0.tar.gz) = d44393ea9cfbd276c0cf0415849c9cc6 diff --git a/net/linphone-base/files/patch-config.h.in b/net/linphone-base/files/patch-config.h.in deleted file mode 100644 index 464bc65832ff..000000000000 --- a/net/linphone-base/files/patch-config.h.in +++ /dev/null @@ -1,14 +0,0 @@ - -$FreeBSD$ - ---- config.h.in 2003/02/27 23:47:19 1.1 -+++ config.h.in 2003/02/27 23:47:35 -@@ -122,8 +122,5 @@ - first (like Motorola and SPARC, unlike Intel and VAX). */ - #undef WORDS_BIGENDIAN - --/* Defined if we are compiling for FreeBSD */ --#undef __FreeBSD__ -- - /* Defined if we are compiling for linux */ - #undef __LINUX__ diff --git a/net/linphone-base/files/patch-configure b/net/linphone-base/files/patch-configure deleted file mode 100644 index f9505767cb37..000000000000 --- a/net/linphone-base/files/patch-configure +++ /dev/null @@ -1,36 +0,0 @@ - -$FreeBSD$ - ---- configure.orig Mon May 19 12:00:43 2003 -+++ configure Fri Jun 13 15:20:49 2003 -@@ -8786,6 +8786,7 @@ - - # This can be used to rebuild libtool when needed - LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh" -+$ac_aux_dir/ltconfig $LIBTOOL_DEPS - - # Always use our own libtool. - LIBTOOL='$(SHELL) $(top_builddir)/libtool' -@@ -11056,19 +11057,19 @@ - - - cat >>confdefs.h <<_ACEOF --#define PACKAGE_LOCALE_DIR "${realprefix}/${DATADIRNAME}/locale" -+#define PACKAGE_LOCALE_DIR "${realprefix}/share/locale" - _ACEOF - - - - cat >>confdefs.h <<_ACEOF --#define PACKAGE_DATA_DIR "${realprefix}/${DATADIRNAME}" -+#define PACKAGE_DATA_DIR "${realprefix}/share/gnome" - _ACEOF - - - - cat >>confdefs.h <<_ACEOF --#define PACKAGE_SOUND_DIR "${realprefix}/${DATADIRNAME}/sounds/linphone" -+#define PACKAGE_SOUND_DIR "${realprefix}/share/gnome/sounds/linphone" - _ACEOF - - diff --git a/net/linphone-base/files/patch-console::Makefile.in b/net/linphone-base/files/patch-console::Makefile.in deleted file mode 100644 index 1a0933bc372c..000000000000 --- a/net/linphone-base/files/patch-console::Makefile.in +++ /dev/null @@ -1,25 +0,0 @@ - -$FreeBSD$ - ---- console/Makefile.in.orig Fri Feb 28 01:10:38 2003 -+++ console/Makefile.in Fri Feb 28 01:12:45 2003 -@@ -165,7 +165,8 @@ - $(top_srcdir)/osipua/src/libosipua.la \ - $(top_srcdir)/mediastreamer/audiostream.o \ - $(top_srcdir)/mediastreamer/libmediastreamer.la \ -- $(top_srcdir)/mediastreamer/libmsspeex.la -+ $(top_srcdir)/mediastreamer/.libs/libmsspeex.so \ -+ $(top_srcdir)/speex/libspeex/libspeex.la - - - sipomatic_SOURCES = \ -@@ -177,7 +178,8 @@ - $(top_srcdir)/osipua/src/libosipua.la \ - $(top_srcdir)/mediastreamer/audiostream.o \ - $(top_srcdir)/mediastreamer/libmediastreamer.la \ -- $(top_srcdir)/mediastreamer/libmsspeex.la -+ $(top_srcdir)/mediastreamer/.libs/libmsspeex.so \ -+ $(top_srcdir)/speex/libspeex/libspeex.la - - - noinst_PROGRAMS = wav2raw diff --git a/net/linphone-base/files/patch-coreapi::Makefile.in b/net/linphone-base/files/patch-coreapi::Makefile.in deleted file mode 100644 index 0561a3d876ce..000000000000 --- a/net/linphone-base/files/patch-coreapi::Makefile.in +++ /dev/null @@ -1,29 +0,0 @@ - -$FreeBSD$ - ---- coreapi/Makefile.in 2003/02/28 01:08:22 1.1 -+++ coreapi/Makefile.in 2003/02/28 01:08:45 -@@ -171,9 +171,6 @@ - gnome-config.c gnome-config.h - - --libcoreapignome_a_LIBADD = $(top_srcdir)/mediastreamer/audiostream.o --libcoreapi_a_LIBADD = $(top_srcdir)/mediastreamer/audiostream.o -- - DEFS = @DEFS@ @SOUNDDEFS@ -DENABLE_TRACE - - CFLAGS = @CFLAGS@ $(GLIB_CFLAGS) -DG_LOG_DOMAIN=\"LinphoneCore\" -@@ -184,13 +181,10 @@ - LIBRARIES = $(noinst_LIBRARIES) - - libcoreapi_a_AR = $(AR) cru --libcoreapi_a_DEPENDENCIES = $(top_srcdir)/mediastreamer/audiostream.o - am_libcoreapi_a_OBJECTS = linphonecore.$(OBJEXT) osipuacb.$(OBJEXT) \ - misc.$(OBJEXT) gnome-config.$(OBJEXT) - libcoreapi_a_OBJECTS = $(am_libcoreapi_a_OBJECTS) - libcoreapignome_a_AR = $(AR) cru --libcoreapignome_a_DEPENDENCIES = \ -- $(top_srcdir)/mediastreamer/audiostream.o - am_libcoreapignome_a_OBJECTS = linphonecore.$(OBJEXT) osipuacb.$(OBJEXT) \ - misc.$(OBJEXT) - libcoreapignome_a_OBJECTS = $(am_libcoreapignome_a_OBJECTS) diff --git a/net/linphone-base/files/patch-coreapi::misc.c b/net/linphone-base/files/patch-coreapi::misc.c deleted file mode 100644 index dfeef28b9376..000000000000 --- a/net/linphone-base/files/patch-coreapi::misc.c +++ /dev/null @@ -1,23 +0,0 @@ - - - ---- coreapi/misc.c.orig Wed Mar 12 09:52:05 2003 -+++ coreapi/misc.c Wed Mar 12 09:52:39 2003 -@@ -87,7 +87,7 @@ - pid_t pid; - - /* try to kill all artsd*/ -- command=g_strdup_printf("ps -u %s |grep artsd",getenv("LOGNAME")); -+ command=g_strdup_printf("ps -c %s |grep artsd",getenv("LOGNAME")); - out=popen(command,"r"); - if (out!=NULL) - { -@@ -102,7 +102,7 @@ - } - g_free(command); - /* do the same with esd*/ -- command=g_strdup_printf("ps -u %s |grep esd",getenv("LOGNAME")); -+ command=g_strdup_printf("ps -c %s |grep esd",getenv("LOGNAME")); - out=popen(command,"r"); - if (out!=NULL) - { diff --git a/net/linphone-base/files/patch-gnome::Makefile.in b/net/linphone-base/files/patch-gnome::Makefile.in deleted file mode 100644 index d0883e6a3b8d..000000000000 --- a/net/linphone-base/files/patch-gnome::Makefile.in +++ /dev/null @@ -1,45 +0,0 @@ - -$FreeBSD$ - ---- gnome/Makefile.in.orig Fri Feb 28 02:49:43 2003 -+++ gnome/Makefile.in Fri Feb 28 03:01:56 2003 -@@ -173,8 +173,10 @@ - @BUILD_GNOME_TRUE@ $(LIBGNOME_LIBS) \ - @BUILD_GNOME_TRUE@ $(top_srcdir)/coreapi/libcoreapignome.a \ - @BUILD_GNOME_TRUE@ $(top_srcdir)/osipua/src/libosipua.la \ -+@BUILD_GNOME_TRUE@ $(top_srcdir)/mediastreamer/audiostream.o \ - @BUILD_GNOME_TRUE@ $(top_srcdir)/mediastreamer/libmediastreamer.la \ --@BUILD_GNOME_TRUE@ $(top_srcdir)/mediastreamer/libmsspeex.la -+@BUILD_GNOME_TRUE@ $(top_srcdir)/mediastreamer/.libs/libmsspeex.so \ -+@BUILD_GNOME_TRUE@ $(top_srcdir)/speex/libspeex/libspeex.la - - - CFLAGS = @CFLAGS@ $(LIBGNOMEUI_CFLAGS) $(LIBGNOME_CFLAGS) $(GNOME_APPLETS_CFLAGS) -@@ -199,8 +201,10 @@ - @BUILD_GNOME_APPLET_TRUE@ $(GNOME_APPLETS_LIBS) \ - @BUILD_GNOME_APPLET_TRUE@ $(top_srcdir)/coreapi/libcoreapignome.a \ - @BUILD_GNOME_APPLET_TRUE@ $(top_srcdir)/osipua/src/libosipua.la \ -+@BUILD_GNOME_APPLET_TRUE@ $(top_srcdir)/mediastreamer/audiostream.o \ - @BUILD_GNOME_APPLET_TRUE@ $(top_srcdir)/mediastreamer/libmediastreamer.la \ --@BUILD_GNOME_APPLET_TRUE@ $(top_srcdir)/mediastreamer/libmsspeex.la -+@BUILD_GNOME_APPLET_TRUE@ $(top_srcdir)/mediastreamer/.libs/libmsspeex.so \ -+@BUILD_GNOME_APPLET_TRUE@ $(top_srcdir)/speex/libspeex/libspeex.la - - - -@@ -237,6 +241,7 @@ - @BUILD_GNOME_TRUE@linphone_DEPENDENCIES = \ - @BUILD_GNOME_TRUE@ $(top_srcdir)/coreapi/libcoreapignome.a \ - @BUILD_GNOME_TRUE@ $(top_srcdir)/osipua/src/libosipua.la \ -+@BUILD_GNOME_TRUE@ $(top_srcdir)/mediastreamer/audiostream.o \ - @BUILD_GNOME_TRUE@ $(top_srcdir)/mediastreamer/libmediastreamer.la \ - @BUILD_GNOME_TRUE@ $(top_srcdir)/mediastreamer/libmsspeex.la - @BUILD_GNOME_FALSE@linphone_DEPENDENCIES = -@@ -255,6 +260,7 @@ - @BUILD_GNOME_APPLET_TRUE@linphone_applet_DEPENDENCIES = \ - @BUILD_GNOME_APPLET_TRUE@ $(top_srcdir)/coreapi/libcoreapignome.a \ - @BUILD_GNOME_APPLET_TRUE@ $(top_srcdir)/osipua/src/libosipua.la \ -+@BUILD_GNOME_APPLET_TRUE@ $(top_srcdir)/mediastreamer/audiostream.o \ - @BUILD_GNOME_APPLET_TRUE@ $(top_srcdir)/mediastreamer/libmediastreamer.la \ - @BUILD_GNOME_APPLET_TRUE@ $(top_srcdir)/mediastreamer/libmsspeex.la - @BUILD_GNOME_APPLET_FALSE@linphone_applet_DEPENDENCIES = diff --git a/net/linphone-base/files/patch-lpc10-1.5::lpcini.c b/net/linphone-base/files/patch-lpc10-1.5::lpcini.c deleted file mode 100644 index 4398a7075055..000000000000 --- a/net/linphone-base/files/patch-lpc10-1.5::lpcini.c +++ /dev/null @@ -1,17 +0,0 @@ - -$FreeBSD$ - ---- lpc10-1.5/lpcini.c 2002/12/30 08:26:21 1.1 -+++ lpc10-1.5/lpcini.c 2002/12/30 08:28:01 -@@ -32,9 +32,9 @@ - -lf2c -lm (in that order) - */ - --#include "f2c.h" -+#include <stdlib.h> - --#include <malloc.h> -+#include "f2c.h" - - /* Common Block Declarations */ - diff --git a/net/linphone-base/files/patch-mediastreamer::Makefile.in b/net/linphone-base/files/patch-mediastreamer::Makefile.in deleted file mode 100644 index 40badea3acd6..000000000000 --- a/net/linphone-base/files/patch-mediastreamer::Makefile.in +++ /dev/null @@ -1,23 +0,0 @@ - -$FreeBSD$ - ---- mediastreamer/Makefile.in.orig Fri Feb 28 01:20:45 2003 -+++ mediastreamer/Makefile.in Fri Feb 28 01:20:45 2003 -@@ -163,7 +163,7 @@ - @BUILD_V4L_TRUE@V4L_PLUGIN_TEST = test_v4l - - @BUILD_MEDIASTREAMER_TRUE@lib_LTLIBRARIES = libmediastreamer.la $(XINE_PLUGIN) $(SMPEG_PLUGIN)\ --@BUILD_MEDIASTREAMER_TRUE@ $(FFMPEG_PLUGIN) $(GDK_VO_PLUGIN) $(V4L_PLUGIN) libmsspeex.la -+@BUILD_MEDIASTREAMER_TRUE@ $(FFMPEG_PLUGIN) $(GDK_VO_PLUGIN) $(V4L_PLUGIN) libmsspeex.la $(top_srcdir)/speex/libspeex/libspeex.la - - - libmediastreamer_la_SOURCES = msfilter.c msfilter.h msutils.h\ -@@ -296,7 +296,7 @@ - - #the mediastream program that runs a processing that will be used in linphone - mediastream_SOURCES = mediastream.c audiostream.c mediastream.h --mediastream_LDADD = libmediastreamer.la libmsspeex.la -+mediastream_LDADD = libmediastreamer.la libmsspeex.la $(top_srcdir)/speex/libspeex/libspeex.la - - DEFS = @DEFS@ -DG_LOG_DOMAIN=\"MediaStreamer\" - diff --git a/net/linphone-base/files/patch-mediastreamer::msfifo.c b/net/linphone-base/files/patch-mediastreamer::msfifo.c deleted file mode 100644 index f30f63710642..000000000000 --- a/net/linphone-base/files/patch-mediastreamer::msfifo.c +++ /dev/null @@ -1,15 +0,0 @@ - -$FreeBSD$ - ---- mediastreamer/msfifo.c 2002/12/30 08:33:16 1.1 -+++ mediastreamer/msfifo.c 2002/12/30 08:33:36 -@@ -23,6 +23,9 @@ - #include "msutils.h" - #include "msfifo.h" - -+#ifndef ENODATA -+#define ENODATA 61 -+#endif - - MSFifo * ms_fifo_new(MSBuffer *buf, gint r_gran, gint w_gran, gint r_offset, gint w_offset) - { diff --git a/net/linphone-base/files/patch-oRTP::configure b/net/linphone-base/files/patch-oRTP::configure deleted file mode 100644 index 23804098f77c..000000000000 --- a/net/linphone-base/files/patch-oRTP::configure +++ /dev/null @@ -1,13 +0,0 @@ - -$FreeBSD$ - ---- oRTP/configure 2003/02/27 23:48:28 1.1 -+++ oRTP/configure 2003/02/27 23:49:02 -@@ -7793,6 +7793,7 @@ - - # This can be used to rebuild libtool when needed - LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh" -+$ac_aux_dir/ltconfig $LIBTOOL_DEPS - - # Always use our own libtool. - LIBTOOL='$(SHELL) $(top_builddir)/libtool' diff --git a/net/linphone-base/files/patch-oRTP::src::Makefile.in b/net/linphone-base/files/patch-oRTP::src::Makefile.in deleted file mode 100644 index 7cbfb5c82253..000000000000 --- a/net/linphone-base/files/patch-oRTP::src::Makefile.in +++ /dev/null @@ -1,14 +0,0 @@ - -$FreeBSD$ - ---- oRTP/src/Makefile.in.orig Fri Jun 13 15:21:18 2003 -+++ oRTP/src/Makefile.in Fri Jun 13 15:21:48 2003 -@@ -98,7 +98,7 @@ - - EXTRA_DIST = master system LOAD export.c export.h - --DEFS = @DEFS@ $(PTHREAD_CFLAGS) -DG_LOG_DOMAIN=\"oRTP\" -+DEFS = @DEFS@ $(PTHREAD_CFLAGS) -DG_LOG_DOMAIN=\"oRTP\" -DBUILD_SCHEDULER - CFLAGS = -I$(top_srcdir) $(GLIB_CFLAGS) $(IPV6_CFLAGS) - LDFLAGS = $(PTHREAD_LDFLAGS) - diff --git a/net/linphone-base/files/patch-oRTP::src::port_fct.c b/net/linphone-base/files/patch-oRTP::src::port_fct.c deleted file mode 100644 index ececcc89e337..000000000000 --- a/net/linphone-base/files/patch-oRTP::src::port_fct.c +++ /dev/null @@ -1,14 +0,0 @@ - -$FreeBSD$ - ---- oRTP/src/port_fct.c 2002/12/30 08:13:23 1.1 -+++ oRTP/src/port_fct.c 2002/12/30 08:13:35 -@@ -20,7 +20,7 @@ - - /* port_fct.h. define methods to help for portability between unix and win32 */ - -- -+#include <sched.h> - #include "rtpsession.h" - - #include "port_fct.h" diff --git a/net/linphone-base/files/patch-oRTP::src::scheduler.h b/net/linphone-base/files/patch-oRTP::src::scheduler.h deleted file mode 100644 index a872fc24fcbd..000000000000 --- a/net/linphone-base/files/patch-oRTP::src::scheduler.h +++ /dev/null @@ -1,14 +0,0 @@ - -$FreeBSD$ - ---- oRTP/src/scheduler.h 2002/12/30 08:15:08 1.1 -+++ oRTP/src/scheduler.h 2002/12/30 08:15:16 -@@ -20,6 +20,8 @@ - #ifndef SCHEDULER_H - #define SCHEDULER_H - -+#include <pthread.h> -+ - #include "rtpsession.h" - #include "rtptimer.h" - #include "sessionset.h" diff --git a/net/linphone-base/files/patch-osipua::configure b/net/linphone-base/files/patch-osipua::configure deleted file mode 100644 index d9bfcae45b6f..000000000000 --- a/net/linphone-base/files/patch-osipua::configure +++ /dev/null @@ -1,13 +0,0 @@ - -$FreeBSD$ - ---- osipua/configure 2003/02/27 23:48:28 1.1 -+++ osipua/configure 2003/02/27 23:49:11 -@@ -8652,6 +8652,7 @@ - - # This can be used to rebuild libtool when needed - LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh" -+$ac_aux_dir/ltconfig $LIBTOOL_DEPS - - # Always use our own libtool. - LIBTOOL='$(SHELL) $(top_builddir)/libtool' diff --git a/net/linphone-base/files/patch-osipua::src::osipua.c b/net/linphone-base/files/patch-osipua::src::osipua.c deleted file mode 100644 index b7111db391ab..000000000000 --- a/net/linphone-base/files/patch-osipua::src::osipua.c +++ /dev/null @@ -1,15 +0,0 @@ - -$FreeBSD$ - ---- osipua/src/osipua.c 2003/06/13 12:25:43 1.1 -+++ osipua/src/osipua.c 2003/06/13 12:58:48 -@@ -595,8 +595,7 @@ - if (ipaddr != NULL) - { - osip_trace(OSIP_INFO1,("osip_ua_find 1: %s <> %s \n",ua->ua_ipaddr,ipaddr)); -- if ((strcasecmp(ua->ua_ipaddr,ipaddr)==0) || (strcasecmp("127.0.0.1",ipaddr)==0) || -- IN6_IS_ADDR_LOOPBACK(res->ai_addr)) -+ if ((strcasecmp(ua->ua_ipaddr,ipaddr)==0) || (strcasecmp("127.0.0.1",ipaddr)==0)) - { - ret_ua=ua; /* ip addresses match */ - } diff --git a/net/linphone-base/files/patch-osipua::src::sdphandler.c b/net/linphone-base/files/patch-osipua::src::sdphandler.c deleted file mode 100644 index 3af14a5dfbc1..000000000000 --- a/net/linphone-base/files/patch-osipua::src::sdphandler.c +++ /dev/null @@ -1,13 +0,0 @@ - -$FreeBSD$ - ---- osipua/src/sdphandler.c 2003/06/13 13:02:40 1.1 -+++ osipua/src/sdphandler.c 2003/06/13 13:02:48 -@@ -26,6 +26,7 @@ - #include <string.h> - #include <sys/types.h> - #include <sys/socket.h> -+#include <netinet/in.h> - - #ifdef HAVE_IFADDRS_H - #include <ifaddrs.h> diff --git a/net/linphone-base/files/patch-speex::configure b/net/linphone-base/files/patch-speex::configure deleted file mode 100644 index 9fa7eb31cd72..000000000000 --- a/net/linphone-base/files/patch-speex::configure +++ /dev/null @@ -1,13 +0,0 @@ - -$FreeBSD$ - ---- speex/configure 2003/02/27 23:48:28 1.1 -+++ speex/configure 2003/02/27 23:49:06 -@@ -7764,6 +7764,7 @@ - - # This can be used to rebuild libtool when needed - LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh" -+$ac_aux_dir/ltconfig $LIBTOOL_DEPS - - # Always use our own libtool. - LIBTOOL='$(SHELL) $(top_builddir)/libtool' diff --git a/net/linphone-base/files/patch-speex::doc::Makefile.in b/net/linphone-base/files/patch-speex::doc::Makefile.in deleted file mode 100644 index 3a20772d4288..000000000000 --- a/net/linphone-base/files/patch-speex::doc::Makefile.in +++ /dev/null @@ -1,14 +0,0 @@ - -$FreeBSD$ - ---- speex/doc/Makefile.in.orig Fri Jun 13 15:22:04 2003 -+++ speex/doc/Makefile.in Fri Jun 13 15:22:40 2003 -@@ -91,7 +91,7 @@ - am__quote = @am__quote@ - install_sh = @install_sh@ - src = @src@ --docdir = $(prefix)/share/doc/@PACKAGE@-@VERSION@ -+docdir = $(prefix)/share/doc/@PACKAGE@ - - doc_DATA = manual.pdf - diff --git a/net/linphone-base/files/patch-speex::src::Makefile.in b/net/linphone-base/files/patch-speex::src::Makefile.in deleted file mode 100644 index 099da745b66b..000000000000 --- a/net/linphone-base/files/patch-speex::src::Makefile.in +++ /dev/null @@ -1,14 +0,0 @@ - -$FreeBSD$ - ---- speex/src/Makefile.in.orig Fri Jun 13 15:22:55 2003 -+++ speex/src/Makefile.in Fri Jun 13 15:22:56 2003 -@@ -70,7 +70,7 @@ - OBJEXT = @OBJEXT@ - PATH_SEPARATOR = @PATH_SEPARATOR@ - --mandir = $(prefix)/share/man -+mandir = $(prefix)/man - AMTAR = @AMTAR@ - AS = @AS@ - AWK = @AWK@ diff --git a/net/linphone-base/pkg-descr b/net/linphone-base/pkg-descr deleted file mode 100644 index 7a4d7fab5cf0..000000000000 --- a/net/linphone-base/pkg-descr +++ /dev/null @@ -1,5 +0,0 @@ -Linphone is a web phone: it let you phone to your friends anywhere in the -whole world, freely, simply by using the internet. The cost of the phone call -is the cost that you spend connected to the internet. - -WWW: http://www.linphone.org diff --git a/net/linphone-base/pkg-plist b/net/linphone-base/pkg-plist deleted file mode 100644 index f78e3c32a8cd..000000000000 --- a/net/linphone-base/pkg-plist +++ /dev/null @@ -1,213 +0,0 @@ -bin/linphone -bin/linphonec -bin/osipua_tester -bin/sipomatic -bin/speexdec -bin/speexenc -bin/test_sdphandler -include/ortp/ortp-config.h -include/ortp/ortp.h -include/ortp/payloadtype.h -include/ortp/port_fct.h -include/ortp/rtp.h -include/ortp/rtpmod.h -include/ortp/rtpport.h -include/ortp/rtpsession.h -include/ortp/rtpsignaltable.h -include/ortp/rtptimer.h -include/ortp/scheduler.h -include/ortp/sessionset.h -include/ortp/str_utils.h -include/ortp/telephonyevents.h -include/osipua/bodycontext.h -include/osipua/bodyhandler.h -include/osipua/osipdialog.h -include/osipua/osipmanager.h -include/osipua/osipua-config.h -include/osipua/osipua.h -include/osipua/regctxt.h -include/osipua/resolver.h -include/osipua/sdpcontext.h -include/osipua/sdphandler.h -include/osipua/utils.h -include/speex.h -include/speex_bits.h -include/speex_callbacks.h -include/speex_header.h -include/speex_stereo.h -lib/libmediastreamer.a -lib/libmediastreamer.so -lib/libmediastreamer.so.0 -lib/libmsspeex.a -lib/libmsspeex.so -lib/libmsspeex.so.0 -lib/libortp.a -lib/libortp.so -lib/libortp.so.0 -lib/libosipalloc.a -lib/libosipalloc.so -lib/libosipalloc.so.0 -lib/libosipua.a -lib/libosipua.so -lib/libosipua.so.2 -lib/libspeex.a -lib/libspeex.so -lib/libspeex.so.1 -libdata/bonobo/servers/GNOME_LinphoneApplet.server -libexec/linphone_applet -share/doc/mediastreamer/book1.html -share/doc/mediastreamer/coreapi.html -share/doc/mediastreamer/index.sgml -share/doc/mediastreamer/mediastreamer-filters.html -share/doc/mediastreamer/mediastreamer-msringplayer.html -share/doc/mediastreamer/mediastreamer-mssync.html -share/doc/mediastreamer/mediastreamer-running-processing-chains.html -share/doc/mediastreamer/msfilterimplementations.html -share/doc/mediastreamer/userapi.html -share/doc/ortp/book1.html -share/doc/ortp/index.sgml -share/doc/ortp/ortp-multiplexing-sessions-(in-a-one-thread-design).html -share/doc/ortp/ortp-rtp-payloads-and-profiles.html -share/doc/ortp/ortp-rtpsession-api.html -share/doc/ortp/ortp-stack-initialisation.html -share/doc/ortp/ortp-stack-management-functions.html -share/doc/ortp/ortp-telephone-events-(rfc2833)-.html -share/doc/ortp/ortp-telephony-events-(rfc2833)-.html -share/doc/ortp/ortpapi.html -share/doc/ortp/rtpsession.html -share/doc/ortp/stackinit.html -share/doc/ortp/startup.html -share/doc/osipua/book1.html -share/doc/osipua/index.sgml -share/doc/osipua/osipcallleg.html -share/doc/osipua/osipua--registrationctxt-api-.html -share/doc/osipua/osipua-osipcallleg-private-api.html -share/doc/osipua/osipua-osipcallleg-public-api.html -share/doc/osipua/osipua-osipua-private-api.html -share/doc/osipua/osipua-osipua-public-api.html -share/doc/osipua/osipua.html -share/doc/osipua/registrationctxt.html -share/doc/speex/manual.pdf -share/gnome/apps/Internet/linphone.desktop -share/gnome/gnome-2.0/ui/GNOME_LinphoneApplet.xml -share/gnome/help/linphone/C/manual/CVS/Entries -share/gnome/help/linphone/C/manual/CVS/Repository -share/gnome/help/linphone/C/manual/CVS/Root -share/gnome/help/linphone/C/manual/docbook.css -share/gnome/help/linphone/C/manual/index.html -share/gnome/help/linphone/C/manual/params.html -share/gnome/help/linphone/C/manual/stylesheet-images/CVS/Entries -share/gnome/help/linphone/C/manual/stylesheet-images/CVS/Repository -share/gnome/help/linphone/C/manual/stylesheet-images/CVS/Root -share/gnome/help/linphone/C/manual/t1.html -share/gnome/help/linphone/C/manual/x118.html -share/gnome/help/linphone/C/manual/x121.html -share/gnome/help/linphone/C/manual/x137.html -share/gnome/help/linphone/C/manual/x143.html -share/gnome/help/linphone/C/manual/x167.html -share/gnome/help/linphone/C/manual/x172.html -share/gnome/help/linphone/C/manual/x188.html -share/gnome/help/linphone/C/manual/x26.html -share/gnome/help/linphone/C/manual/x36.html -share/gnome/help/linphone/fr/manual/CVS/Entries -share/gnome/help/linphone/fr/manual/CVS/Repository -share/gnome/help/linphone/fr/manual/CVS/Root -share/gnome/help/linphone/fr/manual/docbook.css -share/gnome/help/linphone/fr/manual/params.html -share/gnome/help/linphone/fr/manual/registering.html -share/gnome/help/linphone/fr/manual/stylesheet-images/CVS/Entries -share/gnome/help/linphone/fr/manual/stylesheet-images/CVS/Repository -share/gnome/help/linphone/fr/manual/stylesheet-images/CVS/Root -share/gnome/help/linphone/fr/manual/t1.html -share/gnome/help/linphone/fr/manual/x116.html -share/gnome/help/linphone/fr/manual/x134.html -share/gnome/help/linphone/fr/manual/x140.html -share/gnome/help/linphone/fr/manual/x164.html -share/gnome/help/linphone/fr/manual/x170.html -share/gnome/help/linphone/fr/manual/x188.html -share/gnome/help/linphone/fr/manual/x24.html -share/gnome/help/linphone/fr/manual/x34.html -share/gnome/help/linphone/it/manual/CVS/Entries -share/gnome/help/linphone/it/manual/CVS/Repository -share/gnome/help/linphone/it/manual/CVS/Root -share/gnome/help/linphone/it/manual/docbook.css -share/gnome/help/linphone/it/manual/params.html -share/gnome/help/linphone/it/manual/registering.html -share/gnome/help/linphone/it/manual/stylesheet-images/CVS/Entries -share/gnome/help/linphone/it/manual/stylesheet-images/CVS/Repository -share/gnome/help/linphone/it/manual/stylesheet-images/CVS/Root -share/gnome/help/linphone/it/manual/t1.html -share/gnome/help/linphone/it/manual/x116.html -share/gnome/help/linphone/it/manual/x134.html -share/gnome/help/linphone/it/manual/x140.html -share/gnome/help/linphone/it/manual/x164.html -share/gnome/help/linphone/it/manual/x170.html -share/gnome/help/linphone/it/manual/x189.html -share/gnome/help/linphone/it/manual/x24.html -share/gnome/help/linphone/it/manual/x34.html -share/gnome/help/linphone/ja/manual/CVS/Entries -share/gnome/help/linphone/ja/manual/CVS/Repository -share/gnome/help/linphone/ja/manual/CVS/Root -share/gnome/help/linphone/ja/manual/params.html -share/gnome/help/linphone/ja/manual/stylesheet-images/caution.gif -share/gnome/help/linphone/ja/manual/stylesheet-images/home.gif -share/gnome/help/linphone/ja/manual/stylesheet-images/important.gif -share/gnome/help/linphone/ja/manual/stylesheet-images/next.gif -share/gnome/help/linphone/ja/manual/stylesheet-images/note.gif -share/gnome/help/linphone/ja/manual/stylesheet-images/prev.gif -share/gnome/help/linphone/ja/manual/stylesheet-images/tip.gif -share/gnome/help/linphone/ja/manual/stylesheet-images/toc-blank.gif -share/gnome/help/linphone/ja/manual/stylesheet-images/toc-minus.gif -share/gnome/help/linphone/ja/manual/stylesheet-images/toc-plus.gif -share/gnome/help/linphone/ja/manual/stylesheet-images/up.gif -share/gnome/help/linphone/ja/manual/stylesheet-images/warning.gif -share/gnome/help/linphone/ja/manual/t1.html -share/gnome/help/linphone/ja/manual/x112.html -share/gnome/help/linphone/ja/manual/x115.html -share/gnome/help/linphone/ja/manual/x131.html -share/gnome/help/linphone/ja/manual/x137.html -share/gnome/help/linphone/ja/manual/x161.html -share/gnome/help/linphone/ja/manual/x166.html -share/gnome/help/linphone/ja/manual/x182.html -share/gnome/help/linphone/ja/manual/x25.html -share/gnome/help/linphone/ja/manual/x35.html -share/gnome/linphonec/linphonec -share/gnome/pixmaps/linphone/linphone.png -share/gnome/pixmaps/linphone/linphone2.png -share/gnome/pixmaps/linphone/linphone2.xpm -share/gnome/sounds/linphone/hello.wav -share/gnome/sounds/linphone/ring.wav -share/gnome/sounds/linphone/ringback.wav -share/locale/de/LC_MESSAGES/linphone.mo -share/locale/fr/LC_MESSAGES/linphone.mo -share/locale/it/LC_MESSAGES/linphone.mo -share/locale/ja/LC_MESSAGES/linphone.mo -@dirrm share/gnome/sounds/linphone -@dirrm share/gnome/pixmaps/linphone -@dirrm share/gnome/linphonec -@dirrm share/gnome/help/linphone/ja/manual/stylesheet-images -@dirrm share/gnome/help/linphone/ja/manual/CVS -@dirrm share/gnome/help/linphone/ja/manual -@dirrm share/gnome/help/linphone/ja -@dirrm share/gnome/help/linphone/it/manual/stylesheet-images/CVS -@dirrm share/gnome/help/linphone/it/manual/stylesheet-images -@dirrm share/gnome/help/linphone/it/manual/CVS -@dirrm share/gnome/help/linphone/it/manual -@dirrm share/gnome/help/linphone/it -@dirrm share/gnome/help/linphone/fr/manual/stylesheet-images/CVS -@dirrm share/gnome/help/linphone/fr/manual/stylesheet-images -@dirrm share/gnome/help/linphone/fr/manual/CVS -@dirrm share/gnome/help/linphone/fr/manual -@dirrm share/gnome/help/linphone/fr -@dirrm share/gnome/help/linphone/C/manual/stylesheet-images/CVS -@dirrm share/gnome/help/linphone/C/manual/stylesheet-images -@dirrm share/gnome/help/linphone/C/manual/CVS -@dirrm share/gnome/help/linphone/C/manual -@dirrm share/gnome/help/linphone/C -@dirrm share/gnome/help/linphone -@dirrm share/doc/speex -@dirrm share/doc/osipua -@dirrm share/doc/ortp -@dirrm share/doc/mediastreamer -@dirrm include/osipua -@dirrm include/ortp diff --git a/net/mldonkey-core-devel/Makefile b/net/mldonkey-core-devel/Makefile deleted file mode 100644 index 1581942a353d..000000000000 --- a/net/mldonkey-core-devel/Makefile +++ /dev/null @@ -1,15 +0,0 @@ -# New ports collection makefile for: mldonkey core -# Date created: Sun Jun 15 19:49:31 UTC 2003 -# Whom: Holger Lamm <holger@e-gitt.net> and Mario S F Ferreira <lioux@FreeBSD.org> -# -# $FreeBSD$ -# - -# build only the CORE -WITHOUT_GUI= yes - -COMMENT= Client 'core' for the MLDonkey peer-to-peer network - -MASTERDIR= ${.CURDIR}/../mldonkey - -.include "${MASTERDIR}/Makefile" diff --git a/net/mldonkey-devel/Makefile b/net/mldonkey-devel/Makefile deleted file mode 100644 index eb14cc1794c7..000000000000 --- a/net/mldonkey-devel/Makefile +++ /dev/null @@ -1,95 +0,0 @@ -# New ports collection makefile for: mldonkey -# Date created: 21 August 2002 -# Whom: Holger Lamm <holger@e-gitt.net> -# -# $FreeBSD$ -# - -PORTNAME= mldonkey -PORTVERSION= 2.5.3 -CATEGORIES= net -MASTER_SITES= http://savannah.nongnu.org/download/mldonkey/release-${PORTVERSION:C/\.(.)$/-\1/}/official/ -DISTNAME= ${PORTNAME}-${PORTVERSION:C/\.(.)$/-\1/}.sources - -MAINTAINER= holger@e-gitt.net -COMMENT?= A OCAML client for multiple peer-to-peer networks - -BUILD_DEPENDS= ocamlc:${PORTSDIR}/lang/ocaml - -GNU_CONFIGURE= yes -CONFIGURE_ARGS= --enable-pthread -WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION:C/\.(.)$/-\1/} -USE_GMAKE= yes -ALL_TARGET= depend opt - -.if defined(WITHOUT_GUI) -.if defined(WITHOUT_CORE) -.error "Cool, you defined both WITHOUT_GUI and WITHOUT_CORE. I think I'll do nothing." -.endif -# have no 'without-' flag -CONFIGURE_ARGS+=--disable-gui -PLIST_SUB+= CORE="" GUI="@comment " GUICORE="@comment " -PKGNAMESUFFIX= -core -.else -PLIST_SUB+= GUI="" -BUILD_DEPENDS+= lablgtk:${PORTSDIR}/x11-toolkits/ocaml-lablgtk \ - ${LOCALBASE}/lib/ocaml/jabbr.cma:${PORTSDIR}/net/ocaml-jabbr -# we don't need lablgtk as RUN dependency, but we need gtk+glib -USE_GNOME= gtk12 -.if defined(WITHOUT_CORE) -PKGNAMESUFFIX= -gui -PLIST_SUB+= CORE="@comment " GUICORE="@comment " -.else -PLIST_SUB+= CORE="" GUICORE="" -.endif -.endif - -DOCFILES= AUTHORS BUGS ChangeLog FAQ.html \ - INSTALL TODO ed2k_links.txt - -pre-everything:: -.if !defined(WITHOUT_GUI) && !defined(WITHOUT_CORE) - @${ECHO_MSG} "You can disable the GUI by defining WITHOUT_GUI." - @${ECHO_MSG} "You can disable the CORE by defining WITHOUT_CORE." -.endif - -post-patch: - @${SED} -e "s|%%PREFIX%%|${PREFIX}|" ${FILESDIR}/wrapper.sh > \ - ${WRKDIR}/wrapper.sh - -do-install: -.ifndef(WITHOUT_CORE) - @${INSTALL_PROGRAM} ${WRKSRC}/mlnet ${PREFIX}/bin/mlnet-real - @${INSTALL_SCRIPT} ${FILESDIR}/kill_mldonkey ${PREFIX}/bin - @${INSTALL_SCRIPT} ${WRKDIR}/wrapper.sh ${PREFIX}/bin/mlnet -.endif -.ifndef(WITHOUT_GUI) - @${INSTALL_PROGRAM} ${WRKSRC}/mlchat ${PREFIX}/bin - @${INSTALL_PROGRAM} ${WRKSRC}/mlgui ${PREFIX}/bin - @${INSTALL_PROGRAM} ${WRKSRC}/mlim ${PREFIX}/bin -.endif -.ifndef(WITHOUT_CORE && WITHOUT_GUI) - @${INSTALL_SCRIPT} ${WRKSRC}/distrib/mldonkey_previewer ${PREFIX}/bin - @${INSTALL_PROGRAM} ${WRKSRC}/mlguistarter ${PREFIX}/bin - @${INSTALL_PROGRAM} ${WRKSRC}/mlnet+gui ${PREFIX}/bin -.endif -.ifndef(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} -.for file in ${DOCFILES} - @${INSTALL_DATA} ${WRKSRC}/distrib/${file} ${DOCSDIR} -.endfor -.endif - -post-install: - @${CAT} ${PKGMESSAGE} - -install-user: extract -.if !defined(LANG) - @${ECHO_MSG} "Please call as: make install-user LANG=<lang>" - @${ECHO_MSG} "with <lang> one of en,de,fr,fr.noaccents,sp !" -.else - @${CP} ${WRKSRC}/distrib/i18n/gui_messages.ini.${LANG}\ - ${HOME}/.mldonkey_gui_messages.ini -.endif - -.include <bsd.port.mk> diff --git a/net/mldonkey-devel/distinfo b/net/mldonkey-devel/distinfo deleted file mode 100644 index 1598703cf88a..000000000000 --- a/net/mldonkey-devel/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (mldonkey-2.5-3.sources.tar.gz) = d11504a6dd1e8b5f955951d1f73236ed diff --git a/net/mldonkey-devel/files/kill_mldonkey b/net/mldonkey-devel/files/kill_mldonkey deleted file mode 100644 index 17a7de100aad..000000000000 --- a/net/mldonkey-devel/files/kill_mldonkey +++ /dev/null @@ -1,51 +0,0 @@ -# -# Copyright (c) 2003 -# Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> -# Holger Lamm <holger@e-gitt.net> -# All rights reserved. -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions -# are met: -# 1. Redistributions of source code must retain the above copyright -# notice, this list of conditions and the following disclaimer. -# 2. Redistributions in binary form must reproduce the above copyright -# notice, this list of conditions and the following disclaimer in the -# documentation and/or other materials provided with the distribution. -# -# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND -# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -# ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE -# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS -# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -# SUCH DAMAGE. -# - -#!/bin/sh - -# -# Add Username and password here -# like this: -# -HTTPUSER="you" -HTTPPASS="yourpassword" - -# Add location and port of mldonkey core -HTTPURL="127.0.0.1:4080" - -# internal configuration -HTTP_COMMAND="/usr/bin/fetch" -HTTP_COMMAND_ARGS="-1 -q -s" - -if [ -n "${HTTPUSER}" -a -n "${HTTPPASS}" ] -then - export HTTP_AUTH=basic:*:${HTTPUSER}:${HTTPPASS} -fi - -${HTTP_COMMAND} ${HTTP_COMMAND_ARGS} "http://${HTTPURL}/submit?q=kill" - diff --git a/net/mldonkey-devel/files/wrapper.sh b/net/mldonkey-devel/files/wrapper.sh deleted file mode 100644 index c25fd62bc133..000000000000 --- a/net/mldonkey-devel/files/wrapper.sh +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/sh - -PREFIX="%%PREFIX%%/bin" -PROGRAM="${0}" -DIRNAME=${HOME}/.mldonkey - -if [ ! -d ${DIRNAME} ] -then - mkdir -p ${DIRNAME} -fi - -echo " ${*} " | grep " \-createdironly " || -{ - cd ${DIRNAME} && - echo Running under ${DIRNAME} && - exec ${PREFIX}/${PROGRAM##*/}-real "${@}" || - echo PROBLEM. Cannot create directory ${DIRNAME}, make sure you have the proper permissions to create it and try again -} diff --git a/net/mldonkey-devel/pkg-descr b/net/mldonkey-devel/pkg-descr deleted file mode 100644 index 4fdcee9c079e..000000000000 --- a/net/mldonkey-devel/pkg-descr +++ /dev/null @@ -1,18 +0,0 @@ -mldonkey is a OCAML/GTK client for a number of -peer-to-peer networks. - -It is separated into a core with telnet and web interfaces, and -a GTK GUI. - -The following protocols are supported: -- eDonkey (http://www.edonkey2000.com/) -- Overnet (http://www.overnet.com/) -- Bittorrent (http://bitconjurer.org/BitTorrent/) -- Gnutella (http://www.gnutella.org/) -- Gnutella2 (http://www.shareaza.com/) -- Soulseek (http://www.slsk.org/) -- Direct-Connect (http://www.neo-modus.com/) -- Opennap (http://opennap.sourceforge.net/) - -WWW: http://www.mldonkey.org/ - http://www.nongnu.org/mldonkey/ diff --git a/net/mldonkey-devel/pkg-message b/net/mldonkey-devel/pkg-message deleted file mode 100644 index 9ec1ee80b84c..000000000000 --- a/net/mldonkey-devel/pkg-message +++ /dev/null @@ -1,27 +0,0 @@ - ATTENTIONATTENTION: - -- If you want to know how to use mldonkey, read "INSTALL" or - "FAQ.html" in the port docs (/usr/local/share/doc/mldonkey) - -- It is not a bad idea to install mplayer. You will be able - to preview half-downloaded files (if you have the beginning). - -- You can import the downloads you started with eDonkey - (try "import /home/directory/path/.edonkey2000-core" - on the console), but you can NOT go back! - -- If this is the first time you install mldonkey, - please go to the mldonkey-gui ports dir as a user and enter: - - make install-user - - this will set up your user config. - -- You have to enable the different protocols on the client - console. Go to the (mldonkey-) console, and try the commands - 'set enable_<protocol> true' (try 'voo' for reference). - -+------------------------------------------------------------+ -|- For upgraders: The names of the binaries have changed. | -| Core and GUI are called "mlnet" and "mlgui", respectively.| -+------------------------------------------------------------+ diff --git a/net/mldonkey-devel/pkg-plist b/net/mldonkey-devel/pkg-plist deleted file mode 100644 index 4805dcf325d6..000000000000 --- a/net/mldonkey-devel/pkg-plist +++ /dev/null @@ -1,17 +0,0 @@ -%%CORE%%bin/kill_mldonkey -%%CORE%%bin/mlnet -%%CORE%%bin/mlnet-real -%%GUICORE%%bin/mlguistarter -%%GUICORE%%bin/mldonkey_previewer -%%GUICORE%%bin/mlnet+gui -%%GUI%%bin/mlchat -%%GUI%%bin/mlgui -%%GUI%%bin/mlim -%%PORTDOCS%%share/doc/mldonkey/AUTHORS -%%PORTDOCS%%share/doc/mldonkey/BUGS -%%PORTDOCS%%share/doc/mldonkey/ChangeLog -%%PORTDOCS%%share/doc/mldonkey/FAQ.html -%%PORTDOCS%%share/doc/mldonkey/INSTALL -%%PORTDOCS%%share/doc/mldonkey/TODO -%%PORTDOCS%%share/doc/mldonkey/ed2k_links.txt -%%PORTDOCS%%@dirrm share/doc/mldonkey diff --git a/net/mldonkey-gui-devel/Makefile b/net/mldonkey-gui-devel/Makefile deleted file mode 100644 index 1b80b728432b..000000000000 --- a/net/mldonkey-gui-devel/Makefile +++ /dev/null @@ -1,15 +0,0 @@ -# New ports collection makefile for: mldonkey -# Date created: 19 December 2002 -# Whom: Holger Lamm <holger@e-gitt.net> -# -# $FreeBSD$ -# - -# build only the GUI -WITHOUT_CORE= yes - -COMMENT= A OCAML/GTK GUI for the MLdonkey peer-to-peer network client - -MASTERDIR= ${.CURDIR}/../mldonkey - -.include "${MASTERDIR}/Makefile" diff --git a/net/mldonkey-gui-devel/mldonkey-gui/Makefile b/net/mldonkey-gui-devel/mldonkey-gui/Makefile deleted file mode 100644 index 1b80b728432b..000000000000 --- a/net/mldonkey-gui-devel/mldonkey-gui/Makefile +++ /dev/null @@ -1,15 +0,0 @@ -# New ports collection makefile for: mldonkey -# Date created: 19 December 2002 -# Whom: Holger Lamm <holger@e-gitt.net> -# -# $FreeBSD$ -# - -# build only the GUI -WITHOUT_CORE= yes - -COMMENT= A OCAML/GTK GUI for the MLdonkey peer-to-peer network client - -MASTERDIR= ${.CURDIR}/../mldonkey - -.include "${MASTERDIR}/Makefile" diff --git a/net/mpich2/Makefile b/net/mpich2/Makefile deleted file mode 100644 index 800a9cf1f5b7..000000000000 --- a/net/mpich2/Makefile +++ /dev/null @@ -1,177 +0,0 @@ -# New ports collection makefile for: mpich (portable mpi standard imp.) -# Date created: 2 May 1998 -# Whom: dbader@ece.unm.edu -# -# $FreeBSD$ -# - -PORTNAME= mpich -PORTVERSION= 1.2.5 -PORTREVISION= 2 -CATEGORIES= net parallel -MASTER_SITES= ftp://ftp.mcs.anl.gov/pub/mpi/ -DIST_SUBDIR= mpich - -MAINTAINER= dbader@ece.unm.edu -COMMENT= Message Passing Interface (MPI) Library - -PATCH_SITES= ftp://ftp.mcs.anl.gov/pub/mpi/patch/${PORTVERSION}/ -PATCHFILES= 7633 7629 7791 7814 7829 # 7650 - -RUN_DEPENDS= wish8.4:${PORTSDIR}/x11-toolkits/tk84 -BUILD_DEPENDS= wish8.4:${PORTSDIR}/x11-toolkits/tk84 -CONFIGURE_ARGS= -cflags="${CFLAGS}" -prefix=${PREFIX}/mpich \ - -mpe_opts="--with-wishloc=wish8.4" - -.if defined(WITHOUT_JAVA) -CONFIGURE_ARGS+= --without-java -PLIST_SUB+= JAVA="@comment " -.else -RUN_DEPENDS+= javavm:${PORTSDIR}/java/javavmwrapper \ - ${LOCALBASE}/etc/javavms:${PORTSDIR}/java/jdk13 -BUILD_DEPENDS+= javavm:${PORTSDIR}/java/javavmwrapper \ - ${LOCALBASE}/etc/javavms:${PORTSDIR}/java/jdk13 -PLIST_SUB+= JAVA="" -.endif - -HAS_CONFIGURE= yes - -.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 dc166f5c335e..000000000000 --- a/net/mpich2/distinfo +++ /dev/null @@ -1,6 +0,0 @@ -MD5 (mpich/mpich-1.2.5.tar.gz) = e10f2fde92b6c3264eeb00fdefbb09f1 -MD5 (mpich/7633) = 253a619976cbf984a8357e2d3807e740 -MD5 (mpich/7629) = f95bc355d309c107f99aec821da72e67 -MD5 (mpich/7791) = 41b062b1d194ebfb1a29004639975410 -MD5 (mpich/7814) = 133615889e7ef5ffb318e8105b0e8aca -MD5 (mpich/7829) = f8faa4621f8c7e49e79d01385ed5a712 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-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 49eb7c4babce..000000000000 --- a/net/mpich2/pkg-plist +++ /dev/null @@ -1,562 +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.ladebug -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/mpeman.pdf -mpich/doc/mpeman.ps.gz -mpich/doc/mpichman-chp4.pdf -mpich/doc/mpichman-chp4.ps.gz -mpich/doc/mpichman-chp4mpd.pdf -mpich/doc/mpichman-chp4mpd.ps.gz -mpich/doc/mpichman-chshmem.pdf -mpich/doc/mpichman-chshmem.ps.gz -mpich/doc/mpichman-globus2.pdf -mpich/doc/mpichman-globus2.ps.gz -mpich/doc/mpiman.ps -mpich/doc/romio-users.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 -%%JAVA%%mpich/share/jumpshot-3/README -%%JAVA%%mpich/share/jumpshot-3/README.slog -%%JAVA%%mpich/share/jumpshot-3/TourStepByStep.txt -%%JAVA%%mpich/share/jumpshot-3/UserGuide.txt -%%JAVA%%mpich/share/jumpshot-3/bin/jumpshot -%%JAVA%%mpich/share/jumpshot-3/bin/slog_print -%%JAVA%%mpich/share/jumpshot-3/doc/TourStepByStep.pdf -%%JAVA%%mpich/share/jumpshot-3/doc/html/TourStepByStep.css -%%JAVA%%mpich/share/jumpshot-3/doc/html/TourStepByStep.html -%%JAVA%%mpich/share/jumpshot-3/doc/html/WARNINGS -%%JAVA%%mpich/share/jumpshot-3/doc/html/crossref.gif -%%JAVA%%mpich/share/jumpshot-3/doc/html/footnode.html -%%JAVA%%mpich/share/jumpshot-3/doc/html/images.aux -%%JAVA%%mpich/share/jumpshot-3/doc/html/images.log -%%JAVA%%mpich/share/jumpshot-3/doc/html/images.pl -%%JAVA%%mpich/share/jumpshot-3/doc/html/images.tex -%%JAVA%%mpich/share/jumpshot-3/doc/html/img1.gif -%%JAVA%%mpich/share/jumpshot-3/doc/html/img10.gif -%%JAVA%%mpich/share/jumpshot-3/doc/html/img11.gif -%%JAVA%%mpich/share/jumpshot-3/doc/html/img12.gif -%%JAVA%%mpich/share/jumpshot-3/doc/html/img13.gif -%%JAVA%%mpich/share/jumpshot-3/doc/html/img2.gif -%%JAVA%%mpich/share/jumpshot-3/doc/html/img3.gif -%%JAVA%%mpich/share/jumpshot-3/doc/html/img4.gif -%%JAVA%%mpich/share/jumpshot-3/doc/html/img5.gif -%%JAVA%%mpich/share/jumpshot-3/doc/html/img6.gif -%%JAVA%%mpich/share/jumpshot-3/doc/html/img7.gif -%%JAVA%%mpich/share/jumpshot-3/doc/html/img8.gif -%%JAVA%%mpich/share/jumpshot-3/doc/html/img9.gif -%%JAVA%%mpich/share/jumpshot-3/doc/html/index.html -%%JAVA%%mpich/share/jumpshot-3/doc/html/internals.pl -%%JAVA%%mpich/share/jumpshot-3/doc/html/labels.pl -%%JAVA%%mpich/share/jumpshot-3/doc/html/next.gif -%%JAVA%%mpich/share/jumpshot-3/doc/html/next_g.gif -%%JAVA%%mpich/share/jumpshot-3/doc/html/node1.html -%%JAVA%%mpich/share/jumpshot-3/doc/html/node2.html -%%JAVA%%mpich/share/jumpshot-3/doc/html/node3.html -%%JAVA%%mpich/share/jumpshot-3/doc/html/node4.html -%%JAVA%%mpich/share/jumpshot-3/doc/html/node5.html -%%JAVA%%mpich/share/jumpshot-3/doc/html/node6.html -%%JAVA%%mpich/share/jumpshot-3/doc/html/node7.html -%%JAVA%%mpich/share/jumpshot-3/doc/html/prev.gif -%%JAVA%%mpich/share/jumpshot-3/doc/html/prev_g.gif -%%JAVA%%mpich/share/jumpshot-3/doc/html/up.gif -%%JAVA%%mpich/share/jumpshot-3/doc/html/up_g.gif -%%JAVA%%mpich/share/jumpshot-3/doc/jumpshot.def -%%JAVA%%mpich/share/jumpshot-3/etc/jumpshot.conf -%%JAVA%%mpich/share/jumpshot-3/lib/images.jar -%%JAVA%%mpich/share/jumpshot-3/lib/jumpshot.jar -%%JAVA%%mpich/share/jumpshot-3/lib/preview.jar -%%JAVA%%mpich/share/jumpshot-3/lib/slog.jar -%%JAVA%%mpich/share/jumpshot-3/lib/slog_print.class -%%JAVA%%mpich/share/jumpshot-3/lib/slog_print_remote.class -%%JAVA%%mpich/share/jumpshot-3/lib/statsviewer.jar -%%JAVA%%mpich/share/jumpshot-3/logfiles/sample.slog -%%JAVA%%mpich/share/jumpshot-3/logfiles/sppm.stats.0301 -%%JAVA%%mpich/share/jumpshot-3/logfiles/sppm_ic2a.slog -%%JAVA%%mpich/share/jumpshot-3/logfiles/stats0204.txt -%%JAVA%%mpich/share/jumpshot-3/logfiles/stats3.txt -%%JAVA%%mpich/share/jumpshot-3/logfiles/thread1.stats -%%JAVA%%mpich/share/jumpshot-3/sbin/exejar -%%JAVA%%mpich/share/jumpshot-3/share/jumpshot.colors -%%JAVA%%@dirrm mpich/share/jumpshot-3/share -%%JAVA%%@dirrm mpich/share/jumpshot-3/sbin -%%JAVA%%@dirrm mpich/share/jumpshot-3/logfiles -%%JAVA%%@dirrm mpich/share/jumpshot-3/lib -%%JAVA%%@dirrm mpich/share/jumpshot-3/etc -%%JAVA%%@dirrm mpich/share/jumpshot-3/doc/html -%%JAVA%%@dirrm mpich/share/jumpshot-3/doc -%%JAVA%%@dirrm mpich/share/jumpshot-3/bin -%%JAVA%%@dirrm mpich/share/jumpshot-3 -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/netatalk-devel/Makefile b/net/netatalk-devel/Makefile deleted file mode 100644 index 65081795f3d6..000000000000 --- a/net/netatalk-devel/Makefile +++ /dev/null @@ -1,116 +0,0 @@ -# Ports collection makefile for: netatalk -# Date created: 23 Jul 1997 -# Whom: stb -# -# $FreeBSD$ -# - -PORTNAME= netatalk -PORTVERSION= 1.6.3 -PORTEPOCH= 1 -CATEGORIES= net print -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= netatalk - -MAINTAINER= marcus@FreeBSD.org -COMMENT= File and print server for AppleTalk networks - -.if !defined(WITHOUT_CNID) -LIB_DEPENDS= db3.3:${PORTSDIR}/databases/db3 -.endif -.if defined(WITH_SRVLOC) -LIB_DEPENDS+= slp.1:${PORTSDIR}/net/openslp -.endif - -USE_BZIP2= yes -CONFIGURE_ARGS+= --with-tcp-wrappers \ - --with-pkgconfdir=${PREFIX}/etc -.if defined(WITH_PAM) -CONFIGURE_ARGS+= --with-pam=/etc/pam.d -PLIST_SUB+= NETATALKPAM="" -.else -CONFIGURE_ARGS+= --without-pam -PLIST_SUB+= NETATALKPAM="@comment " -.endif -.if defined(WITH_SRVLOC) -# Enable Service Location Protocol support. This allows MacOS X < 10.1 to -# pickup afpd servers in the network. -CONFIGURE_ARGS+= --enable-srvloc=${LOCALBASE} -.endif -.if defined(WITHOUT_CNID) -# Configure old LAST DID support. By default, the new CNID persistent DID -# calculation scheme is used. However, if you wish to revert back to the old -# 1.5.x default scheme, specify WITHOUT_CNID -CONFIGURE_ARGS+= --with-did=last -PLIST_SUB+= NETATALKCNID="@comment " -.else -# This method of DID calculation is not persistent, but has been tested to -# work with MacOS X (10.0.3-10.1.3) as well as MacOS 7-9.2.2. -CONFIGURE_ARGS+= --with-did=cnid \ - --with-bdb=${LOCALBASE} -PLIST_SUB+= NETATALKCNID="" -.endif -.if defined (WITH_TIMELORD) -CONFIGURE_ARGS+= --enable-timelord -PLIST_SUB+= TIMELORD="" -.else -PLIST_SUB+= TIMELORD="@comment " -.endif -.if defined (WITH_MANGLING) && !defined (WITHOUT_CNID) -# Enable long file name mangling support (requires CNID). -CONFIGURE_ARGS+= --with-mangling -.endif -GNU_CONFIGURE= yes -CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} -USE_GMAKE= yes -USE_PERL5= yes -FILES= AppleVolumes.default AppleVolumes.system afpd.conf \ - atalkd.conf papd.conf -LINKS= unbin unhex unsingle hqx2bin single2bin macbinary \ - binheader nadheader -MAN1= achfile.1 aecho.1 afile.1 afppasswd.1 getzones.1 \ - megatron.1 nbp.1 pap.1 psorder.1 hqx2bin.1 macbinary.1 \ - nbplkup.1 nbprgstr.1 nbpunrgstr.1 papstatus.1 \ - single2bin.1 unbin.1 unhex.1 unsingle.1 acleandir.1 \ - netatalk-config.1 timeout.1 apple_cp.1 apple_mv.1 \ - apple_rm.1 -MAN3= atalk_aton.3 nbp_name.3 -MAN4= atalk.4 -MAN5= AppleVolumes.default.5 afpd.conf.5 atalkd.conf.5 \ - netatalk.conf.5 papd.conf.5 -MAN8= afpd.8 atalkd.8 papd.8 papstatus.8 psf.8 timelord.8 - -pre-everything:: - @${ECHO_MSG} "" - @${ECHO_MSG} "Netatalk has the following tunable options:" - @${ECHO_MSG} " WITHOUT_CNID=yes Turns off CNID persistent DID support" - @${ECHO_MSG} " WITH_SRVLOC=yes Enable Service Location Protocol support" - @${ECHO_MSG} " WITH_PAM=yes Enable PAM support" - @${ECHO_MSG} " WITH_TIMELORD=yes Enable Timelord network time service" - @${ECHO_MSG} " WITH_MANGLING=yes Enable long file name mangling support (requires CNID)" - @${ECHO_MSG} "" - @${ECHO_MSG} "See Netatalk's Makefile for more details on some of these options." - @${ECHO_MSG} "" - -post-extract: - @${SED} -e "s=%%PREFIX%%=${PREFIX}=g" ${FILESDIR}/netatalk.sh \ - > ${WRKSRC}/netatalk.sh - -post-install: - @${RM} -f ${PREFIX}/bin/nu ${PREFIX}/bin/lp2pap.sh \ - ${PREFIX}/bin/test_parse_mtab \ - ${PREFIX}/bin/afpd-mtab.pl ${PREFIX}/etc/netatalk.conf.dist - ${INSTALL_SCRIPT} ${WRKSRC}/netatalk.sh \ - ${PREFIX}/etc/rc.d/netatalk.sh.sample - ${INSTALL_SCRIPT} ${WRKSRC}/contrib/macusers/macusers \ - ${PREFIX}/bin/macusers -.for i in ${FILES} - [ -f ${PREFIX}/etc/${i} ] || \ - ${INSTALL_DATA} -c ${PREFIX}/etc/${i}.dist ${PREFIX}/etc/${i} -.endfor -.for i in ${LINKS} - ( cd ${PREFIX}/bin && ${LN} -sf megatron ${i} ) -.endfor - @${CAT} ${PKGMESSAGE} - -.include <bsd.port.mk> diff --git a/net/netatalk-devel/distinfo b/net/netatalk-devel/distinfo deleted file mode 100644 index b6d3dbbb2adf..000000000000 --- a/net/netatalk-devel/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (netatalk-1.6.3.tar.bz2) = fa3d0e08499525d9a627fe17a2d93d1b 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-config_Makefile.in b/net/netatalk-devel/files/patch-config_Makefile.in deleted file mode 100644 index 52b01fbd1280..000000000000 --- a/net/netatalk-devel/files/patch-config_Makefile.in +++ /dev/null @@ -1,24 +0,0 @@ ---- config/Makefile.in.orig Mon Nov 25 22:12:52 2002 -+++ config/Makefile.in Sun Dec 15 16:57:43 2002 -@@ -244,19 +244,11 @@ - install-config-files: $(CONFFILES) $(GENFILES) - $(mkinstalldirs) $(DESTDIR)$(pkgconfdir) - for f in $(CONFFILES) $(GENFILES); do \ -- if test "x$(OVERWRITE_CONFIG)" = "xyes" -o ! -f $(DESTDIR)$(pkgconfdir)/$$f; then \ -- echo "$(INSTALL_DATA) $$f $(DESTDIR)$(pkgconfdir)"; \ -- $(INSTALL_DATA) $$f $(DESTDIR)$(pkgconfdir); \ -- else \ -- echo "not overwriting $$f"; \ -- fi; \ -+ echo "$(INSTALL_DATA) $$f $(DESTDIR)$(pkgconfdir)/$$f.dist"; \ -+ $(INSTALL_DATA) $$f $(DESTDIR)$(pkgconfdir)/$$f.dist; \ - done - - @USE_PAM_TRUE@install-data-local: install-config-files $(PAMFILES) --@USE_PAM_TRUE@ $(mkinstalldirs) $(DESTDIR)$(pamdir) --@USE_PAM_TRUE@ for f in $(PAMFILES); do \ --@USE_PAM_TRUE@ $(INSTALL_DATA) $$f $(DESTDIR)$(pamdir)/netatalk || echo "WARNING: Can't install PAM files"; \ --@USE_PAM_TRUE@ done - - @USE_PAM_FALSE@install-data-local: install-config-files - diff --git a/net/netatalk-devel/files/patch-configure b/net/netatalk-devel/files/patch-configure deleted file mode 100644 index 713d43ec0079..000000000000 --- a/net/netatalk-devel/files/patch-configure +++ /dev/null @@ -1,28 +0,0 @@ ---- configure.orig Mon Jun 9 11:55:15 2003 -+++ configure Fri Jun 20 00:05:06 2003 -@@ -13327,13 +13327,13 @@ - savedldflags="$LDFLAGS" - CFLAGS="$CFLAGS -I$bdbdir" - LDFLAGS="-L$bdblibdir $LDFLAGS" -- echo "$as_me:$LINENO: checking for main in -ldb" >&5 --echo $ECHO_N "checking for main in -ldb... $ECHO_C" >&6 -+ echo "$as_me:$LINENO: checking for main in -ldb3" >&5 -+echo $ECHO_N "checking for main in -ldb3... $ECHO_C" >&6 - if test "${ac_cv_lib_db_main+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 - else - ac_check_lib_save_LIBS=$LIBS --LIBS="-ldb $LIBS" -+LIBS="-ldb3 $LIBS" - cat >conftest.$ac_ext <<_ACEOF - #line $LINENO "configure" - /* confdefs.h. */ -@@ -13384,7 +13384,7 @@ - if test "$bdblibdir" != "/usr/lib"; then - BDB_LIBS="-L$bdblibdir" - fi -- BDB_LIBS="$BDB_LIBS -ldb" -+ BDB_LIBS="$BDB_LIBS -ldb3" - BDB_BIN=$bdbbindir - BDB_PATH="`echo $bdbdir | sed 's,include/db3$,,'`" - BDB_PATH="`echo $BDB_PATH | sed 's,include$,,'`" diff --git a/net/netatalk-devel/files/patch-etc_afpd_unix.h b/net/netatalk-devel/files/patch-etc_afpd_unix.h deleted file mode 100644 index cfc566530256..000000000000 --- a/net/netatalk-devel/files/patch-etc_afpd_unix.h +++ /dev/null @@ -1,12 +0,0 @@ ---- etc/afpd/unix.h.orig Sun Sep 8 23:45:56 2002 -+++ etc/afpd/unix.h Mon Sep 9 00:03:58 2002 -@@ -30,7 +30,8 @@ - #if defined(TRU64) - #define f_frsize f_fsize - #else /* TRU64 */ --#if defined(HAVE_SYS_STATVFS_H) || defined(__svr4__) -+#if (defined(HAVE_SYS_STATVFS_H) || defined(__svr4__)) && \ -+ !defined(__FreeBSD__) - #include <sys/statvfs.h> - #define statfs statvfs - #else /* HAVE_SYS_STATVFS || __svr4__ */ diff --git a/net/netatalk-devel/files/patch-ltmain.sh b/net/netatalk-devel/files/patch-ltmain.sh deleted file mode 100644 index 2ac052749556..000000000000 --- a/net/netatalk-devel/files/patch-ltmain.sh +++ /dev/null @@ -1,25 +0,0 @@ ---- ltmain.sh 2001/08/27 09:51:26 1.1 -+++ ltmain.sh 2001/08/27 09:51:42 -@@ -2408,6 +2408,9 @@ - *-*-netbsd*) - # Don't link with libc until the a.out ld.so is fixed. - ;; -+ *-*-freebsd*) -+ # FreeBSD doesn't need this... -+ ;; - *) - # Add libc to deplibs on all other systems if necessary. - if test "$build_libtool_need_lc" = "yes"; then -@@ -4175,10 +4178,12 @@ - fi - - # Install the pseudo-library for information purposes. -+ if /usr/bin/false; then - name=`$echo "X$file" | $Xsed -e 's%^.*/%%'` - instname="$dir/$name"i - $show "$install_prog $instname $destdir/$name" - $run eval "$install_prog $instname $destdir/$name" || exit $? -+ fi - - # Maybe install the static library, too. - test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library" diff --git a/net/netatalk-devel/pkg-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 d6ee6d5924e9..000000000000 --- a/net/netatalk-devel/pkg-plist +++ /dev/null @@ -1,145 +0,0 @@ -bin/achfile -bin/acleandir.rc -bin/add_netatalk_printer -bin/adv1tov2 -bin/aecho -bin/afile -bin/afppasswd -bin/apple_cp -bin/apple_mv -bin/apple_rm -bin/cleanappledouble.pl -bin/getzones -bin/macusers -bin/makecode -bin/megatron -@unexec rm -f %B/unbin -@unexec rm -f %B/unhex -@unexec rm -f %B/unsingle -@unexec rm -f %B/hqx2bin -@unexec rm -f %B/single2bin -@unexec rm -f %B/macbinary -@unexec rm -f %B/binheader -@unexec rm -f %B/nadheader -@exec cd %B && ln -s megatron unbin -@exec cd %B && ln -s megatron unhex -@exec cd %B && ln -s megatron unsingle -@exec cd %B && ln -s megatron hqx2bin -@exec cd %B && ln -s megatron single2bin -@exec cd %B && ln -s megatron macbinary -@exec cd %B && ln -s megatron binheader -@exec cd %B && ln -s megatron nadheader -%%NETATALKCNID%%bin/cnid_maint -bin/nbplkup -bin/nbprgstr -bin/nbpunrgstr -bin/netatalk-config -bin/netatalkshorternamelinks.pl -bin/pap -bin/papstatus -bin/parsecode -bin/psorder -bin/timeout -sbin/afpd -sbin/atalkd -sbin/etc2ps.sh -sbin/ifmpap -sbin/ifmpaprev -sbin/ifpap -sbin/ifpaprev -sbin/ifwmpap -sbin/ifwmpaprev -sbin/ifwpap -sbin/ifwpaprev -sbin/ofmpap -sbin/ofpap -sbin/ofwmpap -sbin/ofwpap -sbin/papd -sbin/psa -sbin/psf -sbin/tfmpap -sbin/tfmpaprev -sbin/tfpap -sbin/tfpaprev -sbin/tfwmpap -sbin/tfwmpaprev -sbin/tfwpap -sbin/tfwpaprev -%%TIMELORD%%sbin/timelord -@unexec if cmp -s %D/etc/AppleVolumes.default %D/etc/AppleVolumes.default.dist; then rm -f %D/etc/AppleVolumes.default; fi -etc/AppleVolumes.default.dist -@exec [ ! -f %B/AppleVolumes.default ] && cp %B/%f %B/AppleVolumes.default -@unexec if cmp -s %D/etc/AppleVolumes.system %D/etc/AppleVolumes.system.dist; then rm -f %D/etc/AppleVolumes.system; fi -etc/AppleVolumes.system.dist -@exec [ ! -f %B/AppleVolumes.system ] && cp %B/%f %B/AppleVolumes.system -@unexec if cmp -s %D/etc/afpd.conf %D/etc/afpd.conf.dist; then rm -f %D/etc/afpd.conf; fi -etc/afpd.conf.dist -@exec [ ! -f %B/afpd.conf ] && cp %B/%f %B/afpd.conf -@unexec if cmp -s %D/etc/atalkd.conf %D/etc/atalkd.conf.dist; then rm -f %D/etc/atalkd.conf; fi -etc/atalkd.conf.dist -@exec [ ! -f %B/atalkd.conf ] && cp %B/%f %B/atalkd.conf -@unexec if cmp -s %D/etc/papd.conf %D/etc/papd.conf.dist; then rm -f %D/etc/papd.conf; fi -etc/papd.conf.dist -@exec [ ! -f %B/papd.conf ] && cp %B/%f %B/papd.conf -etc/nls/maccode.437 -etc/nls/maccode.850 -etc/nls/maccode.iso8859-1 -etc/nls/maccode.iso8859-1.adapted -etc/nls/maccode.koi8-r -etc/rc.d/netatalk.sh.sample -etc/uams/uams_clrtxt.so -etc/uams/uams_dhx.so -%%NETATALKPAM%%etc/uams/uams_dhx_pam.so -%%NETATALKPAM%%etc/uams/uams_dhx_pam.a -etc/uams/uams_dhx_passwd.so -etc/uams/uams_dhx_passwd.a -etc/uams/uams_guest.so -etc/uams/uams_guest.a -%%NETATALKPAM%%etc/uams/uams_pam.so -%%NETATALKPAM%%etc/uams/uams_pam.a -etc/uams/uams_passwd.so -etc/uams/uams_passwd.a -etc/uams/uams_randnum.so -etc/uams/uams_randnum.a -@dirrm etc/nls -@dirrm etc/uams -include/atalk/adouble.h -include/atalk/aep.h -include/atalk/afp.h -include/atalk/asp.h -include/atalk/atp.h -include/atalk/boolean.h -include/atalk/cnid.h -include/atalk/compat.h -include/atalk/ddp.h -include/atalk/dsi.h -include/atalk/logger.h -include/atalk/nbp.h -include/atalk/netddp.h -include/atalk/pap.h -include/atalk/paths.h -include/atalk/rtmp.h -include/atalk/server_child.h -include/atalk/uam.h -include/atalk/util.h -include/atalk/zip.h -include/netatalk/aarp.c -include/netatalk/aarp.h -include/netatalk/at.h -include/netatalk/at_control.c -include/netatalk/at_proto.c -include/netatalk/at_var.h -include/netatalk/ddp.h -include/netatalk/endian.h -include/netatalk/ddp_var.h -include/netatalk/ddp_input.c -include/netatalk/ddp_output.c -include/netatalk/ddp_usrreq.c -include/netatalk/phase2.h -@dirrm include/atalk -@dirrm include/netatalk -lib/libatalk.a -share/aclocal/netatalk.m4 -share/netatalk/pagecount.ps -@dirrm share/netatalk diff --git a/net/netwib/Makefile b/net/netwib/Makefile deleted file mode 100644 index 4e4030b11a0a..000000000000 --- a/net/netwib/Makefile +++ /dev/null @@ -1,33 +0,0 @@ -# New ports collection makefile for: lcrzo -# Date created: Wed Apr 10 02:42:20 CEST 2002 -# Whom: king@v2project.com -# -# $FreeBSD$ -# - -PORTNAME= lcrzo -PORTVERSION= 4.17.0 -CATEGORIES= security -MASTER_SITES= http://www.laurentconstantin.com/common/lcrzo/download/v4/ \ - http://www.mirrors.wiretapped.net/security/packet-construction/lcrzo/ \ - ftp://ftp.mirrors.wiretapped.net/sd3a/security/packet-construction/lcrzo/ -EXTRACT_SUFX= -src.tgz - -MAINTAINER= king@v2project.com -COMMENT= Lcrzo is a network library (used by Lcrzoex, network testing toolbox) - -WRKSRC= ${WRKDIR}/${PKGNAME}-src/src -ONLY_FOR_ARCHS= i386 alpha - -MAN3= lcrzo.3 lcrzo_address.3 lcrzo_conf.3 lcrzo_data.3 lcrzo_device.3 \ - lcrzo_error.3 lcrzo_file.3 lcrzo_global.3 lcrzo_header.3 \ - lcrzo_icmp.3 lcrzo_ipc.3 lcrzo_ipopt.3 lcrzo_list.3 lcrzo_misc.3 \ - lcrzo_obso.3 lcrzo_packet.3 lcrzo_print.3 lcrzo_process.3 \ - lcrzo_record.3 lcrzo_sniff.3 lcrzo_sock.3 lcrzo_spoof.3 \ - lcrzo_string.3 lcrzo_tcpopt.3 lcrzo_time.3 lcrzo_types.3 lcrzo_wait.3 \ - lcrzo_fd2.3 lcrzo_winhandle.3 lcrzo_kbd.3 - -post-patch: - cd ${WRKSRC} && ${SH} ${WRKSRC}/genemake - -.include <bsd.port.mk> diff --git a/net/netwib/distinfo b/net/netwib/distinfo deleted file mode 100644 index b4e343e2617e..000000000000 --- a/net/netwib/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (lcrzo-4.17.0-src.tgz) = 042fcf6ee956b871e607d2686655ba29 diff --git a/net/netwib/files/patch-config.dat b/net/netwib/files/patch-config.dat deleted file mode 100644 index 81a6271d29ad..000000000000 --- a/net/netwib/files/patch-config.dat +++ /dev/null @@ -1,14 +0,0 @@ ---- config.dat.orig Wed Apr 10 03:06:53 2002 -+++ config.dat Wed Apr 10 03:07:04 2002 -@@ -41,9 +41,9 @@ - ### - MacOS_10_ppc : MacOS X under PowerPC - ### - Etc. - #LCRZODEF_SYS=FreeBSD_3_i386 --#LCRZODEF_SYS=FreeBSD_4_i386 -+LCRZODEF_SYS=FreeBSD_4_i386 - #LCRZODEF_SYS=FreeBSD_4_alpha --LCRZODEF_SYS=Linux_X_i386 -+#LCRZODEF_SYS=Linux_X_i386 - #LCRZODEF_SYS=Linux_X_ia64 - #LCRZODEF_SYS=Linux_X_alpha - #LCRZODEF_SYS=MacOS_10_ppc diff --git a/net/netwib/pkg-descr b/net/netwib/pkg-descr deleted file mode 100644 index c25343d904f7..000000000000 --- a/net/netwib/pkg-descr +++ /dev/null @@ -1,9 +0,0 @@ -Lcrzo is a network library, for network administrators -and network hackers. Its objective is to easily create network programs. -This library provides network functionnalities for Ethernet, IP, UDP, TCP, -ICMP, ARP and RARP protocols. It supports spoofing, sniffing, client and -server creation. Furthermore, lcrzo contains high level functions dealing -with data storage and handling. Using all these functions, you can quickly -create a network test program. - -WWW: http://www.laurentconstantin.com/en/lcrzo/ diff --git a/net/netwib/pkg-plist b/net/netwib/pkg-plist deleted file mode 100644 index f2b2995e7bb2..000000000000 --- a/net/netwib/pkg-plist +++ /dev/null @@ -1,34 +0,0 @@ -bin/lcrzo-config -include/lcrzo.h -include/lcrzo_address.h -include/lcrzo_conf.h -include/lcrzo_data.h -include/lcrzo_debugdefs.h -include/lcrzo_defs.h -include/lcrzo_device.h -include/lcrzo_error.h -include/lcrzo_fd2.h -include/lcrzo_file.h -include/lcrzo_global.h -include/lcrzo_header.h -include/lcrzo_icmp.h -include/lcrzo_ipc.h -include/lcrzo_ipopt.h -include/lcrzo_kbd.h -include/lcrzo_list.h -include/lcrzo_misc.h -include/lcrzo_obso.h -include/lcrzo_packet.h -include/lcrzo_print.h -include/lcrzo_process.h -include/lcrzo_record.h -include/lcrzo_sniff.h -include/lcrzo_sock.h -include/lcrzo_spoof.h -include/lcrzo_string.h -include/lcrzo_tcpopt.h -include/lcrzo_time.h -include/lcrzo_types.h -include/lcrzo_wait.h -include/lcrzo_winhandle.h -lib/liblcrzo.a diff --git a/net/ns2/Makefile b/net/ns2/Makefile deleted file mode 100644 index 811e530d9e01..000000000000 --- a/net/ns2/Makefile +++ /dev/null @@ -1,36 +0,0 @@ -# New ports collection makefile for: ns-2 -# Date created: 26 April 1999 -# Whom: obonilla -# -# $FreeBSD$ -# - -PORTNAME= ns -PORTVERSION= 2.26 -CATEGORIES= net -MASTER_SITES= http://www.isi.edu/nsnam/dist/ -DISTNAME= ns-src-2.26 - -MAINTAINER= ports@FreeBSD.org -COMMENT= The UCB/LBNL Network Simulator Version 2 - -BUILD_DEPENDS= ${LOCALBASE}/lib/libtclcl.a:${PORTSDIR}/devel/tclcl -RUN_DEPENDS= ${LOCALBASE}/bin/tclsh8.3:${PORTSDIR}/lang/tcl83 - -MAN1= ns.1 -MANCOMPRESSED= no - -WRKSRC= ${WRKDIR}/ns-2.26 - -GNU_CONFIGURE= yes -CONFIGURE_ARGS= --with-tcl-ver=8.3 --with-tk-ver=8.3 - -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 9bfbef58a81c..000000000000 --- a/net/ns2/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (ns-src-2.26.tar.gz) = c75aa2047fa3e13ed2a43881c50e4c65 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 dea92aaf2bc6..000000000000 --- a/net/ns2/pkg-plist +++ /dev/null @@ -1,118 +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/example.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/large-sim.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/pkts.tcl -share/examples/ns2/ranvar.tcl -share/examples/ns2/rbp_demo.tcl -share/examples/ns2/rc.tcl -share/examples/ns2/redlight.tcl -share/examples/ns2/rng-test.tcl -share/examples/ns2/rng-test2.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/sat-wired.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-tcp.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/src_test.tcl -share/examples/ns2/srm-adapt-rep-session.tcl -share/examples/ns2/srm-adapt-rep.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/t1000.tcl -share/examples/ns2/tcp-et.tcl -share/examples/ns2/tcp-int.tcl -share/examples/ns2/tcpapp.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/udpdata.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-shadowing-vis-test.tcl -share/examples/ns2/wireless-test.tcl -share/examples/ns2/wireless.tcl -@dirrm share/examples/ns2 diff --git a/net/ntp-stable/Makefile b/net/ntp-stable/Makefile deleted file mode 100644 index 031336263fef..000000000000 --- a/net/ntp-stable/Makefile +++ /dev/null @@ -1,40 +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.1c.r3 -CATEGORIES= net -MASTER_SITES= ftp://ftp.udel.edu/pub/ntp/ntp4/ \ - http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ \ - ftp://ftp.archive.de.uu.net/pub/unix/ntp/ntp4/ \ - ftp://ftp.digex.net/pub/packages/network/ntp/ntp4/ \ - ftp://ftp.netlab.is.tsukuba.ac.jp/pub/network/ntp/ntp4/ \ - ftp://uiarchive.cso.uiuc.edu/pub/ftp/ftp.udel.edu/pub/ntp/ntp4/ -DISTNAME= ${PORTNAME}-${PORTVERSION:S/.r/-rc/} - -MAINTAINER= cy@FreeBSD.org -COMMENT= The Network Time Protocol Distribution - -# 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} - -.if defined(ENABLE_RAWDCF) -CONFIGURE_ARGS+= --enable-RAWDCF -.endif - -post-install: -.if !defined(NOPORTDOCS) - @${MKDIR} ${PREFIX}/share/doc/ntp - ${TAR} -C ${WRKSRC}/html -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 d14f1606f442..000000000000 --- a/net/ntp-stable/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (ntp-4.1.1c-rc3.tar.gz) = 8c2f13da8230066c94b8ba15b5b5320c 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/files/patch-configure b/net/ntp-stable/files/patch-configure deleted file mode 100644 index 0f7bcb551501..000000000000 --- a/net/ntp-stable/files/patch-configure +++ /dev/null @@ -1,14 +0,0 @@ ---- configure Tue Dec 18 19:27:28 2001 -+++ configure Sat Dec 22 00:41:29 2001 -@@ -1276,6 +1276,11 @@ - mips-sgi-irix*) - ans=yes - ;; -+ i?86-*-freebsd[[123]].*) -+ ;; -+ i?86-*-freebsd*) -+ ans=yes -+ ;; - esac - ac_cv_var_no_parenb_ignpar=$ans]) - case "$ac_cv_var_no_parenb_ignpar" in diff --git a/net/ntp-stable/pkg-descr b/net/ntp-stable/pkg-descr deleted file mode 100644 index 8610484769d3..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.ntp.org/ diff --git a/net/ntp-stable/pkg-plist b/net/ntp-stable/pkg-plist deleted file mode 100644 index 242d77529f1d..000000000000 --- a/net/ntp-stable/pkg-plist +++ /dev/null @@ -1,179 +0,0 @@ -bin/ntp-genkeys -bin/ntpd -bin/ntpdate -bin/ntpdc -bin/ntpq -bin/ntptime -bin/ntptimeset -bin/ntptrace -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/driver40.htm -%%PORTDOCS%%share/doc/ntp/driver42.htm -%%PORTDOCS%%share/doc/ntp/driver43.htm -%%PORTDOCS%%share/doc/ntp/driver44.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/mpeix -%%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/driver43_1.gif -%%PORTDOCS%%share/doc/ntp/pic/driver43_2.jpg -%%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/neoclock4x.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 22a23a779a07..000000000000 --- a/net/opal/Makefile +++ /dev/null @@ -1,68 +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.12.0 -PORTREVISION= 1 -CATEGORIES= net -MASTER_SITES= http://www.openh323.org/bin/ \ - http://www.de.openh323.org/bin/ \ - http://www.gnomemeeting.org/downloads/0.98.0/sources/ -DISTNAME= ${PORTNAME}_${PORTVERSION} - -MAINTAINER= roger@freebsd.org -COMMENT= A H323 Video Conferencing library - -BUILD_DEPENDS= ${NONEXISTENT}:${PORTSDIR}/devel/pwlib:build - -LIB_DEPENDS= expat.4:${PORTSDIR}/textproc/expat2 \ - ldap.2:${PORTSDIR}/net/openldap20-client - -.include <bsd.port.pre.mk> -.if ${OSVERSION} < 500000 -# Check for telephony.h in the two places the source is hard coded to check -# /usr/include/sys and /usr/local/include/sys -# If it is not present, extract it from the comms/ixj port -.if !exists(/usr/include/sys/telephony.h) -.if !exists(/usr/local/include/sys/telephony.h) -PATCH_DEPENDS= ${NONEXISTENT}:${PORTSDIR}/comms/ixj:patch -.endif -.endif -.endif - -WRKSRC= ${WRKDIR}/${PORTNAME} - -USE_BISON= yes - -USE_GMAKE= yes -USE_AUTOCONF= yes -WANT_AUTOCONF_VER= 253 -GNU_CONFIGURE= yes -CONFIGURE_ENV= PWLIBDIR=${WRKDIR}/../../../devel/pwlib/work/pwlib \ - OPENH323DIR=${WRKDIR}/openh323 -ALL_TARGET= optnoshared -MAKE_ENV= PWLIBDIR=${WRKDIR}/../../../devel/pwlib/work/pwlib \ - OPENH323DIR=${WRKDIR}/openh323 -THE_MACHTYPE= ${ARCH:S/i386/x86/} -MAKE_ARGS= OSTYPE=${OPSYS} MACHTYPE=${THE_MACHTYPE} OSRELEASE=${OSVERSION} CPLUS=${CXX} - -post-patch: -.if ${OSVERSION} < 500000 -.if !exists(/usr/include/sys/telephony.h) -.if !exists(/usr/local/include/sys/telephony.h) - # Copy ixj driver include files into OpenH323 include directory - ${MKDIR} ${WRKDIR}/openh323/include/sys - ${CP} ${WRKDIRPREFIX}${.CURDIR}/../../comms/ixj/work/ixj_freebsd/telephony.h ${WRKDIR}/openh323/include/sys - ${CP} ${WRKDIRPREFIX}${.CURDIR}/../../comms/ixj/work/ixj_freebsd/ixjuser.h ${WRKDIR}/openh323/include/sys -.endif -.endif -.endif - -do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/samples/simple/obj_${OPSYS}_${THE_MACHTYPE}_r/simph323 ${PREFIX}/bin - -.include <bsd.port.post.mk> diff --git a/net/opal/distinfo b/net/opal/distinfo deleted file mode 100644 index f5923a0e2404..000000000000 --- a/net/opal/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (openh323_1.12.0.tar.gz) = f7932f0a17d6afafc7332036a4b5d392 diff --git a/net/opal/files/patch-configurein b/net/opal/files/patch-configurein deleted file mode 100644 index 3d6ff53673a9..000000000000 --- a/net/opal/files/patch-configurein +++ /dev/null @@ -1,31 +0,0 @@ -*** configure.in.orig Thu May 22 13:25:00 2003 ---- configure.in Sat Aug 23 07:52:44 2003 -*************** fi -*** 73,85 **** - - dnl ######################################################################## - dnl get pwlib directory -! if test "${PWLIBDIR:-unset}" == "unset" ; then - PWLIBDIR=`ptlib-config --prefix` - fi -! if test "x$PWLIBDIR" == "x/usr" -o "x$PWLIBDIR" == "x/usr/"; then - PWLIBDIR="/usr/share/pwlib/" - fi -! if test "xPWLIBDIR" == "x/usr/local" -o "x$PWLIBDIR" == "x/usr/"; then - PWLIBDIR="/usr/local/share/pwlib/" - fi - echo "PWLib prefix set to.... $PWLIBDIR" ---- 73,85 ---- - - dnl ######################################################################## - dnl get pwlib directory -! if test "${PWLIBDIR:-unset}" = "unset" ; then - PWLIBDIR=`ptlib-config --prefix` - fi -! if test "x$PWLIBDIR" = "x/usr" -o "x$PWLIBDIR" = "x/usr/"; then - PWLIBDIR="/usr/share/pwlib/" - fi -! if test "xPWLIBDIR" = "x/usr/local" -o "x$PWLIBDIR" = "x/usr/"; then - PWLIBDIR="/usr/local/share/pwlib/" - fi - echo "PWLib prefix set to.... $PWLIBDIR" diff --git a/net/opal/files/patch-ixjlid b/net/opal/files/patch-ixjlid deleted file mode 100644 index faec5f30ea6b..000000000000 --- a/net/opal/files/patch-ixjlid +++ /dev/null @@ -1,21 +0,0 @@ -*** include/ixjlid.h.orig Tue Sep 2 17:32:20 2003 ---- include/ixjlid.h Tue Sep 2 17:32:37 2003 -*************** -*** 253,260 **** - #include <linux/ixjuser.h> - #endif - #ifdef P_FREEBSD -! #include <sys/telephony.h> -! #include <sys/ixjuser.h> - #endif - #endif - ---- 253,260 ---- - #include <linux/ixjuser.h> - #endif - #ifdef P_FREEBSD -! #include "sys/telephony.h" -! #include "sys/ixjuser.h" - #endif - #endif - diff --git a/net/opal/files/patch-openh323uin b/net/opal/files/patch-openh323uin deleted file mode 100644 index 4613a12f810e..000000000000 --- a/net/opal/files/patch-openh323uin +++ /dev/null @@ -1,53 +0,0 @@ -*** openh323u.mak.in.orig Wed May 14 20:52:44 2003 ---- openh323u.mak.in Sun Aug 31 21:26:51 2003 -*************** LIBDIRS += $(OPENH323DIR) -*** 142,152 **** - - - OH323_SRCDIR = $(OPENH323DIR)/src -! ifdef PREFIX -! OH323_INCDIR = $(PREFIX)/include/openh323 -! else - OH323_INCDIR = $(OPENH323DIR)/include -! endif - OH323_LIBDIR = $(OPENH323DIR)/lib - - ---- 142,152 ---- - - - OH323_SRCDIR = $(OPENH323DIR)/src -! #ifdef PREFIX -! #OH323_INCDIR = $(PREFIX)/include/openh323 -! #else - OH323_INCDIR = $(OPENH323DIR)/include -! #endif - OH323_LIBDIR = $(OPENH323DIR)/lib - - -*************** ifdef OH323_SUPPRESS_H235 -*** 184,189 **** ---- 184,190 ---- - STDCCFLAGS += -DOH323_SUPPRESS_H235 - endif - -+ # Check for the ixj/telephony header files on the system. - ifneq (,$(wildcard $(SYSINCDIR)/linux/telephony.h)) - HAS_IXJ = 1 - STDCCFLAGS += -DHAS_IXJ -*************** endif -*** 197,202 **** ---- 198,210 ---- - ifneq (,$(wildcard /usr/local/include/sys/telephony.h)) - HAS_IXJ = 1 - STDCCFLAGS += -DHAS_IXJ -I/usr/local/include -+ endif -+ -+ # In the FreeBSD port, we make a local copy of the ixj header files from -+ # the ixj driver in openh323/include/sys -+ ifneq (,$(wildcard $(OPENH323DIR)/include/sys/telephony.h)) -+ HAS_IXJ = 1 -+ STDCCFLAGS += -DHAS_IXJ - endif - - #Check if we have an OSS soundcard.h diff --git a/net/opal/pkg-descr b/net/opal/pkg-descr deleted file mode 100644 index 5ea7add9f222..000000000000 --- a/net/opal/pkg-descr +++ /dev/null @@ -1,13 +0,0 @@ -OpenH323 is a multi-platform H323 Video Conferencing library. - -This is used to make H323 Video Conferencing applications -like GnomeMeeting and ohphone. (both in the FreeBSD ports tree) - -The library includes a sample program called simph323. - -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. - -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 22a23a779a07..000000000000 --- a/net/opal3/Makefile +++ /dev/null @@ -1,68 +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.12.0 -PORTREVISION= 1 -CATEGORIES= net -MASTER_SITES= http://www.openh323.org/bin/ \ - http://www.de.openh323.org/bin/ \ - http://www.gnomemeeting.org/downloads/0.98.0/sources/ -DISTNAME= ${PORTNAME}_${PORTVERSION} - -MAINTAINER= roger@freebsd.org -COMMENT= A H323 Video Conferencing library - -BUILD_DEPENDS= ${NONEXISTENT}:${PORTSDIR}/devel/pwlib:build - -LIB_DEPENDS= expat.4:${PORTSDIR}/textproc/expat2 \ - ldap.2:${PORTSDIR}/net/openldap20-client - -.include <bsd.port.pre.mk> -.if ${OSVERSION} < 500000 -# Check for telephony.h in the two places the source is hard coded to check -# /usr/include/sys and /usr/local/include/sys -# If it is not present, extract it from the comms/ixj port -.if !exists(/usr/include/sys/telephony.h) -.if !exists(/usr/local/include/sys/telephony.h) -PATCH_DEPENDS= ${NONEXISTENT}:${PORTSDIR}/comms/ixj:patch -.endif -.endif -.endif - -WRKSRC= ${WRKDIR}/${PORTNAME} - -USE_BISON= yes - -USE_GMAKE= yes -USE_AUTOCONF= yes -WANT_AUTOCONF_VER= 253 -GNU_CONFIGURE= yes -CONFIGURE_ENV= PWLIBDIR=${WRKDIR}/../../../devel/pwlib/work/pwlib \ - OPENH323DIR=${WRKDIR}/openh323 -ALL_TARGET= optnoshared -MAKE_ENV= PWLIBDIR=${WRKDIR}/../../../devel/pwlib/work/pwlib \ - OPENH323DIR=${WRKDIR}/openh323 -THE_MACHTYPE= ${ARCH:S/i386/x86/} -MAKE_ARGS= OSTYPE=${OPSYS} MACHTYPE=${THE_MACHTYPE} OSRELEASE=${OSVERSION} CPLUS=${CXX} - -post-patch: -.if ${OSVERSION} < 500000 -.if !exists(/usr/include/sys/telephony.h) -.if !exists(/usr/local/include/sys/telephony.h) - # Copy ixj driver include files into OpenH323 include directory - ${MKDIR} ${WRKDIR}/openh323/include/sys - ${CP} ${WRKDIRPREFIX}${.CURDIR}/../../comms/ixj/work/ixj_freebsd/telephony.h ${WRKDIR}/openh323/include/sys - ${CP} ${WRKDIRPREFIX}${.CURDIR}/../../comms/ixj/work/ixj_freebsd/ixjuser.h ${WRKDIR}/openh323/include/sys -.endif -.endif -.endif - -do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/samples/simple/obj_${OPSYS}_${THE_MACHTYPE}_r/simph323 ${PREFIX}/bin - -.include <bsd.port.post.mk> diff --git a/net/opal3/distinfo b/net/opal3/distinfo deleted file mode 100644 index f5923a0e2404..000000000000 --- a/net/opal3/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (openh323_1.12.0.tar.gz) = f7932f0a17d6afafc7332036a4b5d392 diff --git a/net/opal3/files/patch-configurein b/net/opal3/files/patch-configurein deleted file mode 100644 index 3d6ff53673a9..000000000000 --- a/net/opal3/files/patch-configurein +++ /dev/null @@ -1,31 +0,0 @@ -*** configure.in.orig Thu May 22 13:25:00 2003 ---- configure.in Sat Aug 23 07:52:44 2003 -*************** fi -*** 73,85 **** - - dnl ######################################################################## - dnl get pwlib directory -! if test "${PWLIBDIR:-unset}" == "unset" ; then - PWLIBDIR=`ptlib-config --prefix` - fi -! if test "x$PWLIBDIR" == "x/usr" -o "x$PWLIBDIR" == "x/usr/"; then - PWLIBDIR="/usr/share/pwlib/" - fi -! if test "xPWLIBDIR" == "x/usr/local" -o "x$PWLIBDIR" == "x/usr/"; then - PWLIBDIR="/usr/local/share/pwlib/" - fi - echo "PWLib prefix set to.... $PWLIBDIR" ---- 73,85 ---- - - dnl ######################################################################## - dnl get pwlib directory -! if test "${PWLIBDIR:-unset}" = "unset" ; then - PWLIBDIR=`ptlib-config --prefix` - fi -! if test "x$PWLIBDIR" = "x/usr" -o "x$PWLIBDIR" = "x/usr/"; then - PWLIBDIR="/usr/share/pwlib/" - fi -! if test "xPWLIBDIR" = "x/usr/local" -o "x$PWLIBDIR" = "x/usr/"; then - PWLIBDIR="/usr/local/share/pwlib/" - fi - echo "PWLib prefix set to.... $PWLIBDIR" diff --git a/net/opal3/files/patch-ixjlid b/net/opal3/files/patch-ixjlid deleted file mode 100644 index faec5f30ea6b..000000000000 --- a/net/opal3/files/patch-ixjlid +++ /dev/null @@ -1,21 +0,0 @@ -*** include/ixjlid.h.orig Tue Sep 2 17:32:20 2003 ---- include/ixjlid.h Tue Sep 2 17:32:37 2003 -*************** -*** 253,260 **** - #include <linux/ixjuser.h> - #endif - #ifdef P_FREEBSD -! #include <sys/telephony.h> -! #include <sys/ixjuser.h> - #endif - #endif - ---- 253,260 ---- - #include <linux/ixjuser.h> - #endif - #ifdef P_FREEBSD -! #include "sys/telephony.h" -! #include "sys/ixjuser.h" - #endif - #endif - diff --git a/net/opal3/files/patch-openh323uin b/net/opal3/files/patch-openh323uin deleted file mode 100644 index 4613a12f810e..000000000000 --- a/net/opal3/files/patch-openh323uin +++ /dev/null @@ -1,53 +0,0 @@ -*** openh323u.mak.in.orig Wed May 14 20:52:44 2003 ---- openh323u.mak.in Sun Aug 31 21:26:51 2003 -*************** LIBDIRS += $(OPENH323DIR) -*** 142,152 **** - - - OH323_SRCDIR = $(OPENH323DIR)/src -! ifdef PREFIX -! OH323_INCDIR = $(PREFIX)/include/openh323 -! else - OH323_INCDIR = $(OPENH323DIR)/include -! endif - OH323_LIBDIR = $(OPENH323DIR)/lib - - ---- 142,152 ---- - - - OH323_SRCDIR = $(OPENH323DIR)/src -! #ifdef PREFIX -! #OH323_INCDIR = $(PREFIX)/include/openh323 -! #else - OH323_INCDIR = $(OPENH323DIR)/include -! #endif - OH323_LIBDIR = $(OPENH323DIR)/lib - - -*************** ifdef OH323_SUPPRESS_H235 -*** 184,189 **** ---- 184,190 ---- - STDCCFLAGS += -DOH323_SUPPRESS_H235 - endif - -+ # Check for the ixj/telephony header files on the system. - ifneq (,$(wildcard $(SYSINCDIR)/linux/telephony.h)) - HAS_IXJ = 1 - STDCCFLAGS += -DHAS_IXJ -*************** endif -*** 197,202 **** ---- 198,210 ---- - ifneq (,$(wildcard /usr/local/include/sys/telephony.h)) - HAS_IXJ = 1 - STDCCFLAGS += -DHAS_IXJ -I/usr/local/include -+ endif -+ -+ # In the FreeBSD port, we make a local copy of the ixj header files from -+ # the ixj driver in openh323/include/sys -+ ifneq (,$(wildcard $(OPENH323DIR)/include/sys/telephony.h)) -+ HAS_IXJ = 1 -+ STDCCFLAGS += -DHAS_IXJ - endif - - #Check if we have an OSS soundcard.h diff --git a/net/opal3/pkg-descr b/net/opal3/pkg-descr deleted file mode 100644 index 5ea7add9f222..000000000000 --- a/net/opal3/pkg-descr +++ /dev/null @@ -1,13 +0,0 @@ -OpenH323 is a multi-platform H323 Video Conferencing library. - -This is used to make H323 Video Conferencing applications -like GnomeMeeting and ohphone. (both in the FreeBSD ports tree) - -The library includes a sample program called simph323. - -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. - -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 22a23a779a07..000000000000 --- a/net/openh323-112/Makefile +++ /dev/null @@ -1,68 +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.12.0 -PORTREVISION= 1 -CATEGORIES= net -MASTER_SITES= http://www.openh323.org/bin/ \ - http://www.de.openh323.org/bin/ \ - http://www.gnomemeeting.org/downloads/0.98.0/sources/ -DISTNAME= ${PORTNAME}_${PORTVERSION} - -MAINTAINER= roger@freebsd.org -COMMENT= A H323 Video Conferencing library - -BUILD_DEPENDS= ${NONEXISTENT}:${PORTSDIR}/devel/pwlib:build - -LIB_DEPENDS= expat.4:${PORTSDIR}/textproc/expat2 \ - ldap.2:${PORTSDIR}/net/openldap20-client - -.include <bsd.port.pre.mk> -.if ${OSVERSION} < 500000 -# Check for telephony.h in the two places the source is hard coded to check -# /usr/include/sys and /usr/local/include/sys -# If it is not present, extract it from the comms/ixj port -.if !exists(/usr/include/sys/telephony.h) -.if !exists(/usr/local/include/sys/telephony.h) -PATCH_DEPENDS= ${NONEXISTENT}:${PORTSDIR}/comms/ixj:patch -.endif -.endif -.endif - -WRKSRC= ${WRKDIR}/${PORTNAME} - -USE_BISON= yes - -USE_GMAKE= yes -USE_AUTOCONF= yes -WANT_AUTOCONF_VER= 253 -GNU_CONFIGURE= yes -CONFIGURE_ENV= PWLIBDIR=${WRKDIR}/../../../devel/pwlib/work/pwlib \ - OPENH323DIR=${WRKDIR}/openh323 -ALL_TARGET= optnoshared -MAKE_ENV= PWLIBDIR=${WRKDIR}/../../../devel/pwlib/work/pwlib \ - OPENH323DIR=${WRKDIR}/openh323 -THE_MACHTYPE= ${ARCH:S/i386/x86/} -MAKE_ARGS= OSTYPE=${OPSYS} MACHTYPE=${THE_MACHTYPE} OSRELEASE=${OSVERSION} CPLUS=${CXX} - -post-patch: -.if ${OSVERSION} < 500000 -.if !exists(/usr/include/sys/telephony.h) -.if !exists(/usr/local/include/sys/telephony.h) - # Copy ixj driver include files into OpenH323 include directory - ${MKDIR} ${WRKDIR}/openh323/include/sys - ${CP} ${WRKDIRPREFIX}${.CURDIR}/../../comms/ixj/work/ixj_freebsd/telephony.h ${WRKDIR}/openh323/include/sys - ${CP} ${WRKDIRPREFIX}${.CURDIR}/../../comms/ixj/work/ixj_freebsd/ixjuser.h ${WRKDIR}/openh323/include/sys -.endif -.endif -.endif - -do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/samples/simple/obj_${OPSYS}_${THE_MACHTYPE}_r/simph323 ${PREFIX}/bin - -.include <bsd.port.post.mk> diff --git a/net/openh323-112/distinfo b/net/openh323-112/distinfo deleted file mode 100644 index f5923a0e2404..000000000000 --- a/net/openh323-112/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (openh323_1.12.0.tar.gz) = f7932f0a17d6afafc7332036a4b5d392 diff --git a/net/openh323-112/files/patch-configurein b/net/openh323-112/files/patch-configurein deleted file mode 100644 index 3d6ff53673a9..000000000000 --- a/net/openh323-112/files/patch-configurein +++ /dev/null @@ -1,31 +0,0 @@ -*** configure.in.orig Thu May 22 13:25:00 2003 ---- configure.in Sat Aug 23 07:52:44 2003 -*************** fi -*** 73,85 **** - - dnl ######################################################################## - dnl get pwlib directory -! if test "${PWLIBDIR:-unset}" == "unset" ; then - PWLIBDIR=`ptlib-config --prefix` - fi -! if test "x$PWLIBDIR" == "x/usr" -o "x$PWLIBDIR" == "x/usr/"; then - PWLIBDIR="/usr/share/pwlib/" - fi -! if test "xPWLIBDIR" == "x/usr/local" -o "x$PWLIBDIR" == "x/usr/"; then - PWLIBDIR="/usr/local/share/pwlib/" - fi - echo "PWLib prefix set to.... $PWLIBDIR" ---- 73,85 ---- - - dnl ######################################################################## - dnl get pwlib directory -! if test "${PWLIBDIR:-unset}" = "unset" ; then - PWLIBDIR=`ptlib-config --prefix` - fi -! if test "x$PWLIBDIR" = "x/usr" -o "x$PWLIBDIR" = "x/usr/"; then - PWLIBDIR="/usr/share/pwlib/" - fi -! if test "xPWLIBDIR" = "x/usr/local" -o "x$PWLIBDIR" = "x/usr/"; then - PWLIBDIR="/usr/local/share/pwlib/" - fi - echo "PWLib prefix set to.... $PWLIBDIR" diff --git a/net/openh323-112/files/patch-ixjlid b/net/openh323-112/files/patch-ixjlid deleted file mode 100644 index faec5f30ea6b..000000000000 --- a/net/openh323-112/files/patch-ixjlid +++ /dev/null @@ -1,21 +0,0 @@ -*** include/ixjlid.h.orig Tue Sep 2 17:32:20 2003 ---- include/ixjlid.h Tue Sep 2 17:32:37 2003 -*************** -*** 253,260 **** - #include <linux/ixjuser.h> - #endif - #ifdef P_FREEBSD -! #include <sys/telephony.h> -! #include <sys/ixjuser.h> - #endif - #endif - ---- 253,260 ---- - #include <linux/ixjuser.h> - #endif - #ifdef P_FREEBSD -! #include "sys/telephony.h" -! #include "sys/ixjuser.h" - #endif - #endif - diff --git a/net/openh323-112/files/patch-openh323uin b/net/openh323-112/files/patch-openh323uin deleted file mode 100644 index 4613a12f810e..000000000000 --- a/net/openh323-112/files/patch-openh323uin +++ /dev/null @@ -1,53 +0,0 @@ -*** openh323u.mak.in.orig Wed May 14 20:52:44 2003 ---- openh323u.mak.in Sun Aug 31 21:26:51 2003 -*************** LIBDIRS += $(OPENH323DIR) -*** 142,152 **** - - - OH323_SRCDIR = $(OPENH323DIR)/src -! ifdef PREFIX -! OH323_INCDIR = $(PREFIX)/include/openh323 -! else - OH323_INCDIR = $(OPENH323DIR)/include -! endif - OH323_LIBDIR = $(OPENH323DIR)/lib - - ---- 142,152 ---- - - - OH323_SRCDIR = $(OPENH323DIR)/src -! #ifdef PREFIX -! #OH323_INCDIR = $(PREFIX)/include/openh323 -! #else - OH323_INCDIR = $(OPENH323DIR)/include -! #endif - OH323_LIBDIR = $(OPENH323DIR)/lib - - -*************** ifdef OH323_SUPPRESS_H235 -*** 184,189 **** ---- 184,190 ---- - STDCCFLAGS += -DOH323_SUPPRESS_H235 - endif - -+ # Check for the ixj/telephony header files on the system. - ifneq (,$(wildcard $(SYSINCDIR)/linux/telephony.h)) - HAS_IXJ = 1 - STDCCFLAGS += -DHAS_IXJ -*************** endif -*** 197,202 **** ---- 198,210 ---- - ifneq (,$(wildcard /usr/local/include/sys/telephony.h)) - HAS_IXJ = 1 - STDCCFLAGS += -DHAS_IXJ -I/usr/local/include -+ endif -+ -+ # In the FreeBSD port, we make a local copy of the ixj header files from -+ # the ixj driver in openh323/include/sys -+ ifneq (,$(wildcard $(OPENH323DIR)/include/sys/telephony.h)) -+ HAS_IXJ = 1 -+ STDCCFLAGS += -DHAS_IXJ - endif - - #Check if we have an OSS soundcard.h diff --git a/net/openh323-112/pkg-descr b/net/openh323-112/pkg-descr deleted file mode 100644 index 5ea7add9f222..000000000000 --- a/net/openh323-112/pkg-descr +++ /dev/null @@ -1,13 +0,0 @@ -OpenH323 is a multi-platform H323 Video Conferencing library. - -This is used to make H323 Video Conferencing applications -like GnomeMeeting and ohphone. (both in the FreeBSD ports tree) - -The library includes a sample program called simph323. - -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. - -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/openldap23-client/Makefile b/net/openldap23-client/Makefile deleted file mode 100644 index 172fa7d40eec..000000000000 --- a/net/openldap23-client/Makefile +++ /dev/null @@ -1,16 +0,0 @@ -# New ports collection makefile for: openldap22-client -# Date created: 10 Jul 2003 -# Whom: Oliver Eikemeier <eikemeier@fillmore-labs.com> -# -# $FreeBSD$ -# - -PORTNAME= openldap - -COMMENT= Open source LDAP client implementation - -CLIENT_ONLY= yes - -MASTERDIR= ${.CURDIR}/../openldap22-server - -.include "${MASTERDIR}/Makefile" diff --git a/net/openldap23-server/Makefile b/net/openldap23-server/Makefile deleted file mode 100644 index e139a6dd4d00..000000000000 --- a/net/openldap23-server/Makefile +++ /dev/null @@ -1,293 +0,0 @@ -# New ports collection makefile for: openldap22-server -# Date created: 10 Jul 2003 -# Whom: Oliver Eikemeier -# -# $FreeBSD$ -# - -PORTNAME= openldap -PORTVERSION= ${OPENLDAP_VERSION}.a -PORTREVISION= ${OPENLDAP_PORTVERSION} -CATEGORIES= net databases -MASTER_SITES= ftp://ftp.OpenLDAP.org/pub/OpenLDAP/%SUBDIR%/ \ - http://public.planetmirror.com/pub/openldap/%SUBDIR%/ \ - ftp://gd.tuwien.ac.at/infosys/network/OpenLDAP/%SUBDIR%/ \ - ftp://ftp.matrix.com.br/pub/openldap/%SUBDIR%/ \ - ftp://ftp.ucr.ac.cr/pub/Unix/openldap/%SUBDIR%/ \ - ftp://ftp.ntua.gr/mirror/OpenLDAP/%SUBDIR%/ \ - ftp://ftp.dti.ad.jp/pub/net/OpenLDAP/%SUBDIR%/ \ - ftp://ftp.u-aizu.ac.jp/pub/net/openldap/%SUBDIR%/ \ - ftp://ftp.holywar.net/pub/OpenLDAP/%SUBDIR%/ \ - ftp://ftp.nl.uu.net/pub/unix/db/openldap/%SUBDIR%/ \ - ftp://ftp.linux.pt/pub/mirrors/OpenLDAP/%SUBDIR%/ \ - ftp://ftp.rediris.es/mirror/OpenLDAP/%SUBDIR%/ \ - ftp://sunsite.cnlab-switch.ch/mirror/OpenLDAP/%SUBDIR%/ \ - http://openldap.cdpa.nsysu.edu.tw/OpenLDAP/%SUBDIR%/ \ - ftp://ftp.plig.org/pub/OpenLDAP/%SUBDIR%/ -MASTER_SITE_SUBDIR= openldap-test -PKGNAMESUFFIX= ${OPENLDAP_PKGNAMESUFFIX} -DISTNAME= openldap-${OPENLDAP_VERSION}alpha -EXTRACT_SUFX= .tgz - -MAINTAINER= eikemeier@fillmore-labs.com -COMMENT?= Open source LDAP server implementation - -OPENLDAP_VERSION= 2.2.0 - -LATEST_LINK= ${PKGNAMEPREFIX}openldap22${PKGNAMESUFFIX} -CONFLICTS= openldap12-* \ - ${PKGNAMEPREFIX}${PORTNAME}-client-2.[013-9].* - -WANT_OPENLDAP_VER?= 22 -.if ${WANT_OPENLDAP_VER} != 22 -BROKEN= "incompatible OpenLDAP version: ${WANT_OPENLDAP_VER}" -.endif - -.if defined(CLIENT_ONLY) -OPENLDAP_PORTVERSION= 0 -OPENLDAP_PKGNAMESUFFIX?=-client -OPENLDAP_PKGFILESUFX?= .client - -.if defined(USE_OPENLDAP) -.error You have `USE_OPENLDAP' defined either in your environment or in make(1) arguments. -.endif -.else -OPENLDAP_PORTVERSION= 2 -OPENLDAP_PKGNAMESUFFIX?=-server -OPENLDAP_PKGFILESUFX?= - -USE_OPENLDAP= yes -CONFLICTS+= ${PKGNAMEPREFIX}${PORTNAME}-server-2.[013-9].* -.endif - -#USE_OPENSSL= yes -USE_REINPLACE= yes -USE_LIBTOOL_VER= 14 - -DESCR= ${PKGDIR}/pkg-descr${OPENLDAP_PKGFILESUFX} -PLIST= ${WRKDIR}/pkg-plist -PKGINSTALL= ${WRKDIR}/pkg-install -PKGMESSAGE= ${WRKDIR}/pkg-message - -LDAP_RUN_DIR?= ${DESTDIR}/var/run/openldap -LOCALSTATEDIR?= ${DESTDIR}/var/db -DATABASEDIR?= ${LOCALSTATEDIR}/openldap-data -SLURPDIR?= ${LOCALSTATEDIR}/openldap-slurp - -PLIST_SUB+= LDAP_RUN_DIR=${LDAP_RUN_DIR} \ - DATABASEDIR=${DATABASEDIR} \ - SLURPDIR=${SLURPDIR} \ - -SED_SCRIPT= -e 's,%%PREFIX%%,${PREFIX},g' \ - -e 's,%%LDAP_RUN_DIR%%,${LDAP_RUN_DIR},g' \ - -e 's,%%DATABASEDIR%%,${DATABASEDIR},g' - -CONFIGURE_ARGS= --with-threads \ - --with-tls=openssl \ - --enable-dynamic - -.if defined(WITH_SASL) -LIB_DEPENDS+= sasl2.2:${PORTSDIR}/security/cyrus-sasl2 -CONFIGURE_ARGS+= --with-cyrus-sasl -.else -CONFIGURE_ARGS+= --without-cyrus-sasl -.endif - -.if defined(CLIENT_ONLY) -# client specific configuration - -CONFIGURE_ARGS+= --disable-slapd - -INSTALLS_SHLIB= yes - -.else -# server specific configuration - -EXTRA_PATCHES+= ${FILESDIR}/extrapatch-Makefile.in - -CONFIGURE_ARGS+= --localstatedir=${LOCALSTATEDIR} \ - --enable-ldbm \ - --with-ldbm-api=berkeley \ - --enable-lmpasswd \ - --enable-ldap \ - --enable-meta \ - --enable-rewrite \ - --enable-null \ - --enable-monitor - -WITH_BDB_VER?= 41 - -.if ${WITH_BDB_VER} == 41 -LIB_DEPENDS+= db41.1:${PORTSDIR}/databases/db41 -CONFIGURE_ARGS+= --enable-bdb -.elif ${WITH_BDB_VER} == 4 -LIB_DEPENDS+= db4.0:${PORTSDIR}/databases/db4 -CONFIGURE_ARGS+= --disable-bdb -.elif ${WITH_BDB_VER} == 3 -LIB_DEPENDS+= db3.3:${PORTSDIR}/databases/db3 -CONFIGURE_ARGS+= --disable-bdb -.else -.error WITH_BDB_VER must be 3, 4 or 41 -.endif -LIBS+= -ldb${WITH_BDB_VER} -CPPFLAGS+= -I${LOCALBASE}/include/db${WITH_BDB_VER} - -.if defined(WITH_SHELL) -CONFIGURE_ARGS+= --enable-shell -.endif - -.if defined(WITH_PERL) -USE_PERL5= yes -CONFIGURE_ARGS+= --enable-perl -.endif - -.if defined(WITH_SASL) -CONFIGURE_ARGS+= --enable-spasswd -.endif - -.if defined(WITH_ODBC) -WITH_ODBC_TYPE?= iODBC -.endif -.if defined(WITH_ODBC_TYPE) -.if ${WITH_ODBC_TYPE:L} == iodbc -LIB_DEPENDS+= iodbc.3:${PORTSDIR}/databases/libiodbc -CONFIGURE_ARGS+= --enable-sql -.elif ${WITH_ODBC_TYPE:L} == unixodbc -LIB_DEPENDS+= odbc.1:${PORTSDIR}/databases/unixODBC -CONFIGURE_ARGS+= --enable-sql -.else -.error WITH_ODBC_TYPE must be iODBC or unixODBC -.endif -.endif - -.if defined(WITH_SLAPI) -LIB_DEPENDS+= ltdl.4:${PORTSDIR}/devel/libltdl -CONFIGURE_ARGS+= --enable-slapi -PLIST_SUB+= SLAPI="" -INSTALLS_SHLIB= yes -.else -PLIST_SUB+= SLAPI="@comment " -.endif - -# Include tcp-wrapper support -.if !defined(WITHOUT_TCP_WRAPPERS) && exists(/usr/include/tcpd.h) -CONFIGURE_ARGS+= --enable-wrappers -.endif - -# end of client/server specific configuration -.endif - -# math.h uses _REENTRANT and stdio.h uses _THREAD_SAFE, so define both. -CPPFLAGS+= -D_REENTRANT ${PTHREAD_CFLAGS} \ - -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib - -CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} -CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" \ - LDFLAGS="${LDFLAGS}" \ - LIBS="${LIBS}" - -.include <bsd.port.pre.mk> - -.if defined(CLIENT_ONLY) -.include "${FILESDIR}/manpages" -.else -.if ${OSVERSION} >= 500038 -RC_SUBR?= ${DESTDIR}/etc/rc.subr -RC_DIR= ${DESTDIR}/etc/rc.d -RC_SUFX= -.else -USE_RC_SUBR= yes -RC_DIR= ${PREFIX}/etc/rc.d -RC_SUFX= .sh -.endif - -SED_SCRIPT+= -e 's,%%RC_SUBR%%,${RC_SUBR},g' \ - -e 's,%%RC_DIR%%,${RC_DIR},g' \ - -e 's,%%RC_SUFX%%,${RC_SUFX},g' -PLIST_SUB+= RC_DIR=${RC_DIR} \ - RC_SUFX=${RC_SUFX} -.endif - -pre-everything:: - @${ECHO} "=============================================================" - @${ECHO} - @${ECHO} "You can build ${PKGNAME} with the following options:" - @${ECHO} -.if defined(CLIENT_ONLY) - @${ECHO} "WITH_SASL with (Cyrus) SASL2 support" -.else - @${ECHO} "WITH_BDB_VER select BerkeleyDB version (default 4.1)" - @${ECHO} "WITH_SASL with (Cyrus) SASL2 password verification" - @${ECHO} "WITH_PERL with Perl backend" - @${ECHO} "WITH_SHELL with Shell backend" - @${ECHO} "WITH_ODBC with SQL backend" - @${ECHO} "WITH_ODBC_TYPE select ODBC interface (iODBC or unixODBC)" - @${ECHO} "WITH_SLAPI with Netscape SLAPI plugin API - @${ECHO} "WITHOUT_TCP_WRAPPERS without tcp wrapper support" -.endif - @${ECHO} - @${ECHO} "=============================================================" - @${ECHO} - -post-patch: - @${REINPLACE_CMD} -e 's,%LOCALSTATEDIR%/slapd\.,${LDAP_RUN_DIR}/slapd.,g' \ - ${WRKSRC}/servers/slapd/slapd.conf - -pre-configure: - @${REINPLACE_CMD} -e '/^LIBTOOL=/s,\$$(top_builddir)/libtool,${LIBTOOL},g' \ - ${WRKSRC}/configure - -post-build: -.for script in slapd slurpd - @${SED} ${SED_SCRIPT} ${FILESDIR}/${script}.sh >${WRKDIR}/${script}.sh -.endfor -.for text in pkg-install pkg-message - @if [ -f ${MASTERDIR}/${text}${OPENLDAP_PKGFILESUFX} ]; then \ - ${SED} ${SED_SCRIPT} ${MASTERDIR}/${text}${OPENLDAP_PKGFILESUFX} \ - >${WRKDIR}/${text}; \ - fi -.endfor - -.if !defined(CLIENT_ONLY) -test: build - @cd ${BUILD_WRKSRC}; ${SETENV} ${MAKE_ENV} \ - ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} test -.endif - -pre-install: - @${CP} ${MASTERDIR}/pkg-plist${OPENLDAP_PKGFILESUFX} ${PLIST} -.if defined(CLIENT_ONLY) -.if !defined(NOPORTDOCS) - @for dir in rfc drafts; do \ - ${FIND} ${WRKSRC}/doc/$${dir} -maxdepth 1 -type f \ - | ${SED} -e "s,^${WRKSRC}/doc/,%%DOCSDIR%%/," \ - >>${PLIST}; \ - ${ECHO_CMD} "@dirrm %%DOCSDIR%%/$${dir}" >>${PLIST}; \ - done - @${ECHO_CMD} "@dirrm %%DOCSDIR%%" >>${PLIST} -.endif -.endif - @if [ -f ${PKGINSTALL} ]; then \ - ${SETENV} "PKG_PREFIX=${PREFIX}" ${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL; \ - fi - -post-install: -.if defined(CLIENT_ONLY) -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} - @for dir in rfc drafts; do \ - ${MKDIR} ${DOCSDIR}/$${dir}; \ - ${FIND} ${WRKSRC}/doc/$${dir} -maxdepth 1 -type f \ - -exec ${INSTALL_DATA} {} ${DOCSDIR}/$${dir} \; ; \ - done -.endif -.else -.for script in slapd slurpd - @${INSTALL_SCRIPT} ${WRKDIR}/${script}.sh ${RC_DIR}/${script}${RC_SUFX} -.endfor - @${MKDIR} ${LDAP_RUN_DIR} -.endif - @${CAT} ${PKGMESSAGE} - -.include <bsd.port.post.mk> diff --git a/net/openldap23-server/distinfo b/net/openldap23-server/distinfo deleted file mode 100644 index eef25e637b2e..000000000000 --- a/net/openldap23-server/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (openldap-2.2.0alpha.tgz) = 72fe342067b717a37b9697898dacfa0a diff --git a/net/openldap23-server/files/extrapatch-Makefile.in b/net/openldap23-server/files/extrapatch-Makefile.in deleted file mode 100644 index bb83ea2b572a..000000000000 --- a/net/openldap23-server/files/extrapatch-Makefile.in +++ /dev/null @@ -1,17 +0,0 @@ ---- Makefile.in.orig Mon Apr 7 22:23:24 2003 -+++ Makefile.in Thu Jul 10 17:43:35 2003 -@@ -10,9 +10,11 @@ - ## in file LICENSE in the top-level directory of the distribution. - ## - --SUBDIRS= include libraries clients servers tests doc --CLEANDIRS= --INSTALLDIRS= -+SUBDIRS= -+ALLDIRS= include libraries clients servers tests doc -+CLEANDIRS= include libraries clients servers tests doc -+DEPENDDIRS= include libraries clients servers tests doc -+INSTALLDIRS= servers - - makefiles: FORCE - ./config.status diff --git a/net/openldap23-server/files/manpages b/net/openldap23-server/files/manpages deleted file mode 100644 index a5a10214c69c..000000000000 --- a/net/openldap23-server/files/manpages +++ /dev/null @@ -1,192 +0,0 @@ -# -# $FreeBSD$ -# - -MAN1+= ldapcompare.1 \ - ldapdelete.1 \ - ldapmodify.1 \ - ldapmodrdn.1 \ - ldappasswd.1 \ - ldapsearch.1 \ - ldapwhoami.1 -MLINKS+= \ - ldapmodify.1 ldapadd.1 - -MAN3+= lber-decode.3 \ - lber-encode.3 \ - lber-memory.3 \ - lber-types.3 \ - ldap.3 \ - ldap_abandon.3 \ - ldap_add.3 \ - ldap_bind.3 \ - ldap_compare.3 \ - ldap_delete.3 \ - ldap_error.3 \ - ldap_first_attribute.3 \ - ldap_first_entry.3 \ - ldap_first_message.3 \ - ldap_first_reference.3 \ - ldap_get_dn.3 \ - ldap_get_values.3 \ - ldap_modify.3 \ - ldap_modrdn.3 \ - ldap_open.3 \ - ldap_parse_reference.3 \ - ldap_parse_result.3 \ - ldap_result.3 \ - ldap_schema.3 \ - ldap_search.3 \ - ldap_sort.3 \ - ldap_url.3 -MLINKS+= \ - lber-decode.3 ber_first_element.3 \ - lber-decode.3 ber_get_bitstring.3 \ - lber-decode.3 ber_get_boolean.3 \ - lber-decode.3 ber_get_enum.3 \ - lber-decode.3 ber_get_int.3 \ - lber-decode.3 ber_get_next.3 \ - lber-decode.3 ber_get_null.3 \ - lber-decode.3 ber_get_stringa.3 \ - lber-decode.3 ber_get_stringb.3 \ - lber-decode.3 ber_next_element.3 \ - lber-decode.3 ber_peek_tag.3 \ - lber-decode.3 ber_scanf.3 \ - lber-decode.3 ber_skip_tag.3 \ - lber-encode.3 ber_alloc_t.3 \ - lber-encode.3 ber_flush.3 \ - lber-encode.3 ber_printf.3 \ - lber-encode.3 ber_put_enum.3 \ - lber-encode.3 ber_put_int.3 \ - lber-encode.3 ber_put_null.3 \ - lber-encode.3 ber_put_ostring.3 \ - lber-encode.3 ber_put_seq.3 \ - lber-encode.3 ber_put_set.3 \ - lber-encode.3 ber_put_string.3 \ - lber-encode.3 ber_start_set.3 \ - lber-types.3 ber_bvarray_add.3 \ - lber-types.3 ber_bvarray_free.3 \ - lber-types.3 ber_bvdup.3 \ - lber-types.3 ber_bvecadd.3 \ - lber-types.3 ber_bvecfree.3 \ - lber-types.3 ber_bvfree.3 \ - lber-types.3 ber_bvstr.3 \ - lber-types.3 ber_bvstrdup.3 \ - lber-types.3 ber_dupbv.3 \ - lber-types.3 ber_free.3 \ - lber-types.3 ber_str2bv.3 \ - ldap_abandon.3 ldap_abandon_ext.3 \ - ldap_add.3 ldap_add_ext.3 \ - ldap_add.3 ldap_add_ext_s.3 \ - ldap_add.3 ldap_add_s.3 \ - ldap_bind.3 ldap_bind_s.3 \ - ldap_bind.3 ldap_kerberos_bind1.3 \ - ldap_bind.3 ldap_kerberos_bind1_s.3 \ - ldap_bind.3 ldap_kerberos_bind2.3 \ - ldap_bind.3 ldap_kerberos_bind2_s.3 \ - ldap_bind.3 ldap_kerberos_bind_s.3 \ - ldap_bind.3 ldap_sasl_bind.3 \ - ldap_bind.3 ldap_sasl_bind_s.3 \ - ldap_bind.3 ldap_simple_bind.3 \ - ldap_bind.3 ldap_simple_bind_s.3 \ - ldap_bind.3 ldap_unbind.3 \ - ldap_bind.3 ldap_unbind_ext.3 \ - ldap_bind.3 ldap_unbind_ext_s.3 \ - ldap_bind.3 ldap_unbind_s.3 \ - ldap_compare.3 ldap_compare_ext.3 \ - ldap_compare.3 ldap_compare_ext_s.3 \ - ldap_compare.3 ldap_compare_s.3 \ - ldap_delete.3 ldap_delete_ext.3 \ - ldap_delete.3 ldap_delete_ext_s.3 \ - ldap_delete.3 ldap_delete_s.3 \ - ldap_error.3 ld_errno.3 \ - ldap_error.3 ldap_err2string.3 \ - ldap_error.3 ldap_errlist.3 \ - ldap_error.3 ldap_perror.3 \ - ldap_error.3 ldap_result2error.3 \ - ldap_first_attribute.3 ldap_next_attribute.3 \ - ldap_first_entry.3 ldap_count_entries.3 \ - ldap_first_entry.3 ldap_next_entry.3 \ - ldap_first_message.3 ldap_count_messages.3 \ - ldap_first_message.3 ldap_next_message.3 \ - ldap_first_reference.3 ldap_count_references.3 \ - ldap_first_reference.3 ldap_next_reference.3 \ - ldap_get_dn.3 ldap_dcedn2dn.3 \ - ldap_get_dn.3 ldap_dn2ad_canonical.3 \ - ldap_get_dn.3 ldap_dn2dcedn.3 \ - ldap_get_dn.3 ldap_dn2str.3 \ - ldap_get_dn.3 ldap_dn2ufn.3 \ - ldap_get_dn.3 ldap_explode_dn.3 \ - ldap_get_dn.3 ldap_explode_rdn.3 \ - ldap_get_dn.3 ldap_str2dn.3 \ - ldap_get_values.3 ldap_count_values.3 \ - ldap_get_values.3 ldap_count_values_len.3 \ - ldap_get_values.3 ldap_get_values_len.3 \ - ldap_get_values.3 ldap_value_free.3 \ - ldap_get_values.3 ldap_value_free_len.3 \ - ldap_modify.3 ldap_modify_ext.3 \ - ldap_modify.3 ldap_modify_ext_s.3 \ - ldap_modify.3 ldap_modify_s.3 \ - ldap_modify.3 ldap_mods_free.3 \ - ldap_modrdn.3 ldap_modrdn2.3 \ - ldap_modrdn.3 ldap_modrdn2_s.3 \ - ldap_modrdn.3 ldap_modrdn_s.3 \ - ldap_open.3 ldap_init.3 \ - ldap_parse_result.3 ldap_parse_extended_result.3 \ - ldap_parse_result.3 ldap_parse_sasl_bind_result.3 \ - ldap_result.3 ldap_msgfree.3 \ - ldap_result.3 ldap_msgid.3 \ - ldap_result.3 ldap_msgtype.3 \ - ldap_schema.3 ldap_attributetype2name.3 \ - ldap_schema.3 ldap_attributetype2str.3 \ - ldap_schema.3 ldap_attributetype_free.3 \ - ldap_schema.3 ldap_matchingrule2name.3 \ - ldap_schema.3 ldap_matchingrule2str.3 \ - ldap_schema.3 ldap_matchingrule_free.3 \ - ldap_schema.3 ldap_objectclass2name.3 \ - ldap_schema.3 ldap_objectclass2str.3 \ - ldap_schema.3 ldap_objectclass_free.3 \ - ldap_schema.3 ldap_scherr2str.3 \ - ldap_schema.3 ldap_str2attributetype.3 \ - ldap_schema.3 ldap_str2matchingrule.3 \ - ldap_schema.3 ldap_str2objectclass.3 \ - ldap_schema.3 ldap_str2syntax.3 \ - ldap_schema.3 ldap_syntax2name.3 \ - ldap_schema.3 ldap_syntax2str.3 \ - ldap_schema.3 ldap_syntax_free.3 \ - ldap_search.3 ldap_search_ext.3 \ - ldap_search.3 ldap_search_ext_s.3 \ - ldap_search.3 ldap_search_s.3 \ - ldap_search.3 ldap_search_st.3 \ - ldap_sort.3 ldap_sort_entries.3 \ - ldap_sort.3 ldap_sort_strcasecmp.3 \ - ldap_sort.3 ldap_sort_values.3 \ - ldap_url.3 ldap_free_urldesc.3 \ - ldap_url.3 ldap_is_ldap_url.3 \ - ldap_url.3 ldap_url_parse.3 - -MAN5+= ldap.conf.5 \ - ldif.5 \ - slapd-bdb.5 \ - slapd-dnssrv.5 \ - slapd-ldap.5 \ - slapd-ldbm.5 \ - slapd-meta.5 \ - slapd-monitor.5 \ - slapd-null.5 \ - slapd-passwd.5 \ - slapd-perl.5 \ - slapd-shell.5 \ - slapd-sql.5 \ - slapd-tcl.5 \ - slapd.access.5 \ - slapd.conf.5 \ - slapd.plugin.5 \ - slapd.replog.5 - -MAN8+= slapadd.8 \ - slapcat.8 \ - slapd.8 \ - slapindex.8 \ - slappasswd.8 \ - slurpd.8 diff --git a/net/openldap23-server/files/patch-build::top.mk b/net/openldap23-server/files/patch-build::top.mk deleted file mode 100644 index 94551ea27b27..000000000000 --- a/net/openldap23-server/files/patch-build::top.mk +++ /dev/null @@ -1,11 +0,0 @@ ---- build/top.mk.orig Mon Apr 7 22:23:26 2003 -+++ build/top.mk Mon Jul 7 05:35:52 2003 -@@ -192,6 +192,8 @@ - SLAPD_LIBS = @SLAPD_LIBS@ @SLAPD_PERL_LDFLAGS@ @SLAPD_SQL_LDFLAGS@ @SLAPD_SQL_LIBS@ @SLAPD_SLP_LIBS@ - SLURPD_LIBS = @SLURPD_LIBS@ - -+SLAPI_LIBS = @SLAPI_LIBS@ -+ - # Our Defaults - CC = $(AC_CC) - DEFS = $(LDAP_INCPATH) $(XINCPATH) $(XDEFS) $(AC_DEFS) $(DEFINES) diff --git a/net/openldap23-server/files/patch-libraries::liblunicode::ucstr.c b/net/openldap23-server/files/patch-libraries::liblunicode::ucstr.c deleted file mode 100644 index b8044b524697..000000000000 --- a/net/openldap23-server/files/patch-libraries::liblunicode::ucstr.c +++ /dev/null @@ -1,11 +0,0 @@ ---- libraries/liblunicode/ucstr.c.orig Fri Apr 11 03:57:10 2003 -+++ libraries/liblunicode/ucstr.c Sun Jul 6 02:50:32 2003 -@@ -10,7 +10,7 @@ - #include <ac/string.h> - #include <ac/stdlib.h> - --#include <lber.h> -+#include <lber_pvt.h> - - #include <ldap_utf8.h> - #include <ldap_pvt_uc.h> diff --git a/net/openldap23-server/files/patch-libraries::liblutil::passwd.c b/net/openldap23-server/files/patch-libraries::liblutil::passwd.c deleted file mode 100644 index 32de74e9ee11..000000000000 --- a/net/openldap23-server/files/patch-libraries::liblutil::passwd.c +++ /dev/null @@ -1,14 +0,0 @@ -# -# ITS#2562: add missing arg to hash_lanman -# ---- libraries/liblutil/passwd.c.orig Fri May 2 13:29:29 2003 -+++ libraries/liblutil/passwd.c Sun Jun 22 03:08:18 2003 -@@ -632,7 +632,7 @@ - { - struct berval *hash; - -- hash = hash_lanman( scheme, cred ); -+ hash = hash_lanman( scheme, cred, text ); - return memcmp( &hash->bv_val[scheme->bv_len], passwd->bv_val, 32); - } - #endif /* SLAPD_LMHASH */ diff --git a/net/openldap23-server/files/patch-servers::slapd::back-perl b/net/openldap23-server/files/patch-servers::slapd::back-perl deleted file mode 100644 index c6d024df3ed0..000000000000 --- a/net/openldap23-server/files/patch-servers::slapd::back-perl +++ /dev/null @@ -1,302 +0,0 @@ -diff -Nur servers/slapd/back-perl/add.c.orig servers/slapd/back-perl/add.c ---- servers/slapd/back-perl/add.c.orig Sun May 25 03:56:59 2003 -+++ servers/slapd/back-perl/add.c Thu Jun 5 11:44:06 2003 -@@ -13,17 +13,19 @@ - * in file LICENSE in the top-level directory of the distribution. - */ - --#include "portable.h" -- --#include <stdio.h> -+#include <EXTERN.h> -+#include <perl.h> -+#undef _ /* #defined used by both Perl and ac/localize.h */ - --#include "slap.h" - #ifdef HAVE_WIN32_ASPERL - #include "asperl_undefs.h" - #endif - --#include <EXTERN.h> --#include <perl.h> -+#include "portable.h" -+ -+#include <stdio.h> -+ -+#include "slap.h" - - #include "perl_back.h" - -diff -Nur servers/slapd/back-perl/bind.c.orig servers/slapd/back-perl/bind.c ---- servers/slapd/back-perl/bind.c.orig Sun May 25 03:56:59 2003 -+++ servers/slapd/back-perl/bind.c Thu Jun 5 11:44:06 2003 -@@ -13,18 +13,19 @@ - * in file LICENSE in the top-level directory of the distribution. - */ - --#include "portable.h" --/* init.c - initialize Perl backend */ -- --#include <stdio.h> -+#include <EXTERN.h> -+#include <perl.h> -+#undef _ /* #defined used by both Perl and ac/localize.h */ - --#include "slap.h" - #ifdef HAVE_WIN32_ASPERL - #include "asperl_undefs.h" - #endif - --#include <EXTERN.h> --#include <perl.h> -+#include "portable.h" -+ -+#include <stdio.h> -+ -+#include "slap.h" - - #include "perl_back.h" - -diff -Nur servers/slapd/back-perl/close.c.orig servers/slapd/back-perl/close.c ---- servers/slapd/back-perl/close.c.orig Sun May 25 03:56:59 2003 -+++ servers/slapd/back-perl/close.c Thu Jun 5 11:44:06 2003 -@@ -13,18 +13,19 @@ - * in file LICENSE in the top-level directory of the distribution. - */ - --#include "portable.h" --/* init.c - initialize shell backend */ -- --#include <stdio.h> -+#include <EXTERN.h> -+#include <perl.h> -+#undef _ /* #defined used by both Perl and ac/localize.h */ - --#include "slap.h" - #ifdef HAVE_WIN32_ASPERL - #include "asperl_undefs.h" - #endif - --#include <EXTERN.h> --#include <perl.h> -+#include "portable.h" -+ -+#include <stdio.h> -+ -+#include "slap.h" - - #include "perl_back.h" - -diff -Nur servers/slapd/back-perl/compare.c.orig servers/slapd/back-perl/compare.c ---- servers/slapd/back-perl/compare.c.orig Sun May 25 03:56:59 2003 -+++ servers/slapd/back-perl/compare.c Thu Jun 5 11:44:06 2003 -@@ -13,17 +13,19 @@ - * in file LICENSE in the top-level directory of the distribution. - */ - --#include "portable.h" -- --#include <stdio.h> -+#include <EXTERN.h> -+#include <perl.h> -+#undef _ /* #defined used by both Perl and ac/localize.h */ - --#include "slap.h" - #ifdef HAVE_WIN32_ASPERL - #include "asperl_undefs.h" - #endif - --#include <EXTERN.h> --#include <perl.h> -+#include "portable.h" -+ -+#include <stdio.h> -+ -+#include "slap.h" - - #include "lutil.h" - #include "perl_back.h" -diff -Nur servers/slapd/back-perl/config.c.orig servers/slapd/back-perl/config.c ---- servers/slapd/back-perl/config.c.orig Sun May 25 03:56:59 2003 -+++ servers/slapd/back-perl/config.c Thu Jun 5 11:44:06 2003 -@@ -13,17 +13,19 @@ - * in file LICENSE in the top-level directory of the distribution. - */ - --#include "portable.h" -- --#include <stdio.h> -+#include <EXTERN.h> -+#include <perl.h> -+#undef _ /* #defined used by both Perl and ac/localize.h */ - --#include "slap.h" - #ifdef HAVE_WIN32_ASPERL - #include "asperl_undefs.h" - #endif - --#include <EXTERN.h> --#include <perl.h> -+#include "portable.h" -+ -+#include <stdio.h> -+ -+#include "slap.h" - - #include "perl_back.h" - -diff -Nur servers/slapd/back-perl/delete.c.orig servers/slapd/back-perl/delete.c ---- servers/slapd/back-perl/delete.c.orig Sun May 25 03:56:59 2003 -+++ servers/slapd/back-perl/delete.c Thu Jun 5 11:44:06 2003 -@@ -13,17 +13,19 @@ - * in file LICENSE in the top-level directory of the distribution. - */ - --#include "portable.h" -- --#include <stdio.h> -+#include <EXTERN.h> -+#include <perl.h> -+#undef _ /* #defined used by both Perl and ac/localize.h */ - --#include "slap.h" - #ifdef HAVE_WIN32_ASPERL - #include "asperl_undefs.h" - #endif - --#include <EXTERN.h> --#include <perl.h> -+#include "portable.h" -+ -+#include <stdio.h> -+ -+#include "slap.h" - - #include "perl_back.h" - -diff -Nur servers/slapd/back-perl/init.c.orig servers/slapd/back-perl/init.c ---- servers/slapd/back-perl/init.c.orig Sun May 25 03:56:59 2003 -+++ servers/slapd/back-perl/init.c Thu Jun 12 22:25:21 2003 -@@ -13,18 +13,19 @@ - * in file LICENSE in the top-level directory of the distribution. - */ - --#include "portable.h" -- /* init.c - initialize shell backend */ -- --#include <stdio.h> -+#include <EXTERN.h> -+#include <perl.h> -+#undef _ /* #defined used by both Perl and ac/localize.h */ - --#include "slap.h" - #ifdef HAVE_WIN32_ASPERL - #include "asperl_undefs.h" - #endif - --#include <EXTERN.h> --#include <perl.h> -+#include "portable.h" -+ -+#include <stdio.h> -+ -+#include "slap.h" - - #include "perl_back.h" - -@@ -37,7 +38,7 @@ - - #ifdef SLAPD_PERL_DYNAMIC - --int back_perl_LTX_init_module(int argc, char *argv[]) -+int init_module(int argc, char *argv[]) - { - BackendInfo bi; - -diff -Nur servers/slapd/back-perl/modify.c.orig servers/slapd/back-perl/modify.c ---- servers/slapd/back-perl/modify.c.orig Sun May 25 03:56:59 2003 -+++ servers/slapd/back-perl/modify.c Thu Jun 5 11:44:06 2003 -@@ -13,17 +13,19 @@ - * in file LICENSE in the top-level directory of the distribution. - */ - --#include "portable.h" -- --#include <stdio.h> -+#include <EXTERN.h> -+#include <perl.h> -+#undef _ /* #defined used by both Perl and ac/localize.h */ - --#include "slap.h" - #ifdef HAVE_WIN32_ASPERL - #include "asperl_undefs.h" - #endif - --#include <EXTERN.h> --#include <perl.h> -+#include "portable.h" -+ -+#include <stdio.h> -+ -+#include "slap.h" - - #include "perl_back.h" - -diff -Nur servers/slapd/back-perl/modrdn.c.orig servers/slapd/back-perl/modrdn.c ---- servers/slapd/back-perl/modrdn.c.orig Sun May 25 03:56:59 2003 -+++ servers/slapd/back-perl/modrdn.c Thu Jun 5 11:44:06 2003 -@@ -26,17 +26,19 @@ - * - */ - --#include "portable.h" -- --#include <stdio.h> -+#include <EXTERN.h> -+#include <perl.h> -+#undef _ /* #defined used by both Perl and ac/localize.h */ - --#include "slap.h" - #ifdef HAVE_WIN32_ASPERL - #include "asperl_undefs.h" - #endif - --#include <EXTERN.h> --#include <perl.h> -+#include "portable.h" -+ -+#include <stdio.h> -+ -+#include "slap.h" - - #include "perl_back.h" - -diff -Nur servers/slapd/back-perl/search.c.orig servers/slapd/back-perl/search.c ---- servers/slapd/back-perl/search.c.orig Sun May 25 03:56:59 2003 -+++ servers/slapd/back-perl/search.c Thu Jun 5 11:44:06 2003 -@@ -13,17 +13,19 @@ - * in file LICENSE in the top-level directory of the distribution. - */ - --#include "portable.h" -- --#include <stdio.h> -+#include <EXTERN.h> -+#include <perl.h> -+#undef _ /* #defined used by both Perl and ac/localize.h */ - --#include "slap.h" - #ifdef HAVE_WIN32_ASPERL - #include "asperl_undefs.h" - #endif - --#include <EXTERN.h> --#include <perl.h> -+#include "portable.h" -+ -+#include <stdio.h> -+ -+#include "slap.h" - - #include "perl_back.h" - diff --git a/net/openldap23-server/files/slapd.sh b/net/openldap23-server/files/slapd.sh deleted file mode 100644 index fb77d4374fd0..000000000000 --- a/net/openldap23-server/files/slapd.sh +++ /dev/null @@ -1,103 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# - -# PROVIDE: slapd -# REQUIRE: NETWORKING SERVERS -# BEFORE: DAEMON -# KEYWORD: FreeBSD shutdown - -# -# Add the following lines to /etc/rc.conf to enable slapd: -# -#slapd_enable="YES" -#slapd_flags='-h "ldapi://%2fvar%2frun%2fopenldap%2fldapi/ ldap://0.0.0.0/"' -#slapd_sockets="/var/run/openldap/ldapi" -# -# See slapd(8) for more flags -# -# The `-u' and `-g' flags are automatically extracted from slapd_owner, -# by default slapd runs under the non-privileged user id `ldap'. If you -# want to run slapd as root, override this in /etc/rc.conf with -# -#slapd_owner="DEFAULT" -# - -. %%RC_SUBR%% - -name=slapd -rcvar=`set_rcvar` - -command=%%PREFIX%%/libexec/slapd -pidfile=%%LDAP_RUN_DIR%%/slapd.pid -required_dirs=%%LDAP_RUN_DIR%% -required_files=%%PREFIX%%/etc/openldap/slapd.conf - -start_precmd=start_precmd -start_postcmd=start_postcmd - -# extract user and group, adjust ownership of directories and database - -start_precmd() -{ - case x"$slapd_owner" in - x|x[Nn][Oo][Nn][Ee]|x[Dd][Ee][Ff][Aa][Uu][Ll][Tt]) - ;; - x*) - chown "$slapd_owner" "%%LDAP_RUN_DIR%%" - chown -RL "$slapd_owner" "%%DATABASEDIR%%" - chown "$slapd_owner" "%%PREFIX%%/etc/openldap/slapd.conf" - - slapd_ownername=`expr //"$slapd_owner" : //'\([^:]*\)'` - slapd_groupname=`expr //"$slapd_owner" : //'.*:\([^:]*\)'` - - if [ -n "$slapd_ownername" ]; then - rc_flags="$rc_flags -u $slapd_ownername" - fi - if [ -n "$slapd_groupname" ]; then - rc_flags="$rc_flags -g $slapd_groupname" - fi - ;; - esac -} - -# adjust ownership of created unix sockets - -start_postcmd() -{ - for socket in $slapd_sockets; do - for seconds in 1 2 3 4 5; do - [ -e "$socket" ] && break - sleep 1 - done - if [ -S "$socket" ]; then - case x"$slapd_owner" in - x|x[Nn][Oo][Nn][Ee]|x[Dd][Ee][Ff][Aa][Uu][Ll][Tt]) - ;; - x*) - chown "$slapd_owner" "$socket" - ;; - esac - chmod "$slapd_sockets_mode" "$socket" - fi - done -} - -# set defaults - -[ -z "$slapd_enable" ] && slapd_enable=NO -[ -z "$slapd_flags" ] && slapd_flags= - -[ -z "$slapd_owner" ] && slapd_owner=ldap:ldap -[ -z "$slapd_sockets" ] && slapd_sockets= -[ -z "$slapd_sockets_mode" ] && slapd_sockets_mode=666 - -load_rc_config $name - -if [ -n "$slapd_args" ]; then - warn "slapd_args is deprecated, use slapd_flags" - slapd_flags="$slapd_args" -fi - -run_rc_command "$1" diff --git a/net/openldap23-server/files/slurpd.sh b/net/openldap23-server/files/slurpd.sh deleted file mode 100644 index 558f58c1f592..000000000000 --- a/net/openldap23-server/files/slurpd.sh +++ /dev/null @@ -1,36 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# - -# PROVIDE: slurpd -# REQUIRE: slapd -# BEFORE: -# KEYWORD: FreeBSD shutdown - -# Add the following line to /etc/rc.conf to enable slurpd: -# -#slurpd_enable="YES" -# -# See slurpd(8) for more flags -# - -. %%RC_SUBR%% - -name=slurpd -rcvar=`set_rcvar` - -command=%%PREFIX%%/libexec/slurpd -required_files=%%PREFIX%%/etc/openldap/slapd.conf - -[ -z "$slurpd_enable" ] && slurpd_enable="NO" -[ -z "$slurpd_flags" ] && slurpd_flags= - -load_rc_config $name - -if [ -n "$slurpd_args" ]; then - warn "slurpd_args is deprecated, use slurpd_flags" - slurpd_flags="$slurpd_args" -fi - -run_rc_command "$1" diff --git a/net/openldap23-server/pkg-descr b/net/openldap23-server/pkg-descr deleted file mode 100644 index 2b568c691c89..000000000000 --- a/net/openldap23-server/pkg-descr +++ /dev/null @@ -1,15 +0,0 @@ -OpenLDAP is a suite of Lightweight Directory Access Protocol (v3) servers, -clients, utilities and development tools. - -This package includes the following major components: - - * slapd - a stand-alone LDAP directory server - * slurpd - a stand-alone LDAP replication server - * LDIF tools - data conversion tools for use with slapd - -This release is meant for testing purposes only, it is not for general use. - -WWW: http://www.OpenLDAP.org/ - -- Oliver Eikemeier -eikemeier@fillmore-labs.com diff --git a/net/openldap23-server/pkg-descr.client b/net/openldap23-server/pkg-descr.client deleted file mode 100644 index 3b9be2330c70..000000000000 --- a/net/openldap23-server/pkg-descr.client +++ /dev/null @@ -1,16 +0,0 @@ -OpenLDAP is a suite of Lightweight Directory Access Protocol (v3) servers, -clients, utilities and development tools. - -This package includes the following major components: - - * -lldap - a LDAP client library - * -llber - a lightweight BER/DER encoding/decoding library - * LDAP tools - A collection of command line LDAP utilities - * documentation - man pages for all components - -This release is meant for testing purposes only, it is not for general use. - -WWW: http://www.OpenLDAP.org/ - -- Oliver Eikemeier -eikemeier@fillmore-labs.com diff --git a/net/openldap23-server/pkg-install b/net/openldap23-server/pkg-install deleted file mode 100644 index 47b2ea825164..000000000000 --- a/net/openldap23-server/pkg-install +++ /dev/null @@ -1,43 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# - -CHOWN=/usr/sbin/chown -ECHO_CMD=echo -GREP=/usr/bin/grep -PW=/usr/sbin/pw - -FTPUSERS=/etc/ftpusers - -case $2 in -PRE-INSTALL) - if ! ${PW} usershow -n ldap >/dev/null 2>&1; then - if ! ${PW} groupshow -n ldap >/dev/null 2>&1; then - if ! ${PW} groupadd -n ldap -g 389; then - ${ECHO_CMD} - ${ECHO_CMD} "*** Failed to add a group ldap with id 389." - ${ECHO_CMD} - ${ECHO_CMD} "Please add the ldap user manually with" - ${ECHO_CMD} " ${PW} useradd -n ldap -g ldap -c 'OpenLDAP server' \\" - ${ECHO_CMD} " -d /nonexistent -s /sbin/nologin -h -" - ${ECHO_CMD} "and retry installing this package." - exit 1 - fi - fi - if ${PW} useradd -n ldap -u 389 -g ldap -c 'OpenLDAP Server' \ - -d /nonexistent -s /sbin/nologin -h -; then - ${GREP} -qs '^ldap$' ${FTPUSERS} || ${ECHO_CMD} ldap >> ${FTPUSERS} - else - ${ECHO_CMD} - ${ECHO_CMD} "*** Failed to add an user ldap with id 389." - ${ECHO_CMD} - ${ECHO_CMD} "Please add the ldap user manually with" - ${ECHO_CMD} " ${PW} useradd -n ldap -g ldap -c 'OpenLDAP server' \\" - ${ECHO_CMD} " -d /nonexistent -s /sbin/nologin -h -" - ${ECHO_CMD} "and retry installing this package." - exit 1 - fi - fi - ;; -esac diff --git a/net/openldap23-server/pkg-message b/net/openldap23-server/pkg-message deleted file mode 100644 index 737d02348bdb..000000000000 --- a/net/openldap23-server/pkg-message +++ /dev/null @@ -1,28 +0,0 @@ -************************************************************ - -The OpenLDAP server package has been successfully installed. - -In order to run the LDAP server, you need to edit - %%PREFIX%%/etc/openldap/slapd.conf -to suit your needs and add the following lines to /etc/rc.conf: - slapd_enable="YES" - slapd_flags='-h "ldapi://%2fvar%2frun%2fopenldap%2fldapi/ ldap://0.0.0.0/"' - slapd_sockets="/var/run/openldap/ldapi" - -Then start the server with - %%RC_DIR%%/slapd%%RC_SUFX%% start -or reboot. - -Try `man slapd' and the online manual at - http://www.OpenLDAP.org/doc/admin20/ -for more information. - -NOTE: Some variable names have been changed to conform with rc.subr(8) - -If you are upgrading, you may want to check your configuration with - grep ^slapd_ /etc/rc.conf - -slapd runs under a non-privileged user id (by default `ldap'), -see %%RC_DIR%%/slapd%%RC_SUFX%% for more information. - -************************************************************ diff --git a/net/openldap23-server/pkg-message.client b/net/openldap23-server/pkg-message.client deleted file mode 100644 index ef3234fa4b86..000000000000 --- a/net/openldap23-server/pkg-message.client +++ /dev/null @@ -1,9 +0,0 @@ -************************************************************ - -The OpenLDAP client package has been successfully installed. - -Edit - %%PREFIX%%/etc/openldap/ldap.conf -to change the system-wide client defaults. - -************************************************************ diff --git a/net/openldap23-server/pkg-plist b/net/openldap23-server/pkg-plist deleted file mode 100644 index d2c94faf8fe7..000000000000 --- a/net/openldap23-server/pkg-plist +++ /dev/null @@ -1,51 +0,0 @@ -@comment $FreeBSD$ -@unexec %%RC_DIR%%/slapd%%RC_SUFX%% stop 2>/dev/null || true -@unexec %%RC_DIR%%/slurpd%%RC_SUFX%% stop 2>/dev/null || true -etc/openldap/schema/README -@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/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/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 rmdir %D/etc/openldap/schema 2>/dev/null || true -@unexec rmdir %D/etc/openldap 2>/dev/null || true -%%SLAPI%%lib/libslapi.a -%%SLAPI%%lib/libslapi.so -%%SLAPI%%lib/libslapi.so.2 -libexec/slapd -libexec/slurpd -sbin/slapadd -sbin/slapcat -sbin/slapindex -sbin/slappasswd -@exec mkdir -p %%LDAP_RUN_DIR%% -@exec mkdir -p %%DATABASEDIR%% -@exec mkdir -p %%SLURPDIR%% -@unexec rmdir %%LDAP_RUN_DIR%% -@unexec rmdir %%DATABASEDIR%% 2>/dev/null || true -@unexec rmdir %%SLURPDIR%% 2>/dev/null || true -@cwd %%RC_DIR%% -slapd%%RC_SUFX%% -slurpd%%RC_SUFX%% diff --git a/net/openldap23-server/pkg-plist.client b/net/openldap23-server/pkg-plist.client deleted file mode 100644 index 28e37f5316cb..000000000000 --- a/net/openldap23-server/pkg-plist.client +++ /dev/null @@ -1,39 +0,0 @@ -@comment $FreeBSD$ -bin/ldapadd -bin/ldapcompare -bin/ldapdelete -bin/ldapmodify -bin/ldapmodrdn -bin/ldappasswd -bin/ldapsearch -bin/ldapwhoami -@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 rmdir %D/etc/openldap 2>/dev/null || true -include/lber.h -include/lber_types.h -include/ldap.h -include/ldap_cdefs.h -include/ldap_features.h -include/ldap_schema.h -include/ldap_utf8.h -include/slapi-plugin.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 -share/openldap/ucdata/case.dat -share/openldap/ucdata/cmbcl.dat -share/openldap/ucdata/comp.dat -share/openldap/ucdata/ctype.dat -share/openldap/ucdata/decomp.dat -share/openldap/ucdata/kdecomp.dat -share/openldap/ucdata/num.dat -@dirrm share/openldap/ucdata -@dirrm share/openldap diff --git a/net/openldap24-client/Makefile b/net/openldap24-client/Makefile deleted file mode 100644 index 172fa7d40eec..000000000000 --- a/net/openldap24-client/Makefile +++ /dev/null @@ -1,16 +0,0 @@ -# New ports collection makefile for: openldap22-client -# Date created: 10 Jul 2003 -# Whom: Oliver Eikemeier <eikemeier@fillmore-labs.com> -# -# $FreeBSD$ -# - -PORTNAME= openldap - -COMMENT= Open source LDAP client implementation - -CLIENT_ONLY= yes - -MASTERDIR= ${.CURDIR}/../openldap22-server - -.include "${MASTERDIR}/Makefile" diff --git a/net/openldap24-server/Makefile b/net/openldap24-server/Makefile deleted file mode 100644 index e139a6dd4d00..000000000000 --- a/net/openldap24-server/Makefile +++ /dev/null @@ -1,293 +0,0 @@ -# New ports collection makefile for: openldap22-server -# Date created: 10 Jul 2003 -# Whom: Oliver Eikemeier -# -# $FreeBSD$ -# - -PORTNAME= openldap -PORTVERSION= ${OPENLDAP_VERSION}.a -PORTREVISION= ${OPENLDAP_PORTVERSION} -CATEGORIES= net databases -MASTER_SITES= ftp://ftp.OpenLDAP.org/pub/OpenLDAP/%SUBDIR%/ \ - http://public.planetmirror.com/pub/openldap/%SUBDIR%/ \ - ftp://gd.tuwien.ac.at/infosys/network/OpenLDAP/%SUBDIR%/ \ - ftp://ftp.matrix.com.br/pub/openldap/%SUBDIR%/ \ - ftp://ftp.ucr.ac.cr/pub/Unix/openldap/%SUBDIR%/ \ - ftp://ftp.ntua.gr/mirror/OpenLDAP/%SUBDIR%/ \ - ftp://ftp.dti.ad.jp/pub/net/OpenLDAP/%SUBDIR%/ \ - ftp://ftp.u-aizu.ac.jp/pub/net/openldap/%SUBDIR%/ \ - ftp://ftp.holywar.net/pub/OpenLDAP/%SUBDIR%/ \ - ftp://ftp.nl.uu.net/pub/unix/db/openldap/%SUBDIR%/ \ - ftp://ftp.linux.pt/pub/mirrors/OpenLDAP/%SUBDIR%/ \ - ftp://ftp.rediris.es/mirror/OpenLDAP/%SUBDIR%/ \ - ftp://sunsite.cnlab-switch.ch/mirror/OpenLDAP/%SUBDIR%/ \ - http://openldap.cdpa.nsysu.edu.tw/OpenLDAP/%SUBDIR%/ \ - ftp://ftp.plig.org/pub/OpenLDAP/%SUBDIR%/ -MASTER_SITE_SUBDIR= openldap-test -PKGNAMESUFFIX= ${OPENLDAP_PKGNAMESUFFIX} -DISTNAME= openldap-${OPENLDAP_VERSION}alpha -EXTRACT_SUFX= .tgz - -MAINTAINER= eikemeier@fillmore-labs.com -COMMENT?= Open source LDAP server implementation - -OPENLDAP_VERSION= 2.2.0 - -LATEST_LINK= ${PKGNAMEPREFIX}openldap22${PKGNAMESUFFIX} -CONFLICTS= openldap12-* \ - ${PKGNAMEPREFIX}${PORTNAME}-client-2.[013-9].* - -WANT_OPENLDAP_VER?= 22 -.if ${WANT_OPENLDAP_VER} != 22 -BROKEN= "incompatible OpenLDAP version: ${WANT_OPENLDAP_VER}" -.endif - -.if defined(CLIENT_ONLY) -OPENLDAP_PORTVERSION= 0 -OPENLDAP_PKGNAMESUFFIX?=-client -OPENLDAP_PKGFILESUFX?= .client - -.if defined(USE_OPENLDAP) -.error You have `USE_OPENLDAP' defined either in your environment or in make(1) arguments. -.endif -.else -OPENLDAP_PORTVERSION= 2 -OPENLDAP_PKGNAMESUFFIX?=-server -OPENLDAP_PKGFILESUFX?= - -USE_OPENLDAP= yes -CONFLICTS+= ${PKGNAMEPREFIX}${PORTNAME}-server-2.[013-9].* -.endif - -#USE_OPENSSL= yes -USE_REINPLACE= yes -USE_LIBTOOL_VER= 14 - -DESCR= ${PKGDIR}/pkg-descr${OPENLDAP_PKGFILESUFX} -PLIST= ${WRKDIR}/pkg-plist -PKGINSTALL= ${WRKDIR}/pkg-install -PKGMESSAGE= ${WRKDIR}/pkg-message - -LDAP_RUN_DIR?= ${DESTDIR}/var/run/openldap -LOCALSTATEDIR?= ${DESTDIR}/var/db -DATABASEDIR?= ${LOCALSTATEDIR}/openldap-data -SLURPDIR?= ${LOCALSTATEDIR}/openldap-slurp - -PLIST_SUB+= LDAP_RUN_DIR=${LDAP_RUN_DIR} \ - DATABASEDIR=${DATABASEDIR} \ - SLURPDIR=${SLURPDIR} \ - -SED_SCRIPT= -e 's,%%PREFIX%%,${PREFIX},g' \ - -e 's,%%LDAP_RUN_DIR%%,${LDAP_RUN_DIR},g' \ - -e 's,%%DATABASEDIR%%,${DATABASEDIR},g' - -CONFIGURE_ARGS= --with-threads \ - --with-tls=openssl \ - --enable-dynamic - -.if defined(WITH_SASL) -LIB_DEPENDS+= sasl2.2:${PORTSDIR}/security/cyrus-sasl2 -CONFIGURE_ARGS+= --with-cyrus-sasl -.else -CONFIGURE_ARGS+= --without-cyrus-sasl -.endif - -.if defined(CLIENT_ONLY) -# client specific configuration - -CONFIGURE_ARGS+= --disable-slapd - -INSTALLS_SHLIB= yes - -.else -# server specific configuration - -EXTRA_PATCHES+= ${FILESDIR}/extrapatch-Makefile.in - -CONFIGURE_ARGS+= --localstatedir=${LOCALSTATEDIR} \ - --enable-ldbm \ - --with-ldbm-api=berkeley \ - --enable-lmpasswd \ - --enable-ldap \ - --enable-meta \ - --enable-rewrite \ - --enable-null \ - --enable-monitor - -WITH_BDB_VER?= 41 - -.if ${WITH_BDB_VER} == 41 -LIB_DEPENDS+= db41.1:${PORTSDIR}/databases/db41 -CONFIGURE_ARGS+= --enable-bdb -.elif ${WITH_BDB_VER} == 4 -LIB_DEPENDS+= db4.0:${PORTSDIR}/databases/db4 -CONFIGURE_ARGS+= --disable-bdb -.elif ${WITH_BDB_VER} == 3 -LIB_DEPENDS+= db3.3:${PORTSDIR}/databases/db3 -CONFIGURE_ARGS+= --disable-bdb -.else -.error WITH_BDB_VER must be 3, 4 or 41 -.endif -LIBS+= -ldb${WITH_BDB_VER} -CPPFLAGS+= -I${LOCALBASE}/include/db${WITH_BDB_VER} - -.if defined(WITH_SHELL) -CONFIGURE_ARGS+= --enable-shell -.endif - -.if defined(WITH_PERL) -USE_PERL5= yes -CONFIGURE_ARGS+= --enable-perl -.endif - -.if defined(WITH_SASL) -CONFIGURE_ARGS+= --enable-spasswd -.endif - -.if defined(WITH_ODBC) -WITH_ODBC_TYPE?= iODBC -.endif -.if defined(WITH_ODBC_TYPE) -.if ${WITH_ODBC_TYPE:L} == iodbc -LIB_DEPENDS+= iodbc.3:${PORTSDIR}/databases/libiodbc -CONFIGURE_ARGS+= --enable-sql -.elif ${WITH_ODBC_TYPE:L} == unixodbc -LIB_DEPENDS+= odbc.1:${PORTSDIR}/databases/unixODBC -CONFIGURE_ARGS+= --enable-sql -.else -.error WITH_ODBC_TYPE must be iODBC or unixODBC -.endif -.endif - -.if defined(WITH_SLAPI) -LIB_DEPENDS+= ltdl.4:${PORTSDIR}/devel/libltdl -CONFIGURE_ARGS+= --enable-slapi -PLIST_SUB+= SLAPI="" -INSTALLS_SHLIB= yes -.else -PLIST_SUB+= SLAPI="@comment " -.endif - -# Include tcp-wrapper support -.if !defined(WITHOUT_TCP_WRAPPERS) && exists(/usr/include/tcpd.h) -CONFIGURE_ARGS+= --enable-wrappers -.endif - -# end of client/server specific configuration -.endif - -# math.h uses _REENTRANT and stdio.h uses _THREAD_SAFE, so define both. -CPPFLAGS+= -D_REENTRANT ${PTHREAD_CFLAGS} \ - -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib - -CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} -CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" \ - LDFLAGS="${LDFLAGS}" \ - LIBS="${LIBS}" - -.include <bsd.port.pre.mk> - -.if defined(CLIENT_ONLY) -.include "${FILESDIR}/manpages" -.else -.if ${OSVERSION} >= 500038 -RC_SUBR?= ${DESTDIR}/etc/rc.subr -RC_DIR= ${DESTDIR}/etc/rc.d -RC_SUFX= -.else -USE_RC_SUBR= yes -RC_DIR= ${PREFIX}/etc/rc.d -RC_SUFX= .sh -.endif - -SED_SCRIPT+= -e 's,%%RC_SUBR%%,${RC_SUBR},g' \ - -e 's,%%RC_DIR%%,${RC_DIR},g' \ - -e 's,%%RC_SUFX%%,${RC_SUFX},g' -PLIST_SUB+= RC_DIR=${RC_DIR} \ - RC_SUFX=${RC_SUFX} -.endif - -pre-everything:: - @${ECHO} "=============================================================" - @${ECHO} - @${ECHO} "You can build ${PKGNAME} with the following options:" - @${ECHO} -.if defined(CLIENT_ONLY) - @${ECHO} "WITH_SASL with (Cyrus) SASL2 support" -.else - @${ECHO} "WITH_BDB_VER select BerkeleyDB version (default 4.1)" - @${ECHO} "WITH_SASL with (Cyrus) SASL2 password verification" - @${ECHO} "WITH_PERL with Perl backend" - @${ECHO} "WITH_SHELL with Shell backend" - @${ECHO} "WITH_ODBC with SQL backend" - @${ECHO} "WITH_ODBC_TYPE select ODBC interface (iODBC or unixODBC)" - @${ECHO} "WITH_SLAPI with Netscape SLAPI plugin API - @${ECHO} "WITHOUT_TCP_WRAPPERS without tcp wrapper support" -.endif - @${ECHO} - @${ECHO} "=============================================================" - @${ECHO} - -post-patch: - @${REINPLACE_CMD} -e 's,%LOCALSTATEDIR%/slapd\.,${LDAP_RUN_DIR}/slapd.,g' \ - ${WRKSRC}/servers/slapd/slapd.conf - -pre-configure: - @${REINPLACE_CMD} -e '/^LIBTOOL=/s,\$$(top_builddir)/libtool,${LIBTOOL},g' \ - ${WRKSRC}/configure - -post-build: -.for script in slapd slurpd - @${SED} ${SED_SCRIPT} ${FILESDIR}/${script}.sh >${WRKDIR}/${script}.sh -.endfor -.for text in pkg-install pkg-message - @if [ -f ${MASTERDIR}/${text}${OPENLDAP_PKGFILESUFX} ]; then \ - ${SED} ${SED_SCRIPT} ${MASTERDIR}/${text}${OPENLDAP_PKGFILESUFX} \ - >${WRKDIR}/${text}; \ - fi -.endfor - -.if !defined(CLIENT_ONLY) -test: build - @cd ${BUILD_WRKSRC}; ${SETENV} ${MAKE_ENV} \ - ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} test -.endif - -pre-install: - @${CP} ${MASTERDIR}/pkg-plist${OPENLDAP_PKGFILESUFX} ${PLIST} -.if defined(CLIENT_ONLY) -.if !defined(NOPORTDOCS) - @for dir in rfc drafts; do \ - ${FIND} ${WRKSRC}/doc/$${dir} -maxdepth 1 -type f \ - | ${SED} -e "s,^${WRKSRC}/doc/,%%DOCSDIR%%/," \ - >>${PLIST}; \ - ${ECHO_CMD} "@dirrm %%DOCSDIR%%/$${dir}" >>${PLIST}; \ - done - @${ECHO_CMD} "@dirrm %%DOCSDIR%%" >>${PLIST} -.endif -.endif - @if [ -f ${PKGINSTALL} ]; then \ - ${SETENV} "PKG_PREFIX=${PREFIX}" ${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL; \ - fi - -post-install: -.if defined(CLIENT_ONLY) -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} - @for dir in rfc drafts; do \ - ${MKDIR} ${DOCSDIR}/$${dir}; \ - ${FIND} ${WRKSRC}/doc/$${dir} -maxdepth 1 -type f \ - -exec ${INSTALL_DATA} {} ${DOCSDIR}/$${dir} \; ; \ - done -.endif -.else -.for script in slapd slurpd - @${INSTALL_SCRIPT} ${WRKDIR}/${script}.sh ${RC_DIR}/${script}${RC_SUFX} -.endfor - @${MKDIR} ${LDAP_RUN_DIR} -.endif - @${CAT} ${PKGMESSAGE} - -.include <bsd.port.post.mk> diff --git a/net/openldap24-server/distinfo b/net/openldap24-server/distinfo deleted file mode 100644 index eef25e637b2e..000000000000 --- a/net/openldap24-server/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (openldap-2.2.0alpha.tgz) = 72fe342067b717a37b9697898dacfa0a diff --git a/net/openldap24-server/files/extrapatch-Makefile.in b/net/openldap24-server/files/extrapatch-Makefile.in deleted file mode 100644 index bb83ea2b572a..000000000000 --- a/net/openldap24-server/files/extrapatch-Makefile.in +++ /dev/null @@ -1,17 +0,0 @@ ---- Makefile.in.orig Mon Apr 7 22:23:24 2003 -+++ Makefile.in Thu Jul 10 17:43:35 2003 -@@ -10,9 +10,11 @@ - ## in file LICENSE in the top-level directory of the distribution. - ## - --SUBDIRS= include libraries clients servers tests doc --CLEANDIRS= --INSTALLDIRS= -+SUBDIRS= -+ALLDIRS= include libraries clients servers tests doc -+CLEANDIRS= include libraries clients servers tests doc -+DEPENDDIRS= include libraries clients servers tests doc -+INSTALLDIRS= servers - - makefiles: FORCE - ./config.status diff --git a/net/openldap24-server/files/manpages b/net/openldap24-server/files/manpages deleted file mode 100644 index a5a10214c69c..000000000000 --- a/net/openldap24-server/files/manpages +++ /dev/null @@ -1,192 +0,0 @@ -# -# $FreeBSD$ -# - -MAN1+= ldapcompare.1 \ - ldapdelete.1 \ - ldapmodify.1 \ - ldapmodrdn.1 \ - ldappasswd.1 \ - ldapsearch.1 \ - ldapwhoami.1 -MLINKS+= \ - ldapmodify.1 ldapadd.1 - -MAN3+= lber-decode.3 \ - lber-encode.3 \ - lber-memory.3 \ - lber-types.3 \ - ldap.3 \ - ldap_abandon.3 \ - ldap_add.3 \ - ldap_bind.3 \ - ldap_compare.3 \ - ldap_delete.3 \ - ldap_error.3 \ - ldap_first_attribute.3 \ - ldap_first_entry.3 \ - ldap_first_message.3 \ - ldap_first_reference.3 \ - ldap_get_dn.3 \ - ldap_get_values.3 \ - ldap_modify.3 \ - ldap_modrdn.3 \ - ldap_open.3 \ - ldap_parse_reference.3 \ - ldap_parse_result.3 \ - ldap_result.3 \ - ldap_schema.3 \ - ldap_search.3 \ - ldap_sort.3 \ - ldap_url.3 -MLINKS+= \ - lber-decode.3 ber_first_element.3 \ - lber-decode.3 ber_get_bitstring.3 \ - lber-decode.3 ber_get_boolean.3 \ - lber-decode.3 ber_get_enum.3 \ - lber-decode.3 ber_get_int.3 \ - lber-decode.3 ber_get_next.3 \ - lber-decode.3 ber_get_null.3 \ - lber-decode.3 ber_get_stringa.3 \ - lber-decode.3 ber_get_stringb.3 \ - lber-decode.3 ber_next_element.3 \ - lber-decode.3 ber_peek_tag.3 \ - lber-decode.3 ber_scanf.3 \ - lber-decode.3 ber_skip_tag.3 \ - lber-encode.3 ber_alloc_t.3 \ - lber-encode.3 ber_flush.3 \ - lber-encode.3 ber_printf.3 \ - lber-encode.3 ber_put_enum.3 \ - lber-encode.3 ber_put_int.3 \ - lber-encode.3 ber_put_null.3 \ - lber-encode.3 ber_put_ostring.3 \ - lber-encode.3 ber_put_seq.3 \ - lber-encode.3 ber_put_set.3 \ - lber-encode.3 ber_put_string.3 \ - lber-encode.3 ber_start_set.3 \ - lber-types.3 ber_bvarray_add.3 \ - lber-types.3 ber_bvarray_free.3 \ - lber-types.3 ber_bvdup.3 \ - lber-types.3 ber_bvecadd.3 \ - lber-types.3 ber_bvecfree.3 \ - lber-types.3 ber_bvfree.3 \ - lber-types.3 ber_bvstr.3 \ - lber-types.3 ber_bvstrdup.3 \ - lber-types.3 ber_dupbv.3 \ - lber-types.3 ber_free.3 \ - lber-types.3 ber_str2bv.3 \ - ldap_abandon.3 ldap_abandon_ext.3 \ - ldap_add.3 ldap_add_ext.3 \ - ldap_add.3 ldap_add_ext_s.3 \ - ldap_add.3 ldap_add_s.3 \ - ldap_bind.3 ldap_bind_s.3 \ - ldap_bind.3 ldap_kerberos_bind1.3 \ - ldap_bind.3 ldap_kerberos_bind1_s.3 \ - ldap_bind.3 ldap_kerberos_bind2.3 \ - ldap_bind.3 ldap_kerberos_bind2_s.3 \ - ldap_bind.3 ldap_kerberos_bind_s.3 \ - ldap_bind.3 ldap_sasl_bind.3 \ - ldap_bind.3 ldap_sasl_bind_s.3 \ - ldap_bind.3 ldap_simple_bind.3 \ - ldap_bind.3 ldap_simple_bind_s.3 \ - ldap_bind.3 ldap_unbind.3 \ - ldap_bind.3 ldap_unbind_ext.3 \ - ldap_bind.3 ldap_unbind_ext_s.3 \ - ldap_bind.3 ldap_unbind_s.3 \ - ldap_compare.3 ldap_compare_ext.3 \ - ldap_compare.3 ldap_compare_ext_s.3 \ - ldap_compare.3 ldap_compare_s.3 \ - ldap_delete.3 ldap_delete_ext.3 \ - ldap_delete.3 ldap_delete_ext_s.3 \ - ldap_delete.3 ldap_delete_s.3 \ - ldap_error.3 ld_errno.3 \ - ldap_error.3 ldap_err2string.3 \ - ldap_error.3 ldap_errlist.3 \ - ldap_error.3 ldap_perror.3 \ - ldap_error.3 ldap_result2error.3 \ - ldap_first_attribute.3 ldap_next_attribute.3 \ - ldap_first_entry.3 ldap_count_entries.3 \ - ldap_first_entry.3 ldap_next_entry.3 \ - ldap_first_message.3 ldap_count_messages.3 \ - ldap_first_message.3 ldap_next_message.3 \ - ldap_first_reference.3 ldap_count_references.3 \ - ldap_first_reference.3 ldap_next_reference.3 \ - ldap_get_dn.3 ldap_dcedn2dn.3 \ - ldap_get_dn.3 ldap_dn2ad_canonical.3 \ - ldap_get_dn.3 ldap_dn2dcedn.3 \ - ldap_get_dn.3 ldap_dn2str.3 \ - ldap_get_dn.3 ldap_dn2ufn.3 \ - ldap_get_dn.3 ldap_explode_dn.3 \ - ldap_get_dn.3 ldap_explode_rdn.3 \ - ldap_get_dn.3 ldap_str2dn.3 \ - ldap_get_values.3 ldap_count_values.3 \ - ldap_get_values.3 ldap_count_values_len.3 \ - ldap_get_values.3 ldap_get_values_len.3 \ - ldap_get_values.3 ldap_value_free.3 \ - ldap_get_values.3 ldap_value_free_len.3 \ - ldap_modify.3 ldap_modify_ext.3 \ - ldap_modify.3 ldap_modify_ext_s.3 \ - ldap_modify.3 ldap_modify_s.3 \ - ldap_modify.3 ldap_mods_free.3 \ - ldap_modrdn.3 ldap_modrdn2.3 \ - ldap_modrdn.3 ldap_modrdn2_s.3 \ - ldap_modrdn.3 ldap_modrdn_s.3 \ - ldap_open.3 ldap_init.3 \ - ldap_parse_result.3 ldap_parse_extended_result.3 \ - ldap_parse_result.3 ldap_parse_sasl_bind_result.3 \ - ldap_result.3 ldap_msgfree.3 \ - ldap_result.3 ldap_msgid.3 \ - ldap_result.3 ldap_msgtype.3 \ - ldap_schema.3 ldap_attributetype2name.3 \ - ldap_schema.3 ldap_attributetype2str.3 \ - ldap_schema.3 ldap_attributetype_free.3 \ - ldap_schema.3 ldap_matchingrule2name.3 \ - ldap_schema.3 ldap_matchingrule2str.3 \ - ldap_schema.3 ldap_matchingrule_free.3 \ - ldap_schema.3 ldap_objectclass2name.3 \ - ldap_schema.3 ldap_objectclass2str.3 \ - ldap_schema.3 ldap_objectclass_free.3 \ - ldap_schema.3 ldap_scherr2str.3 \ - ldap_schema.3 ldap_str2attributetype.3 \ - ldap_schema.3 ldap_str2matchingrule.3 \ - ldap_schema.3 ldap_str2objectclass.3 \ - ldap_schema.3 ldap_str2syntax.3 \ - ldap_schema.3 ldap_syntax2name.3 \ - ldap_schema.3 ldap_syntax2str.3 \ - ldap_schema.3 ldap_syntax_free.3 \ - ldap_search.3 ldap_search_ext.3 \ - ldap_search.3 ldap_search_ext_s.3 \ - ldap_search.3 ldap_search_s.3 \ - ldap_search.3 ldap_search_st.3 \ - ldap_sort.3 ldap_sort_entries.3 \ - ldap_sort.3 ldap_sort_strcasecmp.3 \ - ldap_sort.3 ldap_sort_values.3 \ - ldap_url.3 ldap_free_urldesc.3 \ - ldap_url.3 ldap_is_ldap_url.3 \ - ldap_url.3 ldap_url_parse.3 - -MAN5+= ldap.conf.5 \ - ldif.5 \ - slapd-bdb.5 \ - slapd-dnssrv.5 \ - slapd-ldap.5 \ - slapd-ldbm.5 \ - slapd-meta.5 \ - slapd-monitor.5 \ - slapd-null.5 \ - slapd-passwd.5 \ - slapd-perl.5 \ - slapd-shell.5 \ - slapd-sql.5 \ - slapd-tcl.5 \ - slapd.access.5 \ - slapd.conf.5 \ - slapd.plugin.5 \ - slapd.replog.5 - -MAN8+= slapadd.8 \ - slapcat.8 \ - slapd.8 \ - slapindex.8 \ - slappasswd.8 \ - slurpd.8 diff --git a/net/openldap24-server/files/patch-build::top.mk b/net/openldap24-server/files/patch-build::top.mk deleted file mode 100644 index 94551ea27b27..000000000000 --- a/net/openldap24-server/files/patch-build::top.mk +++ /dev/null @@ -1,11 +0,0 @@ ---- build/top.mk.orig Mon Apr 7 22:23:26 2003 -+++ build/top.mk Mon Jul 7 05:35:52 2003 -@@ -192,6 +192,8 @@ - SLAPD_LIBS = @SLAPD_LIBS@ @SLAPD_PERL_LDFLAGS@ @SLAPD_SQL_LDFLAGS@ @SLAPD_SQL_LIBS@ @SLAPD_SLP_LIBS@ - SLURPD_LIBS = @SLURPD_LIBS@ - -+SLAPI_LIBS = @SLAPI_LIBS@ -+ - # Our Defaults - CC = $(AC_CC) - DEFS = $(LDAP_INCPATH) $(XINCPATH) $(XDEFS) $(AC_DEFS) $(DEFINES) diff --git a/net/openldap24-server/files/patch-libraries::liblunicode::ucstr.c b/net/openldap24-server/files/patch-libraries::liblunicode::ucstr.c deleted file mode 100644 index b8044b524697..000000000000 --- a/net/openldap24-server/files/patch-libraries::liblunicode::ucstr.c +++ /dev/null @@ -1,11 +0,0 @@ ---- libraries/liblunicode/ucstr.c.orig Fri Apr 11 03:57:10 2003 -+++ libraries/liblunicode/ucstr.c Sun Jul 6 02:50:32 2003 -@@ -10,7 +10,7 @@ - #include <ac/string.h> - #include <ac/stdlib.h> - --#include <lber.h> -+#include <lber_pvt.h> - - #include <ldap_utf8.h> - #include <ldap_pvt_uc.h> diff --git a/net/openldap24-server/files/patch-libraries::liblutil::passwd.c b/net/openldap24-server/files/patch-libraries::liblutil::passwd.c deleted file mode 100644 index 32de74e9ee11..000000000000 --- a/net/openldap24-server/files/patch-libraries::liblutil::passwd.c +++ /dev/null @@ -1,14 +0,0 @@ -# -# ITS#2562: add missing arg to hash_lanman -# ---- libraries/liblutil/passwd.c.orig Fri May 2 13:29:29 2003 -+++ libraries/liblutil/passwd.c Sun Jun 22 03:08:18 2003 -@@ -632,7 +632,7 @@ - { - struct berval *hash; - -- hash = hash_lanman( scheme, cred ); -+ hash = hash_lanman( scheme, cred, text ); - return memcmp( &hash->bv_val[scheme->bv_len], passwd->bv_val, 32); - } - #endif /* SLAPD_LMHASH */ diff --git a/net/openldap24-server/files/patch-servers::slapd::back-perl b/net/openldap24-server/files/patch-servers::slapd::back-perl deleted file mode 100644 index c6d024df3ed0..000000000000 --- a/net/openldap24-server/files/patch-servers::slapd::back-perl +++ /dev/null @@ -1,302 +0,0 @@ -diff -Nur servers/slapd/back-perl/add.c.orig servers/slapd/back-perl/add.c ---- servers/slapd/back-perl/add.c.orig Sun May 25 03:56:59 2003 -+++ servers/slapd/back-perl/add.c Thu Jun 5 11:44:06 2003 -@@ -13,17 +13,19 @@ - * in file LICENSE in the top-level directory of the distribution. - */ - --#include "portable.h" -- --#include <stdio.h> -+#include <EXTERN.h> -+#include <perl.h> -+#undef _ /* #defined used by both Perl and ac/localize.h */ - --#include "slap.h" - #ifdef HAVE_WIN32_ASPERL - #include "asperl_undefs.h" - #endif - --#include <EXTERN.h> --#include <perl.h> -+#include "portable.h" -+ -+#include <stdio.h> -+ -+#include "slap.h" - - #include "perl_back.h" - -diff -Nur servers/slapd/back-perl/bind.c.orig servers/slapd/back-perl/bind.c ---- servers/slapd/back-perl/bind.c.orig Sun May 25 03:56:59 2003 -+++ servers/slapd/back-perl/bind.c Thu Jun 5 11:44:06 2003 -@@ -13,18 +13,19 @@ - * in file LICENSE in the top-level directory of the distribution. - */ - --#include "portable.h" --/* init.c - initialize Perl backend */ -- --#include <stdio.h> -+#include <EXTERN.h> -+#include <perl.h> -+#undef _ /* #defined used by both Perl and ac/localize.h */ - --#include "slap.h" - #ifdef HAVE_WIN32_ASPERL - #include "asperl_undefs.h" - #endif - --#include <EXTERN.h> --#include <perl.h> -+#include "portable.h" -+ -+#include <stdio.h> -+ -+#include "slap.h" - - #include "perl_back.h" - -diff -Nur servers/slapd/back-perl/close.c.orig servers/slapd/back-perl/close.c ---- servers/slapd/back-perl/close.c.orig Sun May 25 03:56:59 2003 -+++ servers/slapd/back-perl/close.c Thu Jun 5 11:44:06 2003 -@@ -13,18 +13,19 @@ - * in file LICENSE in the top-level directory of the distribution. - */ - --#include "portable.h" --/* init.c - initialize shell backend */ -- --#include <stdio.h> -+#include <EXTERN.h> -+#include <perl.h> -+#undef _ /* #defined used by both Perl and ac/localize.h */ - --#include "slap.h" - #ifdef HAVE_WIN32_ASPERL - #include "asperl_undefs.h" - #endif - --#include <EXTERN.h> --#include <perl.h> -+#include "portable.h" -+ -+#include <stdio.h> -+ -+#include "slap.h" - - #include "perl_back.h" - -diff -Nur servers/slapd/back-perl/compare.c.orig servers/slapd/back-perl/compare.c ---- servers/slapd/back-perl/compare.c.orig Sun May 25 03:56:59 2003 -+++ servers/slapd/back-perl/compare.c Thu Jun 5 11:44:06 2003 -@@ -13,17 +13,19 @@ - * in file LICENSE in the top-level directory of the distribution. - */ - --#include "portable.h" -- --#include <stdio.h> -+#include <EXTERN.h> -+#include <perl.h> -+#undef _ /* #defined used by both Perl and ac/localize.h */ - --#include "slap.h" - #ifdef HAVE_WIN32_ASPERL - #include "asperl_undefs.h" - #endif - --#include <EXTERN.h> --#include <perl.h> -+#include "portable.h" -+ -+#include <stdio.h> -+ -+#include "slap.h" - - #include "lutil.h" - #include "perl_back.h" -diff -Nur servers/slapd/back-perl/config.c.orig servers/slapd/back-perl/config.c ---- servers/slapd/back-perl/config.c.orig Sun May 25 03:56:59 2003 -+++ servers/slapd/back-perl/config.c Thu Jun 5 11:44:06 2003 -@@ -13,17 +13,19 @@ - * in file LICENSE in the top-level directory of the distribution. - */ - --#include "portable.h" -- --#include <stdio.h> -+#include <EXTERN.h> -+#include <perl.h> -+#undef _ /* #defined used by both Perl and ac/localize.h */ - --#include "slap.h" - #ifdef HAVE_WIN32_ASPERL - #include "asperl_undefs.h" - #endif - --#include <EXTERN.h> --#include <perl.h> -+#include "portable.h" -+ -+#include <stdio.h> -+ -+#include "slap.h" - - #include "perl_back.h" - -diff -Nur servers/slapd/back-perl/delete.c.orig servers/slapd/back-perl/delete.c ---- servers/slapd/back-perl/delete.c.orig Sun May 25 03:56:59 2003 -+++ servers/slapd/back-perl/delete.c Thu Jun 5 11:44:06 2003 -@@ -13,17 +13,19 @@ - * in file LICENSE in the top-level directory of the distribution. - */ - --#include "portable.h" -- --#include <stdio.h> -+#include <EXTERN.h> -+#include <perl.h> -+#undef _ /* #defined used by both Perl and ac/localize.h */ - --#include "slap.h" - #ifdef HAVE_WIN32_ASPERL - #include "asperl_undefs.h" - #endif - --#include <EXTERN.h> --#include <perl.h> -+#include "portable.h" -+ -+#include <stdio.h> -+ -+#include "slap.h" - - #include "perl_back.h" - -diff -Nur servers/slapd/back-perl/init.c.orig servers/slapd/back-perl/init.c ---- servers/slapd/back-perl/init.c.orig Sun May 25 03:56:59 2003 -+++ servers/slapd/back-perl/init.c Thu Jun 12 22:25:21 2003 -@@ -13,18 +13,19 @@ - * in file LICENSE in the top-level directory of the distribution. - */ - --#include "portable.h" -- /* init.c - initialize shell backend */ -- --#include <stdio.h> -+#include <EXTERN.h> -+#include <perl.h> -+#undef _ /* #defined used by both Perl and ac/localize.h */ - --#include "slap.h" - #ifdef HAVE_WIN32_ASPERL - #include "asperl_undefs.h" - #endif - --#include <EXTERN.h> --#include <perl.h> -+#include "portable.h" -+ -+#include <stdio.h> -+ -+#include "slap.h" - - #include "perl_back.h" - -@@ -37,7 +38,7 @@ - - #ifdef SLAPD_PERL_DYNAMIC - --int back_perl_LTX_init_module(int argc, char *argv[]) -+int init_module(int argc, char *argv[]) - { - BackendInfo bi; - -diff -Nur servers/slapd/back-perl/modify.c.orig servers/slapd/back-perl/modify.c ---- servers/slapd/back-perl/modify.c.orig Sun May 25 03:56:59 2003 -+++ servers/slapd/back-perl/modify.c Thu Jun 5 11:44:06 2003 -@@ -13,17 +13,19 @@ - * in file LICENSE in the top-level directory of the distribution. - */ - --#include "portable.h" -- --#include <stdio.h> -+#include <EXTERN.h> -+#include <perl.h> -+#undef _ /* #defined used by both Perl and ac/localize.h */ - --#include "slap.h" - #ifdef HAVE_WIN32_ASPERL - #include "asperl_undefs.h" - #endif - --#include <EXTERN.h> --#include <perl.h> -+#include "portable.h" -+ -+#include <stdio.h> -+ -+#include "slap.h" - - #include "perl_back.h" - -diff -Nur servers/slapd/back-perl/modrdn.c.orig servers/slapd/back-perl/modrdn.c ---- servers/slapd/back-perl/modrdn.c.orig Sun May 25 03:56:59 2003 -+++ servers/slapd/back-perl/modrdn.c Thu Jun 5 11:44:06 2003 -@@ -26,17 +26,19 @@ - * - */ - --#include "portable.h" -- --#include <stdio.h> -+#include <EXTERN.h> -+#include <perl.h> -+#undef _ /* #defined used by both Perl and ac/localize.h */ - --#include "slap.h" - #ifdef HAVE_WIN32_ASPERL - #include "asperl_undefs.h" - #endif - --#include <EXTERN.h> --#include <perl.h> -+#include "portable.h" -+ -+#include <stdio.h> -+ -+#include "slap.h" - - #include "perl_back.h" - -diff -Nur servers/slapd/back-perl/search.c.orig servers/slapd/back-perl/search.c ---- servers/slapd/back-perl/search.c.orig Sun May 25 03:56:59 2003 -+++ servers/slapd/back-perl/search.c Thu Jun 5 11:44:06 2003 -@@ -13,17 +13,19 @@ - * in file LICENSE in the top-level directory of the distribution. - */ - --#include "portable.h" -- --#include <stdio.h> -+#include <EXTERN.h> -+#include <perl.h> -+#undef _ /* #defined used by both Perl and ac/localize.h */ - --#include "slap.h" - #ifdef HAVE_WIN32_ASPERL - #include "asperl_undefs.h" - #endif - --#include <EXTERN.h> --#include <perl.h> -+#include "portable.h" -+ -+#include <stdio.h> -+ -+#include "slap.h" - - #include "perl_back.h" - diff --git a/net/openldap24-server/files/slapd.sh b/net/openldap24-server/files/slapd.sh deleted file mode 100644 index fb77d4374fd0..000000000000 --- a/net/openldap24-server/files/slapd.sh +++ /dev/null @@ -1,103 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# - -# PROVIDE: slapd -# REQUIRE: NETWORKING SERVERS -# BEFORE: DAEMON -# KEYWORD: FreeBSD shutdown - -# -# Add the following lines to /etc/rc.conf to enable slapd: -# -#slapd_enable="YES" -#slapd_flags='-h "ldapi://%2fvar%2frun%2fopenldap%2fldapi/ ldap://0.0.0.0/"' -#slapd_sockets="/var/run/openldap/ldapi" -# -# See slapd(8) for more flags -# -# The `-u' and `-g' flags are automatically extracted from slapd_owner, -# by default slapd runs under the non-privileged user id `ldap'. If you -# want to run slapd as root, override this in /etc/rc.conf with -# -#slapd_owner="DEFAULT" -# - -. %%RC_SUBR%% - -name=slapd -rcvar=`set_rcvar` - -command=%%PREFIX%%/libexec/slapd -pidfile=%%LDAP_RUN_DIR%%/slapd.pid -required_dirs=%%LDAP_RUN_DIR%% -required_files=%%PREFIX%%/etc/openldap/slapd.conf - -start_precmd=start_precmd -start_postcmd=start_postcmd - -# extract user and group, adjust ownership of directories and database - -start_precmd() -{ - case x"$slapd_owner" in - x|x[Nn][Oo][Nn][Ee]|x[Dd][Ee][Ff][Aa][Uu][Ll][Tt]) - ;; - x*) - chown "$slapd_owner" "%%LDAP_RUN_DIR%%" - chown -RL "$slapd_owner" "%%DATABASEDIR%%" - chown "$slapd_owner" "%%PREFIX%%/etc/openldap/slapd.conf" - - slapd_ownername=`expr //"$slapd_owner" : //'\([^:]*\)'` - slapd_groupname=`expr //"$slapd_owner" : //'.*:\([^:]*\)'` - - if [ -n "$slapd_ownername" ]; then - rc_flags="$rc_flags -u $slapd_ownername" - fi - if [ -n "$slapd_groupname" ]; then - rc_flags="$rc_flags -g $slapd_groupname" - fi - ;; - esac -} - -# adjust ownership of created unix sockets - -start_postcmd() -{ - for socket in $slapd_sockets; do - for seconds in 1 2 3 4 5; do - [ -e "$socket" ] && break - sleep 1 - done - if [ -S "$socket" ]; then - case x"$slapd_owner" in - x|x[Nn][Oo][Nn][Ee]|x[Dd][Ee][Ff][Aa][Uu][Ll][Tt]) - ;; - x*) - chown "$slapd_owner" "$socket" - ;; - esac - chmod "$slapd_sockets_mode" "$socket" - fi - done -} - -# set defaults - -[ -z "$slapd_enable" ] && slapd_enable=NO -[ -z "$slapd_flags" ] && slapd_flags= - -[ -z "$slapd_owner" ] && slapd_owner=ldap:ldap -[ -z "$slapd_sockets" ] && slapd_sockets= -[ -z "$slapd_sockets_mode" ] && slapd_sockets_mode=666 - -load_rc_config $name - -if [ -n "$slapd_args" ]; then - warn "slapd_args is deprecated, use slapd_flags" - slapd_flags="$slapd_args" -fi - -run_rc_command "$1" diff --git a/net/openldap24-server/files/slurpd.sh b/net/openldap24-server/files/slurpd.sh deleted file mode 100644 index 558f58c1f592..000000000000 --- a/net/openldap24-server/files/slurpd.sh +++ /dev/null @@ -1,36 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# - -# PROVIDE: slurpd -# REQUIRE: slapd -# BEFORE: -# KEYWORD: FreeBSD shutdown - -# Add the following line to /etc/rc.conf to enable slurpd: -# -#slurpd_enable="YES" -# -# See slurpd(8) for more flags -# - -. %%RC_SUBR%% - -name=slurpd -rcvar=`set_rcvar` - -command=%%PREFIX%%/libexec/slurpd -required_files=%%PREFIX%%/etc/openldap/slapd.conf - -[ -z "$slurpd_enable" ] && slurpd_enable="NO" -[ -z "$slurpd_flags" ] && slurpd_flags= - -load_rc_config $name - -if [ -n "$slurpd_args" ]; then - warn "slurpd_args is deprecated, use slurpd_flags" - slurpd_flags="$slurpd_args" -fi - -run_rc_command "$1" diff --git a/net/openldap24-server/pkg-descr b/net/openldap24-server/pkg-descr deleted file mode 100644 index 2b568c691c89..000000000000 --- a/net/openldap24-server/pkg-descr +++ /dev/null @@ -1,15 +0,0 @@ -OpenLDAP is a suite of Lightweight Directory Access Protocol (v3) servers, -clients, utilities and development tools. - -This package includes the following major components: - - * slapd - a stand-alone LDAP directory server - * slurpd - a stand-alone LDAP replication server - * LDIF tools - data conversion tools for use with slapd - -This release is meant for testing purposes only, it is not for general use. - -WWW: http://www.OpenLDAP.org/ - -- Oliver Eikemeier -eikemeier@fillmore-labs.com diff --git a/net/openldap24-server/pkg-descr.client b/net/openldap24-server/pkg-descr.client deleted file mode 100644 index 3b9be2330c70..000000000000 --- a/net/openldap24-server/pkg-descr.client +++ /dev/null @@ -1,16 +0,0 @@ -OpenLDAP is a suite of Lightweight Directory Access Protocol (v3) servers, -clients, utilities and development tools. - -This package includes the following major components: - - * -lldap - a LDAP client library - * -llber - a lightweight BER/DER encoding/decoding library - * LDAP tools - A collection of command line LDAP utilities - * documentation - man pages for all components - -This release is meant for testing purposes only, it is not for general use. - -WWW: http://www.OpenLDAP.org/ - -- Oliver Eikemeier -eikemeier@fillmore-labs.com diff --git a/net/openldap24-server/pkg-install b/net/openldap24-server/pkg-install deleted file mode 100644 index 47b2ea825164..000000000000 --- a/net/openldap24-server/pkg-install +++ /dev/null @@ -1,43 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# - -CHOWN=/usr/sbin/chown -ECHO_CMD=echo -GREP=/usr/bin/grep -PW=/usr/sbin/pw - -FTPUSERS=/etc/ftpusers - -case $2 in -PRE-INSTALL) - if ! ${PW} usershow -n ldap >/dev/null 2>&1; then - if ! ${PW} groupshow -n ldap >/dev/null 2>&1; then - if ! ${PW} groupadd -n ldap -g 389; then - ${ECHO_CMD} - ${ECHO_CMD} "*** Failed to add a group ldap with id 389." - ${ECHO_CMD} - ${ECHO_CMD} "Please add the ldap user manually with" - ${ECHO_CMD} " ${PW} useradd -n ldap -g ldap -c 'OpenLDAP server' \\" - ${ECHO_CMD} " -d /nonexistent -s /sbin/nologin -h -" - ${ECHO_CMD} "and retry installing this package." - exit 1 - fi - fi - if ${PW} useradd -n ldap -u 389 -g ldap -c 'OpenLDAP Server' \ - -d /nonexistent -s /sbin/nologin -h -; then - ${GREP} -qs '^ldap$' ${FTPUSERS} || ${ECHO_CMD} ldap >> ${FTPUSERS} - else - ${ECHO_CMD} - ${ECHO_CMD} "*** Failed to add an user ldap with id 389." - ${ECHO_CMD} - ${ECHO_CMD} "Please add the ldap user manually with" - ${ECHO_CMD} " ${PW} useradd -n ldap -g ldap -c 'OpenLDAP server' \\" - ${ECHO_CMD} " -d /nonexistent -s /sbin/nologin -h -" - ${ECHO_CMD} "and retry installing this package." - exit 1 - fi - fi - ;; -esac diff --git a/net/openldap24-server/pkg-message b/net/openldap24-server/pkg-message deleted file mode 100644 index 737d02348bdb..000000000000 --- a/net/openldap24-server/pkg-message +++ /dev/null @@ -1,28 +0,0 @@ -************************************************************ - -The OpenLDAP server package has been successfully installed. - -In order to run the LDAP server, you need to edit - %%PREFIX%%/etc/openldap/slapd.conf -to suit your needs and add the following lines to /etc/rc.conf: - slapd_enable="YES" - slapd_flags='-h "ldapi://%2fvar%2frun%2fopenldap%2fldapi/ ldap://0.0.0.0/"' - slapd_sockets="/var/run/openldap/ldapi" - -Then start the server with - %%RC_DIR%%/slapd%%RC_SUFX%% start -or reboot. - -Try `man slapd' and the online manual at - http://www.OpenLDAP.org/doc/admin20/ -for more information. - -NOTE: Some variable names have been changed to conform with rc.subr(8) - -If you are upgrading, you may want to check your configuration with - grep ^slapd_ /etc/rc.conf - -slapd runs under a non-privileged user id (by default `ldap'), -see %%RC_DIR%%/slapd%%RC_SUFX%% for more information. - -************************************************************ diff --git a/net/openldap24-server/pkg-message.client b/net/openldap24-server/pkg-message.client deleted file mode 100644 index ef3234fa4b86..000000000000 --- a/net/openldap24-server/pkg-message.client +++ /dev/null @@ -1,9 +0,0 @@ -************************************************************ - -The OpenLDAP client package has been successfully installed. - -Edit - %%PREFIX%%/etc/openldap/ldap.conf -to change the system-wide client defaults. - -************************************************************ diff --git a/net/openldap24-server/pkg-plist b/net/openldap24-server/pkg-plist deleted file mode 100644 index d2c94faf8fe7..000000000000 --- a/net/openldap24-server/pkg-plist +++ /dev/null @@ -1,51 +0,0 @@ -@comment $FreeBSD$ -@unexec %%RC_DIR%%/slapd%%RC_SUFX%% stop 2>/dev/null || true -@unexec %%RC_DIR%%/slurpd%%RC_SUFX%% stop 2>/dev/null || true -etc/openldap/schema/README -@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/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/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 rmdir %D/etc/openldap/schema 2>/dev/null || true -@unexec rmdir %D/etc/openldap 2>/dev/null || true -%%SLAPI%%lib/libslapi.a -%%SLAPI%%lib/libslapi.so -%%SLAPI%%lib/libslapi.so.2 -libexec/slapd -libexec/slurpd -sbin/slapadd -sbin/slapcat -sbin/slapindex -sbin/slappasswd -@exec mkdir -p %%LDAP_RUN_DIR%% -@exec mkdir -p %%DATABASEDIR%% -@exec mkdir -p %%SLURPDIR%% -@unexec rmdir %%LDAP_RUN_DIR%% -@unexec rmdir %%DATABASEDIR%% 2>/dev/null || true -@unexec rmdir %%SLURPDIR%% 2>/dev/null || true -@cwd %%RC_DIR%% -slapd%%RC_SUFX%% -slurpd%%RC_SUFX%% diff --git a/net/openldap24-server/pkg-plist.client b/net/openldap24-server/pkg-plist.client deleted file mode 100644 index 28e37f5316cb..000000000000 --- a/net/openldap24-server/pkg-plist.client +++ /dev/null @@ -1,39 +0,0 @@ -@comment $FreeBSD$ -bin/ldapadd -bin/ldapcompare -bin/ldapdelete -bin/ldapmodify -bin/ldapmodrdn -bin/ldappasswd -bin/ldapsearch -bin/ldapwhoami -@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 rmdir %D/etc/openldap 2>/dev/null || true -include/lber.h -include/lber_types.h -include/ldap.h -include/ldap_cdefs.h -include/ldap_features.h -include/ldap_schema.h -include/ldap_utf8.h -include/slapi-plugin.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 -share/openldap/ucdata/case.dat -share/openldap/ucdata/cmbcl.dat -share/openldap/ucdata/comp.dat -share/openldap/ucdata/ctype.dat -share/openldap/ucdata/decomp.dat -share/openldap/ucdata/kdecomp.dat -share/openldap/ucdata/num.dat -@dirrm share/openldap/ucdata -@dirrm share/openldap diff --git a/net/openslp/files/slpd.in b/net/openslp/files/slpd.in deleted file mode 100644 index eb0cb1dc2b34..000000000000 --- a/net/openslp/files/slpd.in +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# -# OpenSLP daemon. -# -if ! test -x %%PREFIX%%/sbin/slpd -then -# exit 0 -fi -case $1 in -start) - echo -n ' slpd' - %%PREFIX%%/sbin/slpd - ;; -stop) - killall slpd - ;; -*) - echo "Usage: $0: [ start | stop ]" 2>&1 - exit 65 - ;; -esac diff --git a/net/p5-IO-Socket-INET6/Makefile b/net/p5-IO-Socket-INET6/Makefile deleted file mode 100644 index b2bad846c7af..000000000000 --- a/net/p5-IO-Socket-INET6/Makefile +++ /dev/null @@ -1,26 +0,0 @@ -# New ports collection makefile for: p5-IO-INET6 -# Date created: 02 July 2003 -# Whom: Janos.Mohacsi@bsd.hu -# -# $FreeBSD$ -# - -PORTNAME= INET6 -PORTVERSION= 1.28 -CATEGORIES= net perl5 ipv6 -MASTER_SITES= ${MASTER_SITE_PERL_CPAN} -MASTER_SITE_SUBDIR= IO -PKGNAMEPREFIX= p5-IO- - -MAINTAINER= janos.mohacsi@bsd.hu -COMMENT= Perl module with object interface to AF_INET6 domain sockets - -BUILD_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/Socket6.pm:${PORTSDIR}/net/p5-Socket6 -RUN_DEPENDS= ${BUILD_DEPENDS} - -MAN3= IO::Socket::INET6.3 -MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} - -PERL_CONFIGURE= yes - -.include <bsd.port.mk> diff --git a/net/p5-IO-Socket-INET6/distinfo b/net/p5-IO-Socket-INET6/distinfo deleted file mode 100644 index 19d1046e6119..000000000000 --- a/net/p5-IO-Socket-INET6/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (INET6-1.28.tar.gz) = 799199206d8d8641e11b33c0748a313e diff --git a/net/p5-IO-Socket-INET6/files/patch-INET6.pm b/net/p5-IO-Socket-INET6/files/patch-INET6.pm deleted file mode 100644 index 03f3cc9ffa4f..000000000000 --- a/net/p5-IO-Socket-INET6/files/patch-INET6.pm +++ /dev/null @@ -1,29 +0,0 @@ ---- INET6.pm.orig Tue Jun 24 14:14:26 2003 -+++ INET6.pm Wed Jul 2 21:33:28 2003 -@@ -10,7 +10,7 @@ - package IO::Socket::INET6; - - use strict; --our(@ISA, $VERSION); -+use vars qw(@ISA $VERSION); - use IO::Socket; - use Socket6; - use Carp; -@@ -20,7 +20,7 @@ - @ISA = qw(IO::Socket); - $VERSION = "1.27"; - --my $EINVAL = exists(&Errno::EINVAL) ? Errno::EINVAL() : 1; -+my $EINVAL = defined(&Errno::EINVAL) ? Errno::EINVAL() : 1; - - IO::Socket::INET6->register_domain( AF_INET6 ); - -@@ -183,7 +183,7 @@ - } - - if ($arg->{ReusePort}) { -- $sock->sockopt(SO_REUSEPORT,1) or -+ $sock->sockopt(0x0200,1) or - return _error($sock, $!, "$!"); - } - diff --git a/net/p5-IO-Socket-INET6/pkg-descr b/net/p5-IO-Socket-INET6/pkg-descr deleted file mode 100644 index e2b4327d963c..000000000000 --- a/net/p5-IO-Socket-INET6/pkg-descr +++ /dev/null @@ -1,5 +0,0 @@ -IO::Socket::INET6 provides an object interface to creating and using sockets -in the AF_INET6 domain. It is built upon the IO::Socket interface and -inherits all the methods defined by IO::Socket. - -WWW: http://search.cpan.org/search?dist=IO-INET6 diff --git a/net/p5-IO-Socket-INET6/pkg-plist b/net/p5-IO-Socket-INET6/pkg-plist deleted file mode 100644 index 5fd1608e1a71..000000000000 --- a/net/p5-IO-Socket-INET6/pkg-plist +++ /dev/null @@ -1,7 +0,0 @@ -lib/perl5/site_perl/%%PERL_VER%%/IO/Socket/INET6.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/IO/Socket/INET6/.packlist -@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/IO/Socket/INET6 -@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/IO/Socket 2>/dev/null || true -@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/IO 2>/dev/null || true -@unexec rmdir %D/%%SITE_PERL%%/IO/Socket 2>/dev/null || true -@unexec rmdir %D/%%SITE_PERL%%/IO 2>/dev/null || true diff --git a/net/p5-Net-SNMP3/Makefile b/net/p5-Net-SNMP3/Makefile deleted file mode 100644 index c562e97f2f8b..000000000000 --- a/net/p5-Net-SNMP3/Makefile +++ /dev/null @@ -1,36 +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= 4.1.0 -CATEGORIES= net perl5 -MASTER_SITES= ${MASTER_SITE_PERL_CPAN} -MASTER_SITE_SUBDIR= Net -PKGNAMEPREFIX= p5- - -MAINTAINER= lars@thegler.dk -COMMENT= A perl module for SNMP... Net::SNMP - -.include <bsd.port.pre.mk> - -RUN_DEPENDS= ${ARCH_PERL}/Crypt/DES.pm:${PORTSDIR}/security/p5-Crypt-DES \ - ${ARCH_PERL}/Digest/MD5.pm:${PORTSDIR}/security/p5-Digest-MD5 \ - ${ARCH_PERL}/Digest/SHA1.pm:${PORTSDIR}/security/p5-Digest-SHA1 \ - ${SITE_PERL}/Digest/HMAC.pm:${PORTSDIR}/security/p5-Digest-HMAC - -PERL_CONFIGURE= yes -ARCH_PERL= ${SITE_PERL}/${PERL_ARCH} - -.if ${PERL_LEVEL} < 500600 -IGNORE= Port requires perl 5.6.x or later. Install lang/perl5 then try again -.endif - -MAN1= snmpkey.1 -MAN3= Net::SNMP.3 -MAN3PREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} - -.include <bsd.port.post.mk> diff --git a/net/p5-Net-SNMP3/distinfo b/net/p5-Net-SNMP3/distinfo deleted file mode 100644 index e8e910cf69a1..000000000000 --- a/net/p5-Net-SNMP3/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (Net-SNMP-4.1.0.tar.gz) = aefdd5a7235fc1c81e42a3b72f1d4506 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 547a9fd1f128..000000000000 --- a/net/p5-Net-SNMP3/pkg-plist +++ /dev/null @@ -1,18 +0,0 @@ -lib/perl5/site_perl/%%PERL_VER%%/Net/SNMP.pm -lib/perl5/site_perl/%%PERL_VER%%/Net/SNMP/MessageProcessing.pm -lib/perl5/site_perl/%%PERL_VER%%/Net/SNMP/Dispatcher.pm -lib/perl5/site_perl/%%PERL_VER%%/Net/SNMP/PDU.pm -lib/perl5/site_perl/%%PERL_VER%%/Net/SNMP/Message.pm -lib/perl5/site_perl/%%PERL_VER%%/Net/SNMP/Security.pm -lib/perl5/site_perl/%%PERL_VER%%/Net/SNMP/Transport/UDP.pm -lib/perl5/site_perl/%%PERL_VER%%/Net/SNMP/Security/Community.pm -lib/perl5/site_perl/%%PERL_VER%%/Net/SNMP/Security/USM.pm -bin/snmpkey -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 -@dirrm lib/perl5/site_perl/%%PERL_VER%%/Net/SNMP/Transport -@dirrm lib/perl5/site_perl/%%PERL_VER%%/Net/SNMP/Security -@dirrm lib/perl5/site_perl/%%PERL_VER%%/Net/SNMP -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/Net 2>/dev/null || true diff --git a/net/p5-POE-Component-Client-Ping/Makefile b/net/p5-POE-Component-Client-Ping/Makefile deleted file mode 100644 index ebe089b29969..000000000000 --- a/net/p5-POE-Component-Client-Ping/Makefile +++ /dev/null @@ -1,27 +0,0 @@ -# New ports collection makefile for: POE-Component-Client-Ping -# Date created: 10 Dec 2001 -# Whom: Sergey Skvortsov <skv@protey.ru> -# -# $FreeBSD$ -# - -PORTNAME= POE-Component-Client-Ping -PORTVERSION= 0.98 -CATEGORIES= devel perl5 net -MASTER_SITES= ${MASTER_SITE_PERL_CPAN} \ - http://poe.perl.org/poedown/ -MASTER_SITE_SUBDIR= POE -PKGNAMEPREFIX= p5- - -MAINTAINER= skv@FreeBSD.org -COMMENT= POE component for non-blocking/concurrent ICMP ping - -BUILD_DEPENDS= ${SITE_PERL}/POE.pm:${PORTSDIR}/devel/p5-POE \ - ${SITE_PERL}/${PERL_ARCH}/Time/HiRes.pm:${PORTSDIR}/devel/p5-Time-HiRes -RUN_DEPENDS= ${BUILD_DEPENDS} - -PERL_CONFIGURE= yes - -MAN3= POE::Component::Client::Ping.3 - -.include <bsd.port.mk> diff --git a/net/p5-POE-Component-Client-Ping/distinfo b/net/p5-POE-Component-Client-Ping/distinfo deleted file mode 100644 index 47379851508a..000000000000 --- a/net/p5-POE-Component-Client-Ping/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (POE-Component-Client-Ping-0.98.tar.gz) = 7e874fd679c56f39408df48dfcf8910b diff --git a/net/p5-POE-Component-Client-Ping/pkg-descr b/net/p5-POE-Component-Client-Ping/pkg-descr deleted file mode 100644 index 268a2472df7c..000000000000 --- a/net/p5-POE-Component-Client-Ping/pkg-descr +++ /dev/null @@ -1,8 +0,0 @@ -POE::Component::Client::Ping is non-blocking ICMP ping client session. -It lets several other sessions ping through it in parallel, and it -lets them continue doing other things while they wait for responses. - -WWW: http://search.cpan.org/dist/POE-Component-Client-Ping/ - --- Sergey Skvortsov -skv@FreeBSD.org diff --git a/net/p5-POE-Component-Client-Ping/pkg-plist b/net/p5-POE-Component-Client-Ping/pkg-plist deleted file mode 100644 index b58ec262f1d1..000000000000 --- a/net/p5-POE-Component-Client-Ping/pkg-plist +++ /dev/null @@ -1,9 +0,0 @@ -%%SITE_PERL%%/POE/Component/Client/Ping.pm -%%SITE_PERL%%/%%PERL_ARCH%%/auto/POE/Component/Client/Ping/.packlist -@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/POE/Component/Client/Ping -@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/POE/Component/Client 2>/dev/null || true -@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/POE/Component 2>/dev/null || true -@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/POE 2>/dev/null || true -@unexec rmdir %D/%%SITE_PERL%%/POE/Component/Client 2>/dev/null || true -@unexec rmdir %D/%%SITE_PERL%%/POE/Component 2>/dev/null || true -@unexec rmdir %D/%%SITE_PERL%%/POE 2>/dev/null || true diff --git a/net/p5-POE-Component-Pcap/Makefile b/net/p5-POE-Component-Pcap/Makefile deleted file mode 100644 index 740750d3abc6..000000000000 --- a/net/p5-POE-Component-Pcap/Makefile +++ /dev/null @@ -1,27 +0,0 @@ -# New ports collection makefile for: POE-Component-Pcap -# Date created: 10 Dec 2001 -# Whom: Sergey Skvortsov <skv@protey.ru> -# -# $FreeBSD$ -# - -PORTNAME= POE-Component-Pcap -PORTVERSION= 0.04 -CATEGORIES= devel perl5 net -MASTER_SITES= ${MASTER_SITE_PERL_CPAN} -MASTER_SITE_SUBDIR= POE -PKGNAMEPREFIX= p5- - -MAINTAINER= skv@FreeBSD.org -COMMENT= POE component for non-blocking use of Net::Pcap - -BUILD_DEPENDS= ${SITE_PERL}/POE.pm:${PORTSDIR}/devel/p5-POE \ - ${SITE_PERL}/${PERL_ARCH}/Net/Pcap.pm:${PORTSDIR}/net/p5-Net-Pcap \ - ${SITE_PERL}/NetPacket/Ethernet.pm:${PORTSDIR}/net/p5-NetPacket -RUN_DEPENDS= ${BUILD_DEPENDS} - -PERL_CONFIGURE= yes - -MAN3= POE::Component::Pcap.3 - -.include <bsd.port.mk> diff --git a/net/p5-POE-Component-Pcap/distinfo b/net/p5-POE-Component-Pcap/distinfo deleted file mode 100644 index 5762ee095e53..000000000000 --- a/net/p5-POE-Component-Pcap/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (POE-Component-Pcap-0.04.tar.gz) = 11c6e6babcb8ee0b6a3c247c04059dc1 diff --git a/net/p5-POE-Component-Pcap/pkg-descr b/net/p5-POE-Component-Pcap/pkg-descr deleted file mode 100644 index b2e0c5d73057..000000000000 --- a/net/p5-POE-Component-Pcap/pkg-descr +++ /dev/null @@ -1,8 +0,0 @@ -POE::Component::Pcap provides a wrapper for using the Net::Pcap module -from POE programs. The component creates a separate session which posts -events to a specified session and state when packets are available. - -WWW: http://search.cpan.org/dist/POE-Component-Pcap/ - --- Sergey Skvortsov -skv@FreeBSD.org diff --git a/net/p5-POE-Component-Pcap/pkg-plist b/net/p5-POE-Component-Pcap/pkg-plist deleted file mode 100644 index 371401577a37..000000000000 --- a/net/p5-POE-Component-Pcap/pkg-plist +++ /dev/null @@ -1,7 +0,0 @@ -%%SITE_PERL%%/%%PERL_ARCH%%/auto/POE/Component/Pcap/.packlist -%%SITE_PERL%%/POE/Component/Pcap.pm -@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/POE/Component/Pcap -@unexec rmdir %D/%%SITE_PERL%%/POE/Component 2>/dev/null || true -@unexec rmdir %D/%%SITE_PERL%%/POE 2>/dev/null || true -@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/POE/Component 2>/dev/null || true -@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/POE 2>/dev/null || true diff --git a/net/pear-Net_URL2/Makefile b/net/pear-Net_URL2/Makefile deleted file mode 100644 index 2e3db2aaaeb1..000000000000 --- a/net/pear-Net_URL2/Makefile +++ /dev/null @@ -1,31 +0,0 @@ -# Ports collection makefile for: pear-Net_URL -# Date created: 2003-04-04 -# Whom: Roman Neuhauser (<neuhauser@bellavista.cz>) -# -# $FreeBSD$ -# - -PORTNAME= Net_URL -PORTVERSION= 1.0.10 -CATEGORIES= net www -MASTER_SITES= http://pear.php.net/get/ -PKGNAMEPREFIX= pear- -EXTRACT_SUFX= .tgz -DIST_SUBDIR= PEAR - -MAINTAINER= ports@FreeBSD.org -COMMENT= Easy parsing of Urls - -BUILD_DEPENDS= ${PEARDIR}/PEAR.php:${PORTSDIR}/devel/pear-PEAR -RUN_DEPENDS= ${BUILD_DEPENDS} - -.include <bsd.port.pre.mk> -.include "${PORTSDIR}/devel/pear-PEAR/Makefile.common" - -do-install: - @${INSTALL} -d -m 755 ${PKGREGDIR} - @${INSTALL} -d -m 755 ${PEARDIR}/Net - @${INSTALL_DATA} ${WRKDIR}/package.xml ${PKGREGDIR} - @${INSTALL_DATA} ${WRKSRC}/URL.php ${PEARDIR}/Net - -.include <bsd.port.post.mk> diff --git a/net/pear-Net_URL2/distinfo b/net/pear-Net_URL2/distinfo deleted file mode 100644 index 6ed41a59a6c6..000000000000 --- a/net/pear-Net_URL2/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (PEAR/Net_URL-1.0.10.tgz) = 92db5fef86bb64da7c5edae6c63edb21 diff --git a/net/pear-Net_URL2/pkg-descr b/net/pear-Net_URL2/pkg-descr deleted file mode 100644 index e2a24e808d08..000000000000 --- a/net/pear-Net_URL2/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -Provides easy parsing of URLs and their constituent parts. - -WWW: http://pear.php.net/package-info.php?pacid=34 diff --git a/net/pear-Net_URL2/pkg-plist b/net/pear-Net_URL2/pkg-plist deleted file mode 100644 index 72900be63c12..000000000000 --- a/net/pear-Net_URL2/pkg-plist +++ /dev/null @@ -1,3 +0,0 @@ -%%PEARDIR%%/Net/URL.php -%%PKGREGDIR%%/package.xml -@unexec rmdir %%PKGREGDIR%% 2>/dev/null || true diff --git a/net/py-bittorrent-devel/Makefile b/net/py-bittorrent-devel/Makefile deleted file mode 100644 index 4cf12ca9fbfc..000000000000 --- a/net/py-bittorrent-devel/Makefile +++ /dev/null @@ -1,59 +0,0 @@ -# New ports collection makefile for: BitTorrent -# Date created: Sun Mar 16 06:34:12 UTC 2003 -# Whom: Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= BitTorrent -PORTVERSION= 3.2.1.b -CATEGORIES= net python -MASTER_SITES= http://bitconjurer.org/BitTorrent/ -PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -DISTNAME= ${PORTNAME}-${PORTVERSION:C/\.(.)$/\1/} - -MAINTAINER= lioux@FreeBSD.org -COMMENT= A peer-to-peer tool for distributing files written in Python - -USE_PYTHON= yes -USE_PYDISTUTILS= yes -USE_REINPLACE= yes - -DOC_FILES= FAQ.txt INSTALL.unix.txt LICENSE.txt README.txt \ - credits.txt todo.txt - -# required for GUI -.ifndef(WITHOUT_GUI) -RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/wxPython/__init__.py:${PORTSDIR}/x11-toolkits/py-wxPython - -PLIST_SUB+= GUI='' -.else -EXTRA_PATCHES+= ${FILESDIR}/extra-nogui-patch-setup.py -PLIST_SUB+= GUI='@comment ' -.endif - -pre-everything:: -.ifndef(WITHOUT_GUI) - @${ECHO_MSG} '===> Define WITHOUT_GUI to disable GUI installation' -.endif - -post-patch: - @${FIND} ${WRKSRC} -type f | \ - ${XARGS} -x -n 10 \ - ${REINPLACE_CMD} -E \ - -e 's|/usr/bin/env python2|${LOCALBASE}/bin/python|' -.ifdef(WITHOUT_GUI) - @${REINPLACE_CMD} -E \ - -e 's|btdownloadgui.py|btdownloadcurses.py|' \ - ${WRKSRC}/INSTALL.unix.txt -.endif - -post-install: -.ifndef(PORTDOCS) - @${MKDIR} ${DOCSDIR} -.for file in ${DOC_FILES} - @${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR} -.endfor -.endif - -.include <bsd.port.mk> diff --git a/net/py-bittorrent-devel/distinfo b/net/py-bittorrent-devel/distinfo deleted file mode 100644 index 035c08eeac2b..000000000000 --- a/net/py-bittorrent-devel/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (BitTorrent-3.2.1b.tar.gz) = 9e0cc346a4bfa3904380ed119d8bac90 diff --git a/net/py-bittorrent-devel/files/extra-nogui-patch-setup.py b/net/py-bittorrent-devel/files/extra-nogui-patch-setup.py deleted file mode 100644 index 7461547d430a..000000000000 --- a/net/py-bittorrent-devel/files/extra-nogui-patch-setup.py +++ /dev/null @@ -1,14 +0,0 @@ ---- setup.py.orig Sun Mar 30 17:01:05 2003 -+++ setup.py Sun Mar 30 17:01:20 2003 -@@ -18,9 +18,9 @@ - - packages = ["BitTorrent"], - -- scripts = ["btdownloadgui.py", "btdownloadheadless.py", "btdownloadlibrary.py", -+ scripts = ["btdownloadheadless.py", "btdownloadlibrary.py", - "bttrack.py", "btmakemetafile.py", "btlaunchmany.py", "btcompletedir.py", -- "btdownloadcurses.py", "btcompletedirgui.py", "btlaunchmanycurses.py", -+ "btdownloadcurses.py", "btlaunchmanycurses.py", - "btmakemetafile.py", "btreannounce.py", "btrename.py", "btshowmetainfo.py", - "bttest.py"] - ) diff --git a/net/py-bittorrent-devel/pkg-descr b/net/py-bittorrent-devel/pkg-descr deleted file mode 100644 index 4ca529f824ef..000000000000 --- a/net/py-bittorrent-devel/pkg-descr +++ /dev/null @@ -1,11 +0,0 @@ -[ excerpt from distribution's README.txt ] - -BitTorrent is a tool for distributing files. It's extremely easy -to use - downloads are started by clicking on hyperlinks. Whenever -more than one person is downloading at once they send pieces of the -file(s) to each other, thus relieving the central server's bandwidth -burden. Even with many simultaneous downloads, the upload burden -on the central server remains quite small, since each new downloader -introduces new upload capacity. - -WWW: http://bitconjurer.org/BitTorrent/ diff --git a/net/py-bittorrent-devel/pkg-plist b/net/py-bittorrent-devel/pkg-plist deleted file mode 100644 index be4df3d0f832..000000000000 --- a/net/py-bittorrent-devel/pkg-plist +++ /dev/null @@ -1,105 +0,0 @@ -bin/btcompletedir.py -%%GUI%%bin/btcompletedirgui.py -bin/btdownloadcurses.py -%%GUI%%bin/btdownloadgui.py -bin/btdownloadheadless.py -bin/btdownloadlibrary.py -bin/btlaunchmany.py -bin/btlaunchmanycurses.py -bin/btmakemetafile.py -bin/btreannounce.py -bin/btrename.py -bin/btshowmetainfo.py -bin/bttest.py -bin/bttrack.py -%%PYTHON_SITELIBDIR%%/BitTorrent/Choker.py -%%PYTHON_SITELIBDIR%%/BitTorrent/Choker.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/Choker.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/Connecter.py -%%PYTHON_SITELIBDIR%%/BitTorrent/Connecter.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/Connecter.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/CurrentRateMeasure.py -%%PYTHON_SITELIBDIR%%/BitTorrent/CurrentRateMeasure.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/CurrentRateMeasure.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/Downloader.py -%%PYTHON_SITELIBDIR%%/BitTorrent/Downloader.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/Downloader.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/DownloaderFeedback.py -%%PYTHON_SITELIBDIR%%/BitTorrent/DownloaderFeedback.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/DownloaderFeedback.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/Encrypter.py -%%PYTHON_SITELIBDIR%%/BitTorrent/Encrypter.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/Encrypter.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/EndgameDownloader.py -%%PYTHON_SITELIBDIR%%/BitTorrent/EndgameDownloader.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/EndgameDownloader.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/HTTPHandler.py -%%PYTHON_SITELIBDIR%%/BitTorrent/HTTPHandler.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/HTTPHandler.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/NatCheck.py -%%PYTHON_SITELIBDIR%%/BitTorrent/NatCheck.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/NatCheck.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/PiecePicker.py -%%PYTHON_SITELIBDIR%%/BitTorrent/PiecePicker.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/PiecePicker.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/RateMeasure.py -%%PYTHON_SITELIBDIR%%/BitTorrent/RateMeasure.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/RateMeasure.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/RawServer.py -%%PYTHON_SITELIBDIR%%/BitTorrent/RawServer.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/RawServer.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/Rerequester.py -%%PYTHON_SITELIBDIR%%/BitTorrent/Rerequester.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/Rerequester.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/Storage.py -%%PYTHON_SITELIBDIR%%/BitTorrent/Storage.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/Storage.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/StorageWrapper.py -%%PYTHON_SITELIBDIR%%/BitTorrent/StorageWrapper.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/StorageWrapper.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/Uploader.py -%%PYTHON_SITELIBDIR%%/BitTorrent/Uploader.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/Uploader.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/__init__.py -%%PYTHON_SITELIBDIR%%/BitTorrent/__init__.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/__init__.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/bencode.py -%%PYTHON_SITELIBDIR%%/BitTorrent/bencode.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/bencode.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/bitfield.py -%%PYTHON_SITELIBDIR%%/BitTorrent/bitfield.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/bitfield.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/btformats.py -%%PYTHON_SITELIBDIR%%/BitTorrent/btformats.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/btformats.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/download.py -%%PYTHON_SITELIBDIR%%/BitTorrent/download.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/download.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/fakeopen.py -%%PYTHON_SITELIBDIR%%/BitTorrent/fakeopen.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/fakeopen.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/parseargs.py -%%PYTHON_SITELIBDIR%%/BitTorrent/parseargs.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/parseargs.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/selectpoll.py -%%PYTHON_SITELIBDIR%%/BitTorrent/selectpoll.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/selectpoll.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/testtest.py -%%PYTHON_SITELIBDIR%%/BitTorrent/testtest.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/testtest.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/track.py -%%PYTHON_SITELIBDIR%%/BitTorrent/track.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/track.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/zurllib.py -%%PYTHON_SITELIBDIR%%/BitTorrent/zurllib.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/zurllib.pyo -%%PORTDOCS%%%%DOCSDIR%%/FAQ.txt -%%PORTDOCS%%%%DOCSDIR%%/INSTALL.unix.txt -%%PORTDOCS%%%%DOCSDIR%%/LICENSE.txt -%%PORTDOCS%%%%DOCSDIR%%/README.txt -%%PORTDOCS%%%%DOCSDIR%%/credits.txt -%%PORTDOCS%%%%DOCSDIR%%/todo.txt -%%PORTDOCS%%@dirrm %%DOCSDIR%% -@dirrm %%PYTHON_SITELIBDIR%%/BitTorrent -@unexec rmdir %D/%%PYTHON_SITELIBDIR%% 2>/dev/null || true -@unexec rmdir %D/lib/python2.2 2>/dev/null || true diff --git a/net/py-kenosis-bittorrent/Makefile b/net/py-kenosis-bittorrent/Makefile deleted file mode 100644 index 4cf12ca9fbfc..000000000000 --- a/net/py-kenosis-bittorrent/Makefile +++ /dev/null @@ -1,59 +0,0 @@ -# New ports collection makefile for: BitTorrent -# Date created: Sun Mar 16 06:34:12 UTC 2003 -# Whom: Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= BitTorrent -PORTVERSION= 3.2.1.b -CATEGORIES= net python -MASTER_SITES= http://bitconjurer.org/BitTorrent/ -PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -DISTNAME= ${PORTNAME}-${PORTVERSION:C/\.(.)$/\1/} - -MAINTAINER= lioux@FreeBSD.org -COMMENT= A peer-to-peer tool for distributing files written in Python - -USE_PYTHON= yes -USE_PYDISTUTILS= yes -USE_REINPLACE= yes - -DOC_FILES= FAQ.txt INSTALL.unix.txt LICENSE.txt README.txt \ - credits.txt todo.txt - -# required for GUI -.ifndef(WITHOUT_GUI) -RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/wxPython/__init__.py:${PORTSDIR}/x11-toolkits/py-wxPython - -PLIST_SUB+= GUI='' -.else -EXTRA_PATCHES+= ${FILESDIR}/extra-nogui-patch-setup.py -PLIST_SUB+= GUI='@comment ' -.endif - -pre-everything:: -.ifndef(WITHOUT_GUI) - @${ECHO_MSG} '===> Define WITHOUT_GUI to disable GUI installation' -.endif - -post-patch: - @${FIND} ${WRKSRC} -type f | \ - ${XARGS} -x -n 10 \ - ${REINPLACE_CMD} -E \ - -e 's|/usr/bin/env python2|${LOCALBASE}/bin/python|' -.ifdef(WITHOUT_GUI) - @${REINPLACE_CMD} -E \ - -e 's|btdownloadgui.py|btdownloadcurses.py|' \ - ${WRKSRC}/INSTALL.unix.txt -.endif - -post-install: -.ifndef(PORTDOCS) - @${MKDIR} ${DOCSDIR} -.for file in ${DOC_FILES} - @${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR} -.endfor -.endif - -.include <bsd.port.mk> diff --git a/net/py-kenosis-bittorrent/distinfo b/net/py-kenosis-bittorrent/distinfo deleted file mode 100644 index 035c08eeac2b..000000000000 --- a/net/py-kenosis-bittorrent/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (BitTorrent-3.2.1b.tar.gz) = 9e0cc346a4bfa3904380ed119d8bac90 diff --git a/net/py-kenosis-bittorrent/files/extra-nogui-patch-setup.py b/net/py-kenosis-bittorrent/files/extra-nogui-patch-setup.py deleted file mode 100644 index 7461547d430a..000000000000 --- a/net/py-kenosis-bittorrent/files/extra-nogui-patch-setup.py +++ /dev/null @@ -1,14 +0,0 @@ ---- setup.py.orig Sun Mar 30 17:01:05 2003 -+++ setup.py Sun Mar 30 17:01:20 2003 -@@ -18,9 +18,9 @@ - - packages = ["BitTorrent"], - -- scripts = ["btdownloadgui.py", "btdownloadheadless.py", "btdownloadlibrary.py", -+ scripts = ["btdownloadheadless.py", "btdownloadlibrary.py", - "bttrack.py", "btmakemetafile.py", "btlaunchmany.py", "btcompletedir.py", -- "btdownloadcurses.py", "btcompletedirgui.py", "btlaunchmanycurses.py", -+ "btdownloadcurses.py", "btlaunchmanycurses.py", - "btmakemetafile.py", "btreannounce.py", "btrename.py", "btshowmetainfo.py", - "bttest.py"] - ) diff --git a/net/py-kenosis-bittorrent/pkg-descr b/net/py-kenosis-bittorrent/pkg-descr deleted file mode 100644 index 4ca529f824ef..000000000000 --- a/net/py-kenosis-bittorrent/pkg-descr +++ /dev/null @@ -1,11 +0,0 @@ -[ excerpt from distribution's README.txt ] - -BitTorrent is a tool for distributing files. It's extremely easy -to use - downloads are started by clicking on hyperlinks. Whenever -more than one person is downloading at once they send pieces of the -file(s) to each other, thus relieving the central server's bandwidth -burden. Even with many simultaneous downloads, the upload burden -on the central server remains quite small, since each new downloader -introduces new upload capacity. - -WWW: http://bitconjurer.org/BitTorrent/ diff --git a/net/py-kenosis-bittorrent/pkg-plist b/net/py-kenosis-bittorrent/pkg-plist deleted file mode 100644 index be4df3d0f832..000000000000 --- a/net/py-kenosis-bittorrent/pkg-plist +++ /dev/null @@ -1,105 +0,0 @@ -bin/btcompletedir.py -%%GUI%%bin/btcompletedirgui.py -bin/btdownloadcurses.py -%%GUI%%bin/btdownloadgui.py -bin/btdownloadheadless.py -bin/btdownloadlibrary.py -bin/btlaunchmany.py -bin/btlaunchmanycurses.py -bin/btmakemetafile.py -bin/btreannounce.py -bin/btrename.py -bin/btshowmetainfo.py -bin/bttest.py -bin/bttrack.py -%%PYTHON_SITELIBDIR%%/BitTorrent/Choker.py -%%PYTHON_SITELIBDIR%%/BitTorrent/Choker.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/Choker.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/Connecter.py -%%PYTHON_SITELIBDIR%%/BitTorrent/Connecter.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/Connecter.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/CurrentRateMeasure.py -%%PYTHON_SITELIBDIR%%/BitTorrent/CurrentRateMeasure.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/CurrentRateMeasure.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/Downloader.py -%%PYTHON_SITELIBDIR%%/BitTorrent/Downloader.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/Downloader.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/DownloaderFeedback.py -%%PYTHON_SITELIBDIR%%/BitTorrent/DownloaderFeedback.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/DownloaderFeedback.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/Encrypter.py -%%PYTHON_SITELIBDIR%%/BitTorrent/Encrypter.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/Encrypter.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/EndgameDownloader.py -%%PYTHON_SITELIBDIR%%/BitTorrent/EndgameDownloader.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/EndgameDownloader.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/HTTPHandler.py -%%PYTHON_SITELIBDIR%%/BitTorrent/HTTPHandler.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/HTTPHandler.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/NatCheck.py -%%PYTHON_SITELIBDIR%%/BitTorrent/NatCheck.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/NatCheck.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/PiecePicker.py -%%PYTHON_SITELIBDIR%%/BitTorrent/PiecePicker.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/PiecePicker.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/RateMeasure.py -%%PYTHON_SITELIBDIR%%/BitTorrent/RateMeasure.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/RateMeasure.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/RawServer.py -%%PYTHON_SITELIBDIR%%/BitTorrent/RawServer.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/RawServer.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/Rerequester.py -%%PYTHON_SITELIBDIR%%/BitTorrent/Rerequester.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/Rerequester.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/Storage.py -%%PYTHON_SITELIBDIR%%/BitTorrent/Storage.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/Storage.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/StorageWrapper.py -%%PYTHON_SITELIBDIR%%/BitTorrent/StorageWrapper.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/StorageWrapper.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/Uploader.py -%%PYTHON_SITELIBDIR%%/BitTorrent/Uploader.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/Uploader.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/__init__.py -%%PYTHON_SITELIBDIR%%/BitTorrent/__init__.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/__init__.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/bencode.py -%%PYTHON_SITELIBDIR%%/BitTorrent/bencode.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/bencode.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/bitfield.py -%%PYTHON_SITELIBDIR%%/BitTorrent/bitfield.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/bitfield.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/btformats.py -%%PYTHON_SITELIBDIR%%/BitTorrent/btformats.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/btformats.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/download.py -%%PYTHON_SITELIBDIR%%/BitTorrent/download.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/download.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/fakeopen.py -%%PYTHON_SITELIBDIR%%/BitTorrent/fakeopen.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/fakeopen.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/parseargs.py -%%PYTHON_SITELIBDIR%%/BitTorrent/parseargs.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/parseargs.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/selectpoll.py -%%PYTHON_SITELIBDIR%%/BitTorrent/selectpoll.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/selectpoll.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/testtest.py -%%PYTHON_SITELIBDIR%%/BitTorrent/testtest.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/testtest.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/track.py -%%PYTHON_SITELIBDIR%%/BitTorrent/track.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/track.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/zurllib.py -%%PYTHON_SITELIBDIR%%/BitTorrent/zurllib.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/zurllib.pyo -%%PORTDOCS%%%%DOCSDIR%%/FAQ.txt -%%PORTDOCS%%%%DOCSDIR%%/INSTALL.unix.txt -%%PORTDOCS%%%%DOCSDIR%%/LICENSE.txt -%%PORTDOCS%%%%DOCSDIR%%/README.txt -%%PORTDOCS%%%%DOCSDIR%%/credits.txt -%%PORTDOCS%%%%DOCSDIR%%/todo.txt -%%PORTDOCS%%@dirrm %%DOCSDIR%% -@dirrm %%PYTHON_SITELIBDIR%%/BitTorrent -@unexec rmdir %D/%%PYTHON_SITELIBDIR%% 2>/dev/null || true -@unexec rmdir %D/lib/python2.2 2>/dev/null || true diff --git a/net/py-shadowclient/Makefile b/net/py-shadowclient/Makefile deleted file mode 100644 index 4cf12ca9fbfc..000000000000 --- a/net/py-shadowclient/Makefile +++ /dev/null @@ -1,59 +0,0 @@ -# New ports collection makefile for: BitTorrent -# Date created: Sun Mar 16 06:34:12 UTC 2003 -# Whom: Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= BitTorrent -PORTVERSION= 3.2.1.b -CATEGORIES= net python -MASTER_SITES= http://bitconjurer.org/BitTorrent/ -PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -DISTNAME= ${PORTNAME}-${PORTVERSION:C/\.(.)$/\1/} - -MAINTAINER= lioux@FreeBSD.org -COMMENT= A peer-to-peer tool for distributing files written in Python - -USE_PYTHON= yes -USE_PYDISTUTILS= yes -USE_REINPLACE= yes - -DOC_FILES= FAQ.txt INSTALL.unix.txt LICENSE.txt README.txt \ - credits.txt todo.txt - -# required for GUI -.ifndef(WITHOUT_GUI) -RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/wxPython/__init__.py:${PORTSDIR}/x11-toolkits/py-wxPython - -PLIST_SUB+= GUI='' -.else -EXTRA_PATCHES+= ${FILESDIR}/extra-nogui-patch-setup.py -PLIST_SUB+= GUI='@comment ' -.endif - -pre-everything:: -.ifndef(WITHOUT_GUI) - @${ECHO_MSG} '===> Define WITHOUT_GUI to disable GUI installation' -.endif - -post-patch: - @${FIND} ${WRKSRC} -type f | \ - ${XARGS} -x -n 10 \ - ${REINPLACE_CMD} -E \ - -e 's|/usr/bin/env python2|${LOCALBASE}/bin/python|' -.ifdef(WITHOUT_GUI) - @${REINPLACE_CMD} -E \ - -e 's|btdownloadgui.py|btdownloadcurses.py|' \ - ${WRKSRC}/INSTALL.unix.txt -.endif - -post-install: -.ifndef(PORTDOCS) - @${MKDIR} ${DOCSDIR} -.for file in ${DOC_FILES} - @${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR} -.endfor -.endif - -.include <bsd.port.mk> diff --git a/net/py-shadowclient/distinfo b/net/py-shadowclient/distinfo deleted file mode 100644 index 035c08eeac2b..000000000000 --- a/net/py-shadowclient/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (BitTorrent-3.2.1b.tar.gz) = 9e0cc346a4bfa3904380ed119d8bac90 diff --git a/net/py-shadowclient/files/extra-nogui-patch-setup.py b/net/py-shadowclient/files/extra-nogui-patch-setup.py deleted file mode 100644 index 7461547d430a..000000000000 --- a/net/py-shadowclient/files/extra-nogui-patch-setup.py +++ /dev/null @@ -1,14 +0,0 @@ ---- setup.py.orig Sun Mar 30 17:01:05 2003 -+++ setup.py Sun Mar 30 17:01:20 2003 -@@ -18,9 +18,9 @@ - - packages = ["BitTorrent"], - -- scripts = ["btdownloadgui.py", "btdownloadheadless.py", "btdownloadlibrary.py", -+ scripts = ["btdownloadheadless.py", "btdownloadlibrary.py", - "bttrack.py", "btmakemetafile.py", "btlaunchmany.py", "btcompletedir.py", -- "btdownloadcurses.py", "btcompletedirgui.py", "btlaunchmanycurses.py", -+ "btdownloadcurses.py", "btlaunchmanycurses.py", - "btmakemetafile.py", "btreannounce.py", "btrename.py", "btshowmetainfo.py", - "bttest.py"] - ) diff --git a/net/py-shadowclient/pkg-descr b/net/py-shadowclient/pkg-descr deleted file mode 100644 index 4ca529f824ef..000000000000 --- a/net/py-shadowclient/pkg-descr +++ /dev/null @@ -1,11 +0,0 @@ -[ excerpt from distribution's README.txt ] - -BitTorrent is a tool for distributing files. It's extremely easy -to use - downloads are started by clicking on hyperlinks. Whenever -more than one person is downloading at once they send pieces of the -file(s) to each other, thus relieving the central server's bandwidth -burden. Even with many simultaneous downloads, the upload burden -on the central server remains quite small, since each new downloader -introduces new upload capacity. - -WWW: http://bitconjurer.org/BitTorrent/ diff --git a/net/py-shadowclient/pkg-plist b/net/py-shadowclient/pkg-plist deleted file mode 100644 index be4df3d0f832..000000000000 --- a/net/py-shadowclient/pkg-plist +++ /dev/null @@ -1,105 +0,0 @@ -bin/btcompletedir.py -%%GUI%%bin/btcompletedirgui.py -bin/btdownloadcurses.py -%%GUI%%bin/btdownloadgui.py -bin/btdownloadheadless.py -bin/btdownloadlibrary.py -bin/btlaunchmany.py -bin/btlaunchmanycurses.py -bin/btmakemetafile.py -bin/btreannounce.py -bin/btrename.py -bin/btshowmetainfo.py -bin/bttest.py -bin/bttrack.py -%%PYTHON_SITELIBDIR%%/BitTorrent/Choker.py -%%PYTHON_SITELIBDIR%%/BitTorrent/Choker.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/Choker.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/Connecter.py -%%PYTHON_SITELIBDIR%%/BitTorrent/Connecter.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/Connecter.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/CurrentRateMeasure.py -%%PYTHON_SITELIBDIR%%/BitTorrent/CurrentRateMeasure.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/CurrentRateMeasure.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/Downloader.py -%%PYTHON_SITELIBDIR%%/BitTorrent/Downloader.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/Downloader.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/DownloaderFeedback.py -%%PYTHON_SITELIBDIR%%/BitTorrent/DownloaderFeedback.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/DownloaderFeedback.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/Encrypter.py -%%PYTHON_SITELIBDIR%%/BitTorrent/Encrypter.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/Encrypter.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/EndgameDownloader.py -%%PYTHON_SITELIBDIR%%/BitTorrent/EndgameDownloader.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/EndgameDownloader.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/HTTPHandler.py -%%PYTHON_SITELIBDIR%%/BitTorrent/HTTPHandler.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/HTTPHandler.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/NatCheck.py -%%PYTHON_SITELIBDIR%%/BitTorrent/NatCheck.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/NatCheck.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/PiecePicker.py -%%PYTHON_SITELIBDIR%%/BitTorrent/PiecePicker.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/PiecePicker.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/RateMeasure.py -%%PYTHON_SITELIBDIR%%/BitTorrent/RateMeasure.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/RateMeasure.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/RawServer.py -%%PYTHON_SITELIBDIR%%/BitTorrent/RawServer.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/RawServer.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/Rerequester.py -%%PYTHON_SITELIBDIR%%/BitTorrent/Rerequester.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/Rerequester.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/Storage.py -%%PYTHON_SITELIBDIR%%/BitTorrent/Storage.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/Storage.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/StorageWrapper.py -%%PYTHON_SITELIBDIR%%/BitTorrent/StorageWrapper.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/StorageWrapper.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/Uploader.py -%%PYTHON_SITELIBDIR%%/BitTorrent/Uploader.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/Uploader.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/__init__.py -%%PYTHON_SITELIBDIR%%/BitTorrent/__init__.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/__init__.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/bencode.py -%%PYTHON_SITELIBDIR%%/BitTorrent/bencode.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/bencode.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/bitfield.py -%%PYTHON_SITELIBDIR%%/BitTorrent/bitfield.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/bitfield.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/btformats.py -%%PYTHON_SITELIBDIR%%/BitTorrent/btformats.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/btformats.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/download.py -%%PYTHON_SITELIBDIR%%/BitTorrent/download.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/download.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/fakeopen.py -%%PYTHON_SITELIBDIR%%/BitTorrent/fakeopen.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/fakeopen.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/parseargs.py -%%PYTHON_SITELIBDIR%%/BitTorrent/parseargs.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/parseargs.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/selectpoll.py -%%PYTHON_SITELIBDIR%%/BitTorrent/selectpoll.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/selectpoll.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/testtest.py -%%PYTHON_SITELIBDIR%%/BitTorrent/testtest.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/testtest.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/track.py -%%PYTHON_SITELIBDIR%%/BitTorrent/track.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/track.pyo -%%PYTHON_SITELIBDIR%%/BitTorrent/zurllib.py -%%PYTHON_SITELIBDIR%%/BitTorrent/zurllib.pyc -%%PYTHON_SITELIBDIR%%/BitTorrent/zurllib.pyo -%%PORTDOCS%%%%DOCSDIR%%/FAQ.txt -%%PORTDOCS%%%%DOCSDIR%%/INSTALL.unix.txt -%%PORTDOCS%%%%DOCSDIR%%/LICENSE.txt -%%PORTDOCS%%%%DOCSDIR%%/README.txt -%%PORTDOCS%%%%DOCSDIR%%/credits.txt -%%PORTDOCS%%%%DOCSDIR%%/todo.txt -%%PORTDOCS%%@dirrm %%DOCSDIR%% -@dirrm %%PYTHON_SITELIBDIR%%/BitTorrent -@unexec rmdir %D/%%PYTHON_SITELIBDIR%% 2>/dev/null || true -@unexec rmdir %D/lib/python2.2 2>/dev/null || true diff --git a/net/py-zsi-devel/Makefile b/net/py-zsi-devel/Makefile deleted file mode 100644 index 26191c37a11a..000000000000 --- a/net/py-zsi-devel/Makefile +++ /dev/null @@ -1,41 +0,0 @@ -# New ports collection makefile for: py-zsi -# Date created: 17 September 2001 -# Whom: Johann Visagie <wjv@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= zsi -PORTVERSION= 1.22.6 -CATEGORIES= net python -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= pywebsvcs -PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -DISTNAME= ${PORTNAME:U}-${PORTVERSION:C|\.([^.]*)$|-\1|} -EXTRACT_SUFX= .tgz - -MAINTAINER= wjv@FreeBSD.org -COMMENT= A pure Python module that provides an implementation of SOAP 1.1 - -RUN_DEPENDS= ${PYXML} - -USE_PYTHON= yes -USE_PYDISTUTILS= yes -WRKSRC= ${WRKDIR}/${PORTNAME:U}-1.2 - -pre-install: - @ ${SH} ${PKGREQ} INSTALL - -post-install: -.if !defined(NOPORTDOCS) - @ ${MKDIR} ${DOCSDIR} -.for docfile in CHANGES README doc/zsi.* doc/*.tex - @ ${INSTALL_DATA} ${WRKSRC}/${docfile} ${DOCSDIR} -.endfor -.for subdir in interop samples test - @ ${MKDIR} ${EXAMPLESDIR}/${subdir} - @ ${INSTALL_DATA} ${WRKSRC}/${subdir}/* ${EXAMPLESDIR}/${subdir} -.endfor -.endif - -.include <bsd.port.mk> diff --git a/net/py-zsi-devel/distinfo b/net/py-zsi-devel/distinfo deleted file mode 100644 index 853b69bcaaca..000000000000 --- a/net/py-zsi-devel/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (ZSI-1.22-6.tgz) = fb856af33d83fd883b334c0be8cc3309 diff --git a/net/py-zsi-devel/pkg-descr b/net/py-zsi-devel/pkg-descr deleted file mode 100644 index 5c06fb17e68c..000000000000 --- a/net/py-zsi-devel/pkg-descr +++ /dev/null @@ -1,14 +0,0 @@ -Paraphrasing the original (1.0 and 1.1) website: - - ZSI, the Zolera SOAP Infrastructure, is a pure Python module that provides - an implementation of the SOAP 1.1 specification. ZSI parses and generates - SOAP messages, and converts between native Python datatypes and SOAP - syntax. Simple client and server support are also provided. - - ZSI is built on top of DOM. It requires Python 2.0 or later, and PyXML 0.6 - or later. Feedback to <zsi@zolera.com>. - -Author: Rich Salz <rsalz@zolera.com> -WWW: http://pywebsvcs.sourceforge.net/ - --- Johann Visagie <wjv@FreeBSD.org> diff --git a/net/py-zsi-devel/pkg-plist b/net/py-zsi-devel/pkg-plist deleted file mode 100644 index 43d4082b83c9..000000000000 --- a/net/py-zsi-devel/pkg-plist +++ /dev/null @@ -1,91 +0,0 @@ -%%PORTDOCS%%share/doc/zsi/CHANGES -%%PORTDOCS%%share/doc/zsi/README -%%PORTDOCS%%share/doc/zsi/c01-intro.tex -%%PORTDOCS%%share/doc/zsi/c02-samples.tex -%%PORTDOCS%%share/doc/zsi/c03-except.tex -%%PORTDOCS%%share/doc/zsi/c04-utils.tex -%%PORTDOCS%%share/doc/zsi/c05-parse.tex -%%PORTDOCS%%share/doc/zsi/c06-tc.tex -%%PORTDOCS%%share/doc/zsi/c07-writer.tex -%%PORTDOCS%%share/doc/zsi/c08-fault.tex -%%PORTDOCS%%share/doc/zsi/c09-resolve.tex -%%PORTDOCS%%share/doc/zsi/c10-dispatch.tex -%%PORTDOCS%%share/doc/zsi/version.tex -%%PORTDOCS%%share/doc/zsi/zsi.css -%%PORTDOCS%%share/doc/zsi/zsi.html -%%PORTDOCS%%share/doc/zsi/zsi.pdf -%%PORTDOCS%%share/doc/zsi/zsi.ps -%%PORTDOCS%%share/doc/zsi/zsi.tex -%%PORTDOCS%%share/doc/zsi/zsi.xsd -%%PORTDOCS%%share/doc/zsi/zsixsd.tex -%%PORTDOCS%%share/examples/zsi/interop/InteropTest.wsdl -%%PORTDOCS%%share/examples/zsi/interop/InteropTestB.wsdl -%%PORTDOCS%%share/examples/zsi/interop/README -%%PORTDOCS%%share/examples/zsi/interop/client.py -%%PORTDOCS%%share/examples/zsi/interop/cpackets.py -%%PORTDOCS%%share/examples/zsi/interop/echoHeaderBindings.wsdl -%%PORTDOCS%%share/examples/zsi/interop/sclasses.py -%%PORTDOCS%%share/examples/zsi/interop/server.py -%%PORTDOCS%%share/examples/zsi/samples/README -%%PORTDOCS%%share/examples/zsi/samples/poly.py -%%PORTDOCS%%share/examples/zsi/test/README -%%PORTDOCS%%share/examples/zsi/test/cgicli.py -%%PORTDOCS%%share/examples/zsi/test/t1.py -%%PORTDOCS%%share/examples/zsi/test/t2.py -%%PORTDOCS%%share/examples/zsi/test/t3.py -%%PORTDOCS%%share/examples/zsi/test/t4.py -%%PORTDOCS%%share/examples/zsi/test/t5.py -%%PORTDOCS%%share/examples/zsi/test/t6.py -%%PORTDOCS%%share/examples/zsi/test/t7.py -%%PORTDOCS%%share/examples/zsi/test/tests.py -lib/%%PYTHON_VERSION%%/site-packages/ZSI/TC.py -lib/%%PYTHON_VERSION%%/site-packages/ZSI/TC.pyc -lib/%%PYTHON_VERSION%%/site-packages/ZSI/TC.pyo -lib/%%PYTHON_VERSION%%/site-packages/ZSI/TCapache.py -lib/%%PYTHON_VERSION%%/site-packages/ZSI/TCapache.pyc -lib/%%PYTHON_VERSION%%/site-packages/ZSI/TCapache.pyo -lib/%%PYTHON_VERSION%%/site-packages/ZSI/TCcompound.py -lib/%%PYTHON_VERSION%%/site-packages/ZSI/TCcompound.pyc -lib/%%PYTHON_VERSION%%/site-packages/ZSI/TCcompound.pyo -lib/%%PYTHON_VERSION%%/site-packages/ZSI/TCnumbers.py -lib/%%PYTHON_VERSION%%/site-packages/ZSI/TCnumbers.pyc -lib/%%PYTHON_VERSION%%/site-packages/ZSI/TCnumbers.pyo -lib/%%PYTHON_VERSION%%/site-packages/ZSI/TCtimes.py -lib/%%PYTHON_VERSION%%/site-packages/ZSI/TCtimes.pyc -lib/%%PYTHON_VERSION%%/site-packages/ZSI/TCtimes.pyo -lib/%%PYTHON_VERSION%%/site-packages/ZSI/__init__.py -lib/%%PYTHON_VERSION%%/site-packages/ZSI/__init__.pyc -lib/%%PYTHON_VERSION%%/site-packages/ZSI/__init__.pyo -lib/%%PYTHON_VERSION%%/site-packages/ZSI/auth.py -lib/%%PYTHON_VERSION%%/site-packages/ZSI/auth.pyc -lib/%%PYTHON_VERSION%%/site-packages/ZSI/auth.pyo -lib/%%PYTHON_VERSION%%/site-packages/ZSI/client.py -lib/%%PYTHON_VERSION%%/site-packages/ZSI/client.pyc -lib/%%PYTHON_VERSION%%/site-packages/ZSI/client.pyo -lib/%%PYTHON_VERSION%%/site-packages/ZSI/compat.py -lib/%%PYTHON_VERSION%%/site-packages/ZSI/compat.pyc -lib/%%PYTHON_VERSION%%/site-packages/ZSI/compat.pyo -lib/%%PYTHON_VERSION%%/site-packages/ZSI/dispatch.py -lib/%%PYTHON_VERSION%%/site-packages/ZSI/dispatch.pyc -lib/%%PYTHON_VERSION%%/site-packages/ZSI/dispatch.pyo -lib/%%PYTHON_VERSION%%/site-packages/ZSI/fault.py -lib/%%PYTHON_VERSION%%/site-packages/ZSI/fault.pyc -lib/%%PYTHON_VERSION%%/site-packages/ZSI/fault.pyo -lib/%%PYTHON_VERSION%%/site-packages/ZSI/parse.py -lib/%%PYTHON_VERSION%%/site-packages/ZSI/parse.pyc -lib/%%PYTHON_VERSION%%/site-packages/ZSI/parse.pyo -lib/%%PYTHON_VERSION%%/site-packages/ZSI/resolvers.py -lib/%%PYTHON_VERSION%%/site-packages/ZSI/resolvers.pyc -lib/%%PYTHON_VERSION%%/site-packages/ZSI/resolvers.pyo -lib/%%PYTHON_VERSION%%/site-packages/ZSI/version.py -lib/%%PYTHON_VERSION%%/site-packages/ZSI/version.pyc -lib/%%PYTHON_VERSION%%/site-packages/ZSI/version.pyo -lib/%%PYTHON_VERSION%%/site-packages/ZSI/writer.py -lib/%%PYTHON_VERSION%%/site-packages/ZSI/writer.pyc -lib/%%PYTHON_VERSION%%/site-packages/ZSI/writer.pyo -@dirrm lib/%%PYTHON_VERSION%%/site-packages/ZSI -%%PORTDOCS%%@dirrm share/examples/zsi/test -%%PORTDOCS%%@dirrm share/examples/zsi/samples -%%PORTDOCS%%@dirrm share/examples/zsi/interop -%%PORTDOCS%%@dirrm share/examples/zsi -%%PORTDOCS%%@dirrm share/doc/zsi diff --git a/net/py-zsi-devel/pkg-req b/net/py-zsi-devel/pkg-req deleted file mode 100644 index fd3eb3555f86..000000000000 --- a/net/py-zsi-devel/pkg-req +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/sh - -PATH=$PATH:/usr/local/bin - -if [ "x$1" = "xINSTALL" -o "x$2" = "xINSTALL" ]; then - PYTHON_GT=`python -c 'import string, sys; \ - print string.split(sys.version)[0] >= "2.0" and 1'` - if [ "x${PYTHON_GT}" = "x1" ]; then - exit 0 - else - echo "-----------------------------------------------------------" - echo "ZSI requires Python version 2.0 or greater -" - echo " please update your Python installation before proceeding." - echo "-----------------------------------------------------------" - exit 1 - fi -fi diff --git a/net/rqm/Makefile b/net/rqm/Makefile deleted file mode 100644 index efe5b65ccd47..000000000000 --- a/net/rqm/Makefile +++ /dev/null @@ -1,33 +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 -COMMENT= A graphical RTP quality monitor - -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 c6f546039ba6..000000000000 --- a/net/rqm/files/patch-ab +++ /dev/null @@ -1,38 +0,0 @@ ---- main.c.orig Wed Mar 8 08:32:07 2000 -+++ main.c Wed Mar 8 08:32:28 2000 -@@ -67,7 +67,7 @@ - } - } - --static void rtp_callback(struct rtp *s, rtp_event *e) -+static void rqm_rtp_callback(struct rtp *s, rtp_event *e) - { - rtp_packet *p = (rtp_packet *) e->data; - rtcp_sr *sr = (rtcp_sr *) e->data; -@@ -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) { -@@ -199,7 +199,7 @@ - addr = (char *) strtok(argv[1], "/"); - port = (char *) strtok(NULL, "\0"); - -- rtp_session = rtp_init(addr, atoi(port), atoi(port), 15, 64000, rtp_callback, NULL); -+ rtp_session = rtp_init(addr, atoi(port), atoi(port), 15, 64000, rqm_rtp_callback, NULL); - - /* Initialise the user interface... */ - if (tcl_init(argc, argv) == FALSE) { -@@ -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-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 986e1b168a49..000000000000 --- a/net/rrdtool10/Makefile +++ /dev/null @@ -1,41 +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.41 -CATEGORIES= net -MASTER_SITES= http://people.ee.ethz.ch/~oetiker/webtools/rrdtool/pub/ - -MAINTAINER= demon@FreeBSD.org -COMMENT= Round Robin Database Tools - -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 rrdxport.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 712273cdf955..000000000000 --- a/net/rrdtool10/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (rrdtool-1.0.41.tar.gz) = 3559dafca2a5cd7bb81b1d2b707615df diff --git a/net/rrdtool10/files/patch-aa b/net/rrdtool10/files/patch-aa deleted file mode 100644 index 2b96f3c7dcf4..000000000000 --- a/net/rrdtool10/files/patch-aa +++ /dev/null @@ -1,12 +0,0 @@ ---- perl-shared/Makefile.PL.in.orig Wed May 1 17:55:28 2002 -+++ perl-shared/Makefile.PL.in Wed May 1 18:00:05 2002 -@@ -10,7 +10,8 @@ - 'NAME' => 'RRDs', - 'VERSION_FROM' => '@top_srcdir@/perl-shared/RRDs.pm', # finds $VERSION - 'DEFINE' => "-DPERLPATCHLEVEL=$Config{PATCHLEVEL}", -- 'INC' => '-I@top_srcdir@/src -I@top_srcdir@/gd1.3', -+ 'CCFLAGS' => '-DHAVE_CONFIG_H', -+ 'INC' => '-I../config -I@top_srcdir@/src -I@top_srcdir@/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 705d98777aeb..000000000000 --- a/net/rrdtool10/files/patch-ab +++ /dev/null @@ -1,18 +0,0 @@ ---- src/rrd_tool.c.orig Sun Apr 14 11:48:04 2002 -+++ src/rrd_tool.c Wed May 1 15:59:04 2002 -@@ -322,12 +322,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 d786d539f5b2..000000000000 --- a/net/rrdtool10/files/patch-ac +++ /dev/null @@ -1,26 +0,0 @@ ---- Makefile.in.orig Sun Apr 14 11:47:46 2002 -+++ Makefile.in Wed May 1 16:04:06 2002 -@@ -392,12 +392,17 @@ - - # lets schedule the perl stuff for installation - # the special call to install-sh is because the -d switch is not portable --install-data-local: -- $(top_srcdir)/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 -+ -+ -+ - - perl_piped:: $(top_builddir)/perl-piped - test -d perl-piped \ diff --git a/net/rrdtool10/files/patch-ae b/net/rrdtool10/files/patch-ae deleted file mode 100644 index b1465ab16354..000000000000 --- a/net/rrdtool10/files/patch-ae +++ /dev/null @@ -1,14 +0,0 @@ ---- doc/Makefile.in.orig Sun Apr 14 11:51:02 2002 -+++ doc/Makefile.in Wed May 1 16:05:42 2002 -@@ -110,9 +110,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 ab74382bf032..000000000000 --- a/net/rrdtool10/files/patch-af +++ /dev/null @@ -1,11 +0,0 @@ ---- examples/Makefile.in.orig Sun Apr 14 11:51:04 2002 -+++ examples/Makefile.in Wed May 1 16:07:13 2002 -@@ -93,7 +93,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 205d5ac7228c..000000000000 --- a/net/rrdtool10/files/patch-ag +++ /dev/null @@ -1,11 +0,0 @@ ---- contrib/Makefile.in.orig Sun Apr 14 11:51:05 2002 -+++ contrib/Makefile.in Wed May 1 16:08:10 2002 -@@ -88,7 +88,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 c96efc161d92..000000000000 --- a/net/rrdtool10/files/patch-ak +++ /dev/null @@ -1,11 +0,0 @@ ---- contrib/trytime/Makefile.in.orig Sun Apr 14 11:51:10 2002 -+++ contrib/trytime/Makefile.in Wed May 1 16:09:23 2002 -@@ -89,7 +89,7 @@ - - INCLUDES = -I$(top_srcdir)/src -I$(top_srcdir)/gd1.3 - EXTRA_DIST = trytime.c --contribdir = $(prefix)/contrib/trytime -+contribdir = $(prefix)/share/examples/rrdtool/trytime - contrib_DATA = README trytime.c - bin_PROGRAMS = trytime - trytime_SOURCES = trytime.c diff --git a/net/rrdtool10/files/patch-al b/net/rrdtool10/files/patch-al deleted file mode 100644 index 9c459e8988bc..000000000000 --- a/net/rrdtool10/files/patch-al +++ /dev/null @@ -1,20 +0,0 @@ ---- src/parsetime.c.orig Fri Oct 11 14:39:46 2002 -+++ src/parsetime.c Mon Feb 10 20:47:18 2003 -@@ -660,6 +660,7 @@ - { - long mday=0, wday, mon, year = ptv->tm.tm_year; - int tlen; -+ time_t montime; - - switch (sc_tokid) { - case YESTERDAY: -@@ -713,7 +714,8 @@ - tlen = strlen(sc_token); - mon = atol(sc_token); - if (mon > 10*356*24*60*60) { -- ptv->tm=*localtime(&mon); -+ montime = mon; -+ ptv->tm=*localtime(&montime); - token(); - break; - } diff --git a/net/rrdtool10/pkg-descr b/net/rrdtool10/pkg-descr deleted file mode 100644 index 4b15e3d55ab5..000000000000 --- a/net/rrdtool10/pkg-descr +++ /dev/null @@ -1,10 +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. 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/ diff --git a/net/rrdtool10/pkg-plist b/net/rrdtool10/pkg-plist deleted file mode 100644 index 579be8a0753f..000000000000 --- a/net/rrdtool10/pkg-plist +++ /dev/null @@ -1,88 +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/rrdxport.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/rrdxport.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 -share/doc/rrdtool/html/rrdxport.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 a4f8ef3f5c17..000000000000 --- a/net/rtptools/Makefile +++ /dev/null @@ -1,28 +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/download/ - -MAINTAINER= fenner@FreeBSD.org -COMMENT= A set of tools to record, playback and monitor RTPv2 data streams - -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-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 1bedb7c0154a..000000000000 --- a/net/ruby-socketproxy/Makefile +++ /dev/null @@ -1,34 +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.1 -CATEGORIES= net ruby -MASTER_SITES= ${MASTER_SITE_RUBY} -MASTER_SITE_SUBDIR= contrib -PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX} -DISTNAME= TCPSocketPipe-${PORTVERSION:S/./_/g} -DIST_SUBDIR= ruby - -MAINTAINER= knu@FreeBSD.org -COMMENT= A Ruby library to create I/O pipes for TCP socket tunneling - -RUN_DEPENDS= ${RUBY_SITELIBDIR}/application.rb:${PORTSDIR}/sysutils/ruby-devel-logger \ - ${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_MODEXAMPLESDIR} - ${INSTALL_DATA} ${WRKSRC}/monitor.rb ${RUBY_MODEXAMPLESDIR}/ -.endif - -.include <bsd.port.mk> diff --git a/net/ruby-socketproxy/distinfo b/net/ruby-socketproxy/distinfo deleted file mode 100644 index 4953ba9d66ea..000000000000 --- a/net/ruby-socketproxy/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (ruby/TCPSocketPipe-1_8_1.tar.gz) = b6859eb56299539c605623f592afd8a0 diff --git a/net/ruby-socketproxy/pkg-descr b/net/ruby-socketproxy/pkg-descr deleted file mode 100644 index 9a7ece8fb3de..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/raa/list.rhtml?name=tcpsocketpipe diff --git a/net/ruby-socketproxy/pkg-plist b/net/ruby-socketproxy/pkg-plist deleted file mode 100644 index f19c70ed94a1..000000000000 --- a/net/ruby-socketproxy/pkg-plist +++ /dev/null @@ -1,3 +0,0 @@ -%%RUBY_SITELIBDIR%%/TCPSocketPipe.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/monitor.rb -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%% diff --git a/net/rwhoisd/Makefile b/net/rwhoisd/Makefile deleted file mode 100644 index 6e238dc942a4..000000000000 --- a/net/rwhoisd/Makefile +++ /dev/null @@ -1,45 +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.3 -CATEGORIES= net ipv6 -MASTER_SITES= ftp://ftp.ayamura.org/pub/rwhois/ \ - ftp://ftp.jp.pgpi.org/pub/rwhois/ -DISTNAME= ${PORTNAME}d-${PORTVERSION} - -MAINTAINER= ports@FreeBSD.org -COMMENT= The Internic referral whois server - -.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 51640b0bdbbd..000000000000 --- a/net/rwhoisd/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (rwhoisd-1.5.7.3.tar.gz) = b3a1d951454afec598a7531919ce22a0 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/rwhoisd.sh b/net/rwhoisd/files/rwhoisd.sh deleted file mode 100644 index cc977b591234..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." - #if [ -x ${PREFIX}/lib/rwhois/sbin/rwhoisd ]; then (${PREFIX}/lib/rwhois/sbin/rwhoisd -c ${PREFIX}/lib/rwhois/rwhoisd.conf &); echo -n ' rwhoisd'; fi - ;; -stop) - # killall rwhoisd && echo -n ' rwhoisd - ;; -*) - echo "Usage: `basename $0` {start|stop}" >&2 - ;; -esac - -exit 0 diff --git a/net/rwhoisd/pkg-descr b/net/rwhoisd/pkg-descr deleted file mode 100644 index 18465350eed2..000000000000 --- a/net/rwhoisd/pkg-descr +++ /dev/null @@ -1,23 +0,0 @@ -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 65822e442674..000000000000 --- a/net/rwhoisd/pkg-plist +++ /dev/null @@ -1,63 +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/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 -%%PORTDOCS%%share/doc/rwhois/INSTALL.html -%%PORTDOCS%%share/doc/rwhois/TODO -%%PORTDOCS%%share/doc/rwhois/UPGRADE -%%PORTDOCS%%share/doc/rwhois/operations_guide.html -%%PORTDOCS%%share/doc/rwhois/operations_guide.txt -%%PORTDOCS%%share/doc/rwhois/rfc2167.txt -%%PORTDOCS%%share/doc/rwhois/security.html -%%PORTDOCS%%share/doc/rwhois/security.txt -%%PORTDOCS%%@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 40bc42c5e50c..000000000000 --- a/net/samba3/Makefile +++ /dev/null @@ -1,166 +0,0 @@ -# New ports collection makefile for: samba -# Date created: 11th Feb 1995 -# Whom: gpalmer -# -# $FreeBSD$ -# - -PORTNAME= samba -PORTVERSION= 3.0.0.b3 -PORTEPOCH= 1 -CATEGORIES= net -MASTER_SITES= http://us4.samba.org/samba/ftp/%SUBDIR%/archives/ -MASTER_SITE_SUBDIR= beta alpha old -DISTNAME= ${PORTNAME}-${PORTVERSION:S/.b/beta/} - -MAINTAINER= dwcjr@FreeBSD.org -COMMENT= A free SMB and CIFS client and server for UNIX - -USE_BZIP2="YES" - -.if !defined(WITHOUT_CUPS) -WITH_CUPS= yes -.endif - -.if defined(WITH_CUPS) -LIB_DEPENDS= cups.2:${PORTSDIR}/print/cups-base -CONFIGURE_ENV+= CPPFLAGS=-I${LOCALBASE}/include \ - LDFLAGS=-L${LOCALBASE}/lib -.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 -WANT_AUTOCONF_VER= 253 -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} \ - --exec-prefix=${PREFIX} --with-pam --without-manpages-langs \ - --with-piddir=${VARDIR}/run --with-logfilebase=${VARDIR}/log - -.include <bsd.port.pre.mk> - -.if defined(WITH_QUOTAS) -CONFIGURE_ARGS+= --with-quotas -.endif - -.if defined(WITH_UTMP) -CONFIGURE_ARGS+= --with-utmp -.endif - -.if defined(WITH_MSDFS) -CONFIGURE_ARGS+= --with-msdfs -.endif - -.if defined(WITH_WINBIND) -CONFIGURE_ARGS+= --with-winbind -.endif - -.if defined(WITH_WINBIND_AUTH_CHALLENGE) -CONFIGURE_ARGS+= --with-winbind-auth-challenge -.endif - -.if defined(KRB5_HOME) && exists(${KRB5_HOME}) -CONFIGURE_ARGS+= --with-krb5=${KRB5_HOME} -.else -CONFIGURE_ARGS+= --with-krb5=no -.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 - -.if defined(WITH_LIBICONV) -LIB_DEPENDS+= iconv.3:${PORTSDIR}/converters/libiconv -CONFIGURE_ARGS+= --with-libiconv -.endif - -WRKSRC= ${WRKDIR}/${DISTNAME}/source - -MAN1= findsmb.1 nmblookup.1 \ - rpcclient.1 smbcacls.1 smbclient.1 smbcontrol.1 smbsh.1 \ - smbstatus.1 smbtar.1 testparm.1 testprns.1 wbinfo.1 vfstest.1 \ - editreg.1 ntlm_auth.1 profiles.1 smbcquotas.1 smbtree.1 -MAN5= lmhosts.5 smb.conf.5 smbpasswd.5 -MAN7= samba.7 Samba.7 -MAN8= nmbd.8 smbd.8 smbmnt.8 smbmount.8 net.8 pdbedit.8 \ - smbpasswd.8 smbspool.8 smbumount.8 swat.8 winbindd.8 tdbbackup.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_CMD} "private/smbpasswd" >> ${TMPPLIST} - ${ECHO_CMD} "@dirrm private" >> ${TMPPLIST} -.else - ${ECHO_CMD} "@unexec ${ECHO_CMD} \"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/THANKS \ - ${WRKDIR}/${DISTNAME}/docs/history ; do \ - ${INSTALL_DATA} $$i ${DOCSDIR} ; \ - done - for i in faq htmldocs textdocs Registry ; 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 ad7f031a84d0..000000000000 --- a/net/samba3/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (samba-3.0.0beta3.tar.bz2) = a5455bfd675a3e6a75dfed468ae22305 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-aj b/net/samba3/files/patch-aj deleted file mode 100644 index 8804493c38df..000000000000 --- a/net/samba3/files/patch-aj +++ /dev/null @@ -1,15 +0,0 @@ ---- include/local.h.orig Fri Jul 6 03:01:26 2001 -+++ include/local.h Tue Oct 16 17:20:36 2001 -@@ -176,10 +176,10 @@ - * 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 - - /* maximum ID number used for session control. This cannot be larger - than 62*62 for the current code */ diff --git a/net/samba3/files/patch-installman.sh b/net/samba3/files/patch-installman.sh deleted file mode 100644 index 5ec4061a559e..000000000000 --- a/net/samba3/files/patch-installman.sh +++ /dev/null @@ -1,11 +0,0 @@ ---- script/installman.sh.orig Wed Aug 21 09:33:36 2002 -+++ script/installman.sh Wed Aug 21 09:33:53 2002 -@@ -22,7 +22,7 @@ - echo Installing \"$lang\" man pages in $MANDIR/lang/$lang - fi - -- langdir=$MANDIR/$lang -+ langdir=$MANDIR - for d in $MANDIR $langdir $langdir/man1 $langdir/man5 $langdir/man7 $langdir/man8; do - if [ ! -d $d ]; then - mkdir $d 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 8046bf75398a..000000000000 --- a/net/samba3/files/smb.conf.default +++ /dev/null @@ -1,256 +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 - -# charset settings -; display charset = ASCII -; unix charset = ASCII -; dos charset = ASCII - -# -#============================ 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-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 00a30098bc0b..000000000000 --- a/net/samba3/pkg-plist +++ /dev/null @@ -1,548 +0,0 @@ -bin/findsmb -bin/make_smbpasswd -bin/net -bin/nmblookup -bin/ntlm_auth -bin/pdbedit -bin/profiles -bin/rpcclient -bin/smbcacls -bin/smbclient -bin/smbcontrol -bin/smbcquotas -bin/smbpasswd -bin/smbspool -bin/smbstatus -bin/smbtar -bin/smbtree -bin/tdbbackup -bin/testparm -bin/testprns -etc/rc.d/samba.sh.sample -etc/lowcase.dat -etc/smb.conf.default -etc/upcase.dat -etc/valid.dat -etc/vfs/audit.so -etc/vfs/extd_audit.so -etc/vfs/fake_perms.so -etc/vfs/netatalk.so -etc/vfs/recycle.so -sbin/nmbd -sbin/smbd -sbin/swat -%%PORTDOCS%%share/doc/samba/faq/FAQ-ClientApp.html -%%PORTDOCS%%share/doc/samba/faq/FAQ-Install.html -%%PORTDOCS%%share/doc/samba/faq/FAQ-errors.html -%%PORTDOCS%%share/doc/samba/faq/FAQ-features.html -%%PORTDOCS%%share/doc/samba/faq/FAQ-general.html -%%PORTDOCS%%share/doc/samba/faq/samba-faq.html -%%PORTDOCS%%share/doc/samba/COPYING -%%PORTDOCS%%share/doc/samba/Manifest -%%PORTDOCS%%share/doc/samba/README.FreeBSD -%%PORTDOCS%%share/doc/samba/README.swat -%%PORTDOCS%%share/doc/samba/README -%%PORTDOCS%%share/doc/samba/Read-Manifest-Now -%%PORTDOCS%%share/doc/samba/Registry/NT4-Locking.reg -%%PORTDOCS%%share/doc/samba/Registry/NT4_PlainPassword.reg -%%PORTDOCS%%share/doc/samba/Registry/Win2000_PlainPassword.reg -%%PORTDOCS%%share/doc/samba/Registry/Win95_PlainPassword.reg -%%PORTDOCS%%share/doc/samba/Registry/Win98_PlainPassword.reg -%%PORTDOCS%%share/doc/samba/Registry/Win9X-CacheHandling.reg -%%PORTDOCS%%share/doc/samba/Registry/WinME_PlainPassword.reg -%%PORTDOCS%%share/doc/samba/Registry/WinXP_SignOrSeal.reg -%%PORTDOCS%%share/doc/samba/Registry/Win-NT-2K-XP-DeleteRoamingProfile.reg -%%PORTDOCS%%share/doc/samba/Registry/WinXP_PlainPassword.reg -%%PORTDOCS%%share/doc/samba/Registry/WindowsTerminalServer.reg -%%PORTDOCS%%share/doc/samba/Roadmap -%%PORTDOCS%%share/doc/samba/THANKS -%%PORTDOCS%%share/doc/samba/WHATSNEW.txt -%%PORTDOCS%%share/doc/samba/history -%%PORTDOCS%%share/doc/samba/htmldocs/Samba-Developers-Guide.html -%%PORTDOCS%%share/doc/samba/htmldocs/AccessControls.html -%%PORTDOCS%%share/doc/samba/htmldocs/AdvancedNetworkManagement.html -%%PORTDOCS%%share/doc/samba/htmldocs/Appendixes.html -%%PORTDOCS%%share/doc/samba/htmldocs/Backup.html -%%PORTDOCS%%share/doc/samba/htmldocs/CUPS-printing.html -%%PORTDOCS%%share/doc/samba/htmldocs/ClientConfig.html -%%PORTDOCS%%share/doc/samba/htmldocs/DNSDHCP.html -%%PORTDOCS%%share/doc/samba/htmldocs/FastStart.html -%%PORTDOCS%%share/doc/samba/htmldocs/Further-Resources.html -%%PORTDOCS%%share/doc/samba/htmldocs/InterdomainTrusts.html -%%PORTDOCS%%share/doc/samba/htmldocs/IntroSMB.html -%%PORTDOCS%%share/doc/samba/htmldocs/NT4Migration.html -%%PORTDOCS%%share/doc/samba/htmldocs/NetworkBrowsing.html -%%PORTDOCS%%share/doc/samba/htmldocs/Other-Clients.html -%%PORTDOCS%%share/doc/samba/htmldocs/PolicyMgmt.html -%%PORTDOCS%%share/doc/samba/htmldocs/Portability.html -%%PORTDOCS%%share/doc/samba/htmldocs/ProfileMgmt.html -%%PORTDOCS%%share/doc/samba/htmldocs/SWAT.html -%%PORTDOCS%%share/doc/samba/htmldocs/Samba-HOWTO-Collection.html -%%PORTDOCS%%share/doc/samba/htmldocs/SambaHA.html -%%PORTDOCS%%share/doc/samba/htmldocs/ServerType.html -%%PORTDOCS%%share/doc/samba/htmldocs/StandAloneServer.html -%%PORTDOCS%%share/doc/samba/htmldocs/bugreport.html -%%PORTDOCS%%share/doc/samba/htmldocs/compiling.html -%%PORTDOCS%%share/doc/samba/htmldocs/diagnosis.html -%%PORTDOCS%%share/doc/samba/htmldocs/domain-member.html -%%PORTDOCS%%share/doc/samba/htmldocs/editreg.1.html -%%PORTDOCS%%share/doc/samba/htmldocs/findsmb.1.html -%%PORTDOCS%%share/doc/samba/htmldocs/groupmapping.html -%%PORTDOCS%%share/doc/samba/htmldocs/index.html -%%PORTDOCS%%share/doc/samba/htmldocs/ix01.html -%%PORTDOCS%%share/doc/samba/htmldocs/install.html -%%PORTDOCS%%share/doc/samba/htmldocs/integrate-ms-networks.html -%%PORTDOCS%%share/doc/samba/htmldocs/introduction.html -%%PORTDOCS%%share/doc/samba/htmldocs/locking.html -%%PORTDOCS%%share/doc/samba/htmldocs/lmhosts.5.html -%%PORTDOCS%%share/doc/samba/htmldocs/migration.html -%%PORTDOCS%%share/doc/samba/htmldocs/msdfs.html -%%PORTDOCS%%share/doc/samba/htmldocs/net.8.html -%%PORTDOCS%%share/doc/samba/htmldocs/nmbd.8.html -%%PORTDOCS%%share/doc/samba/htmldocs/nmblookup.1.html -%%PORTDOCS%%share/doc/samba/htmldocs/ntlm_auth.1.html -%%PORTDOCS%%share/doc/samba/htmldocs/optional.html -%%PORTDOCS%%share/doc/samba/htmldocs/pam.html -%%PORTDOCS%%share/doc/samba/htmldocs/passdb.html -%%PORTDOCS%%share/doc/samba/htmldocs/pdbedit.8.html -%%PORTDOCS%%share/doc/samba/htmldocs/printing.html -%%PORTDOCS%%share/doc/samba/htmldocs/problems.html -%%PORTDOCS%%share/doc/samba/htmldocs/profiles.1.html -%%PORTDOCS%%share/doc/samba/htmldocs/rpcclient.1.html -%%PORTDOCS%%share/doc/samba/htmldocs/samba.7.html -%%PORTDOCS%%share/doc/samba/htmldocs/samba-bdc.html -%%PORTDOCS%%share/doc/samba/htmldocs/samba-pdc.html -%%PORTDOCS%%share/doc/samba/htmldocs/securing-samba.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/smbcquotas.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/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/smbtree.1.html -%%PORTDOCS%%share/doc/samba/htmldocs/smbumount.8.html -%%PORTDOCS%%share/doc/samba/htmldocs/speed.html -%%PORTDOCS%%share/doc/samba/htmldocs/swat.8.html -%%PORTDOCS%%share/doc/samba/htmldocs/tdbbackup.8.html -%%PORTDOCS%%share/doc/samba/htmldocs/testparm.1.html -%%PORTDOCS%%share/doc/samba/htmldocs/testprns.1.html -%%PORTDOCS%%share/doc/samba/htmldocs/troubleshooting.html -%%PORTDOCS%%share/doc/samba/htmldocs/type.html -%%PORTDOCS%%share/doc/samba/htmldocs/unicode.html -%%PORTDOCS%%share/doc/samba/htmldocs/upgrading-to-3.0.html -%%PORTDOCS%%share/doc/samba/htmldocs/VFS.html -%%PORTDOCS%%share/doc/samba/htmldocs/vfstest.1.html -%%PORTDOCS%%share/doc/samba/htmldocs/wbinfo.1.html -%%PORTDOCS%%share/doc/samba/htmldocs/winbind.html -%%PORTDOCS%%share/doc/samba/htmldocs/winbindd.8.html -%%PORTDOCS%%share/doc/samba/textdocs/README.NOW -%%PORTDOCS%%share/doc/samba/textdocs/README.jis -share/examples/samba/README -share/examples/samba/VFS/.cvsignore -share/examples/samba/VFS/Makefile.in -share/examples/samba/VFS/README -share/examples/samba/VFS/autogen.sh -share/examples/samba/VFS/configure.in -share/examples/samba/VFS/install-sh -share/examples/samba/VFS/skel_opaque.c -share/examples/samba/VFS/skel_transparent.c -share/examples/samba/LDAP/README -share/examples/samba/LDAP/convertSambaAccount -share/examples/samba/LDAP/export_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/LDAP/samba-schema-netscapeds4.x -share/examples/samba/LDAP/samba-schema-netscapeds5.x -share/examples/samba/LDAP/samba-schema.IBMSecureWay -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/auth/Makefile -share/examples/samba/auth/auth_skel.c -share/examples/samba/autofs/auto.a -share/examples/samba/dce-dfs/README -share/examples/samba/dce-dfs/smb.conf -share/examples/samba/genlogon/genlogon.pl -share/examples/samba/libsmbclient/Makefile -share/examples/samba/libsmbclient/README -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/ntlogon/README -share/examples/samba/ntlogon/ntlogon.conf -share/examples/samba/ntlogon/ntlogon.py -share/examples/samba/pdb/mysql/mysql.dump -share/examples/samba/pdb/mysql/smb.conf -share/examples/samba/pdb/Makefile -share/examples/samba/pdb/README -share/examples/samba/pdb/sambapdb.dtd -share/examples/samba/pdb/pdb_test.c -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/prtpub.c -share/examples/samba/printing/readme.prtpub -share/examples/samba/printing/smbprint -share/examples/samba/printing/smbprint-new.sh -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/Samba-Developers-Guide.html -share/swat/help/AccessControls.html -share/swat/help/AdvancedNetworkManagement.html -share/swat/help/Appendixes.html -share/swat/help/Backup.html -share/swat/help/CUPS-printing.html -share/swat/help/ClientConfig.html -share/swat/help/DNSDHCP.html -share/swat/help/FastStart.html -share/swat/help/Further-Resources.html -share/swat/help/InterdomainTrusts.html -share/swat/help/IntroSMB.html -share/swat/help/NT4Migration.html -share/swat/help/NetworkBrowsing.html -share/swat/help/Other-Clients.html -share/swat/help/PolicyMgmt.html -share/swat/help/Portability.html -share/swat/help/ProfileMgmt.html -share/swat/help/SWAT.html -share/swat/help/Samba-HOWTO-Collection.html -share/swat/help/SambaHA.html -share/swat/help/ServerType.html -share/swat/help/StandAloneServer.html -share/swat/help/VFS.html -share/swat/help/bugreport.html -share/swat/help/compiling.html -share/swat/help/diagnosis.html -share/swat/help/domain-member.html -share/swat/help/editreg.1.html -share/swat/help/findsmb.1.html -share/swat/help/groupmapping.html -share/swat/help/index.html -share/swat/help/install.html -share/swat/help/integrate-ms-networks.html -share/swat/help/introduction.html -share/swat/help/ix01.html -share/swat/help/lmhosts.5.html -share/swat/help/locking.html -share/swat/help/msdfs.html -share/swat/help/migration.html -share/swat/help/net.8.html -share/swat/help/nmbd.8.html -share/swat/help/nmblookup.1.html -share/swat/help/ntlm_auth.1.html -share/swat/help/optional.html -share/swat/help/pam.html -share/swat/help/passdb.html -share/swat/help/pdbedit.8.html -share/swat/help/printing.html -share/swat/help/problems.html -share/swat/help/profiles.1.html -share/swat/help/rpcclient.1.html -share/swat/help/samba.7.html -share/swat/help/samba-bdc.html -share/swat/help/samba-pdc.html -share/swat/help/securing-samba.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/smbcquotas.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/smbsh.1.html -share/swat/help/smbspool.8.html -share/swat/help/smbstatus.1.html -share/swat/help/smbtar.1.html -share/swat/help/smbtree.1.html -share/swat/help/smbumount.8.html -share/swat/help/speed.html -share/swat/help/swat.8.html -share/swat/help/tdbbackup.8.html -share/swat/help/testparm.1.html -share/swat/help/testprns.1.html -share/swat/help/troubleshooting.html -share/swat/help/type.html -share/swat/help/unicode.html -share/swat/help/upgrading-to-3.0.html -share/swat/help/vfstest.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/images/wizard.gif -share/swat/include/footer.html -share/swat/include/header.html -share/swat/lang/ja/help/welcome.html -share/swat/lang/ja/images/globals.gif -share/swat/lang/ja/images/home.gif -share/swat/lang/ja/images/passwd.gif -share/swat/lang/ja/images/printers.gif -share/swat/lang/ja/images/samba.gif -share/swat/lang/ja/images/shares.gif -share/swat/lang/ja/images/status.gif -share/swat/lang/ja/images/viewconfig.gif -share/swat/lang/ja/include/footer.html -share/swat/lang/ja/include/header.html -share/swat/lang/ja/include/header.nocss.html -share/swat/lang/ja/include/header_css.html -share/swat/lang/tr/help/welcome.html -share/swat/lang/tr/images/globals.gif -share/swat/lang/tr/images/home.gif -share/swat/lang/tr/images/passwd.gif -share/swat/lang/tr/images/printers.gif -share/swat/lang/tr/images/samba.gif -share/swat/lang/tr/images/shares.gif -share/swat/lang/tr/images/status.gif -share/swat/lang/tr/images/viewconfig.gif -share/swat/lang/tr/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 etc/auth -@dirrm etc/charset -@dirrm etc/idmap -@dirrm etc/pdb -@dirrm etc/rpc -@dirrm etc/vfs -@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/lang/ja/include -@dirrm share/swat/lang/ja/images -@dirrm share/swat/lang/ja/help -@dirrm share/swat/lang/ja -@dirrm share/swat/lang/tr/include -@dirrm share/swat/lang/tr/images -@dirrm share/swat/lang/tr/help -@dirrm share/swat/lang/tr -@dirrm share/swat/lang -@dirrm share/swat -@dirrm share/examples/samba/LDAP -@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/pdb/mysql -@dirrm share/examples/samba/pdb -@dirrm share/examples/samba/printer-accounting -@dirrm share/examples/samba/ntlogon -@dirrm share/examples/samba/misc -@dirrm share/examples/samba/libsmbclient -@dirrm share/examples/samba/genlogon -@dirrm share/examples/samba/dce-dfs -@dirrm share/examples/samba/autofs -@dirrm share/examples/samba/auth -@dirrm share/examples/samba/appliance -@dirrm share/examples/samba/VFS -@dirrm share/examples/samba -%%PORTDOCS%%@dirrm share/doc/samba/Registry -%%PORTDOCS%%@dirrm share/doc/samba/textdocs -%%PORTDOCS%%@dirrm share/doc/samba/htmldocs -%%PORTDOCS%%@dirrm share/doc/samba/faq -%%PORTDOCS%%@dirrm share/doc/samba diff --git a/net/sdr/Makefile b/net/sdr/Makefile deleted file mode 100644 index d7943ba088b3..000000000000 --- a/net/sdr/Makefile +++ /dev/null @@ -1,27 +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 -COMMENT= Multicast Session Directory - -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 - -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-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/spread4/Makefile b/net/spread4/Makefile deleted file mode 100644 index fada5f96f318..000000000000 --- a/net/spread4/Makefile +++ /dev/null @@ -1,60 +0,0 @@ -# New ports collection makefile for: spread -# Date created: 11 June 2001 -# Whom: Anders Nordby <anders@fix.no> -# -# $FreeBSD$ -# - -PORTNAME= spread -PORTVERSION= 3.17.0 -PORTREVISION= 1 -CATEGORIES= net perl5 -MASTER_SITES= http://www.roughtrade.net/distfiles/ -DISTNAME= ${PORTNAME}-src-${PORTVERSION} - -MAINTAINER= joshua@roughtrade.net -COMMENT= The Spread Group Communication System, a network toolkit - -GNU_CONFIGURE= yes - -MAN1= spflooder.1 spmonitor.1 spread.1 sptuser.1 spuser.1 -MAN3= libsp.3 SP_connect.3 SP_disconnect.3 SP_equal_group_ids.3 SP_error.3 \ - SP_join.3 SP_leave.3 SP_multicast.3 SP_multigroup_multicast.3 \ - SP_multigroup_scat_multicast.3 SP_poll.3 SP_receive.3 \ - SP_scat_multicast.3 SP_scat_receive.3 - -USE_PERL5= yes -INSTALLS_SHLIB= yes -PKGMESSAGE= ${WRKSRC}/license.txt - -MAKE_ARGS+= PTHREAD_CFLAGS=${PTHREAD_CFLAGS} PTHREAD_LIBS=${PTHREAD_LIBS} - -.include <bsd.port.pre.mk> - -post-build: - (cd ${WRKSRC}/perl/Spread; ${PERL} Makefile.PL; ${MAKE}) - -pre-install: - ${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL - -post-install: - ${INSTALL_SCRIPT} ${FILESDIR}/spread.sh ${PREFIX}/etc/rc.d/spread.sh.sample - ${INSTALL_DATA} ${WRKSRC}/sp.h ${PREFIX}/include - ${INSTALL_DATA} ${WRKSRC}/sp_func.h ${PREFIX}/include - ${INSTALL_DATA} ${WRKSRC}/sp_events.h ${PREFIX}/include - ${INSTALL_DATA} ${WRKSRC}/sample.spread.conf ${PREFIX}/etc/spread.conf.sample - ${INSTALL_DATA} ${WRKSRC}/sample.spread.access_ip ${PREFIX}/etc/spread.access_ip.sample - (cd ${WRKSRC}/perl/Spread && ${MAKE} install) - ${GZIP_CMD} ${GZIP} ${LOCALBASE}/lib/perl5/${PERL_VERSION}/man/man3/Spread.3 -.if !defined(NOPORTDOCS) - ${INSTALL} -d -o root -g wheel -m 0755 ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/Readme.txt ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/license.txt ${DOCSDIR}/LICENSE - ${INSTALL} -d -o root -g wheel -m 0755 ${DOCSDIR}/perl - ${INSTALL_DATA} ${WRKSRC}/perl/Spread/README ${DOCSDIR}/perl - ${INSTALL_DATA} ${WRKSRC}/perl/Spread/test.pl ${DOCSDIR}/perl -.endif - @${CAT} ${PKGMESSAGE} - ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL - -.include <bsd.port.post.mk> diff --git a/net/spread4/distinfo b/net/spread4/distinfo deleted file mode 100644 index 7d7007f4bf86..000000000000 --- a/net/spread4/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (spread-src-3.17.0.tar.gz) = 77d927584e66cb09472f5e9a1613e274 diff --git a/net/spread4/files/patch-Makefile.in b/net/spread4/files/patch-Makefile.in deleted file mode 100644 index bf659c926b1c..000000000000 --- a/net/spread4/files/patch-Makefile.in +++ /dev/null @@ -1,96 +0,0 @@ ---- Makefile.in.orig Sat Sep 28 08:38:59 2002 -+++ Makefile.in Wed Nov 6 07:41:33 2002 -@@ -25,7 +25,7 @@ - #Rules: major -- inc for incompatible change - # : minor -- inc for bugfix or forward compatible change - --LIBVERSION=1.0 -+LIBVERSION=1 - - PATHS= - -@@ -34,7 +34,7 @@ - CFLAGS=@CFLAGS@ - CPPFLAGS=-I. -I$(srcdir) @CPPFLAGS@ $(PATHS) @DEFS@ - LDFLAGS=@LDFLAGS@ --LIBS=@LIBS@ -+LIBS=-L. @LIBS@ - THLDFLAGS=@THLDFLAGS@ - THLIBS=@THLIBS@ - AR=@AR@ -@@ -51,8 +51,10 @@ - PERL=@PERL@ - ENT=@ENT@ - EXEEXT=@EXEEXT@ -+SHLDSONAME=-Wl,-soname,libspread.so.$(LIBVERSION) -+TSHLDSONAME=-Wl,-soname,libtspread.so.$(LIBVERSION) - --TARGETS=spread$(EXEEXT) spuser$(EXEEXT) spflooder$(EXEEXT) spmonitor$(EXEEXT) sptuser${EXEEXT} @LIBSPSO@ @LIBTSPSO@ -+TARGETS=spread$(EXEEXT) spuser$(EXEEXT) spflooder$(EXEEXT) spmonitor$(EXEEXT) sptuser${EXEEXT} @LIBSPSO@ @LIBTSPSO@ libspread.a libtspread.a - - LIBSP_OBJS= alarm.o events.o memory.o sp.o - -@@ -123,8 +125,11 @@ - $(INSTALL) -m 0755 libspread.$(LIBVERSION).dylib $(DESTDIR)$(libdir)/libspread.$(LIBVERSION).dylib - (cd $(DESTDIR)$(libdir); $(SOFTLINK) libspread.$(LIBVERSION).dylib libspread.dylib) - --libspread.so: $(LIBSP_SHOBJS) -- $(SHLD) -o $@ $(LIBSP_SHOBJS) $(SHLDFLAGS) $(SHLIBS) -+libspread.so: $@.$(LIBVERSION) -+ $(SOFTLINK) $@.$(LIBVERSION) $@ -+ -+libspread.so.$(LIBVERSION): $(LIBSP_SHOBJS) -+ $(SHLD) -o $@ $(LIBSP_SHOBJS) $(SHLDSONAME) $(SHLDFLAGS) $(SHLIBS) - - install-libspread.so: libspread.so - $(INSTALL) -m 0755 libspread.so $(DESTDIR)$(libdir)/libspread.so.$(LIBVERSION) -@@ -142,8 +147,11 @@ - $(INSTALL) -m 0755 libtspread.$(LIBVERSION).dylib $(DESTDIR)$(libdir)/libtspread.$(LIBVERSION).dylib - (cd $(DESTDIR)$(libdir); $(SOFTLINK) libtspread.$(LIBVERSION).dylib libtspread.dylib) - --libtspread.so: $(LIBTSP_SHOBJS) -- $(SHLD) -o $@ $(LIBTSP_SHOBJS) $(SHLDFLAGS) $(SHLIBS) $(THLIBS) -+libtspread.so: $@.$(LIBVERSION) -+ $(SOFTLINK) $@.$(LIBVERSION) $@ -+ -+libtspread.so.$(LIBVERSION): $(LIBTSP_SHOBJS) -+ $(SHLD) -o $@ $(LIBTSP_SHOBJS) $(TSHLDSONAME) $(SHLDFLAGS) $(SHLIBS) $(THLIBS) - - install-libtspread.so: libtspread.so - $(INSTALL) -m 0755 libtspread.so $(DESTDIR)$(libdir)/libtspread.so.$(LIBVERSION) -@@ -152,17 +160,17 @@ - spread$(EXEEXT): $(SPREADOBJS) - $(LD) -o $@ $(SPREADOBJS) $(LDFLAGS) $(LIBS) - --spuser$(EXEEXT): libspread.a user.o -- $(LD) -o $@ user.o $(LDFLAGS) libspread.a $(LIBS) -+spuser$(EXEEXT): libspread.so user.o -+ $(LD) -o $@ user.o $(LDFLAGS) -lspread $(LIBS) - --spflooder$(EXEEXT): libspread.a flooder.o -- $(LD) -o $@ flooder.o $(LDFLAGS) libspread.a $(LIBS) -+spflooder$(EXEEXT): libspread.so flooder.o -+ $(LD) -o $@ flooder.o $(LDFLAGS) -lspread $(LIBS) - - spmonitor$(EXEEXT): $(MONITOROBJS) - $(LD) -o $@ $(MONITOROBJS) $(LDFLAGS) $(LIBS) - --sptuser$(EXEEXT): user.to libtspread.a -- $(LD) $(THLDFLAGS) -o $@ user.to libtspread.a $(LDFLAGS) $(LIBS) $(THLIBS) -+sptuser$(EXEEXT): user.to libtspread.so -+ $(LD) $(THLDFLAGS) -o $@ user.to -ltspread $(LDFLAGS) $(LIBS) $(THLIBS) - - spsimple_user$(EXEEXT): simple_user.o libspread.a - $(LD) -o $@ simple_user.o $(LDFLAGS) libspread.a $(LIBS) -@@ -234,11 +242,6 @@ - done - if [ ! -d $(DESTDIR)$(sysconfdir) ]; then \ - $(buildtoolsdir)/mkinstalldirs $(DESTDIR)$(sysconfdir); \ -- fi -- if [ ! -f $(DESTDIR)$(sysconfdir)/spread.conf ]; then \ -- $(INSTALL) -m 644 $(srcdir)/sample.spread.conf $(DESTDIR)$(sysconfdir)/spread.conf; \ -- else \ -- echo "$(DESTDIR)$(sysconfdir)/spread.conf already exists, install will not overwrite"; \ - fi - - uninstallall: uninstall diff --git a/net/spread4/files/patch-auth-ip.c b/net/spread4/files/patch-auth-ip.c deleted file mode 100644 index 4c49b4278833..000000000000 --- a/net/spread4/files/patch-auth-ip.c +++ /dev/null @@ -1,13 +0,0 @@ ---- auth-ip.c Sun Sep 22 12:56:52 2002 -+++ auth-ip.c Wed Nov 6 02:39:28 2002 -@@ -94,8 +94,8 @@ - if (NULL != (fp = fopen("./spread.access_ip", "r")) ) - Alarm( PRINT, "ip_init: using file: ./spread.access_ip\n"); - if (fp == NULL) -- if (NULL != (fp = fopen("/etc/spread.access_ip", "r")) ) -- Alarm( PRINT, "ip_init: using file: /etc/spread.access_ip\n"); -+ if (NULL != (fp = fopen(SPREAD_ETCDIR "/spread.access_ip", "r")) ) -+ Alarm( PRINT, "ip_init: using file: " SPREAD_ETCDIR "/spread.access_ip\n"); - if (fp == NULL) - { - Alarm( PRINT, "ip_init: IP access control file not found.\nIf you are using IP based access controls, please make sure the file exists.\n"); diff --git a/net/spread4/files/patch-auth-pword.c b/net/spread4/files/patch-auth-pword.c deleted file mode 100644 index 09a8e44cf372..000000000000 --- a/net/spread4/files/patch-auth-pword.c +++ /dev/null @@ -1,13 +0,0 @@ ---- auth-pword.c Sun Sep 22 12:56:52 2002 -+++ auth-pword.c Wed Nov 6 02:40:23 2002 -@@ -122,8 +122,8 @@ - if (NULL != (fp = fopen("./spread.access_pword", "r")) ) - Alarm( PRINT, "pword_init: using file: ./spread.access_pword\n"); - if (fp == NULL) -- if (NULL != (fp = fopen("/etc/spread.access_pword", "r")) ) -- Alarm( PRINT, "pword_init: using file: /etc/spread.access_pword\n"); -+ if (NULL != (fp = fopen(SPREAD_ETCDIR "/spread.access_pword", "r")) ) -+ Alarm( PRINT, "pword_init: using file: " SPREAD_ETCDIR "/spread.access_pword\n"); - if (fp == NULL) - Alarm( EXIT, "pword_init: error opening config file %s in any of the standard locations. Please make sure the file exists\n", file_name); - diff --git a/net/spread4/files/patch-spread.c b/net/spread4/files/patch-spread.c deleted file mode 100644 index 1ab2708b1f90..000000000000 --- a/net/spread4/files/patch-spread.c +++ /dev/null @@ -1,40 +0,0 @@ ---- spread.c Sun Nov 10 00:17:59 2002 -+++ spread.c Sun Nov 10 00:18:42 2002 -@@ -65,6 +65,7 @@ - - static void Invalid_privilege_decrease(char *user, char *group); - static void Usage(int argc, char *argv[]); -+static void writepidfile(); - - /* auth-null.c: */ - void null_init(void); -@@ -144,6 +145,8 @@ - - #endif /* ARCH_PC_WIN95 */ - -+ writepidfile(); -+ - /* initialize each valid authentication protocol */ - null_init(); - ip_init(); -@@ -193,6 +196,20 @@ - E_handle_events(); - - return 0; -+} -+ -+static void -+writepidfile() -+{ -+ char pidbuf[11]; -+ int pidfd; -+ -+ if ((pidfd = open(_PATH_SPREAD_PIDDIR "/spread.pid", O_RDWR | O_CREAT, 0644)) == -1) -+ Alarm( EXIT, "Spread: couldn't open pidfile for writing" ); -+ -+ snprintf(pidbuf, sizeof(pidbuf), "%ld\n", (long)getpid()); -+ write(pidfd, pidbuf, strlen(pidbuf)); -+ close(pidfd); - } - - static void Print_help(void) diff --git a/net/spread4/files/spread.sh b/net/spread4/files/spread.sh deleted file mode 100644 index ebeb5adf697f..000000000000 --- a/net/spread4/files/spread.sh +++ /dev/null @@ -1,36 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ - -if ! prefix=$(expr $0 : "\(/.*\)/etc/rc\.d/$(basename $0)\$"); then - echo "$0: Cannot determine the prefix" >&2 - exit 1 -fi -spread=${prefix}/sbin/spread -pidfile=/var/run/spread.pid -out=/var/log/spread.out -daemon=/usr/sbin/daemon - -case "$1" in -start) - if [ -x ${spread} ]; then - echo -n ' spread' - ${daemon} -c ${spread} >${out} 2>&1 <&- - fi - ;; -stop) - if [ -f ${pidfile} ]; then - kill `cat ${pidfile}` - echo -n ' spread' - rm ${pidfile} - else - echo ' spread: not running' - fi - ;; -*) - echo "Usage: `basename $0` {start|stop}" >&2 - exit 64 - ;; -esac - -exit 0 diff --git a/net/spread4/pkg-descr b/net/spread4/pkg-descr deleted file mode 100644 index 43fac02d21a6..000000000000 --- a/net/spread4/pkg-descr +++ /dev/null @@ -1,17 +0,0 @@ -Copyright (c) 1993-2002 Spread Concepts LLC. All rights reserved. -This product uses software developed by Spread Concepts LLC for use in the -Spread toolkit. For more information about Spread see http://www.spread.org/ - -Spread is a toolkit and daemon that provide multicast and group communications -support to applications across local and wide area networks. Spread is designed -to make it easy to write groupware, networked multimedia, reliable server, and -collaborative work applications. - -Spread consists of a library that user applications are linked with, a binary -daemon which runs on each computer that is part of the processor group, and -various utility and demonstration programs. - -WWW: http://www.spread.org/ - -- Joshua -joshua@roughtrade.net diff --git a/net/spread4/pkg-install b/net/spread4/pkg-install deleted file mode 100644 index fbbf68fd7932..000000000000 --- a/net/spread4/pkg-install +++ /dev/null @@ -1,51 +0,0 @@ -#!/bin/sh - -PATH=/sbin:/bin:/usr/sbin:/usr/bin -USER=spread -USER_HOMEDIR=/nonexistent -GROUP=spread -RUNDIR=/var/run/spread -NOLOGIN=/sbin/nologin - -case $2 in -PRE-INSTALL) - if pw group show "${GROUP}" 2>/dev/null; then - echo "You already have a group \"${GROUP}\", so I will use it." - else - if pw groupadd ${GROUP}; then - echo "Added group \"${GROUP}\"." - else - echo "Adding group \"${GROUP}\" failed..." - exit 1 - fi - fi - - if pw user show "${USER}" 2>/dev/null; then - echo "You already have a user \"${USER}\", so I will use it." - if pw usermod ${USER} -d ${USER_HOMEDIR} - then - echo "Changed home directory of \"${USER}\" to \"${USER_HOMEDIR}\"." - else - echo "Changing home directory of \"${USER}\" to \"${USER_HOMEDIR}\" failed." - exit 1 - fi - else - if pw useradd ${USER} -g ${GROUP} -h - \ - -d ${USER_HOMEDIR} -s ${NOLOGIN} -c "Spread User" - then - echo "Added user \"${USER}\"." - else - echo "Adding user \"${USER}\" failed..." - exit 1 - fi - fi - ;; -POST-INSTALL) - if [ ! -d ${RUNDIR} ]; then - install -d -o ${USER} -g ${GROUP} -m 0750 ${RUNDIR} - fi - ;; -*) - echo 'unexpect argument to pkg-install' - ;; -esac diff --git a/net/spread4/pkg-plist b/net/spread4/pkg-plist deleted file mode 100644 index b7ea631d841f..000000000000 --- a/net/spread4/pkg-plist +++ /dev/null @@ -1,31 +0,0 @@ -bin/spflooder -bin/spmonitor -bin/sptuser -bin/spuser -etc/rc.d/spread.sh.sample -etc/spread.access_ip.sample -etc/spread.conf.sample -include/sp.h -include/sp_events.h -include/sp_func.h -lib/libspread.a -lib/libspread.so -lib/libspread.so.1 -lib/libtspread.a -lib/libtspread.so -lib/libtspread.so.1 -lib/perl5/%%PERL_VERSION%%/man/man3/Spread.3.gz -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Spread.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Spread/.packlist -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Spread/Spread.bs -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Spread/Spread.so -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Spread/autosplit.ix -sbin/spread -%%PORTDOCS%%share/doc/spread/perl/README -%%PORTDOCS%%share/doc/spread/perl/test.pl -%%PORTDOCS%%share/doc/spread/LICENSE -%%PORTDOCS%%share/doc/spread/Readme.txt -@unexec rmdir /var/run/spread 2>/dev/null || true -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Spread 2>/dev/null || true -%%PORTDOCS%%@dirrm share/doc/spread/perl -%%PORTDOCS%%@dirrm share/doc/spread diff --git a/net/tcptraceroute-devel/Makefile b/net/tcptraceroute-devel/Makefile deleted file mode 100644 index ae2cdcd0fb1e..000000000000 --- a/net/tcptraceroute-devel/Makefile +++ /dev/null @@ -1,23 +0,0 @@ -# New ports collection makefile for: tcptraceroute -# Date created: 21 March 2002 -# Whom: jeff@cetlink.net -# -# $FreeBSD$ -# - -PORTNAME= tcptraceroute -PORTVERSION= 1.4 -CATEGORIES= net -MASTER_SITES= http://michael.toren.net/code/tcptraceroute/ - -MAINTAINER= corecode@corecode.ath.cx -COMMENT= A traceroute implementation using TCP packets - -BUILD_DEPENDS= ${LOCALBASE}/lib/libnet.a:${PORTSDIR}/net/libnet - -MAN8= tcptraceroute.8 - -post-install: - @${CHMOD} u+s ${PREFIX}/sbin/tcptraceroute - -.include <bsd.port.mk> diff --git a/net/tcptraceroute-devel/distinfo b/net/tcptraceroute-devel/distinfo deleted file mode 100644 index c43c88c63a52..000000000000 --- a/net/tcptraceroute-devel/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (tcptraceroute-1.4.tar.gz) = 35c5e7d960f2b073db0109e0004e134e diff --git a/net/tcptraceroute-devel/files/patch-Makefile b/net/tcptraceroute-devel/files/patch-Makefile deleted file mode 100644 index 7abce3a75413..000000000000 --- a/net/tcptraceroute-devel/files/patch-Makefile +++ /dev/null @@ -1,36 +0,0 @@ ---- Makefile.orig Mon May 20 03:11:38 2002 -+++ Makefile Tue Aug 20 01:49:27 2002 -@@ -3,20 +3,27 @@ - # tcptraceroute -- A traceroute implementation using TCP packets - # Copyright (c) 2001, 2002 Michael C. Toren <mct@toren.net> - --CC = gcc --CFLAGS = -O2 -Wall --DESTDIR=/usr/local/bin -+CC?= cc -+CFLAGS?= -O -pipe -Wall -+LNETINC= -I/usr/local/include -+LNETLIB= -L/usr/local/lib -+ -+BINDIR= ${PREFIX}/sbin -+MANDIR= ${PREFIX}/man -+ -+all: tcptraceroute - - tcptraceroute: tcptraceroute.c -- $(CC) $(CFLAGS) `libnet-config --defines` \ -+ $(CC) $(CFLAGS) `libnet-config --defines` $(LNETINC) \ - -o tcptraceroute tcptraceroute.c \ -- `libnet-config --libs` -lpcap -+ $(LNETLIB) `libnet-config --libs` -lpcap - - static: - $(MAKE) tcptraceroute CFLAGS="$(CFLAGS) -static" - - install: tcptraceroute -- install -D tcptraceroute $(DESTDIR)/tcptraceroute -+ install -c -s tcptraceroute $(BINDIR)/tcptraceroute -+ install -c -m 444 tcptraceroute.8 $(MANDIR)/man8/tcptraceroute.8 - - distrib: clean changelog man - diff --git a/net/tcptraceroute-devel/pkg-descr b/net/tcptraceroute-devel/pkg-descr deleted file mode 100644 index b64b1179851b..000000000000 --- a/net/tcptraceroute-devel/pkg-descr +++ /dev/null @@ -1,20 +0,0 @@ -tcptraceroute is a traceroute implementation using TCP packets. - -The more traditional traceroute(8) sends out either UDP or ICMP ECHO -packets with a TTL of one, and increments the TTL until the destination -has been reached. By printing the gateways that generate ICMP time -exceeded messages along the way, it is able to determine the path -packets are taking to reach the destination. - -The problem is that with the widespread use of firewalls on the modern -Internet, many of the packets that traceroute(8) sends out end up being -filtered, making it impossible to completely trace the path to the -destination. However, in many cases, these firewalls will permit inbound -TCP packets to specific ports that hosts sitting behind the firewall are -listening for connections on. By sending out TCP SYN packets instead of -UDP or ICMP ECHO packets, tcptraceroute is able to bypass the most -common firewall filters. - -WWW: http://michael.toren.net/code/tcptraceroute/ - -- Simon 'corecode' Schubert diff --git a/net/tcptraceroute-devel/pkg-plist b/net/tcptraceroute-devel/pkg-plist deleted file mode 100644 index cbdc4f42fa33..000000000000 --- a/net/tcptraceroute-devel/pkg-plist +++ /dev/null @@ -1,2 +0,0 @@ -@comment $FreeBSD$ -sbin/tcptraceroute diff --git a/net/trafshow3/Makefile b/net/trafshow3/Makefile deleted file mode 100644 index d5dd5b66d62b..000000000000 --- a/net/trafshow3/Makefile +++ /dev/null @@ -1,47 +0,0 @@ -# New ports collection makefile for: trafshow -# Date created: 25 September 1996 -# Whom: igor@zynaps.ru -# -# $FreeBSD$ -# - -PORTNAME= trafshow -PORTVERSION= 3.1 -PORTREVISION= 3 -CATEGORIES= net -MASTER_SITES= ftp://ftp.sasknow.com/pub/trafshow/ \ - ftp://ftp.nsk.su/pub/RinetSoftware/ -EXTRACT_SUFX= .tgz - -MAINTAINER= ryan@sasknow.com -COMMENT= Full screen visualization of network traffic - -.include <bsd.port.pre.mk> - -.if defined(WITH_TRAFSHOW_SLANG) || \ - (exists(${LOCALBASE}/lib/libslang.a) && !defined(WITHOUT_TRAFSHOW_SLANG)) -LIB_DEPENDS= slang.1:${PORTSDIR}/devel/libslang -.else -.if ${OSVERSION} < 400010 -LIB_DEPENDS= ncurses.5:${PORTSDIR}/devel/ncurses -.endif -.endif - -USE_REINPLACE= yes -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: - @${REINPLACE_CMD} -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/files/patch-ah b/net/trafshow3/files/patch-ah deleted file mode 100644 index c8c69ae713c9..000000000000 --- a/net/trafshow3/files/patch-ah +++ /dev/null @@ -1,119 +0,0 @@ ---- display.c.orig Sun Aug 23 21:51:48 1998 -+++ display.c Fri Dec 6 12:17:55 2002 -@@ -54,6 +54,7 @@ - static int l_nflag, l_eflag; - static int n_entries; - static int err_pos; -+extern struct t_entry t_mask; /* traffic mask */ - - void - init_display(reinit) -@@ -282,6 +284,13 @@ - packets_total++; - bytes_total += e->bytes; - j = page * page_size; -+ -+ e->src.s_addr &= t_mask.src.s_addr; -+ e->dst.s_addr &= t_mask.dst.s_addr; -+ e->sport &= t_mask.sport; -+ e->dport &= t_mask.dport; -+ e->proto &= t_mask.proto; -+ - for (i = 0; i < n_entry; i++) { - if (memcmp(&e->eh, &entries[i].eh, sizeof(e->eh)) == 0 && - e->src.s_addr == entries[i].src.s_addr && ---- trafshow.c.orig Fri Aug 28 00:15:57 1998 -+++ trafshow.c Fri Dec 6 12:34:09 2002 -@@ -48,6 +48,7 @@ - int pflag = 0; /* don't put the interface into promiscuous mode */ - int kflag = 1; /* disable keyboard input checking */ - int eflag = 0; /* show ethernet traffic rather than ip */ -+struct t_entry t_mask; /* traffic mask */ - - /* global variables */ - char *program_name; /* myself */ -@@ -78,6 +79,12 @@ - extern int abort_on_misalignment(); - extern pcap_handler lookup_if(); - -+ t_mask.src.s_addr = 0xffffffff; /* all bits valid */ -+ t_mask.dst.s_addr = 0xffffffff; /* all bits valid */ -+ t_mask.sport = 0xffff; /* all bits valid */ -+ t_mask.dport = 0xffff; /* all bits valid */ -+ t_mask.proto = 0xffff; /* all bits valid */ -+ - cnt = -1; - device_name = NULL; - infile = NULL; -@@ -94,7 +87,7 @@ - - if (abort_on_misalignment(ebuf) < 0) error(0, ebuf); - -- while ((op = getopt(argc, argv, "c:CefF:i:knNOpr:t:vh?")) != EOF) -+ while ((op = getopt(argc, argv, "c:CefF:i:kmnNOpr:t:vh?")) != EOF) - switch (op) { - case 'C': - #ifdef HAVE_SLCURSES -@@ -114,6 +121,40 @@ - break; - case 'k': - kflag = 0; -+ break; -+ case 'm': -+ t_mask.src.s_addr = 0; -+ t_mask.dst.s_addr = 0; -+ t_mask.sport = 0; -+ t_mask.dport = 0; -+ t_mask.proto = 0; -+ for (;optind + 1 <= argc;) { -+ char *s = argv[optind]; -+ u_int32_t arg = 0xffffffff; -+ int save=optind; -+ -+ optind++; -+ if (optind + 1 <= argc && -+ isdigit(*(argv[optind])) ) { -+ arg = strtoul(argv[optind], NULL, 0); -+ optind++; -+ } -+ -+ if (!strcmp(s, "src-ip")) -+ t_mask.src.s_addr = htonl(arg); -+ else if (!strcmp(s, "dst-ip")) -+ t_mask.dst.s_addr = htonl(arg); -+ else if (!strcmp(s, "src-port")) -+ t_mask.sport = htons((u_short)(arg)); -+ else if (!strcmp(s, "dst-port")) -+ t_mask.dport = htons((u_short)(arg)); -+ else if (!strcmp(s, "proto")) -+ t_mask.proto = arg; -+ else { -+ optind = save; -+ break; -+ } -+ } - break; - case 'n': - ++nflag; ---- trafshow.1.orig Fri Aug 28 09:37:38 1998 -+++ trafshow.1 Tue Apr 15 22:32:21 2003 -@@ -42,6 +42,16 @@ - .B \-k - Disable input keyboard checking. It is intended to avoid loss of packets. - .TP -+.B \-m -+[src-ip M] [dst-ip M] [src-port M] [dst-port M] [proto M] -+.br -+Mask the specified field with mask M (which should be specified -+as an hex number e.g. 0xffff0000) before further processing -+of the packet. This allows to aggregate traffic in the display -+to ease analysis. -+.br -+.The masks for all field not specified will be set to 0. -+.TP - .B \-n - Don't convert host addresses and port numbers to names. - .TP - - - diff --git a/net/trafshow3/files/patch-configure b/net/trafshow3/files/patch-configure deleted file mode 100644 index 8510310f4a13..000000000000 --- a/net/trafshow3/files/patch-configure +++ /dev/null @@ -1,11 +0,0 @@ ---- configure.orig Sat Jan 5 17:07:53 2002 -+++ configure Sat Jan 5 17:07:53 2002 -@@ -874,7 +874,7 @@ - echo $ac_n "(cached) $ac_c" 1>&6 - else - ac_cv_lbl_gcc_vers=`$CC -v 2>&1 | \ -- sed -n -e '$s/.* //' -e '$s/\..*//p'` -+ sed -n -e '$s/^.*version //' -e '$s/\..*//p'` - fi - - echo "$ac_t""$ac_cv_lbl_gcc_vers" 1>&6 diff --git a/net/trafshow3/pkg-descr b/net/trafshow3/pkg-descr deleted file mode 100644 index c3121121390e..000000000000 --- a/net/trafshow3/pkg-descr +++ /dev/null @@ -1,8 +0,0 @@ -TrafShow continuously displays the information regarding packet -traffic on the configured network interface that matches the boolean -expression. It periodically sorts and updates this information. It -may be useful for locating suspicious network traffic on the net. - -WWW: http://soft.risp.ru/trafshow/index_en.shtml - -- Ryan Thompson <ryan@sasknow.com> 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 d5dd5b66d62b..000000000000 --- a/net/trafshow4/Makefile +++ /dev/null @@ -1,47 +0,0 @@ -# New ports collection makefile for: trafshow -# Date created: 25 September 1996 -# Whom: igor@zynaps.ru -# -# $FreeBSD$ -# - -PORTNAME= trafshow -PORTVERSION= 3.1 -PORTREVISION= 3 -CATEGORIES= net -MASTER_SITES= ftp://ftp.sasknow.com/pub/trafshow/ \ - ftp://ftp.nsk.su/pub/RinetSoftware/ -EXTRACT_SUFX= .tgz - -MAINTAINER= ryan@sasknow.com -COMMENT= Full screen visualization of network traffic - -.include <bsd.port.pre.mk> - -.if defined(WITH_TRAFSHOW_SLANG) || \ - (exists(${LOCALBASE}/lib/libslang.a) && !defined(WITHOUT_TRAFSHOW_SLANG)) -LIB_DEPENDS= slang.1:${PORTSDIR}/devel/libslang -.else -.if ${OSVERSION} < 400010 -LIB_DEPENDS= ncurses.5:${PORTSDIR}/devel/ncurses -.endif -.endif - -USE_REINPLACE= yes -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: - @${REINPLACE_CMD} -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/files/patch-ah b/net/trafshow4/files/patch-ah deleted file mode 100644 index c8c69ae713c9..000000000000 --- a/net/trafshow4/files/patch-ah +++ /dev/null @@ -1,119 +0,0 @@ ---- display.c.orig Sun Aug 23 21:51:48 1998 -+++ display.c Fri Dec 6 12:17:55 2002 -@@ -54,6 +54,7 @@ - static int l_nflag, l_eflag; - static int n_entries; - static int err_pos; -+extern struct t_entry t_mask; /* traffic mask */ - - void - init_display(reinit) -@@ -282,6 +284,13 @@ - packets_total++; - bytes_total += e->bytes; - j = page * page_size; -+ -+ e->src.s_addr &= t_mask.src.s_addr; -+ e->dst.s_addr &= t_mask.dst.s_addr; -+ e->sport &= t_mask.sport; -+ e->dport &= t_mask.dport; -+ e->proto &= t_mask.proto; -+ - for (i = 0; i < n_entry; i++) { - if (memcmp(&e->eh, &entries[i].eh, sizeof(e->eh)) == 0 && - e->src.s_addr == entries[i].src.s_addr && ---- trafshow.c.orig Fri Aug 28 00:15:57 1998 -+++ trafshow.c Fri Dec 6 12:34:09 2002 -@@ -48,6 +48,7 @@ - int pflag = 0; /* don't put the interface into promiscuous mode */ - int kflag = 1; /* disable keyboard input checking */ - int eflag = 0; /* show ethernet traffic rather than ip */ -+struct t_entry t_mask; /* traffic mask */ - - /* global variables */ - char *program_name; /* myself */ -@@ -78,6 +79,12 @@ - extern int abort_on_misalignment(); - extern pcap_handler lookup_if(); - -+ t_mask.src.s_addr = 0xffffffff; /* all bits valid */ -+ t_mask.dst.s_addr = 0xffffffff; /* all bits valid */ -+ t_mask.sport = 0xffff; /* all bits valid */ -+ t_mask.dport = 0xffff; /* all bits valid */ -+ t_mask.proto = 0xffff; /* all bits valid */ -+ - cnt = -1; - device_name = NULL; - infile = NULL; -@@ -94,7 +87,7 @@ - - if (abort_on_misalignment(ebuf) < 0) error(0, ebuf); - -- while ((op = getopt(argc, argv, "c:CefF:i:knNOpr:t:vh?")) != EOF) -+ while ((op = getopt(argc, argv, "c:CefF:i:kmnNOpr:t:vh?")) != EOF) - switch (op) { - case 'C': - #ifdef HAVE_SLCURSES -@@ -114,6 +121,40 @@ - break; - case 'k': - kflag = 0; -+ break; -+ case 'm': -+ t_mask.src.s_addr = 0; -+ t_mask.dst.s_addr = 0; -+ t_mask.sport = 0; -+ t_mask.dport = 0; -+ t_mask.proto = 0; -+ for (;optind + 1 <= argc;) { -+ char *s = argv[optind]; -+ u_int32_t arg = 0xffffffff; -+ int save=optind; -+ -+ optind++; -+ if (optind + 1 <= argc && -+ isdigit(*(argv[optind])) ) { -+ arg = strtoul(argv[optind], NULL, 0); -+ optind++; -+ } -+ -+ if (!strcmp(s, "src-ip")) -+ t_mask.src.s_addr = htonl(arg); -+ else if (!strcmp(s, "dst-ip")) -+ t_mask.dst.s_addr = htonl(arg); -+ else if (!strcmp(s, "src-port")) -+ t_mask.sport = htons((u_short)(arg)); -+ else if (!strcmp(s, "dst-port")) -+ t_mask.dport = htons((u_short)(arg)); -+ else if (!strcmp(s, "proto")) -+ t_mask.proto = arg; -+ else { -+ optind = save; -+ break; -+ } -+ } - break; - case 'n': - ++nflag; ---- trafshow.1.orig Fri Aug 28 09:37:38 1998 -+++ trafshow.1 Tue Apr 15 22:32:21 2003 -@@ -42,6 +42,16 @@ - .B \-k - Disable input keyboard checking. It is intended to avoid loss of packets. - .TP -+.B \-m -+[src-ip M] [dst-ip M] [src-port M] [dst-port M] [proto M] -+.br -+Mask the specified field with mask M (which should be specified -+as an hex number e.g. 0xffff0000) before further processing -+of the packet. This allows to aggregate traffic in the display -+to ease analysis. -+.br -+.The masks for all field not specified will be set to 0. -+.TP - .B \-n - Don't convert host addresses and port numbers to names. - .TP - - - diff --git a/net/trafshow4/files/patch-configure b/net/trafshow4/files/patch-configure deleted file mode 100644 index 8510310f4a13..000000000000 --- a/net/trafshow4/files/patch-configure +++ /dev/null @@ -1,11 +0,0 @@ ---- configure.orig Sat Jan 5 17:07:53 2002 -+++ configure Sat Jan 5 17:07:53 2002 -@@ -874,7 +874,7 @@ - echo $ac_n "(cached) $ac_c" 1>&6 - else - ac_cv_lbl_gcc_vers=`$CC -v 2>&1 | \ -- sed -n -e '$s/.* //' -e '$s/\..*//p'` -+ sed -n -e '$s/^.*version //' -e '$s/\..*//p'` - fi - - echo "$ac_t""$ac_cv_lbl_gcc_vers" 1>&6 diff --git a/net/trafshow4/pkg-descr b/net/trafshow4/pkg-descr deleted file mode 100644 index c3121121390e..000000000000 --- a/net/trafshow4/pkg-descr +++ /dev/null @@ -1,8 +0,0 @@ -TrafShow continuously displays the information regarding packet -traffic on the configured network interface that matches the boolean -expression. It periodically sorts and updates this information. It -may be useful for locating suspicious network traffic on the net. - -WWW: http://soft.risp.ru/trafshow/index_en.shtml - -- Ryan Thompson <ryan@sasknow.com> 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/tshark/Makefile b/net/tshark/Makefile deleted file mode 100644 index 64e7f0216b31..000000000000 --- a/net/tshark/Makefile +++ /dev/null @@ -1,18 +0,0 @@ -# New ports collection makefile for: tethereal -# Date created: 4 February 2002 -# Whom: Bill Fumerola <billf@mu.org> -# A slave of ports collection makefile for: ethereal -# Date created: 10 August 1998 -# Whom: Bill Fumerola <billf@chc-chimes.com> -# -# $FreeBSD$ -# - -PKGNAMEPREFIX= t -CATEGORIES= net ipv6 - -MASTERDIR= ${.CURDIR}/../ethereal - -WITHOUT_X11= yes - -.include "${MASTERDIR}/Makefile" diff --git a/net/unison-devel/Makefile b/net/unison-devel/Makefile deleted file mode 100644 index 61d63efc2736..000000000000 --- a/net/unison-devel/Makefile +++ /dev/null @@ -1,28 +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.9.20 -CATEGORIES= net -MASTER_SITES= http://www.cis.upenn.edu/~bcpierce/unison/download/beta-test/unison-${PORTVERSION}/ -DISTNAME= src -DIST_SUBDIR= unison-${PORTVERSION} - -MAINTAINER= daniel+unison@pelleg.org -COMMENT= A user-level file synchronization tool - -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 9313dc4d7123..000000000000 --- a/net/unison-devel/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (unison-2.9.20/src.tar.gz) = a0a1b734e11212623bc6ea996aace960 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-descr b/net/unison-devel/pkg-descr deleted file mode 100644 index 10d805d9eb0a..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 - -daniel+unison@pelleg.org 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 61d63efc2736..000000000000 --- a/net/unison232/Makefile +++ /dev/null @@ -1,28 +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.9.20 -CATEGORIES= net -MASTER_SITES= http://www.cis.upenn.edu/~bcpierce/unison/download/beta-test/unison-${PORTVERSION}/ -DISTNAME= src -DIST_SUBDIR= unison-${PORTVERSION} - -MAINTAINER= daniel+unison@pelleg.org -COMMENT= A user-level file synchronization tool - -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 9313dc4d7123..000000000000 --- a/net/unison232/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (unison-2.9.20/src.tar.gz) = a0a1b734e11212623bc6ea996aace960 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-descr b/net/unison232/pkg-descr deleted file mode 100644 index 10d805d9eb0a..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 - -daniel+unison@pelleg.org 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/valknut/Makefile b/net/valknut/Makefile deleted file mode 100644 index cd2e17c18afd..000000000000 --- a/net/valknut/Makefile +++ /dev/null @@ -1,39 +0,0 @@ -# New ports collection makefile for: dclib -# Date created: Wed 10 Jul 2002 -# Whom: Sverrir Valgeirsson <e96sv@yahoo.se> and -# Amar Takhar <verm@drunkmonk.net> et al -# -# $FreeBSD$ -# - -PORTNAME= dcgui -PORTVERSION= 0.2.19 -CATEGORIES= net -MASTER_SITES= http://download.berlios.de/dcgui/ \ - http://ftp.kde.com/Networking_Internet/File_Sharing/Direct_Connect_4_Linux/ \ - ftp://ftp.kde.com/Networking_Internet/File_Sharing/Direct_Connect_4_Linux/ -DISTNAME= dcgui-qt-${PORTVERSION} - -MAINTAINER= brueffer@phoenix-systems.de -COMMENT= A Direct Connect client QT GUI - -LIB_DEPENDS= dc.0:${PORTSDIR}/net/dclib \ - xml2.5:${PORTSDIR}/textproc/libxml2 - -USE_X_PREFIX= yes -USE_QT_VER= 3 -USE_BZIP2= yes -USE_GMAKE= yes -USE_REINPLACE= yes -GNU_CONFIGURE= yes -CONFIGURE_ARGS= --with-libdc=${LOCALBASE} - -CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} - -post-patch: - @${REINPLACE_CMD} -e 's/-O2//g' ${CONFIGURE_WRKSRC}/${CONFIGURE_SCRIPT} - -post-install: - @${CAT} ${PKGMESSAGE} - -.include <bsd.port.mk> diff --git a/net/valknut/distinfo b/net/valknut/distinfo deleted file mode 100644 index 7c6a73ff4725..000000000000 --- a/net/valknut/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (dcgui-qt-0.2.19.tar.bz2) = 3a7421a265e2b5d95257a84033d16c98 diff --git a/net/valknut/pkg-descr b/net/valknut/pkg-descr deleted file mode 100644 index bc60949e63a7..000000000000 --- a/net/valknut/pkg-descr +++ /dev/null @@ -1,7 +0,0 @@ -This is a QT frontend to the Direct Connect system. It supports -most if not all of the DC features. - -WWW: http://dc.ketelhot.de/ - -- sverrir -e96sv@yahoo.se diff --git a/net/valknut/pkg-message b/net/valknut/pkg-message deleted file mode 100644 index e42006269a46..000000000000 --- a/net/valknut/pkg-message +++ /dev/null @@ -1,7 +0,0 @@ -********************************************************************** - - dcgui might dump core when being closed. However this has no impact - on functionality as well as saving settings. This is a known problem - and being worked on. - -********************************************************************** diff --git a/net/valknut/pkg-plist b/net/valknut/pkg-plist deleted file mode 100644 index 32371c9c96dd..000000000000 --- a/net/valknut/pkg-plist +++ /dev/null @@ -1,23 +0,0 @@ -bin/dcgui-qt -share/dcgui/emoticons/emotes.xml -share/dcgui/emoticons/emoticons.xpm -share/dcgui/translation/dcgui.cs.qm -share/dcgui/translation/dcgui.da.qm -share/dcgui/translation/dcgui.de.qm -share/dcgui/translation/dcgui.en_GB.qm -share/dcgui/translation/dcgui.es.qm -share/dcgui/translation/dcgui.fi.qm -share/dcgui/translation/dcgui.fr.qm -share/dcgui/translation/dcgui.hu.qm -share/dcgui/translation/dcgui.is.qm -share/dcgui/translation/dcgui.it.qm -share/dcgui/translation/dcgui.lv.qm -share/dcgui/translation/dcgui.nb.qm -share/dcgui/translation/dcgui.nl.qm -share/dcgui/translation/dcgui.pl.qm -share/dcgui/translation/dcgui.ro.qm -share/dcgui/translation/dcgui.sk.qm -share/dcgui/translation/dcgui.sv.qm -@dirrm share/dcgui/translation -@dirrm share/dcgui/emoticons -@dirrm share/dcgui diff --git a/net/wb/Makefile b/net/wb/Makefile deleted file mode 100644 index 3e981484efba..000000000000 --- a/net/wb/Makefile +++ /dev/null @@ -1,54 +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 -COMMENT= A shared drawing (whiteboard) tool using multicast - -NO_WRKSUBDIR= yes -NO_BUILD= yes -USE_X_PREFIX= yes - -# XXX ghostscript, ghostscript3, ghostscript4 or ghostscript5 will all do. -.if defined(WITH_GHOSTSCRIPT_AFPL) && ${WITH_GHOSTSCRIPT_AFPL} == yes -GSPORT?= print/ghostscript-afpl -.else -GSPORT?= print/ghostscript-gnu -.endif - -RUN_DEPENDS= gs:${PORTSDIR}/${GSPORT} - -.include <bsd.port.pre.mk> - -.if ${PORTOBJFORMAT} == "elf" -STRIP= -.endif - -pre-fetch: -.if !defined(WITH_GHOSTSCRIPT_AFPL) || ${WITH_GHOSTSCRIPT_AFPL} != yes - @${ECHO} "" - @${ECHO} " Define WITH_GHOSTSCRIPT_AFPL=yes to use" - @${ECHO} " AFPL Postscript interpreter instead of GNU one" - @${ECHO} "" -.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-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 2b06505352a8..000000000000 --- a/net/wireshark/Makefile +++ /dev/null @@ -1,56 +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.9.14 -CATEGORIES= net ipv6 -MASTER_SITES= ftp://ftp.ethereal.com/pub/ethereal/%SUBDIR%/ \ - ftp://gd.tuwien.ac.at/infosys/security/ethereal/%SUBDIR%/ \ - ftp://ftp.sunet.se/pub/network/monitoring/ethereal/%SUBDIR%/ \ - ftp://ftp.mirrors.wiretapped.net/pub/security/packet-capture/ethereal/%SUBDIR%/ \ - http://www.mirrors.wiretapped.net/pub/security/packet-capture/ethereal/%SUBDIR%/ -MASTER_SITE_SUBDIR= . old-versions - -MAINTAINER= billf@FreeBSD.org -COMMENT= An X11/GTK network analyzer/capture tool - -.if !defined(WITHOUT_SNMP) -LIB_DEPENDS= netsnmp.5:${PORTSDIR}/net/net-snmp -.endif - -CONFIGURE_ARGS= --program-transform-name="" -CONFIGURE_TARGET= --target=${MACHINE_ARCH}-unknown-freebsd${OSREL} -.if !defined(WITHOUT_X11) -USE_X_PREFIX= yes -USE_GNOME= gtk12 -MAN1+= ethereal.1 -PLIST_SUB+= ETHEREAL=bin/ethereal -.else -PLIST_SUB+= ETHEREAL="@comment ethereal not built" -USE_GNOME= glib12 -CONFIGURE_ARGS+= --enable-ethereal=no \ - --disable-gtktest -.endif - -USE_LIBTOOL= yes -LIBTOOLFILES= configure epan/configure wiretap/configure -PLIST_SUB+= PORTVERSION=${PORTVERSION} - -.if !defined(WITHOUT_SNMP) -CONFIGURE_ARGS+= --enable-snmp=yes \ - --with-net-snmp=${LOCALBASE}/lib \ - --without-ucdsnmp -.if exists(/usr/include/openssl/crypto.h) -CONFIGURE_ARGS+= --with-ssl=/usr -.endif -.else -CONFIGURE_ARGS+= --enable-snmp=no --without-ucdsnmp --without-net-snmp -.endif - -MAN1+= editcap.1 idl2eth.1 mergecap.1 tethereal.1 text2pcap.1 - -.include <bsd.port.mk> diff --git a/net/wireshark/distinfo b/net/wireshark/distinfo deleted file mode 100644 index 0bf56228b75e..000000000000 --- a/net/wireshark/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (ethereal-0.9.14.tar.gz) = 5bcd7fff4bc6c662a00c429eed2c9e9d 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 5eca33c21b39..000000000000 --- a/net/wireshark/pkg-plist +++ /dev/null @@ -1,35 +0,0 @@ -bin/editcap -%%ETHEREAL%% -bin/idl2eth -bin/mergecap -bin/tethereal -bin/text2pcap -lib/ethereal/plugins/%%PORTVERSION%%/artnet.la -lib/ethereal/plugins/%%PORTVERSION%%/artnet.so -lib/ethereal/plugins/%%PORTVERSION%%/coseventcomm.la -lib/ethereal/plugins/%%PORTVERSION%%/coseventcomm.so -lib/ethereal/plugins/%%PORTVERSION%%/cosnaming.la -lib/ethereal/plugins/%%PORTVERSION%%/cosnaming.so -lib/ethereal/plugins/%%PORTVERSION%%/docsis.la -lib/ethereal/plugins/%%PORTVERSION%%/docsis.so -lib/ethereal/plugins/%%PORTVERSION%%/gryphon.la -lib/ethereal/plugins/%%PORTVERSION%%/gryphon.so -lib/ethereal/plugins/%%PORTVERSION%%/megaco.la -lib/ethereal/plugins/%%PORTVERSION%%/megaco.so -lib/ethereal/plugins/%%PORTVERSION%%/mgcp.la -lib/ethereal/plugins/%%PORTVERSION%%/mgcp.so -lib/ethereal/plugins/%%PORTVERSION%%/pcli.la -lib/ethereal/plugins/%%PORTVERSION%%/pcli.so -lib/ethereal/plugins/%%PORTVERSION%%/rtnet.la -lib/ethereal/plugins/%%PORTVERSION%%/rtnet.so -share/ethereal/diameter/dictionary.dtd -share/ethereal/diameter/dictionary.xml -share/ethereal/diameter/mobileipv4.xml -share/ethereal/diameter/nasreq.xml -share/ethereal/diameter/sunping.xml -share/ethereal/manuf -@dirrm lib/ethereal/plugins/%%PORTVERSION%% -@dirrm lib/ethereal/plugins -@dirrm lib/ethereal -@dirrm share/ethereal/diameter -@dirrm share/ethereal diff --git a/net/xmlrpc-c-devel/Makefile b/net/xmlrpc-c-devel/Makefile deleted file mode 100644 index afb44306fdc2..000000000000 --- a/net/xmlrpc-c-devel/Makefile +++ /dev/null @@ -1,38 +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 -COMMENT= XML-RPC library for C and C++ - -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_REINPLACE= yes -USE_LIBTOOL= yes -USE_GMAKE= yes -INSTALLS_SHLIB= yes - -MAN1= meerkat-app-list.1 xml-rpc-api2cpp.1 xmlrpc-c-config.1 \ - query-meerkat.1 xml-rpc-api2txt.1 -MAN7= xmlrpc-c.7 - -pre-patch: - @${REINPLACE_CMD} -e 's,<malloc.h>,<stdlib.h>,' \ - ${WRKSRC}/lib/abyss/src/data.c \ - ${WRKSRC}/tools/turbocharger/mod_gzip.c - -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/files/patch-src-XmlRpcCpp.h b/net/xmlrpc-c-devel/files/patch-src-XmlRpcCpp.h deleted file mode 100644 index 21e18d881ebc..000000000000 --- a/net/xmlrpc-c-devel/files/patch-src-XmlRpcCpp.h +++ /dev/null @@ -1,12 +0,0 @@ ---- src/XmlRpcCpp.h.orig Thu Nov 14 09:17:52 2002 -+++ src/XmlRpcCpp.h Thu Nov 14 09:18:17 2002 -@@ -45,8 +45,8 @@ - // work with our version of g++). So this header name is technically wrong. - // Tell me what your compiler does; I can provide some autoconf magic to the - // Right Thing on most platforms. -+using namespace std; - #include <string> --// using namespace std; - - #include <xmlrpc.h> - #include <xmlrpc_client.h> 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 5d41e79f58a7..000000000000 --- a/net/xmlrpc-c-devel/pkg-plist +++ /dev/null @@ -1,32 +0,0 @@ -bin/meerkat-app-list -bin/query-meerkat -bin/xml-rpc-api2cpp -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 |
