967c2ae805
- Add patch to properly pass variables to make - Remove now-unneeded USE_REINPLACE - Add SIZE to distinfo - Re-format pkg-descr - Cleanup Makefile a bit PR: ports/61823 Submitted by: maintainer
49 lines
1.5 KiB
Makefile
49 lines
1.5 KiB
Makefile
# New ports collection makefile for: dsbl-testers
|
|
# Date created: Fri Aug 23 09:00:00 WST 2002
|
|
# Whom: Dean Hollister <dean@odyssey.apana.org.au>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= dsbl-testers
|
|
PORTVERSION= 0.9.5
|
|
CATEGORIES= mail
|
|
MASTER_SITES= http://firestuff.org/projects/ \
|
|
http://www.wa.apana.org.au/~dean/sources/ \
|
|
ftp://ftp.wa.apana.org.au/pub/pc/unix/packages/
|
|
|
|
MAINTAINER= dean@odyssey.apana.org.au
|
|
COMMENT= Testing software configured to work with DSBL/DSBL-compliant services
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/include/firestring.h:${PORTSDIR}/misc/firestring \
|
|
${LOCALBASE}/include/firedns.h:${PORTSDIR}/dns/firedns
|
|
|
|
HAS_CONFIGURE= yes
|
|
CONFIGURE_ENV= CFLAGS="${CFLAGS} ${PTHREAD_CFLAGS} -I${LOCALBASE}/include" \
|
|
LIBS="${LIBS} ${PTHREAD_LIBS}" PREFIX="${PREFIX}"
|
|
INSTALL_SHLIBS= yes
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
|
|
MAN1= auth-relaytest.1 formmailtest.1 getcookie.1 httptest.1 \
|
|
relaytest.1 socks4test.1 socks5test.1 spamtrap.1
|
|
MAN5= dsbl.conf.5
|
|
|
|
post-patch:
|
|
@-${RM} ${WRKSRC}/firemake/*.orig
|
|
|
|
# install ourselves to insure proper ownership/permissions
|
|
# as dictated by port's rules
|
|
BINARY_FILES= auth-relaytest formmailtest httptest relaytest \
|
|
getcookie socks4test socks5test spamtrap
|
|
CONF_FILES= conf/dsbl.conf
|
|
|
|
do-install:
|
|
cd ${WRKSRC} && \
|
|
${INSTALL_PROGRAM} ${BINARY_FILES} ${PREFIX}/bin && \
|
|
${INSTALL_DATA} ${CONF_FILES} ${PREFIX}/etc
|
|
cd ${WRKSRC}/man && \
|
|
${INSTALL_MAN} ${MAN1} ${MAN1PREFIX}/man/man1 && \
|
|
${INSTALL_MAN} ${MAN5} ${MAN5PREFIX}/man/man5
|
|
|
|
.include <bsd.port.mk>
|