diff options
author | Marcus Alves Grando <mnag@FreeBSD.org> | 2006-02-23 18:54:49 +0000 |
---|---|---|
committer | Marcus Alves Grando <mnag@FreeBSD.org> | 2006-02-23 18:54:49 +0000 |
commit | 62b5ee6beaca2d3259d7e0ecd346543a5566a659 (patch) | |
tree | aa01a220eb1b332cff551a7f4670aecf72408119 | |
parent | 84131e240ab9dae6384a1d7a0c6f271eebcc321d (diff) | |
download | ports-62b5ee6beaca2d3259d7e0ecd346543a5566a659.tar.gz ports-62b5ee6beaca2d3259d7e0ecd346543a5566a659.zip |
Notes
-rw-r--r-- | mail/pfqueue/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/mail/pfqueue/Makefile b/mail/pfqueue/Makefile index 504d0ecc76f5..fbea15eb950c 100644 --- a/mail/pfqueue/Makefile +++ b/mail/pfqueue/Makefile @@ -7,7 +7,7 @@ PORTNAME= pfqueue PORTVERSION= 0.5.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= mail MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} @@ -23,6 +23,9 @@ CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} MAN1= pfqueue.1 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" \ + -e "s|-lpthread|${PTHREAD_LIBS}|g" ${WRKSRC}/configure + @${REINPLACE_CMD} -e 's|PFQ_SONAME "0.0.0"|PFQ_SONAME "0"|' \ + ${WRKSRC}/libpfq/pfqlib.c .include <bsd.port.mk> |