diff options
author | ijliao <ijliao@FreeBSD.org> | 2001-03-02 00:33:19 +0800 |
---|---|---|
committer | ijliao <ijliao@FreeBSD.org> | 2001-03-02 00:33:19 +0800 |
commit | bdb25ee5732ee26d2a22873749fbcd8ffb512918 (patch) | |
tree | 78ab4ed5ba8a5b8fbe438883acc21e79585e44d6 /sysutils/fcron/Makefile | |
parent | a0870fdead7b76864610094b5563310eddea8cea (diff) | |
download | freebsd-ports-graphics-bdb25ee5732ee26d2a22873749fbcd8ffb512918.tar.gz freebsd-ports-graphics-bdb25ee5732ee26d2a22873749fbcd8ffb512918.tar.zst freebsd-ports-graphics-bdb25ee5732ee26d2a22873749fbcd8ffb512918.zip |
add fcron, a periodical command scheduler
Diffstat (limited to 'sysutils/fcron/Makefile')
-rw-r--r-- | sysutils/fcron/Makefile | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/sysutils/fcron/Makefile b/sysutils/fcron/Makefile new file mode 100644 index 00000000000..99aca6f9c0a --- /dev/null +++ b/sysutils/fcron/Makefile @@ -0,0 +1,36 @@ +# ex:ts=8 +# New ports collection makefile for: fcron +# Date created: Mar 1, 2001 +# Whom: Ying-Chieh Liao <ijliao@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= fcron +PORTVERSION= 1.0.1 +CATEGORIES= sysutils +MASTER_SITES= ${MASTER_SITE_SUNSITE} \ + http://fcron.free.fr/ +MASTER_SITE_SUBDIR= system/daemons/cron +DISTNAME= ${PORTNAME}-${PORTVERSION}.src + +MAINTAINER= ijliao@FreeBSD.org + +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --with-etcdir=${PREFIX}/etc --with-cflags="${CFLAGS}" \ + --with-rootname=root --with-rootgroup=wheel \ + --with-answer-all=yes + +.if !defined(NOPORTDOCS) +CONFIGURE_ARGS+= --with-docdir=${PREFIX}/share/doc/fcron +PLIST_SUB= PORTVERSION=${PORTVERSION} +.endif + +WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} + +MAN1= fcrontab.1 +MAN3= bitstring.3 +MAN5= fcrontab.5 +MAN8= fcron.8 + +.include <bsd.port.mk> |