diff options
author | Cy Schubert <cy@FreeBSD.org> | 2012-04-07 16:33:05 +0000 |
---|---|---|
committer | Cy Schubert <cy@FreeBSD.org> | 2012-04-07 16:33:05 +0000 |
commit | fa094e3d345a70eee6be78614fc02a2e1ba6f0a9 (patch) | |
tree | 455ae281b541b43c2333d5ba64593564e228d218 /misc/tkcron/files | |
parent | - Update to 0.2 (diff) |
Re-import tkcron, a tk frontend to cron.
Feature safe: yes
Notes
Notes:
svn path=/head/; revision=294336
Diffstat (limited to 'misc/tkcron/files')
-rw-r--r-- | misc/tkcron/files/Makefile | 16 | ||||
-rw-r--r-- | misc/tkcron/files/patch-aa | 11 |
2 files changed, 27 insertions, 0 deletions
diff --git a/misc/tkcron/files/Makefile b/misc/tkcron/files/Makefile new file mode 100644 index 000000000000..b18a1dee335f --- /dev/null +++ b/misc/tkcron/files/Makefile @@ -0,0 +1,16 @@ +# +# $FreeBSD$ +# + +BINDIR= ${PREFIX}/bin +WISHDIR?= ${BINDIR} + +all: tkcron + +tkcron: + sed -e "\:/usr/local/bin/wish: s;;${BINDIR}/wish8.2;g" tkcron.tcl > tkcron + +install: all + install ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} tkcron ${BINDIR} + +.include <bsd.own.mk> diff --git a/misc/tkcron/files/patch-aa b/misc/tkcron/files/patch-aa new file mode 100644 index 000000000000..b6c4026ef5ad --- /dev/null +++ b/misc/tkcron/files/patch-aa @@ -0,0 +1,11 @@ +--- tkcron.tcl Sat Aug 3 17:53:42 1996 ++++ tkcron.tcl Sat Aug 3 17:52:03 1996 +@@ -281,6 +281,7 @@ + + # Return the crontab string as a list + proc parseCrontabFile {str} { ++ set result "" + set crontablist [split $str \n] + set listlength [llength $crontablist] + for {set i 0} {$i < $listlength} {incr i 1} { + |