mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-21 00:25:50 +00:00
67ac96db70
- Verbosify build and installation
23 lines
500 B
Makefile
23 lines
500 B
Makefile
# Created by: Anders Nordby <anders@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= smtptrapd
|
|
PORTVERSION= 1.6
|
|
CATEGORIES= mail
|
|
MASTER_SITES= SF
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= RFC 2821 compliant SMTP service that always returns a 4xx soft error
|
|
|
|
USE_RC_SUBR= smtptrapd
|
|
|
|
PLIST_FILES= bin/smtptrapd
|
|
|
|
do-build:
|
|
cd ${WRKSRC} && ${CC} ${CFLAGS} ${PTHREAD_CFLAGS} ${PTHREAD_LIBS} -o smtptrapd smtptrapd.c
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/smtptrapd ${STAGEDIR}${PREFIX}/bin/
|
|
|
|
.include <bsd.port.mk>
|