diff options
Diffstat (limited to 'mail/vm-pop3d')
-rw-r--r-- | mail/vm-pop3d/Makefile | 56 | ||||
-rw-r--r-- | mail/vm-pop3d/distinfo | 2 | ||||
-rw-r--r-- | mail/vm-pop3d/files/patch-vm-pop3d.h | 29 | ||||
-rw-r--r-- | mail/vm-pop3d/files/vm-pop3d.sh | 15 | ||||
-rw-r--r-- | mail/vm-pop3d/pkg-descr | 7 | ||||
-rw-r--r-- | mail/vm-pop3d/pkg-plist | 9 |
6 files changed, 0 insertions, 118 deletions
diff --git a/mail/vm-pop3d/Makefile b/mail/vm-pop3d/Makefile deleted file mode 100644 index 0398ee57eddb..000000000000 --- a/mail/vm-pop3d/Makefile +++ /dev/null @@ -1,56 +0,0 @@ -# Created by: Gea-Suan Lin (gslin@ccca.nctu.edu.tw) -# $FreeBSD$ - -PORTNAME= vm-pop3d -PORTVERSION= 1.1.6 -PORTREVISION= 2 -CATEGORIES= mail -MASTER_SITES= ${MASTER_SITE_SUNSITE} \ - http://www.ibiblio.org/%SUBDIR%/ -MASTER_SITE_SUBDIR= system/mail/pop - -MAINTAINER= ports@FreeBSD.org -COMMENT= Virtual POP3 server - -GNU_CONFIGURE= yes - -.if defined(WITH_IPVIRTUAL) -CONFIGURE_ARGS+= --enable-ip-based-virtual --enable-virtual -.elif defined(WITH_VIRTUAL) -CONFIGURE_ARGS+= --enable-virtual -.endif -.if defined(WITH_DEBUG) -CONFIGURE_ARGS+= --enable-debug -.endif - -MAN8= vm-pop3d.8 - -DOCS= AUTHORS CHANGES COPYING FAQ INSTALL README - -NO_STAGE= yes -pre-patch: - @${ECHO} "" - @${ECHO} "You may use the following build options:" - @${ECHO} "" - @${ECHO} " WITH_VIRTUAL enable virtual passwd files and spool directories." - @${ECHO} " WITH_IPVIRTUAL enable IP-based virtual passwd files and spool directories." - @${ECHO} " WITH_DEBUG enable debugging." - @${ECHO} "" - -post-patch: - @${REINPLACE_CMD} -e "s@LIBS -ldl@LIBS@" ${WRKSRC}/configure - @${REINPLACE_CMD} -e "s,%%PREFIX%%,${PREFIX},g" ${WRKSRC}/vm-pop3d.h - @${SED} -e "s,%%PREFIX%%,${PREFIX},g" ${FILESDIR}/vm-pop3d.sh > ${WRKSRC}/vm-pop3d.sh.sample - -post-install: - ${INSTALL_MAN} ${WRKSRC}/vm-pop3d.8 ${MAN8PREFIX}/man/man8 - ${INSTALL_SCRIPT} ${WRKSRC}/vm-pop3d.sh.sample ${PREFIX}/etc/rc.d -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} -.for FILE in ${DOCS} - ${INSTALL_DATA} ${WRKSRC}/${FILE} ${DOCSDIR} -.endfor - @${ECHO} "Documentation installed in ${DOCSDIR}." -.endif - -.include <bsd.port.mk> diff --git a/mail/vm-pop3d/distinfo b/mail/vm-pop3d/distinfo deleted file mode 100644 index af35c0306188..000000000000 --- a/mail/vm-pop3d/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (vm-pop3d-1.1.6.tar.gz) = b57a655451e0a597731a64b8d5c90ec884cd69d3f59d0f86dc31d904086016c4 -SIZE (vm-pop3d-1.1.6.tar.gz) = 151975 diff --git a/mail/vm-pop3d/files/patch-vm-pop3d.h b/mail/vm-pop3d/files/patch-vm-pop3d.h deleted file mode 100644 index da9abb321bab..000000000000 --- a/mail/vm-pop3d/files/patch-vm-pop3d.h +++ /dev/null @@ -1,29 +0,0 @@ ---- vm-pop3d.h.orig Fri Aug 24 19:28:57 2001 -+++ vm-pop3d.h Fri Aug 24 19:29:59 2001 -@@ -63,7 +63,7 @@ - - /* APOP password file, without .db or .passwd, which are added based on file - type automatically */ --#define APOP_PASSFILE "/etc/apop" -+#define APOP_PASSFILE "%%PREFIX%%/etc/apop" - - /* Size of the MD5 digest for APOP */ - #define APOP_DIGEST 70 -@@ -77,7 +77,7 @@ - The mailboxes for virtual domains do not have corresponding Unix - accounts; they do not have unique UIDs; so they could be owned - by one VIRTUAL_UID. */ --#define VIRTUAL_UID 8 -+#define VIRTUAL_UID 65534 - - /* VIRTUAL_MAILDIR is the path to the sub-directories containing - the mailboxes for each virtual domain (or realm). It has a host, -@@ -92,7 +92,7 @@ - the sub-directories containing the password files for each virtual - domain. By default, this is /etc/virtual.) */ - --#define VIRTUAL_PASSWORDS_PATH "/etc/virtual" -+#define VIRTUAL_PASSWORDS_PATH "%%PREFIX%%/etc/virtual" - - /* VIRTUAL_PASSWORD_FNAME is the file name (or suffix) for the virtual - domain's password file. (By default, this is "passwd". It could be set diff --git a/mail/vm-pop3d/files/vm-pop3d.sh b/mail/vm-pop3d/files/vm-pop3d.sh deleted file mode 100644 index 43e28e9b3fdd..000000000000 --- a/mail/vm-pop3d/files/vm-pop3d.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh - -case "$1" in -start) - [ -x %%PREFIX%%/sbin/vm-pop3d ] && %%PREFIX%%/sbin/vm-pop3d -d && echo -n " vm-pop3d" - ;; -stop) - killall vm-pop3d && echo -n " vm-pop3d" - ;; -*) - echo "Usage: `basename $0` {start|stop}" >&2 - ;; -esac - -exit 0 diff --git a/mail/vm-pop3d/pkg-descr b/mail/vm-pop3d/pkg-descr deleted file mode 100644 index 658bdafa10ca..000000000000 --- a/mail/vm-pop3d/pkg-descr +++ /dev/null @@ -1,7 +0,0 @@ -vm-pop3d is a POP3 server. It is free to download and use. It supports -alternative password files and mail spool directories; it can be used for -setting up virtual email accounts -- mailboxes without real Unix owners for -each. This will allow you to have multiple email accounts with the same name -on one system. - -WWW: http://www.reedmedia.net/software/virtualmail-pop3d/ diff --git a/mail/vm-pop3d/pkg-plist b/mail/vm-pop3d/pkg-plist deleted file mode 100644 index e5cd3caef8d5..000000000000 --- a/mail/vm-pop3d/pkg-plist +++ /dev/null @@ -1,9 +0,0 @@ -etc/rc.d/vm-pop3d.sh.sample -sbin/vm-pop3d -%%PORTDOCS%%%%DOCSDIR%%/AUTHORS -%%PORTDOCS%%%%DOCSDIR%%/CHANGES -%%PORTDOCS%%%%DOCSDIR%%/COPYING -%%PORTDOCS%%%%DOCSDIR%%/FAQ -%%PORTDOCS%%%%DOCSDIR%%/INSTALL -%%PORTDOCS%%%%DOCSDIR%%/README -%%PORTDOCS%%@dirrm %%DOCSDIR%% |