aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorvd <vd@FreeBSD.org>2006-12-13 00:42:34 +0800
committervd <vd@FreeBSD.org>2006-12-13 00:42:34 +0800
commit5ad248e9e164c5704d7f2b7733df4cc74960195e (patch)
treecb7a9b3c9c5a3939f5a5a19c550ac78771aef58b /net
parenta32eac8b1a08952f672e63164665c592e7507917 (diff)
downloadfreebsd-ports-gnome-5ad248e9e164c5704d7f2b7733df4cc74960195e.tar.gz
freebsd-ports-gnome-5ad248e9e164c5704d7f2b7733df4cc74960195e.tar.zst
freebsd-ports-gnome-5ad248e9e164c5704d7f2b7733df4cc74960195e.zip
Remove expired ports:
2006-12-01 net/wais: Imported 12 years ago; never completed 2006-12-01 www/w3c-httpd: Does not compile
Diffstat (limited to 'net')
-rw-r--r--net/Makefile1
-rw-r--r--net/wais/Makefile41
-rw-r--r--net/wais/distinfo3
-rw-r--r--net/wais/files/patch-aa91
-rw-r--r--net/wais/files/patch-ab81
-rw-r--r--net/wais/files/patch-ac20
-rw-r--r--net/wais/pkg-descr1
7 files changed, 0 insertions, 238 deletions
diff --git a/net/Makefile b/net/Makefile
index 2a2fe3ac6e64..c01f72f71893 100644
--- a/net/Makefile
+++ b/net/Makefile
@@ -845,7 +845,6 @@
SUBDIR += vserver
SUBDIR += vtun
SUBDIR += vyqchat
- SUBDIR += wais
SUBDIR += wakeonlan
SUBDIR += warppipe
SUBDIR += whois
diff --git a/net/wais/Makefile b/net/wais/Makefile
deleted file mode 100644
index cf76e8f76bdd..000000000000
--- a/net/wais/Makefile
+++ /dev/null
@@ -1,41 +0,0 @@
-# New ports collection makefile for: wais
-# Date created: 20 Sep 1994
-# Whom: adam
-#
-# $FreeBSD$
-#
-
-PORTNAME= freeWAIS
-PORTVERSION= 0.5
-PORTREVISION= 1
-CATEGORIES= net
-MASTER_SITES= ftp://ftp.icm.edu.pl/vol/wojsyl/freewais/ \
- ftp://ftp.bio.indiana.edu/util/wais/ \
- ftp://ftp.uni-stuttgart.de/pub/unix/comm/infosystems/wais/ \
- ftp://ftp.uni-koeln.de/net/inet/wais/freeWAIS-sf-old/ \
- ftp://ftp.netsw.org/infosys/wais/freewais/
-
-MAINTAINER= ports@FreeBSD.org
-COMMENT= A Wide Area Information Server
-
-DEPRECATED= Imported 12 years ago; never completed
-EXPIRATION_DATE=2006-12-01
-NO_PACKAGE= "not yet"
-NO_INSTALL= almost
-ALL_TARGET= freebsd
-MAKE_ENV:= TOP=${WRKSRC}
-
-is_depended: all
-
-pre-patch:
- @${CP} ${WRKSRC}/Makefile.bsdi ${WRKSRC}/Makefile.freebsd
- @${MV} ${WRKSRC}/src/client/x/Imakefile ${WRKDIR} \
- && ${SED} -e '\;/SETME_IN_Imakefile;s;;${WRKSRC};' \
- <${WRKDIR}/Imakefile >${WRKSRC}/src/client/x/Imakefile
-
-.if ${MAKEFILE} != Makefile.freebsd
-do-install:
- ${MAKE} MAKEFILE=Makefile.freebsd do-install
-.endif
-
-.include <bsd.port.mk>
diff --git a/net/wais/distinfo b/net/wais/distinfo
deleted file mode 100644
index 1dd7fbbb69ef..000000000000
--- a/net/wais/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 (freeWAIS-0.5.tar.gz) = 320271bac5afc30e3375ac0de63498fd
-SHA256 (freeWAIS-0.5.tar.gz) = 8d46ab587854d8ce724295cf939049629f5f8770742bd23135d5b9cf973b5acc
-SIZE (freeWAIS-0.5.tar.gz) = 766832
diff --git a/net/wais/files/patch-aa b/net/wais/files/patch-aa
deleted file mode 100644
index 6a9141942faf..000000000000
--- a/net/wais/files/patch-aa
+++ /dev/null
@@ -1,91 +0,0 @@
-*** src/ir/sockets.c.old Wed Apr 26 12:18:43 1995
---- src/ir/sockets.c Tue Nov 12 23:20:17 1996
-***************
-*** 81,88 ****
- #if (defined(ultrix) || defined(BSD) || defined(Mach))
- extern int errno;
- #endif /* ultrix BSD or Mach */
-!
- extern char *sys_errlist[];
-
-
- /* XXX
---- 81,90 ----
- #if (defined(ultrix) || defined(BSD) || defined(Mach))
- extern int errno;
- #endif /* ultrix BSD or Mach */
-!
-! #ifndef __bsdi__
- extern char *sys_errlist[];
-+ #endif
-
-
- /* XXX
-***************
-*** 203,209 ****
- if(source.sin_family == AF_INET) {
- struct hostent *peer = NULL;
-
-! #if defined(__DGUX__) || defined(LINUX)
- peer = gethostbyaddr((char *)&source.sin_addr.s_addr, 4, AF_INET);
- #else
- peer = gethostbyaddr((struct sockaddr_in*)&source.sin_addr, 4, AF_INET);
---- 205,211 ----
- if(source.sin_family == AF_INET) {
- struct hostent *peer = NULL;
-
-! #if defined(__DGUX__) || defined(LINUX) || defined(__bsdi__) /* XXX */
- peer = gethostbyaddr((char *)&source.sin_addr.s_addr, 4, AF_INET);
- #else
- peer = gethostbyaddr((struct sockaddr_in*)&source.sin_addr, 4, AF_INET);
-*** src/ir/irfiles.c.old Wed Apr 26 12:18:41 1995
---- src/ir/irfiles.c Tue Nov 12 23:27:43 1996
-***************
-*** 297,303 ****
-
- else {
-
-! if( utlk_using_lock_and_get_pid(db->database_file, LOCK_INDEX, (pid_t) &pid) &&
- (pid != getpid()) ) {
- waislog(WLOG_HIGH, WLOG_ERROR,
- "an indexing is currently running on the database. Try again later.");
---- 297,303 ----
-
- else {
-
-! if( utlk_using_lock_and_get_pid(db->database_file, LOCK_INDEX, (pid_t *) &pid) &&
- (pid != getpid()) ) {
- waislog(WLOG_HIGH, WLOG_ERROR,
- "an indexing is currently running on the database. Try again later.");
-*** src/client/x/scommands.c.old Wed Apr 26 12:18:39 1995
---- src/client/x/scommands.c Wed Nov 13 01:41:42 1996
-***************
-*** 159,165 ****
- edit_source->maintainer = s_strdup(GetString(maintainerwid));
-
- if (edit_source->description != NULL) s_free(edit_source->description);
-! edit_source->description = s_strdup(GetAsciiString(descwid));
-
- strncpy(edit_source->server, GetString(serverwid), STRINGSIZE);
- strncpy(edit_source->service, GetString(servicewid), STRINGSIZE);
---- 159,165 ----
- edit_source->maintainer = s_strdup(GetString(maintainerwid));
-
- if (edit_source->description != NULL) s_free(edit_source->description);
-! edit_source->description = s_strdup((String)GetAsciiString(descwid));
-
- strncpy(edit_source->server, GetString(serverwid), STRINGSIZE);
- strncpy(edit_source->service, GetString(servicewid), STRINGSIZE);
-*** src/client/x/catalog.c.old Wed Apr 26 12:18:39 1995
---- src/client/x/catalog.c Wed Nov 13 01:45:20 1996
-***************
-*** 27,32 ****
---- 27,34 ----
- #include "xwais.h"
- #include "cat.h"
-
-+ #undef index
-+
- static Boolean busy = FALSE;
- static long last_doc = -1;
- static Catbuff scat = NULL;
diff --git a/net/wais/files/patch-ab b/net/wais/files/patch-ab
deleted file mode 100644
index 6fef16f42ac6..000000000000
--- a/net/wais/files/patch-ab
+++ /dev/null
@@ -1,81 +0,0 @@
-*** Makefile.old Wed May 3 08:55:29 1995
---- Makefile Tue Nov 12 21:25:49 1996
-***************
-*** 97,109 ****
- default:
- @echo "You have to specify which system to build for."
- @echo "Say 'make <system>', where <system> is one of the following:"
-! @echo "aix, bsdi, dynix, hpux, irix-cc, irix-gcc, linux, osf,"
- @echo "solaris, sunos, ultrix-cc or ultrix-gcc"
-
- all:
- @echo "You have to specify which system to build for."
- @echo "Say 'make <system>', where <system> is one of the following:"
-! @echo "aix, bsdi, dynix, hpux, irix-cc, irix-gcc, linux, osf,"
- @echo "solaris, sunos, ultrix-cc or ultrix-gcc"
-
- aix::
---- 97,109 ----
- default:
- @echo "You have to specify which system to build for."
- @echo "Say 'make <system>', where <system> is one of the following:"
-! @echo "aix, bsdi, dynix, freebsd, hpux, irix-cc, irix-gcc, linux, osf,"
- @echo "solaris, sunos, ultrix-cc or ultrix-gcc"
-
- all:
- @echo "You have to specify which system to build for."
- @echo "Say 'make <system>', where <system> is one of the following:"
-! @echo "aix, bsdi, dynix, freebsd, hpux, irix-cc, irix-gcc, linux, osf,"
- @echo "solaris, sunos, ultrix-cc or ultrix-gcc"
-
- aix::
-***************
-*** 118,123 ****
---- 118,128 ----
-
- dynix::
- $(MAKE) -f Makefile.dynix TOP=$(TOP)
-+ touch $(TOP)/$(RELEASE)
-+ @echo "Welcome to freeWAIS version $(VERSION)"
-+
-+ freebsd::
-+ $(MAKE) -f Makefile.freebsd TOP=$(TOP)
- touch $(TOP)/$(RELEASE)
- @echo "Welcome to freeWAIS version $(VERSION)"
-
-*** Makefile.freebsd.orig Wed Nov 13 00:13:50 1996
---- Makefile.freebsd Wed Nov 13 00:24:30 1996
-***************
-*** 149,155 ****
- # -DSOLARIS for SunOS 5.2 (Solaris 2.2) machines.
- #
- # Use this version of CFLAGS for BSDI
-! CFLAGS = -I$(INCLUDE) -DBSD43 -DTELL_USER -DUSG -DSECURE_SERVER -DRELEVANCE_FEEDBACK -DBOOLEANS -DPARTIALWORD -DLITERAL -DSOUND -DBIBDB
-
- #
- # Flag definitions
---- 149,155 ----
- # -DSOLARIS for SunOS 5.2 (Solaris 2.2) machines.
- #
- # Use this version of CFLAGS for BSDI
-! CFLAGS = -I$(INCLUDE) -D__bsdi__ -DBSD43 -DTELL_USER -DUSG -DSECURE_SERVER -DRELEVANCE_FEEDBACK -DBOOLEANS -DPARTIALWORD -DLITERAL -DSOUND -DBIBDB
-
- #
- # Flag definitions
-//***************
-//*** 216,222 ****
- cd $(SRCDIR)/server; $(MAKE) CC=$(CC) CFLAGS="$(CFLAGS)" \
- INCLUDE="$(INCLUDE)" RANLIB=$(RANLIB) TOP=$(TOP) LIBS="$(LIBS)"
-
-! clients: ui waissearch waisq swais # xwais
-
- waissearch::
- cd $(CLIENTDIR)/waissearch; $(MAKE) CC=$(CC) CFLAGS="$(CFLAGS)" \
---- 216,222 ----
- cd $(SRCDIR)/server; $(MAKE) CC=$(CC) CFLAGS="$(CFLAGS)" \
- INCLUDE="$(INCLUDE)" RANLIB=$(RANLIB) TOP=$(TOP) LIBS="$(LIBS)"
-
-! clients: ui waissearch waisq swais xwais
-
- waissearch::
- cd $(CLIENTDIR)/waissearch; $(MAKE) CC=$(CC) CFLAGS="$(CFLAGS)" \
diff --git a/net/wais/files/patch-ac b/net/wais/files/patch-ac
deleted file mode 100644
index c83cf2d9846f..000000000000
--- a/net/wais/files/patch-ac
+++ /dev/null
@@ -1,20 +0,0 @@
---- Makefile.freebsd.orig Mon Aug 18 22:03:40 2003
-+++ Makefile.freebsd Mon Aug 18 22:03:58 2003
-@@ -48,7 +48,7 @@
- #
- # Some default programs
- # CC = cc
--CC = gcc
-+#CC = gcc
- AR = ar
- RM = /bin/rm
- MV = mv
-@@ -149,7 +149,7 @@
- # -DSOLARIS for SunOS 5.2 (Solaris 2.2) machines.
- #
- # Use this version of CFLAGS for BSDI
--CFLAGS = -I$(INCLUDE) -D__bsdi__ -DBSD43 -DTELL_USER -DUSG -DSECURE_SERVER -DRELEVANCE_FEEDBACK -DBOOLEANS -DPARTIALWORD -DLITERAL -DSOUND -DBIBDB
-+CFLAGS += -I$(INCLUDE) -D__bsdi__ -DBSD43 -DTELL_USER -DUSG -DSECURE_SERVER -DRELEVANCE_FEEDBACK -DBOOLEANS -DPARTIALWORD -DLITERAL -DSOUND -DBIBDB
-
- #
- # Flag definitions
diff --git a/net/wais/pkg-descr b/net/wais/pkg-descr
deleted file mode 100644
index 1f976d568f80..000000000000
--- a/net/wais/pkg-descr
+++ /dev/null
@@ -1 +0,0 @@
-FreeWAIS from CNIDR