1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-30 05:40:06 +00:00

- Update to 0.65

- Pass maintainership to submitter

PR:		ports/108840
Submitted by:	Martin Matuska <martin at matuska.org>
This commit is contained in:
Rong-En Fan 2007-02-06 17:06:07 +00:00
parent 16e273891f
commit dfdc908706
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=184384
4 changed files with 35 additions and 7 deletions

View File

@ -7,21 +7,24 @@
#
PORTNAME= postal
PORTVERSION= 0.62
PORTVERSION= 0.65
CATEGORIES= benchmarks mail
MASTER_SITES= http://www.coker.com.au/postal/
EXTRACT_SUFX= .tgz
MAINTAINER= ports@FreeBSD.org
MAINTAINER= martin@matuska.org
COMMENT= Benchmark SMTP/POP servers
USE_OPENSSL= yes
GNU_CONFIGURE= yes
USE_GMAKE= yes
PLIST_FILES= sbin/postal sbin/postal-list sbin/rabid
PLIST_FILES= sbin/bhm sbin/postal bin/postal-list sbin/rabid
MAN8= postal.8 postal-list.8 rabid.8
MAN1= postal-list.1
MAN8= bhm.8 postal.8 rabid.8
CONFIGURE_ARGS= --mandir=${MANPREFIX}/man
post-patch:
@${REINPLACE_CMD} -e "s,-pthread,${PTHREAD_LIBS},g" ${WRKSRC}/configure

View File

@ -1,3 +1,3 @@
MD5 (postal-0.62.tgz) = 4a2eb25973c4f427022414e3e433ccb5
SHA256 (postal-0.62.tgz) = 937252ddff2576364f3ea5ce05a9247ec5ab8e043a951c6c1ad6ce15d016ddd6
SIZE (postal-0.62.tgz) = 84506
MD5 (postal-0.65.tgz) = b1466c62e191aa10fc5ffad49cec9f19
SHA256 (postal-0.65.tgz) = 87dbc4eac98261b707ebacca25d3ed4e90b545826908585567e7b8c201a8411e
SIZE (postal-0.65.tgz) = 120745

View File

@ -0,0 +1,13 @@
--- basictcp.cpp.orig Tue Feb 6 16:03:18 2007
+++ basictcp.cpp Tue Feb 6 16:03:53 2007
@@ -14,8 +14,10 @@
#include "logit.h"
#include "results.h"
+#ifndef USE_OPENSSL
int base_tcp::m_init_dh_params = 0;
gnutls_dh_params_t base_tcp::m_dh_params;
+#endif
base_tcp::base_tcp(int fd, Logit *log, Logit *debug, results *res
#ifdef USE_SSL

View File

@ -0,0 +1,12 @@
--- bhm.cpp.orig Tue Feb 6 16:04:04 2007
+++ bhm.cpp Tue Feb 6 16:05:12 2007
@@ -13,7 +13,9 @@
#include <sys/types.h>
#include <sys/socket.h>
#include <arpa/inet.h>
+#ifndef __FreeBSD__
#include <netinet/ip.h>
+#endif
#include "postal.h"
#include "logit.h"