diff options
author | sem <sem@FreeBSD.org> | 2005-05-02 05:55:54 +0800 |
---|---|---|
committer | sem <sem@FreeBSD.org> | 2005-05-02 05:55:54 +0800 |
commit | b655769f0faf60902bd7e6f19ccafc58b0d94080 (patch) | |
tree | 489f9c59eb0b012c0163e81ebaf85f3bd9bec1b6 /mail | |
parent | 247d05e4d84b690b7d881e424bfa7bfac2c60d13 (diff) | |
download | freebsd-ports-gnome-b655769f0faf60902bd7e6f19ccafc58b0d94080.tar.gz freebsd-ports-gnome-b655769f0faf60902bd7e6f19ccafc58b0d94080.tar.zst freebsd-ports-gnome-b655769f0faf60902bd7e6f19ccafc58b0d94080.zip |
Display messages from Exim queue based on a variety of criteria.
PR: ports/80517
Submitted by: Vsevolod Stakhov <vsevolod@highsecure.ru>
Diffstat (limited to 'mail')
-rw-r--r-- | mail/Makefile | 1 | ||||
-rw-r--r-- | mail/exipick/Makefile | 36 | ||||
-rw-r--r-- | mail/exipick/distinfo | 2 | ||||
-rw-r--r-- | mail/exipick/files/patch-aa | 11 | ||||
-rw-r--r-- | mail/exipick/pkg-descr | 5 | ||||
-rw-r--r-- | mail/exipick/pkg-message | 5 |
6 files changed, 60 insertions, 0 deletions
diff --git a/mail/Makefile b/mail/Makefile index 7157961ca348..20129b05f1b0 100644 --- a/mail/Makefile +++ b/mail/Makefile @@ -85,6 +85,7 @@ SUBDIR += exim-mysql SUBDIR += exim-postgresql SUBDIR += exim-sa-exim + SUBDIR += exipick SUBDIR += exmh2 SUBDIR += ezmlm SUBDIR += ezmlm-idx diff --git a/mail/exipick/Makefile b/mail/exipick/Makefile new file mode 100644 index 000000000000..8f75d891a60a --- /dev/null +++ b/mail/exipick/Makefile @@ -0,0 +1,36 @@ +# New ports collection makefile for: exipick +# Date created: 29 Sep 2004 +# Whom: Vsevolod Stakhov <vsevolod@highsecure.ru> +# +# $FreeBSD$ +# + +PORTNAME= exipick +PORTVERSION= 20050225.0 +CATEGORIES= mail +MASTER_SITES= http://jetmore.org/john/code/ +DISTNAME= ${PORTNAME}.${PORTVERSION} +EXTRACT_SUFX= + +MAINTAINER= vsevolod@highsecure.ru +COMMENT= Display messages from Exim queue based on a variety of criteria + +PLIST_FILES= bin/${PORTNAME} + +USE_PERL5_RUN= yes + +do-extract: + @${RM} -rf ${WRKDIR} + @${MKDIR} ${WRKSRC} + @${CP} ${DISTDIR}/${DIST_SUBDIR}/${DISTNAME} ${WRKSRC} + +do-build: + @${SED} -e '1s|/usr/bin/perl|${PERL}|' \ + ${WRKSRC}/${DISTNAME} > ${WRKSRC}/${PORTNAME}.pl + +do-install: + @${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME}.pl \ + ${DESTDIR}${PREFIX}/bin/${PORTNAME} + @${CAT} ${PKGMESSAGE} + +.include <bsd.port.mk> diff --git a/mail/exipick/distinfo b/mail/exipick/distinfo new file mode 100644 index 000000000000..1523ca47d951 --- /dev/null +++ b/mail/exipick/distinfo @@ -0,0 +1,2 @@ +MD5 (exipick.20050225.0) = c5bf0deec898a63bff1690e366a91cea +Size (exipick.20050225.0) = 40768 diff --git a/mail/exipick/files/patch-aa b/mail/exipick/files/patch-aa new file mode 100644 index 000000000000..0db52e15fd5a --- /dev/null +++ b/mail/exipick/files/patch-aa @@ -0,0 +1,11 @@ +--- exipick.20050225.0.orig Mon May 2 01:10:13 2005 ++++ exipick.20050225.0 Mon May 2 01:10:34 2005 +@@ -1,7 +1,7 @@ + #!/usr/bin/perl + + # SET THIS TO THE PATH TO YOUR SPOOL DIR! +-my $spool = '/local/exim/spool'; ++my $spool = '/var/spool/exim'; + + use strict; + use Getopt::Long; diff --git a/mail/exipick/pkg-descr b/mail/exipick/pkg-descr new file mode 100644 index 000000000000..ac46d49e37a7 --- /dev/null +++ b/mail/exipick/pkg-descr @@ -0,0 +1,5 @@ +Exipick is a script for display messages from Exim queue based on +a variety of criteria, for example this is usefull for checking Exim +queue in some stitistics scripts. + +WWW: http://jetmore.org/john/code/#exipick diff --git a/mail/exipick/pkg-message b/mail/exipick/pkg-message new file mode 100644 index 000000000000..bb9eaa1e67fa --- /dev/null +++ b/mail/exipick/pkg-message @@ -0,0 +1,5 @@ +exipick has been successfully installed. + +Try + `exipick --help' +for perldoc help. |