svn commit: r363942 - in head/mail: . fastforward

John Marino marino at FreeBSD.org
Sun Aug 3 21:40:04 UTC 2014


Author: marino
Date: Sun Aug  3 21:40:02 2014
New Revision: 363942
URL: http://svnweb.freebsd.org/changeset/ports/363942
QAT: https://qat.redports.org/buildarchive/r363942/

Log:
  Add new port: mail/fastforward
  
  PR:		184377
  Submitted by:	uffe
  
       ================================================================
  
  fastforward handles qmail forwarding according to a cdb database.
  It can create forwarding databases from a sendmail-style
  /etc/aliases or from user-oriented virtual-domain tables.

Added:
  head/mail/fastforward/
  head/mail/fastforward/Makefile   (contents, props changed)
  head/mail/fastforward/distinfo   (contents, props changed)
  head/mail/fastforward/pkg-descr   (contents, props changed)
Modified:
  head/mail/Makefile

Modified: head/mail/Makefile
==============================================================================
--- head/mail/Makefile	Sun Aug  3 21:37:49 2014	(r363941)
+++ head/mail/Makefile	Sun Aug  3 21:40:02 2014	(r363942)
@@ -140,6 +140,7 @@
     SUBDIR += ezmlm-idx
     SUBDIR += ezmlm-web
     SUBDIR += faces
+    SUBDIR += fastforward
     SUBDIR += fdm
     SUBDIR += fetchmail
     SUBDIR += filtermail

Added: head/mail/fastforward/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/mail/fastforward/Makefile	Sun Aug  3 21:40:02 2014	(r363942)
@@ -0,0 +1,41 @@
+# Created by: Uffe Jakobsen <uffe at uffe.org>
+# $FreeBSD$
+
+PORTNAME=	fastforward
+PORTVERSION=	0.51
+CATEGORIES=	mail
+MASTER_SITES=	http://cr.yp.to/software/
+
+MAINTAINER=	uffe at uffe.org
+COMMENT=	Fastforward handles qmail forwarding according to a cdb database
+
+USES=	gmake
+
+ALL_TARGET=	default
+
+MAN1=	fastforward.1 printforward.1 setforward.1 newaliases.1 printmaillist.1 setmaillist.1 newinclude.1
+CAT1=	fastforward.0 printforward.0 setforward.0 newaliases.0 printmaillist.0 setmaillist.0 newinclude.0
+
+PORTDOCS=	ALIASES
+
+PLIST_FILES=	\
+		bin/fastforward bin/printforward bin/setforward bin/newaliases bin/printmaillist bin/setmaillist bin/newinclude \
+		${MAN1:S,^,man/man1/,:S,$,.gz,} ${CAT1:S,^,man/cat1/,:S,$,.gz,}
+
+do-install:
+.for binfile in fastforward printforward setforward newaliases printmaillist setmaillist newinclude
+	${INSTALL_PROGRAM} ${WRKSRC}/${binfile} ${STAGEDIR}${PREFIX}/bin/${binfile}
+.endfor
+
+.for manfile in ${MAN1}
+	${INSTALL_MAN} ${WRKSRC}/${manfile} ${STAGEDIR}${MAN1PREFIX}/man/man1/${manfile}
+.endfor
+
+.for catfile in ${CAT1}
+	${INSTALL_MAN} ${WRKSRC}/${catfile} ${STAGEDIR}${MAN1PREFIX}/man/cat1/${catfile}
+.endfor
+
+	${MKDIR} ${STAGEDIR}${DOCSDIR}
+	${INSTALL_DATA} ${WRKSRC}/ALIASES ${STAGEDIR}${DOCSDIR}/ALIASES
+
+.include <bsd.port.mk>

Added: head/mail/fastforward/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/mail/fastforward/distinfo	Sun Aug  3 21:40:02 2014	(r363942)
@@ -0,0 +1,2 @@
+SHA256 (fastforward-0.51.tar.gz) = 45a1a071d54701bf973fed7582b5ff76cb6ed3e43089da6da87caabbb4b4fd7e
+SIZE (fastforward-0.51.tar.gz) = 40659

Added: head/mail/fastforward/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/mail/fastforward/pkg-descr	Sun Aug  3 21:40:02 2014	(r363942)
@@ -0,0 +1,5 @@
+fastforward handles qmail forwarding according to a cdb database.
+It can create forwarding databases from a sendmail-style
+/etc/aliases or from user-oriented virtual-domain tables.
+
+WWW: http://cr.yp.to/fastforward.html


More information about the svn-ports-head mailing list