freebsd-ports/mail/lmtp2nntp/Makefile
Dmitry Marakasov fbe0f96a25 - Switch to options helpers
- Add some NO_ARCHes
- Fix and unsilence some installation commands

Approved by:	portmgr blanket
2015-09-03 16:37:31 +00:00

42 lines
1 KiB
Makefile

# Created by: Thomas Lotterer <thomas.lotterer@cw.com>
# $FreeBSD$
PORTNAME= lmtp2nntp
PORTVERSION= 1.4.1
CATEGORIES= mail news
MASTER_SITES= OSSP/tool/${PORTNAME}
MAINTAINER= vd@FreeBSD.org
COMMENT= OSSP mail to news gateway
LIB_DEPENDS= libstr.so:${PORTSDIR}/devel/str \
libex.so:${PORTSDIR}/devel/ossp-ex \
libsa.so:${PORTSDIR}/net/ossp-sa \
libvar.so:${PORTSDIR}/devel/ossp-var
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --with-ex=${LOCALBASE} --with-str=${LOCALBASE} \
--with-sa=${LOCALBASE} --with-var=${LOCALBASE}
PLIST_FILES= sbin/lmtp2nntp \
man/man8/lmtp2nntp.8.gz
PORTDOCS= INSTALL README
OPTIONS_DEFINE= DOCS
# Try to fix parallel builds (-jX)
post-patch:
@${REINPLACE_CMD} -e '/^all:/s, _SUBDIRS_all,, ; \
/^$$(PROG)/s,$$, _SUBDIRS_all,' ${WRKSRC}/Makefile.in
post-install-DOCS-on:
@${MKDIR} ${STAGEDIR}${DOCSDIR}
${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR}
check: build
@(cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} \
${MAKEFILE} ${MAKE_ARGS} check)
regression-test: check
.include <bsd.port.mk>