diff options
Diffstat (limited to 'databases/cyrus-imspd')
-rw-r--r-- | databases/cyrus-imspd/Makefile | 49 | ||||
-rw-r--r-- | databases/cyrus-imspd/distinfo | 2 | ||||
-rw-r--r-- | databases/cyrus-imspd/files/imspd.conf | 1 | ||||
-rw-r--r-- | databases/cyrus-imspd/files/imspd.in | 41 | ||||
-rw-r--r-- | databases/cyrus-imspd/files/patch-ah | 11 | ||||
-rw-r--r-- | databases/cyrus-imspd/files/patch-ai | 51 | ||||
-rw-r--r-- | databases/cyrus-imspd/files/patch-aj | 37 | ||||
-rw-r--r-- | databases/cyrus-imspd/files/patch-imsp__dispatch.h | 11 | ||||
-rw-r--r-- | databases/cyrus-imspd/pkg-descr | 9 | ||||
-rw-r--r-- | databases/cyrus-imspd/pkg-message | 6 | ||||
-rw-r--r-- | databases/cyrus-imspd/pkg-plist | 10 |
11 files changed, 0 insertions, 228 deletions
diff --git a/databases/cyrus-imspd/Makefile b/databases/cyrus-imspd/Makefile deleted file mode 100644 index a22e2197e767..000000000000 --- a/databases/cyrus-imspd/Makefile +++ /dev/null @@ -1,49 +0,0 @@ -# Created by: damien@tougas.net -# $FreeBSD$ - -PORTNAME= cyrus-imspd -PORTVERSION= 1.8 -PORTREVISION= 1 -CATEGORIES= databases mail -MASTER_SITES= ftp://ftp.andrew.cmu.edu/pub/cyrus-mail/ \ - http://ftp.kfki.hu/packages/mail/cyrus/ -DISTNAME= ${PORTNAME}-v${PORTVERSION} - -MAINTAINER= ports@FreeBSD.org -COMMENT= The cyrus IMSP (Internet Message Support Protocol) server - -LIB_DEPENDS= libsasl2.so:${PORTSDIR}/security/cyrus-sasl2 - -GNU_CONFIGURE= YES -CPPFLAGS+= -I${LOCALBASE}/include -CONFIGURE_ARGS= --prefix=${PREFIX} \ - --with-sasldir=${LOCALBASE} \ - --with-sasl=${LOCALBASE} \ - --with-auth=unix - -USE_RC_SUBR= imspd -DOCSDIR= ${PREFIX}/share/doc/imspd - -OPTIONS_DEFINE= DOCS - -NO_STAGE= yes -post-patch: - ${REINPLACE_CMD} -e "s|<sasl.h>|<sasl2/sasl.h>|" \ - ${WRKSRC}/configure - -post-install: - ${INSTALL_DATA} ${FILESDIR}/imspd.conf \ - ${PREFIX}/lib/sasl2/imspd.conf - ${MKDIR} /var/imsp - ${INSTALL_DATA} ${WRKSRC}/imsp/options.sample \ - /var/imsp/options.dist - ${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/notes/Setup-instructions \ - ${WRKSRC}/notes/option.registry \ - ${WRKSRC}/notes/Changes-Todo \ - ${WRKSRC}/notes/imsp.implementation \ - ${WRKSRC}/notes/imsp.implementation.updates \ - ${DOCSDIR} - @${CAT} ${PKGMESSAGE} - -.include <bsd.port.mk> diff --git a/databases/cyrus-imspd/distinfo b/databases/cyrus-imspd/distinfo deleted file mode 100644 index 29d9449342f4..000000000000 --- a/databases/cyrus-imspd/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (cyrus-imspd-v1.8.tar.gz) = ba1026dca5440b6a24a298cb9aa350321f9c6f921ba6404a74b9d546c02b70cd -SIZE (cyrus-imspd-v1.8.tar.gz) = 650596 diff --git a/databases/cyrus-imspd/files/imspd.conf b/databases/cyrus-imspd/files/imspd.conf deleted file mode 100644 index 45e20d3ea20f..000000000000 --- a/databases/cyrus-imspd/files/imspd.conf +++ /dev/null @@ -1 +0,0 @@ -pwcheck_method: pwcheck diff --git a/databases/cyrus-imspd/files/imspd.in b/databases/cyrus-imspd/files/imspd.in deleted file mode 100644 index f18ef0f29b3c..000000000000 --- a/databases/cyrus-imspd/files/imspd.in +++ /dev/null @@ -1,41 +0,0 @@ -#! /bin/sh -# -# -# PROVIDE: imspd -# REQUIRE: DAEMON NETWORKING SERVERS -# -# Add the following line to /etc/rc.conf to enable imspd: -# -# imspd_enable="YES" -# -# Tweakable parameters for users to override in rc.conf - -. /etc/rc.subr - -name=imspd -rcvar=imspd_enable - -load_rc_config ${name} -: ${imspd_enable="NO"} -: ${imspd_pidfile=/var/run/imspd.pid} -: ${imspd_options=/var/imspd/options} - -pidfile=${imspd_pidfile} -start_postcmd="start_postcmd" -stop_postcmd="stop_postcmd" -required_files=${imspd_options} -command="%%PREFIX%%/sbin/imspd" -command_args=">/dev/null &" - -start_postcmd() -{ - PID=`pgrep imspd` - [ -n "${PID}" ] && echo ${PID} > ${pidfile} -} - -stop_postcmd() -{ - [ -f "${pidfile}" ] && rm ${pidfile} -} - -run_rc_command "$1" diff --git a/databases/cyrus-imspd/files/patch-ah b/databases/cyrus-imspd/files/patch-ah deleted file mode 100644 index a97b8e557565..000000000000 --- a/databases/cyrus-imspd/files/patch-ah +++ /dev/null @@ -1,11 +0,0 @@ ---- imsp/Makefile.in.orig Sun Dec 17 22:27:42 2000 -+++ imsp/Makefile.in Tue Oct 2 20:47:22 2001 -@@ -76,7 +76,7 @@ - $< - - install: cyrus-imspd -- $(INSTALL) -s cyrus-imspd $(DESTDIR)/cyrus/usr/cyrus/bin/imspd -+ $(INSTALL) -s cyrus-imspd @prefix@/sbin/imspd - - cyrus-imspd: $(IMSPDOBJS) $(DEPLIBS) - $(CC) $(CFLAGS) $(LDFLAGS) -o cyrus-imspd $(IMSPDOBJS) $(DEPLIBS) $(LIBS) diff --git a/databases/cyrus-imspd/files/patch-ai b/databases/cyrus-imspd/files/patch-ai deleted file mode 100644 index 6eeb91260316..000000000000 --- a/databases/cyrus-imspd/files/patch-ai +++ /dev/null @@ -1,51 +0,0 @@ ---- Makefile.in.orig Tue Oct 2 20:31:48 2001 -+++ Makefile.in Tue Oct 2 20:34:09 2001 -@@ -32,19 +32,15 @@ - @for d in $(SUBDIRS); \ - do \ - (cd $$d; echo "### Making" all "in" `pwd`; \ -- $(MAKE) $(MFLAGS) DESTDIR=$(DESTDIR) all; \ -+ $(MAKE) $(MFLAGS) all; \ - echo "### Done with" `pwd`); \ - done - - install:: -- - mkdir ${DESTDIR}/cyrus -- - mkdir ${DESTDIR}/cyrus/usr -- - mkdir ${DESTDIR}/cyrus/usr/cyrus -- - mkdir ${DESTDIR}/cyrus/usr/cyrus/bin - @for d in $(SUBDIRS); \ - do \ - (cd $$d; echo "### Making" install "in" `pwd`; \ -- $(MAKE) $(MFLAGS) DESTDIR=$(DESTDIR) install ; \ -+ $(MAKE) $(MFLAGS) install ; \ - echo "### Done with" `pwd`); \ - done - -@@ -52,7 +48,7 @@ - @-for d in $(SUBDIRS); \ - do \ - (cd $$d; echo "### Making" clean "in" `pwd`; \ -- $(MAKE) $(MFLAGS) DESTDIR=$(DESTDIR) clean ; \ -+ $(MAKE) $(MFLAGS) clean ; \ - echo "### Done with" `pwd`); \ - done - -@@ -60,7 +56,7 @@ - @-for d in $(SUBDIRS); \ - do \ - (cd $$d; echo "### Making" clean "in" `pwd`; \ -- $(MAKE) $(MFLAGS) DESTDIR=$(DESTDIR) distclean ; \ -+ $(MAKE) $(MFLAGS) distclean ; \ - echo "### Done with" `pwd`); \ - done - rm -f Makefile config.* -@@ -69,7 +65,7 @@ - @for d in $(SUBDIRS); \ - do \ - (cd $$d; echo "### Making" depend "in" `pwd`; \ -- $(MAKE) $(MFLAGS) DESTDIR=$(DESTDIR) depend ; \ -+ $(MAKE) $(MFLAGS) depend ; \ - echo "### Done with" `pwd`); \ - done - diff --git a/databases/cyrus-imspd/files/patch-aj b/databases/cyrus-imspd/files/patch-aj deleted file mode 100644 index ce3e51e7d940..000000000000 --- a/databases/cyrus-imspd/files/patch-aj +++ /dev/null @@ -1,37 +0,0 @@ ---- lib/Makefile.in.orig Tue Sep 16 06:06:54 2003 -+++ lib/Makefile.in Wed Jul 21 03:48:17 2004 -@@ -70,7 +70,7 @@ - - HDRS = $(srcdir)/acl.h $(srcdir)/assert.h $(srcdir)/auth.h \ - $(srcdir)/bsearch.h $(srcdir)/charset.h $(srcdir)/glob.h \ -- $(srcdir)/gmtoff.h $(srcdir)/imclient.h $(srcdir)/imparse.h \ -+ $(srcdir)/gmtoff.h $(srcdir)/imparse.h \ - $(srcdir)/lock.h $(srcdir)/map.h $(srcdir)/mkgmtime.h \ - $(srcdir)/nonblock.h $(srcdir)/parseaddr.h $(srcdir)/prot.h \ - $(srcdir)/retry.h $(srcdir)/sysexits.h \ -@@ -87,7 +87,7 @@ - # @LIBOBJS@ cyrusdb_db3.o cyrusdb_flat.o - - OBJS = acl.o assert.o bsearch.o charset.o glob.o retry.o util.o \ -- mkgmtime.o prot.o parseaddr.o imclient.o imparse.o xmalloc.o \ -+ mkgmtime.o prot.o parseaddr.o imparse.o xmalloc.o \ - chartable.o nonblock_@WITH_NONBLOCK@.o lock_@WITH_LOCK@.o \ - gmtoff_@WITH_GMTOFF@.o hash.o $(ACL) $(AUTH) iptostring.o \ - @LIBOBJS@ -@@ -96,12 +96,12 @@ - - install: - # Don't install any parts of libcyrus from the IMSP collection! --# $(srcdir)/../install-sh -d $(DESTDIR)$(exec_prefix)/lib --# $(INSTALL) -m 644 libcyrus.a $(DESTDIR)$(exec_prefix)/lib --# $(RANLIB) $(DESTDIR)$(exec_prefix)/lib/libcyrus.a -+# $(srcdir)/../install-sh -d $(exec_prefix)/lib -+# $(INSTALL) -m 644 libcyrus.a $(exec_prefix)/lib -+# $(RANLIB) $(exec_prefix)/lib/libcyrus.a - # for file in $(HDRS); \ - # do \ --# $(INSTALL) -m 644 $$file $(DESTDIR)$(prefix)/include/cyrus || exit 1; \ -+# $(INSTALL) -m 644 $$file $(prefix)/include/cyrus || exit 1; \ - # done - - .c.o: diff --git a/databases/cyrus-imspd/files/patch-imsp__dispatch.h b/databases/cyrus-imspd/files/patch-imsp__dispatch.h deleted file mode 100644 index 887c9a03870d..000000000000 --- a/databases/cyrus-imspd/files/patch-imsp__dispatch.h +++ /dev/null @@ -1,11 +0,0 @@ ---- imsp/dispatch.h 2003/04/03 13:38:05 1.1 -+++ imsp/dispatch.h 2003/04/03 13:38:26 -@@ -42,7 +42,7 @@ - * Start Date: 2/22/93 - */ - --#define MAX_BUF 4096 -+#define MAX_BUF (4096 * 1024) - - #include <sasl/sasl.h> - diff --git a/databases/cyrus-imspd/pkg-descr b/databases/cyrus-imspd/pkg-descr deleted file mode 100644 index 228067933e2c..000000000000 --- a/databases/cyrus-imspd/pkg-descr +++ /dev/null @@ -1,9 +0,0 @@ -The Internet Message Support Protocol (IMSP) is designed to support the -provision of mail in a medium to large scale operation. It is intended to -be used as a companion to the IMAP4 protocol [IMAP4], providing services -which are either outside the scope of mail access or which pertain to -environments which must run more than one IMAP4 server in the same mail -domain. The services that IMSP provides are extended mailbox management, -configuration options, and address books. - -WWW: http://asg.web.cmu.edu/cyrus/ diff --git a/databases/cyrus-imspd/pkg-message b/databases/cyrus-imspd/pkg-message deleted file mode 100644 index 8c9d83354b1a..000000000000 --- a/databases/cyrus-imspd/pkg-message +++ /dev/null @@ -1,6 +0,0 @@ -**************************************************************************** - -Prior to using this software, copy the configuration file -/var/imsp/options.dist to /var/imsp/options and modify as required. - -**************************************************************************** diff --git a/databases/cyrus-imspd/pkg-plist b/databases/cyrus-imspd/pkg-plist deleted file mode 100644 index 1bbb3d30f2c6..000000000000 --- a/databases/cyrus-imspd/pkg-plist +++ /dev/null @@ -1,10 +0,0 @@ -lib/sasl2/imspd.conf -sbin/imspd -%%PORTDOCS%%%%DOCSDIR%%/Setup-instructions -%%PORTDOCS%%%%DOCSDIR%%/option.registry -%%PORTDOCS%%%%DOCSDIR%%/Changes-Todo -%%PORTDOCS%%%%DOCSDIR%%/imsp.implementation -%%PORTDOCS%%%%DOCSDIR%%/imsp.implementation.updates -%%PORTDOCS%%@dirrm %%DOCSDIR%% -@cwd /var -imsp/options.dist |