1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-11 07:22:22 +00:00
- Update to 0.4.0

Moreover:
  - Reword COMMENT and pkg-descr
  - Use ${PTHREAD_CFLAGS}

PR:		ports/82203 [1]
Submitted by:	maintainer [1]
This commit is contained in:
Jean-Yves Lefort 2005-06-14 17:50:13 +00:00
parent edfce7e2ec
commit d93a4f3fab
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=137451
4 changed files with 22 additions and 34 deletions

View File

@ -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>

View File

@ -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

View File

@ -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" : "" ),

View File

@ -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