mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
45 lines
824 B
Makefile
45 lines
824 B
Makefile
# Created by: John Nielsen <john@jnielsen.net>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= hotwayd
|
|
PORTVERSION= 0.8.4
|
|
PORTREVISION= 1
|
|
PORTEPOCH= 1
|
|
CATEGORIES= mail
|
|
MASTER_SITES= SF
|
|
|
|
MAINTAINER= john@jnielsen.net
|
|
COMMENT= A Hotmail -> POP3 gateway
|
|
|
|
LIB_DEPENDS= xml2.5:${PORTSDIR}/textproc/libxml2 \
|
|
sasl2:${PORTSDIR}/security/cyrus-sasl2
|
|
|
|
USE_BZIP2= yes
|
|
GNU_CONFIGURE= yes
|
|
USE_GMAKE= yes
|
|
USES= iconv
|
|
|
|
MAN1= hotwayd.1 \
|
|
hotsmtpd.1
|
|
|
|
PORTDOCS= AUTHORS COPYING ChangeLog INSTALL NEWS README VERSION
|
|
PLIST_FILES= sbin/hotwayd sbin/hotsmtpd
|
|
|
|
post-install: install-doc-files display-message
|
|
|
|
NO_STAGE= yes
|
|
install-doc-files:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
.for f in ${PORTDOCS}
|
|
@${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
display-message:
|
|
@${ECHO_MSG}
|
|
@${CAT} ${PKGMESSAGE}
|
|
@${ECHO_MSG}
|
|
|
|
.include <bsd.port.mk>
|