1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-21 04:06:46 +00:00
freebsd-ports/mail/akpop3d/Makefile
Mathieu Arnold a28f0f7f7f Remove all USE_OPENSSL occurrences.
Sponsored by:	Absolight
2017-03-15 14:45:30 +00:00

29 lines
671 B
Makefile

# Created by: Kirill Ponomarew <ponomarew@oberon.net>
# $FreeBSD$
PORTNAME= akpop3d
PORTVERSION= 0.7.7
CATEGORIES= mail
MASTER_SITES= http://www.synflood.at/akpop3d/
MAINTAINER= ports@FreeBSD.org
COMMENT= POP3 daemon aimed to be small and secure
PLIST_FILES= bin/akpop3d man/man8/akpop3d.8.gz
USES= tar:bzip2
GNU_CONFIGURE= yes
.if defined(WITH_SSL)
USES+= ssl
CONFIGURE_ARGS+=--with-openssl=${OPENSSLBASE}
CPPFLAGS+= -I${OPENSSLBASE}/include
LDFLAGS+= -L${OPENSSLBASE}/lib -lssl -lcrypto
.endif
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/akpop3d ${STAGEDIR}${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/akpop3d.8 ${STAGEDIR}${MANPREFIX}/man/man8
.include <bsd.port.mk>