mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-29 01:13:08 +00:00
77197dd811
their own packages and still on pkg 1.1.4 can upgrade. With hat: portmgr
43 lines
897 B
Makefile
43 lines
897 B
Makefile
# Created by: Matthew Seaman
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= sa-utils
|
|
PORTVERSION= 0.02
|
|
PORTREVISION= 2
|
|
CATEGORIES= mail
|
|
MASTER_SITES= # none
|
|
DISTFILES= # none
|
|
|
|
MAINTAINER= matthew@FreeBSD.org
|
|
COMMENT= SpamAssassin nightly periodic maintenance
|
|
|
|
RUN_DEPENDS= sa-update:${PORTSDIR}/mail/p5-Mail-SpamAssassin
|
|
|
|
OPTIONS_DEFINE= SACOMPILE
|
|
SACOMPILE_DESC= Enable sa-compile support
|
|
|
|
NO_ARCH= yes
|
|
NO_BUILD= yes
|
|
SUB_FILES= sa-utils
|
|
|
|
PERIODIC_DAILY= etc/periodic/daily
|
|
|
|
PLIST_FILES= ${PERIODIC_DAILY}/sa-utils
|
|
PLIST_DIRS= ${PERIODIC_DAILY} ${PERIODIC_DAILY:H}
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MSACOMPILE}
|
|
RUN_DEPENDS+= re2c>=0.12.0:${PORTSDIR}/devel/re2c
|
|
SUB_LIST+= SACOMPILE=YES
|
|
.else
|
|
SUB_LIST+= SACOMPILE=NO
|
|
.endif
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/${PERIODIC_DAILY}/
|
|
${INSTALL_SCRIPT} ${WRKDIR}/sa-utils \
|
|
${STAGEDIR}${PREFIX}/${PERIODIC_DAILY}/sa-utils
|
|
|
|
.include <bsd.port.mk>
|