Import of pkgsrc-2013Q2

This commit is contained in:
2013-09-26 17:14:40 +02:00
commit 785076ae39
74991 changed files with 4380255 additions and 0 deletions

2
sysutils/tkcron/DESCR Normal file
View File

@@ -0,0 +1,2 @@
Tkcron is a frontend to crontab which allows the user to conveniently
add/modify/install/remove cron jobs.

26
sysutils/tkcron/Makefile Normal file
View File

@@ -0,0 +1,26 @@
# $NetBSD: Makefile,v 1.20 2013/04/06 12:04:01 rodent Exp $
#
DISTNAME= tkcron-2.12
PKGREVISION= 1
CATEGORIES= x11 tk
MASTER_SITES= # ftp://ftp.neosoft.com/languages/tcl/alcatel/code/
EXTRACT_SUFX= .tcl.gz
MAINTAINER= pkgsrc-users@NetBSD.org
COMMENT= Graphical frontend to crontab
DEPENDS+= tk>=8.3.2:../../x11/tk
WRKSRC= ${WRKDIR}
EXTRACT_CMD= ${GZCAT} $$extract_file > tkcron.tcl
INSTALLATION_DIRS= bin
do-build:
${SED} -e "\:/usr/local/bin/wish: s;;${LOCALBASE}/bin/wish;g" ${WRKSRC}/tkcron.tcl > ${WRKSRC}/tkcron
do-install:
${INSTALL_SCRIPT} ${WRKSRC}/tkcron ${DESTDIR}${PREFIX}/bin
.include "../../mk/bsd.pkg.mk"

2
sysutils/tkcron/PLIST Normal file
View File

@@ -0,0 +1,2 @@
@comment $NetBSD: PLIST,v 1.1 2001/10/31 22:53:58 zuntum Exp $
bin/tkcron

6
sysutils/tkcron/distinfo Normal file
View File

@@ -0,0 +1,6 @@
$NetBSD: distinfo,v 1.3 2005/02/24 13:40:58 agc Exp $
SHA1 (tkcron-2.12.tcl.gz) = 13e9d3e768005289ed3b76fcdebbaaf454800b05
RMD160 (tkcron-2.12.tcl.gz) = 35719e071890b481255bdeeaeedf95a7bac62635
Size (tkcron-2.12.tcl.gz) = 4545 bytes
SHA1 (patch-aa) = c12f90022aecb286e18abeebd4c5e85b5fe79bf2

View File

@@ -0,0 +1,13 @@
$NetBSD: patch-aa,v 1.1.1.1 2000/08/30 23:07:45 jwise Exp $
--- 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} {