diff options
author | jylefort <jylefort@FreeBSD.org> | 2005-06-15 01:50:13 +0800 |
---|---|---|
committer | jylefort <jylefort@FreeBSD.org> | 2005-06-15 01:50:13 +0800 |
commit | b5793493946a6b4749071a4967387ba4c68fa5e6 (patch) | |
tree | bccda87b8c3aa9bbf66770d75af49c2635c93e26 /mail/pfqueue | |
parent | 73c91eb8af7a4ea69b1050e13fae5b1d3a2aba87 (diff) | |
download | freebsd-ports-gnome-b5793493946a6b4749071a4967387ba4c68fa5e6.tar.gz freebsd-ports-gnome-b5793493946a6b4749071a4967387ba4c68fa5e6.tar.zst freebsd-ports-gnome-b5793493946a6b4749071a4967387ba4c68fa5e6.zip |
[1]:
- Update to 0.4.0
Moreover:
- Reword COMMENT and pkg-descr
- Use ${PTHREAD_CFLAGS}
PR: ports/82203 [1]
Submitted by: maintainer [1]
Diffstat (limited to 'mail/pfqueue')
-rw-r--r-- | mail/pfqueue/Makefile | 17 | ||||
-rw-r--r-- | mail/pfqueue/distinfo | 4 | ||||
-rw-r--r-- | mail/pfqueue/files/patch-pfqueue.c | 14 | ||||
-rw-r--r-- | mail/pfqueue/pkg-descr | 21 |
4 files changed, 22 insertions, 34 deletions
diff --git a/mail/pfqueue/Makefile b/mail/pfqueue/Makefile index f8386ff276eb..73a0f6b8f43a 100644 --- a/mail/pfqueue/Makefile +++ b/mail/pfqueue/Makefile @@ -6,22 +6,29 @@ # PORTNAME= pfqueue -PORTVERSION= 0.3.8 +PORTVERSION= 0.4.0 CATEGORIES= mail MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} MAINTAINER= marcus@corp.grupos.com.br -COMMENT= A console-based tool for handling postfix queues +COMMENT= A console-based tool for handling Postfix 1, Postfix 2 and Exim queues +USE_BZIP2= yes USE_REINPLACE= yes -HAS_CONFIGURE= yes -CONFIGURE_ARGS= --prefix=${PREFIX} +USE_LIBTOOL_VER= 15 +INSTALLS_SHLIB= yes +CONFIGURE_ENV= CPPFLAGS="${PTHREAD_CFLAGS}" MAN1= pfqueue.1 PLIST_FILES= bin/pfqueue +.for backend in exim postfix1 postfix2 +. for ext in so so.0 +PLIST_FILES+= lib/libpfq_${backend}.${ext} +. endfor +.endfor post-patch: - ${REINPLACE_CMD} -e "s|-lc_r|${PTHREAD_LIBS}|g; s|-lpthread|${PTHREAD_LIBS}|g" ${WRKSRC}/configure + @${REINPLACE_CMD} -e "s|-lc_r|${PTHREAD_LIBS}|g; s|-lpthread|${PTHREAD_LIBS}|g" ${WRKSRC}/configure .include <bsd.port.mk> diff --git a/mail/pfqueue/distinfo b/mail/pfqueue/distinfo index 46f0e84793e6..4ffcb8e865f9 100644 --- a/mail/pfqueue/distinfo +++ b/mail/pfqueue/distinfo @@ -1,2 +1,2 @@ -MD5 (pfqueue-0.3.8.tar.gz) = bd3eabfe22729338af58ef971ec8b5ad -SIZE (pfqueue-0.3.8.tar.gz) = 109218 +MD5 (pfqueue-0.4.0.tar.bz2) = d5d5d8e92fef879171ce365e2c20c266 +SIZE (pfqueue-0.4.0.tar.bz2) = 220018 diff --git a/mail/pfqueue/files/patch-pfqueue.c b/mail/pfqueue/files/patch-pfqueue.c deleted file mode 100644 index 4a494feb9dd5..000000000000 --- a/mail/pfqueue/files/patch-pfqueue.c +++ /dev/null @@ -1,14 +0,0 @@ ---- pfqueue.c.orig Fri May 20 12:26:17 2005 -+++ pfqueue.c Fri May 20 19:21:56 2005 -@@ -562,9 +562,10 @@ - - // Sets the list window title - void win_listtitle() { -+ char buf[BUF_SIZE]; -+ - wattron ( lwnd, A_BOLD ); - -- char buf[BUF_SIZE]; - sprintf ( buf, "Queue: '%s', %d message%s, %d tagged %s %s %s", - q_names[CURQ], NUMMSG, - ( NUMMSG != 1 ? "s" : "" ), diff --git a/mail/pfqueue/pkg-descr b/mail/pfqueue/pkg-descr index d823918e8403..d7ee2c80fa19 100644 --- a/mail/pfqueue/pkg-descr +++ b/mail/pfqueue/pkg-descr @@ -1,18 +1,13 @@ -A console-based tool for handling postfix queues +pfqueue provides a console (ncurses) interface to Postfix 1, Postfix 2 and +Exim mail queues. -pfqueue is an effort to give postqueue/mailq/postsuper a console -(ncurses) interface: it won't add any particular functionality -to those provided with postfix itself, but will hopefully make -them to use. +It is a real-time queue scanner that shows per-queue lists of existing +messages; the messages can be deleted, put on hold or released. -It's a real-time queue scanner, that show per-queue lists of -existing messages; the messages can be deleted, put on hold or -released - -Just for example, it may be useful to inspect a traffic jam at a -given time, to see what is falling into and unexpectedly crowding -you deferred queue +For example, it may be useful to inspect a traffic jam at a given time, to see +what is falling into and unexpectedly crowding your deferred queue. WWW: http://pfqueue.sourceforge.net/ -Marcus Grando <marcus@corp.grupos.com.br> +- Marcus Grando +marcus@corp.grupos.com.br |