pkgsrc/mail/solid-pop3d/Makefile
hubertf 954cf6794b Add solid-pop3d-0.15: Flexible POP3 server
The Solid POP3 Server is an implementation of a Post Office Protocol
version 3 server that has flexibility as its main goal. The server is
easily configurable and has support for few features such as APOP
authentication scheme, virtual hosting, maildir and mailbox handling,
bulletins and expiration of messages. Each user can specify position and
type of his maildrop.

Contribyted by Piotr Stolc <socrtp@soclab.eu.org> in PR 16682
2002-05-12 16:54:45 +00:00

55 lines
1.2 KiB
Makefile

# $NetBSD: Makefile,v 1.1.1.1 2002/05/12 16:54:45 hubertf Exp $
DISTNAME= solid-pop3d-0.15
CATEGORIES= mail
MASTER_SITES= http://solidpop3d.pld.org.pl/
MAINTAINER= socrtp@soclab.eu.org
HOMEPAGE= http://solidpop3d.pld.org.pl/
COMMENT= Flexible POP3 server
EGDIR= ${PREFIX}/share/examples/spop3d
MESSAGE_SUBST+= EGDIR=${EGDIR}
PLIST_SRC=
EXAMPLES=
GNU_CONFIGURE= yes
CONFIGURE_ARGS+= --enable-logextend \
--enable-statistics
.if defined(SPOP3D_ENABLE_APOP)
CONFIGURE_ARGS+= --enable-apop
PLIST_SRC+= ${.CURDIR}/PLIST.apop
.endif
.if defined(SPOP3D_ENABLE_STANDALONE)
CONFIGURE_ARGS+= --enable-standalone
CONFIGURE_ARGS+= --enable-connect
.endif
.if defined(SPOP3D_ENABLE_ALIASES)
CONFIGURE_ARGS+= --enable-mapping
CONFIGURE_ARGS+= --enable-nonip
.endif
.if defined(USE_INET6)
CONFIGURE_ARGS+= --enable-ipv6
.endif
EXAMPLES+= config.example
PLIST_SRC+= ${.CURDIR}/PLIST
post-install:
${INSTALL_DATA_DIR} ${EGDIR}
cd ${WRKSRC}/doc; for i in ${EXAMPLES}; do \
${INSTALL_DATA} $${i} ${EGDIR}/$${i}; \
done
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/solid-pop3d
.for i in AUTHORS CONFIGFILE COPYING ChangeLog INSTALL README THANKS VIRTUALS
${INSTALL_DATA} ${WRKSRC}/${i} ${PREFIX}/share/doc/solid-pop3d
.endfor
.include "../../mk/bsd.pkg.mk"