mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-19 00:13:33 +00:00
43 lines
1.2 KiB
Makefile
43 lines
1.2 KiB
Makefile
PORTNAME= archivesmtp
|
|
PORTVERSION= 1.2
|
|
PORTREVISION= 4
|
|
CATEGORIES= mail
|
|
MASTER_SITES= http://www.dancingfortune.com/projects/archivesmtp/files/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= SMTP mail archiver
|
|
WWW= http://www.dancingfortune.com/projects/archivesmtp/index.php
|
|
|
|
LIBS+= -lmilter -lpthread
|
|
MAKE_ENV+= LDADD="${LIBS}"
|
|
|
|
USE_RC_SUBR= archivesmtp
|
|
SUB_FILES= pkg-message
|
|
SUB_LIST+= SOCKETBASE="${SOCKETBASE}"\
|
|
SOCKETDIR="${SOCKETDIR}"
|
|
PLIST_SUB+= ${SUB_LIST}
|
|
|
|
# Path for unix/local socket (by default also used for pid file)
|
|
SOCKETBASE?= /var/run
|
|
SOCKETDIR?= archivesmtp
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
# Sets up libmilter dependencies and options
|
|
.include "${PORTSDIR}/mail/sendmail/bsd.milter.mk"
|
|
|
|
pre-build:
|
|
# Copy BSD Makefiles into build tree
|
|
${CP} ${FILESDIR}/top-Makefile ${WRKSRC}/Makefile
|
|
${CP} ${FILESDIR}/src-Makefile ${WRKSRC}/src/Makefile
|
|
|
|
do-install:
|
|
${INSTALL} -s ${WRKSRC}/src/archivesmtp ${STAGEDIR}${PREFIX}/sbin/
|
|
${INSTALL_MAN} ${WRKSRC}/src/archivesmtp.8 ${STAGEDIR}${PREFIX}/share/man/man8/
|
|
# Install sample configuration file
|
|
${INSTALL_DATA} ${WRKSRC}/src/archivesmtp.conf.sample ${STAGEDIR}${PREFIX}/etc/
|
|
# Create socket directory
|
|
@${MKDIR} ${STAGEDIR}${SOCKETBASE}/${SOCKETDIR}
|
|
|
|
.include <bsd.port.post.mk>
|