6d3edf0ac7
akpop3d is a POP3 daemon aimed to be small and secure. Despite its small size, it offers a lot of features. It is completely RFC 1939 compliant. PR: 50655 Submitted by: Kirill Ponomarew
35 lines
816 B
Makefile
35 lines
816 B
Makefile
# New ports collection makefile for: akpop3d
|
|
# Date created: Sun Apr 6 10:12:16 CEST 2003
|
|
# Whom: Kirill Ponomarew <ponomarew@oberon.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= akpop3d
|
|
PORTVERSION= 0.7.4
|
|
CATEGORIES= mail
|
|
MASTER_SITES= http://www.synflood.at/akpop3d/
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION}
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= ponomarew@oberon.net
|
|
COMMENT= POP3 daemon aimed to be small and secure
|
|
|
|
MAN8= akpop3d.8
|
|
|
|
USE_BZIP2= yes
|
|
GNU_CONFIGURE= yes
|
|
|
|
.if defined(WITH_SSL)
|
|
USE_OPENSSL= YES
|
|
CONFIGURE_ARGS+=--with-openssl=${OPENSSLBASE}
|
|
CONFIGURE_ENV= CPPFLAGS="-I${OPENSSLBASE}/include" \
|
|
LDFLAGS="-L${OPENSSLBASE}/lib -lssl -lcrypto"
|
|
.endif
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/akpop3d ${PREFIX}/bin/
|
|
${INSTALL_MAN} ${WRKSRC}/akpop3d.8 ${PREFIX}/man/man8/
|
|
|
|
.include <bsd.port.mk>
|