mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-25 04:43:33 +00:00
bb3d8a2d71
glarkin@FreeBSD.org. Approved by: beech (mentor)
30 lines
630 B
Makefile
30 lines
630 B
Makefile
# Ports collection makefile for: smtptrapd
|
|
# Date created: 19 March 2005
|
|
# Whom: Anders Nordby <anders@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= smtptrapd
|
|
PORTVERSION= 1.5
|
|
CATEGORIES= mail
|
|
MASTER_SITES= SF
|
|
|
|
MAINTAINER= glarkin@FreeBSD.org
|
|
COMMENT= RFC 2821 compliant SMTP service that always returns a 4xx soft error
|
|
|
|
CFLAGS+= ${PTHREAD_CFLAGS} ${PTHREAD_LIBS}
|
|
|
|
USE_RC_SUBR= smtptrapd.sh
|
|
|
|
PLIST_FILES= bin/smtptrapd
|
|
|
|
do-build:
|
|
(cd ${WRKSRC} && ${CC} ${CFLAGS} -o smtptrapd smtptrapd.c)
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/smtptrapd ${PREFIX}/bin/
|
|
@${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL
|
|
|
|
.include <bsd.port.mk>
|