diff options
Diffstat (limited to 'misc')
50 files changed, 1 insertions, 960 deletions
diff --git a/misc/Makefile b/misc/Makefile index 1c0e56114e5..1188188995f 100644 --- a/misc/Makefile +++ b/misc/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.72 2000/12/14 01:00:23 wiz Exp $ +# $NetBSD: Makefile,v 1.73 2000/12/17 23:40:54 wiz Exp $ # SUBDIR += 9menu @@ -7,8 +7,6 @@ SUBDIR += astrolog SUBDIR += bottlerocket SUBDIR += buffer - SUBDIR += cal - SUBDIR += cardboard-schedule SUBDIR += chipmunk SUBDIR += chord SUBDIR += cksfv @@ -28,7 +26,6 @@ SUBDIR += gnome-utils SUBDIR += gperiodic SUBDIR += heyu - SUBDIR += ical SUBDIR += jitterbug SUBDIR += jive SUBDIR += kdeutils @@ -45,13 +42,10 @@ SUBDIR += p5-File-MMagic SUBDIR += p5-Locale-Codes SUBDIR += p5-Search - SUBDIR += plan SUBDIR += pty-redir - SUBDIR += py-mxDateTime SUBDIR += py-readline SUBDIR += qterm SUBDIR += quicklist - SUBDIR += remind SUBDIR += root SUBDIR += rpm SUBDIR += sci diff --git a/misc/cal/Makefile b/misc/cal/Makefile deleted file mode 100644 index d304051f24f..00000000000 --- a/misc/cal/Makefile +++ /dev/null @@ -1,23 +0,0 @@ -# $NetBSD: Makefile,v 1.7 2000/03/16 13:48:55 wiz Exp $ -# FreeBSD Id: Makefile,v 1.5 1997/05/12 06:33:23 max Exp -# - -DISTNAME= cal-3.5 -CATEGORIES= misc -MASTER_SITES= ${MASTER_SITE_SUNSITE:=utils/shell/} - -MAINTAINER= packages@netbsd.org - -WRKSRC= ${WRKDIR}/cal-3.5/source -MAKEFILE= makefile.unx -ALL_TARGET= cal - -do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/cal ${PREFIX}/bin/cal - ${INSTALL_MAN} ${WRKSRC}/cal.1 ${PREFIX}/man/man1/cal.1 - @${MKDIR} ${PREFIX}/etc/cal - @${CHMOD} 0755 ${PREFIX}/etc/cal - if [ ! -f ${PREFIX}/etc/cal/calcol ]; then ${INSTALL_DATA} ${WRKDIR}/cal-3.5/cal.col ${PREFIX}/etc/cal/calcol; fi - if [ ! -f ${PREFIX}/etc/cal/caldat ]; then ${INSTALL_DATA} ${WRKDIR}/cal-3.5/cal.dat ${PREFIX}/etc/cal/caldat; fi - -.include "../../mk/bsd.pkg.mk" diff --git a/misc/cal/files/md5 b/misc/cal/files/md5 deleted file mode 100644 index 6ab18b75958..00000000000 --- a/misc/cal/files/md5 +++ /dev/null @@ -1,3 +0,0 @@ -$NetBSD: md5,v 1.2 1998/08/07 13:25:04 agc Exp $ - -MD5 (cal-3.5.tar.gz) = e947731574da1731bccbe35ad2769a99 diff --git a/misc/cal/files/patch-sum b/misc/cal/files/patch-sum deleted file mode 100644 index 5bb06fc2290..00000000000 --- a/misc/cal/files/patch-sum +++ /dev/null @@ -1,4 +0,0 @@ -$NetBSD: patch-sum,v 1.1 1999/07/09 14:09:13 agc Exp $ - -MD5 (patch-aa) = 53f6dac90c7025c8e9bf3eccfb163d91 -MD5 (patch-ab) = c844d192312abfd2f8ef91e9d3ba5129 diff --git a/misc/cal/patches/patch-aa b/misc/cal/patches/patch-aa deleted file mode 100644 index 403f9581b4e..00000000000 --- a/misc/cal/patches/patch-aa +++ /dev/null @@ -1,17 +0,0 @@ -$NetBSD: patch-aa,v 1.2 1998/08/07 11:10:10 agc Exp $ - -*** makefile.unx.orig Tue Mar 5 06:36:27 1996 ---- makefile.unx Mon May 12 15:23:42 1997 -*************** -*** 10,15 **** ---- 10,19 ---- - CC=gcc - CFLAGS=-O -Wall -DUNIX -DUSE_REMINDER - -+ .ifdef PREFIX -+ CFLAGS+=-DPREFIX="\"${PREFIX}\"" -+ .endif -+ - BINDIR=/usr/bin - MANDIR=/usr/man - diff --git a/misc/cal/patches/patch-ab b/misc/cal/patches/patch-ab deleted file mode 100644 index e7a4a7c337f..00000000000 --- a/misc/cal/patches/patch-ab +++ /dev/null @@ -1,37 +0,0 @@ -$NetBSD: patch-ab,v 1.3 1998/08/07 11:10:10 agc Exp $ - ---- cal.c.orig Thu Jul 11 21:36:33 1996 -+++ cal.c Thu Oct 23 14:37:49 1997 -@@ -122,6 +122,7 @@ - #include <ctype.h> - #include <string.h> - #include <sys/types.h> -+#include <sys/param.h> /*NetBSD*/ - - #ifndef max - #define max(a,b) (((a)>(b))?(a):(b)) -@@ -130,6 +131,10 @@ - /* Note: Other unix systems may require this next re-define to work. */ - /* I believe that SCO is one such system. Please send in any fixes */ - /* needed to get your system running. */ -+#if (defined(BSD) && BSD >= 199306) -+#define stricmp(a,b) strcasecmp(a,b) /* case-insensitive string comparison */ -+#endif -+ - #ifdef __linux__ /* Make linux compatible with stricmp() */ - #define stricmp(a,b) strcasecmp(a,b) /* case-insensitive string comparison */ - #endif -@@ -1401,8 +1406,12 @@ - strcpy(str, "."); - strcpy(str, file); - if ((fp = fopen(str, mode)) == NULL) { -- /* If still not found then look in a lib directory */ -+ /* If still not found then look in config directory */ -+#ifdef PREFIX -+ strcpy(str, PREFIX "/etc/cal/"); -+#else - strcpy(str, "/usr/lib/"); -+#endif - strcat(str,file); - fp = fopen(str, mode); - } diff --git a/misc/cal/pkg/COMMENT b/misc/cal/pkg/COMMENT deleted file mode 100644 index a09124a2daa..00000000000 --- a/misc/cal/pkg/COMMENT +++ /dev/null @@ -1 +0,0 @@ -Enhanced color version of standard calendar utility diff --git a/misc/cal/pkg/DESCR b/misc/cal/pkg/DESCR deleted file mode 100644 index 7df81b92dff..00000000000 --- a/misc/cal/pkg/DESCR +++ /dev/null @@ -1,38 +0,0 @@ -CAL is a nicely-enhanced version of the unix `cal' command. -Features: - - * Hilights today's date when displaying a monthly calendar. - - * Displays an optional user-definable list of `special day' - descriptions (like appointments) to the right of the monthly - calendar display. Cal can be set optionally to ignore appointments - older than the current day. Next month's appointments are shown if - there is room to do so. Multiple appointment data files may also - be specified on the commandline. - - * You can specify your own appointment and color definition files on the - commandline, or use the defaults. - - * Date descriptions can display "years since" a given year, useful for - birthdays and anniversaries. - - * Completely configurable colors -- eight separate color attributes. - - * No ANSI driver needed for colors, and the output may be redirected - anywhere, just like the unix version. However, ANSI color control may - be enabled (e.g. for unix) with a #define in the source code. - - * Commandline-compatible with unix `cal' command, but with several - enhanced switch settings. - -Requests, bug reports, suggestions, donations, proposals for -contract work, and so forth may be sent to: - - Attn: Alex Matulich - Unicorn Research Corporation - 4621 N. Landmark Drive - Orlando, FL 32817-1235 - USA - 407-657-4974 FAX 407-657-6149 - -or send e-mail to matulich_a@seaa.navsea.navy.mil. diff --git a/misc/cal/pkg/PLIST b/misc/cal/pkg/PLIST deleted file mode 100644 index 352540df33d..00000000000 --- a/misc/cal/pkg/PLIST +++ /dev/null @@ -1,6 +0,0 @@ -@comment $NetBSD: PLIST,v 1.3 1997/11/06 10:01:10 agc Exp $ -bin/cal -etc/cal/calcol -etc/cal/caldat -@dirrm etc/cal -man/man1/cal.1.gz diff --git a/misc/cardboard-schedule/Makefile b/misc/cardboard-schedule/Makefile deleted file mode 100644 index 99fe265a195..00000000000 --- a/misc/cardboard-schedule/Makefile +++ /dev/null @@ -1,49 +0,0 @@ -# $NetBSD: Makefile,v 1.3 2000/08/18 22:46:42 hubertf Exp $ -# - -DISTNAME= cs113ins -PKGNAME= cardboard-schedule-1.13 -CATEGORIES= misc x11 -MASTER_SITES= http://cardboard.nu/downloads/ -EXTRACT_SUFX= .exe - -MAINTAINER= jwise@netbsd.org -HOMEPAGE= http://cardboard.nu/download.shtml - -USE_JAVA= yes -USE_X11BASE= yes -DEPENDS+= unzip-*:../../archivers/unzip -DEPENDS+= swing-*:../../x11/swing - -RESTRICTED= "License prohibits redistribution on CDROM" -NO_SRC_ON_CDROM= ${RESTRICTED} -NO_BIN_ON_CDROM= ${RESTRICTED} - -EXTRACT_CMD= (cd ${WRKDIR} && unzip -x ${DOWNLOADED_DISTFILE}) || ${TRUE} -MESSAGE_FILE= ${WRKDIR}/MESSAGE - -CSFILES= cs/images/Logo2.gif \ - cs/images/Logo.gif \ - stage/cs.jar \ - stage/readme.txt \ - stage/jhbasic.jar \ - stage/license.txt \ - stage/CsHelp.jar - -post-extract: - (cd ${WRKDIR} && unzip -x InstallerData/Installer.zip) || ${TRUE} - -post-build: - ${SED} -e s,@PREFIX@,${PREFIX},g < ${FILESDIR}/csched.sh > ${WRKDIR}/csched.tmp - ${SED} -e s,@LOCALBASE@,${LOCALBASE},g < ${WRKDIR}/csched.tmp > ${WRKDIR}/csched.tmp2 - ${SED} -e s,@JAVA_HOME@,${JAVA_HOME},g < ${WRKDIR}/csched.tmp2 > ${WRKDIR}/csched - ${SED} -e s,@PREFIX@,${PREFIX},g < ${PKGDIR}/MESSAGE > ${WRKDIR}/MESSAGE - -do-install: - ${MKDIR} ${PREFIX}/lib/cardboard-schedule - @(cd ${WRKDIR}/C:/projects && ${GTAR} cf - ${CSFILES} | (cd ${PREFIX}/lib/cardboard-schedule && ${GTAR} xvf -)) - ${INSTALL_SCRIPT} ${WRKDIR}/csched ${PREFIX}/bin - -do-build: - -.include "../../mk/bsd.pkg.mk" diff --git a/misc/cardboard-schedule/files/csched.sh b/misc/cardboard-schedule/files/csched.sh deleted file mode 100755 index 2ee3d3575e5..00000000000 --- a/misc/cardboard-schedule/files/csched.sh +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/sh -@JAVA_HOME@/bin/jre -cp @PREFIX@/lib/cardboard-schedule/stage/cs.jar:@PREFIX@/lib/cardboard-schedule/stage/CsHelp.jar:@PREFIX@/lib/cardboard-schedule/stage/jhbasic.jar:@LOCALBASE@/lib/java/swingall.jar:${CLASSPATH} avg.cs.gui.CsMainApp diff --git a/misc/cardboard-schedule/files/md5 b/misc/cardboard-schedule/files/md5 deleted file mode 100644 index 08bc19d4aca..00000000000 --- a/misc/cardboard-schedule/files/md5 +++ /dev/null @@ -1,3 +0,0 @@ -$NetBSD: md5,v 1.1.1.1 2000/02/28 22:11:57 jwise Exp $ - -MD5 (cs113ins.exe) = b547a38dfa243dc70e5b5425ba08c824 diff --git a/misc/cardboard-schedule/pkg/COMMENT b/misc/cardboard-schedule/pkg/COMMENT deleted file mode 100644 index f346820cd85..00000000000 --- a/misc/cardboard-schedule/pkg/COMMENT +++ /dev/null @@ -1 +0,0 @@ -project and resource management software implemented in Java/Swing diff --git a/misc/cardboard-schedule/pkg/DESCR b/misc/cardboard-schedule/pkg/DESCR deleted file mode 100644 index 54041a527b2..00000000000 --- a/misc/cardboard-schedule/pkg/DESCR +++ /dev/null @@ -1,10 +0,0 @@ -Cardboard Schedule is a project management package implemented in -Java using the Swing UI toolkit. It allows for tracking of tasks -and resources related to a number of projects. - -Although originally distributed for Windows, Cardboard Schedule is -implemented in Java and runs fine under Unix. - -This package installs a 30-day demo version of Cardboard Schedule. -You can contact Cardboard Nu at their website. http://cardboard.nu -to purchase a full license. diff --git a/misc/cardboard-schedule/pkg/MESSAGE b/misc/cardboard-schedule/pkg/MESSAGE deleted file mode 100644 index 60096561d40..00000000000 --- a/misc/cardboard-schedule/pkg/MESSAGE +++ /dev/null @@ -1,6 +0,0 @@ ------------------------------------------------------------- - A demo version of Cardboard Schedule has been installed. - - Please read @PREFIX@/lib/cardboard-schedule/license.txt - before using Cardboard Schedule. ------------------------------------------------------------- diff --git a/misc/cardboard-schedule/pkg/PLIST b/misc/cardboard-schedule/pkg/PLIST deleted file mode 100644 index 332d0c9f465..00000000000 --- a/misc/cardboard-schedule/pkg/PLIST +++ /dev/null @@ -1,13 +0,0 @@ -@comment $NetBSD: PLIST,v 1.2 2000/05/26 18:21:11 jwise Exp $ -bin/csched -lib/cardboard-schedule/cs/images/Logo2.gif -lib/cardboard-schedule/cs/images/Logo.gif -lib/cardboard-schedule/stage/cs.jar -lib/cardboard-schedule/stage/readme.txt -lib/cardboard-schedule/stage/jhbasic.jar -lib/cardboard-schedule/stage/license.txt -lib/cardboard-schedule/stage/CsHelp.jar -@dirrm lib/cardboard-schedule/stage -@dirrm lib/cardboard-schedule/cs/images -@dirrm lib/cardboard-schedule/cs -@dirrm lib/cardboard-schedule diff --git a/misc/ical/Makefile b/misc/ical/Makefile deleted file mode 100644 index c1aa85e06ca..00000000000 --- a/misc/ical/Makefile +++ /dev/null @@ -1,24 +0,0 @@ -# $NetBSD: Makefile,v 1.10 2000/08/30 22:15:44 tron Exp $ -# $FreeBSD Id: Makefile,v 1.15 1998/02/07 22:59:16 hoek Exp -# - -DISTNAME= ical-2.2 -CATEGORIES= misc -MASTER_SITES= http://www.research.digital.com/SRC/personal/Sanjay_Ghemawat/ical/icalbins/ - -MAINTAINER= packages@netbsd.org -HOMEPAGE= http://www.research.digital.com/SRC/personal/Sanjay_Ghemawat/ical/ - -DEPENDS+= tk>=8.3.2:../../x11/tk - -USE_X11= yes -GNU_CONFIGURE= yes -CONFIGURE_ARGS= --prefix=${PREFIX} \ - --with-tclconfig=${PREFIX}/lib \ - --with-tclsh=${PREFIX}/bin/tclsh \ - --with-tkconfig=${PREFIX}/lib - -post-install: - @strip ${PREFIX}/bin/${DISTNAME} - -.include "../../mk/bsd.pkg.mk" diff --git a/misc/ical/files/md5 b/misc/ical/files/md5 deleted file mode 100644 index 3887f077970..00000000000 --- a/misc/ical/files/md5 +++ /dev/null @@ -1,3 +0,0 @@ -$NetBSD: md5,v 1.2 1998/08/07 13:25:06 agc Exp $ - -MD5 (ical-2.2.tar.gz) = 6bb0d0ce76bb31570c2c99d8da70a58b diff --git a/misc/ical/files/patch-sum b/misc/ical/files/patch-sum deleted file mode 100644 index 85db86d7a4c..00000000000 --- a/misc/ical/files/patch-sum +++ /dev/null @@ -1,4 +0,0 @@ -$NetBSD: patch-sum,v 1.1 1999/07/09 14:09:16 agc Exp $ - -MD5 (patch-aa) = 7c1c8de456880b4183516cf9b293f2bb -MD5 (patch-ab) = 306ab644d25e41826457c481f4b6d1d8 diff --git a/misc/ical/patches/patch-aa b/misc/ical/patches/patch-aa deleted file mode 100644 index 0b170e39be0..00000000000 --- a/misc/ical/patches/patch-aa +++ /dev/null @@ -1,20 +0,0 @@ -$NetBSD: patch-aa,v 1.1 1998/09/13 01:28:27 garbled Exp $ ---- Makefile.in.orig Sat Sep 12 17:57:48 1998 -+++ Makefile.in Sat Sep 12 17:59:28 1998 -@@ -76,13 +76,13 @@ - all: $(CONFIGURED) ical - - ical: $(LIB3) $(LIB2) $(LIB1) $(OBJS) main.o -- $(CXXLINKER) -o $@ $(OBJS) main.o $(LIBS) -+ $(CXXLINKER) -o $@ $(OBJS) main.o -Wl,-R${LOCALBASE}/lib -Wl,-R${X11BASE}/lib $(LIBS) - - ical-bundle: $(LIB3) $(LIB2) $(LIB1) $(OBJS) mbundle.o -- $(CXXLINKER) -o $@ $(OBJS) mbundle.o $(BLIBS) -+ $(CXXLINKER) -o $@ $(OBJS) mbundle.o -Wl,-R${LOCALBASE}/lib -Wl,-R${X11BASE}/lib $(BLIBS) - - ical-tiny: $(LIB3) $(LIB2) $(LIB1) $(OBJS) mbundle.o -- $(CXXLINKER) -o $@ $(OBJS) mbundle.o $(TINY_BLIBS) -+ $(CXXLINKER) -o $@ $(OBJS) mbundle.o -Wl,-R${LOCALBASE}/lib -Wl,-R${X11BASE}/lib $(TINY_BLIBS) - - $(LIB1): FRC - @echo making in calendar diff --git a/misc/ical/patches/patch-ab b/misc/ical/patches/patch-ab deleted file mode 100644 index e06bf678ac8..00000000000 --- a/misc/ical/patches/patch-ab +++ /dev/null @@ -1,15 +0,0 @@ -$NetBSD: patch-ab,v 1.1 1999/04/05 23:05:39 tron Exp $ - ---- configure.orig Wed Oct 22 01:52:57 1997 -+++ configure Tue Apr 6 01:03:05 1999 -@@ -1089,8 +1089,8 @@ - - #### Check that the library files exist - echo $ac_n "checking for installed Tcl/Tk library files""... $ac_c" 1>&6 --lib1="${TCL_EXEC_PREFIX}/lib/${TCL_LIB_FILE}" --lib2="${TK_EXEC_PREFIX}/lib/${TK_LIB_FILE}" -+eval lib1="${TCL_EXEC_PREFIX}/lib/${TCL_LIB_FILE}" -+eval lib2="${TK_EXEC_PREFIX}/lib/${TK_LIB_FILE}" - for f in "$lib1" "$lib2"; do - if test ! -f "$f"; then - echo "$ac_t""$f not found" 1>&6 diff --git a/misc/ical/pkg/COMMENT b/misc/ical/pkg/COMMENT deleted file mode 100644 index f3c7146981d..00000000000 --- a/misc/ical/pkg/COMMENT +++ /dev/null @@ -1 +0,0 @@ -Calendar application diff --git a/misc/ical/pkg/DESCR b/misc/ical/pkg/DESCR deleted file mode 100644 index 411843ccb6e..00000000000 --- a/misc/ical/pkg/DESCR +++ /dev/null @@ -1,17 +0,0 @@ -Copyright (c) 1993-1997 by Sanjay Ghemawat - - * Ical is an X based calendar program - * Calendar items can be created edited and deleted easily. - * Items can be made to repeat in various ways. - * Ical will post reminders for upcoming appointments. - * Ical can print and list item occurrences. - * An ical calendar can include other calendars. - * Ical calendars can be shared by different users. - -Copyrights -========== - -Most of the files are covered by the copyright in the file COPYRIGHT. - -The configure script is covered by the GNU Public License (see -COPYRIGHT.GNU). diff --git a/misc/ical/pkg/PLIST b/misc/ical/pkg/PLIST deleted file mode 100644 index 977be12e7f3..00000000000 --- a/misc/ical/pkg/PLIST +++ /dev/null @@ -1,68 +0,0 @@ -@comment $NetBSD: PLIST,v 1.3 1999/08/13 14:06:58 agc Exp $ -bin/ical -bin/${PKGNAME} -lib/ical/v2.2/actions.tcl -lib/ical/v2.2/alarm.tcl -lib/ical/v2.2/apptlist.tcl -lib/ical/v2.2/canvsup.tcl -lib/ical/v2.2/contrib/README -lib/ical/v2.2/contrib/ical.xbm -lib/ical/v2.2/contrib/ical.xpm -lib/ical/v2.2/contrib/ical2calendar -lib/ical/v2.2/contrib/ical2html -lib/ical/v2.2/contrib/ical2zsh -lib/ical/v2.2/contrib/icaladd -lib/ical/v2.2/contrib/icaladdlines -lib/ical/v2.2/contrib/icalexpire -lib/ical/v2.2/contrib/icalweekly -lib/ical/v2.2/contrib/iconwindow.tcl -lib/ical/v2.2/contrib/timeofday.tcl -lib/ical/v2.2/contrib/weeknumber.tcl -lib/ical/v2.2/dateeditor.tcl -lib/ical/v2.2/dayview.tcl -lib/ical/v2.2/dg_alarms.tcl -lib/ical/v2.2/dg_item.tcl -lib/ical/v2.2/dg_key.tcl -lib/ical/v2.2/dg_monthr.tcl -lib/ical/v2.2/dg_print.tcl -lib/ical/v2.2/dg_range.tcl -lib/ical/v2.2/dg_wdays.tcl -lib/ical/v2.2/help.tcl -lib/ical/v2.2/ical_text.tcl -lib/ical/v2.2/ical_x.tcl -lib/ical/v2.2/io.tcl -lib/ical/v2.2/itemlist.tcl -lib/ical/v2.2/itemwindow.tcl -lib/ical/v2.2/link.tcl -lib/ical/v2.2/listing.tcl -lib/ical/v2.2/notelist.tcl -lib/ical/v2.2/parse.tcl -lib/ical/v2.2/pref.tcl -lib/ical/v2.2/print.tcl -lib/ical/v2.2/support.tcl -lib/ical/v2.2/tclIndex -lib/ical/v2.2/tcllib/canvas.tcl -lib/ical/v2.2/tcllib/class.tcl -lib/ical/v2.2/tcllib/dg_bug.tcl -lib/ical/v2.2/tcllib/dg_error.tcl -lib/ical/v2.2/tcllib/dg_file.tcl -lib/ical/v2.2/tcllib/dg_num.tcl -lib/ical/v2.2/tcllib/dg_string.tcl -lib/ical/v2.2/tcllib/dg_yn.tcl -lib/ical/v2.2/tcllib/dg_ync.tcl -lib/ical/v2.2/tcllib/filesel.tcl -lib/ical/v2.2/tcllib/hooks.tcl -lib/ical/v2.2/tcllib/key.tcl -lib/ical/v2.2/tcllib/label.tcl -lib/ical/v2.2/tcllib/menus.tcl -lib/ical/v2.2/tcllib/ruler.tcl -lib/ical/v2.2/tcllib/support.tcl -lib/ical/v2.2/tcllib/tclIndex -lib/ical/v2.2/tcllib/textwin.tcl -lib/ical/v2.2/timerange.tcl -lib/ical/v2.2/trigger.tcl -man/man1/ical.1.gz -@dirrm lib/ical/v2.2/contrib -@dirrm lib/ical/v2.2/tcllib -@dirrm lib/ical/v2.2 -@dirrm lib/ical diff --git a/misc/plan/Makefile b/misc/plan/Makefile deleted file mode 100644 index d17f4ec8468..00000000000 --- a/misc/plan/Makefile +++ /dev/null @@ -1,25 +0,0 @@ -# $NetBSD: Makefile,v 1.8 2000/09/09 04:49:07 fredb Exp $ -# - -DISTNAME= plan-1.8.4 -WRKSRC= ${WRKDIR}/${DISTNAME}/src -CATEGORIES= misc x11 -MASTER_SITES= ftp://ftp.fu-berlin.de/unix/graphics/plan/ - -MAINTAINER= packages@netbsd.org -HOMEPAGE= http://www.in-berlin.de/User/bitrot/plan.html - -USE_MOTIF= YES - -ALL_TARGET= netbsd - -pre-install: - ${MKDIR} ${X11PREFIX}/libexec/plan ${X11PREFIX}/share/plan \ - ${X11PREFIX}/share/plan/holiday - ${RM} -f ${WRKDIR}/${DISTNAME}/holiday/holiday_*.orig - ${INSTALL_DATA} ${WRKDIR}/${DISTNAME}/holiday/holiday_* ${X11PREFIX}/share/plan/holiday - for f in HISTORY README; do \ - ${INSTALL_DATA} ${WRKDIR}/${DISTNAME}/$$f ${X11PREFIX}/share/plan; \ - done - -.include "../../mk/bsd.pkg.mk" diff --git a/misc/plan/files/md5 b/misc/plan/files/md5 deleted file mode 100644 index 312bbdb4d15..00000000000 --- a/misc/plan/files/md5 +++ /dev/null @@ -1,3 +0,0 @@ -$NetBSD: md5,v 1.4 2000/08/22 09:44:15 rh Exp $ - -MD5 (plan-1.8.4.tar.gz) = 85f793084fbb88c4bb128c1d835c6b30 diff --git a/misc/plan/files/patch-sum b/misc/plan/files/patch-sum deleted file mode 100644 index 1121538529e..00000000000 --- a/misc/plan/files/patch-sum +++ /dev/null @@ -1,6 +0,0 @@ -$NetBSD: patch-sum,v 1.5 2000/09/09 11:27:41 wiz Exp $ - -MD5 (patch-aa) = 2e992555e855075ead0ea321b48653eb -MD5 (patch-ab) = f640fe7c551a99ad468275a57d01edf2 -MD5 (patch-ac) = d94f971a26acbc734e6ef8ec09971567 -MD5 (patch-ad) = b85f28f4008b9146e47eaf3b7f0443b2 diff --git a/misc/plan/patches/patch-aa b/misc/plan/patches/patch-aa deleted file mode 100644 index c2fde5446d7..00000000000 --- a/misc/plan/patches/patch-aa +++ /dev/null @@ -1,130 +0,0 @@ -$NetBSD: patch-aa,v 1.6 2000/09/09 04:49:07 fredb Exp $ - ---- Makefile.orig Mon Jul 17 22:07:03 2000 -+++ Makefile -@@ -8,19 +8,19 @@ - # after "=", this is parsed and rewritten by the configure script. - # - # # user-callable executable (plan) --DIR=/usr/local/bin -+DIR=${PREFIX}/bin - # # auxiliary programs (pland, notifier, PS) --LIB=/usr/local/lib -+LIB=${PREFIX}/libexec/plan - # # help file (plan.help) --SBIN=/usr/local/lib -+SBIN=${LIB} - # # system programs (netplan) --HELP=/usr/local/lib -+HELP=${PREFIX}/share/plan - # # netplan expects netplan.dir/ here --NETPLANDIR=/usr/local/lib -+NETPLANDIR=${LIB} - # # unformatted nroff manpage (plan.[14]) --MAN=/usr/local/man -+MAN=${PREFIX}/man/man - # # formatted manpage (plan.[14]) --CATMAN=/usr/catman/local/cat -+CATMAN=${PREFIX}/man/cat - # # subdirectory in home dir, or empty - PLANRULE= - # # lockfile for plan, %d is uid -@@ -34,12 +34,12 @@ - # # standard Unix compiler generator - YACC=yacc - # # numerical user ID of <nobody> account --NOB_UID=60001 -+NOB_UID=32767 - # # default numerical group ID of <nobody> --NOB_GID=60001 -+NOB_GID=39 - # # used by plan to pre-process holiday files, - # # plan will check if this file really exists --CPP_PATH='/lib/cpp -P -I$(HELP)' -+CPP_PATH='/usr/bin/cpp -P -I$(HELP)' - # # by default, fork on startup? TRUE or FALSE - DOFORK=TRUE - # # switching to ISO8859-1 -@@ -55,7 +55,7 @@ - # # do NOT define -O2 on DEC OSF/1 machines! - DEBUG=-O2 - # # what to do without make arguments --DEFTARGET=help -+DEFTARGET=netbsd - #------------------------- end of configuration section ---------------------- - - OPT=$(DEBUG) $(PLANRULE) -DPLANLOCK=\"$(PLANLOCK)\" -DPLANDLOCK=\"$(PLANDLOCK)\" -@@ -140,8 +140,7 @@ - USL_C = -DNOKILL0 -I/usr/X/include - BSDI_C = -DBSD -DRABBITS -I/usr/X11/include -DFLOCK -DNOREGEX -Dbsdi - BSDIG_C = -DBSD -DRABBITS -I/usr/X11/include -DFLOCK -DNOREGEX -Dbsdi -ansi --NBSD_C = -ansi -I/usr/X11R6/include -DBSD -DRABBITS -DNOLOCK -DNOREGEX\ -- -DNO_MOTIF -+NBSD_C = ${CFLAGS} -ansi -I${PREFIX}/include -I${X11BASE}/include -DBSD -DRABBITS -DNOLOCK -DNOREGEX - FBSD_C = -ansi -I/usr/X11R6/include -DBSD -DNOLOCK -DNOREGEX -DRABBITS\ - -DSTDLIBMALLOC - LINUX_C = -I/usr/X11R6/include -D_POSIX_SOURCE -DNOLOCK -DLINUX -@@ -224,8 +223,8 @@ - BSDI_L2 = -lc - BSDIG_L1= -L/usr/X11/lib -lXm -lXt -lX11 - BSDIG_L2= -L/usr/X11/lib -lc --NBSD_L1 = -L/usr/X11R6/lib -lXm -lXt -lX11 --NBSD_L2 = -L/usr/X11R6/lib -lc -+NBSD_L1 = -Wl,-rpath ${PREFIX}/lib -L${PREFIX}/lib -Wl,-rpath ${X11BASE}/lib -L${X11BASE}/lib -lXm -lXt -lX11 -+NBSD_L2 = -Wl,-rpath ${PREFIX}/lib -L${PREFIX}/lib -Wl,-rpath ${X11BASE}/lib -L${X11BASE}/lib -lc - FBSD_L1 = -L/usr/X11R6/lib -lXm -lXt -lX11 -lXext -lSM -lICE -lXpm - FBSD_L2 = -L/usr/X11R6/lib -lc - LINUX_L1= -L/usr/X11R6/lib -L/usr/lib/X11R6/lib -lSM -lXm -lXt -lX11 -lXpm -lc -lXext -lSM -lICE -lX11 -@@ -420,7 +419,7 @@ - env CF="$(BSDIG_C)" L1F="$(BSDIG_L1)" L2F="$(BSDIG_L2)" MYCC=gcc make all - - netbsd: -- env CF="$(NBSD_C)" L1F="$(NBSD_L1)" L2F="$(NBSD_L2)" MYCC=gcc $(MAKE) all -+ env CF="$(NBSD_C)" L1F="$(NBSD_L1)" L2F="$(NBSD_L2)" MYCC=${CC} $(MAKE) all - - freebsd: - env CF="$(FBSD_C)" L1F="$(FBSD_L1)" L2F="$(FBSD_L2)" MYCC=${CC} make all -@@ -569,34 +568,15 @@ - - #--------------------------------------------------------------- - install: -- -rm -f $(DESTDIR)$(DIR)/pland $(DESTDIR)$(DIR)/notifier $(DESTDIR)$(LIB)/netplan -- mkdir -p $(DESTDIR)$(DIR) -- cp plan $(DESTDIR)$(DIR) -- mkdir -p $(DESTDIR)$(LIB) -- cp pland notifier ../misc/plan_cal.ps ../language/* $(DESTDIR)$(LIB) -- mkdir -p $(DESTDIR)$(SBIN) -- cp netplan $(DESTDIR)$(SBIN) -- -(test x'$(JAPAN)' != x && cp ../misc/plan_calSJ.ps $(DESTDIR)$(LIB)) || exit 0 -- mkdir -p $(DESTDIR)$(HELP) -- cp ../language/plan.help $(DESTDIR)$(HELP) -- -strip $(DESTDIR)$(DIR)/plan $(DESTDIR)$(LIB)/pland $(DESTDIR)$(LIB)/notifier $(DESTDIR)$(SBIN)/netplan -- -chmod 755 $(DESTDIR)$(DIR)/plan $(DESTDIR)$(LIB)/pland $(DESTDIR)$(LIB)/notifier $(DESTDIR)$(LIB)/netplan -- -chmod 644 $(DESTDIR)$(HELP)/plan.help $(DESTDIR)$(LIB)/plan_cal.ps $(DESTDIR)$(LIB)/plan.lang.* -- -(test x'$(JAPAN)' != x && chmod 644 $(DESTDIR)$(LIB)/plan_calSJ.ps) || exit 0 -- mkdir -p $(DESTDIR)$(NETPLANDIR)/netplan.dir -- -chmod 700 $(DESTDIR)$(NETPLANDIR)/netplan.dir || exit 0 -- -(test x'$(CATMAN)' != xNONE' -a -x "`which nroff`" && nroff -man ../misc/plan.1 >../misc/plan.1cat) || exit 0 -- -(test x'$(CATMAN)' != xNONE' -a -x "`which nroff`" && nroff -man ../misc/plan.4 >../misc/plan.4cat) || exit 0 -- -(test x'$(CATMAN)' != xNONE' -a -x "`which nroff`" && nroff -man ../misc/netplan.1 >../misc/netplan.1cat) || exit 0 -- -(test x'$(MAN)' != xNONE' -a -d $(DESTDIR)$(MAN)1 && cp ../misc/plan.1 $(DESTDIR)$(MAN)1/plan) || exit 0 -- -(test x'$(MAN)' != xNONE' -a -d $(DESTDIR)$(MAN)4 && cp ../misc/plan.4 $(DESTDIR)$(MAN)4/plan) || exit 0 -- -(test x'$(MAN)' != xNONE' -a -d $(DESTDIR)$(MAN)1 && cp ../misc/netplan.1 $(DESTDIR)$(MAN)1/netplan) || exit 0 -- -(test x'$(CATMAN)' != xNONE' -a -d $(DESTDIR)$(CATMAN)1 && cp ../misc/plan.1cat $(DESTDIR)$(CATMAN)1/plan) || exit 0 -- -(test x'$(CATMAN)' != xNONE' -a -d $(DESTDIR)$(CATMAN)4 && cp ../misc/plan.4cat $(DESTDIR)$(CATMAN)4/plan) || exit 0 -- -(test x'$(CATMAN)' != xNONE' -a -d $(DESTDIR)$(CATMAN)1 && cp ../misc/netplan.1cat $(DESTDIR)$(CATMAN)1/netplan) || exit 0 -- -(test -f ${HOME}/.holiday || cp ../holiday/holiday_$(HOLIDAY) ${HOME}/.holiday) || exit 0 -- -(test `uname` = IRIX -o `uname` = IRIX64 && mkdir $$HOME/.icons) || exit 0 -- -(test `uname` = IRIX -o `uname` = IRIX64 && cp ../misc/Plan.icon $$HOME/.icons/Plan.icon) || exit 0 -+ ${BSD_INSTALL_PROGRAM} plan $(DIR) -+ ${BSD_INSTALL_PROGRAM} pland notifier netplan ${LIB} -+ ${BSD_INSTALL_DATA} ../misc/plan_cal.ps ${LIB} -+ ${BSD_INSTALL_DATA} ../language/plan.* $(HELP) -+ -mkdir -p $(NETPLANDIR)/netplan.dir -+ -chmod 700 $(NETPLANDIR)/netplan.dir -+ -(test -d $(MAN)1 && ${BSD_INSTALL_MAN} ../misc/plan.1 $(MAN)1/plan.1) || exit 0 -+ -(test -d $(MAN)4 && ${BSD_INSTALL_MAN} ../misc/plan.4 $(MAN)4/plan.4) || exit 0 -+ -(test -d $(MAN)1 && ${BSD_INSTALL_MAN} ../misc/netplan.1 $(MAN)1/netplan.1) || exit 0 - @echo "" - @echo "use ../holiday/* as templates for your ~/.holiday file" - diff --git a/misc/plan/patches/patch-ab b/misc/plan/patches/patch-ab deleted file mode 100644 index f181d667fa0..00000000000 --- a/misc/plan/patches/patch-ab +++ /dev/null @@ -1,13 +0,0 @@ -$NetBSD: patch-ab,v 1.4 2000/08/22 09:44:16 rh Exp $ - ---- time.c.orig Mon Oct 11 21:11:36 1999 -+++ time.c -@@ -244,7 +244,7 @@ - zone += 24; - zone *= 3600; - #else --#if defined(bsdi) || defined(SUN) || defined(SVR4) || defined(convex) -+#if defined(bsdi) || defined(SUN) || defined(SVR4) || defined(convex) || defined(__NetBSD__) - time_t now; - struct tm *tm; - tzset(); diff --git a/misc/plan/patches/patch-ac b/misc/plan/patches/patch-ac deleted file mode 100644 index 9ba1ad288ca..00000000000 --- a/misc/plan/patches/patch-ac +++ /dev/null @@ -1,13 +0,0 @@ -$NetBSD: patch-ac,v 1.1 2000/08/22 09:44:16 rh Exp $ - ---- ../holiday/holiday_austria.orig Tue Aug 22 10:59:07 2000 -+++ ../holiday/holiday_austria -@@ -14,7 +14,7 @@ - small "Gründonnerstag" on easter minus 3 days - small "Karfreitag" on easter minus 2 days - small "Karsamstag" on easter minus 1 days --small "Ostern" weekend on easter length 2 days=20 -+small "Ostern" weekend on easter length 2 days - small "Pfingsten" weekend on easter plus 49 days length 2 days - small "Christi Himmelfahrt" weekend on easter plus 39 days - small "Fronleichnam" weekend on easter plus 60 days diff --git a/misc/plan/patches/patch-ad b/misc/plan/patches/patch-ad deleted file mode 100644 index 18143d09d2d..00000000000 --- a/misc/plan/patches/patch-ad +++ /dev/null @@ -1,13 +0,0 @@ -$NetBSD: patch-ad,v 1.1 2000/09/09 11:27:42 wiz Exp $ - ---- linuxjunk.h.orig Sat Nov 7 19:04:41 1998 -+++ linuxjunk.h -@@ -16,6 +16,8 @@ - * kill a good project with poor planning. - */ - -+#include <sys/stat.h> -+ - #ifdef S_ISDIR - #define IS_DIR(m) S_ISDIR(m) - #else diff --git a/misc/plan/pkg/COMMENT b/misc/plan/pkg/COMMENT deleted file mode 100644 index 9b4f5e3a95b..00000000000 --- a/misc/plan/pkg/COMMENT +++ /dev/null @@ -1 +0,0 @@ -Schedule planner based on X/Motif diff --git a/misc/plan/pkg/DESCR b/misc/plan/pkg/DESCR deleted file mode 100644 index b4fca4e34c2..00000000000 --- a/misc/plan/pkg/DESCR +++ /dev/null @@ -1,24 +0,0 @@ -Plan is a schedule planner based on X/Motif. It displays a month calendar -similar to xcal, but every day box is large enough to show appointments in -small print. By pressing on a day box, the appointments for that day can be -listed and edited. Appointments are entered with the following information: - -- the date, time, and length (time and days) of the appointment, -- an optional text message and an optional script to be executed, -- early-warn and late-warn triggers that precede the alarm time -- repetitions: [n-th] weekdays, days-of-the-month, every n days, yearly -- optional fast command-line appointment entry -- flexible ways to specify holidays and vacations -- extensive context help -- multiuser capability using an IP server program (with access lists), -- grouping of appointments into files, per-user, private, and others - -The action being taken when a warn or alarm time is reached is programmable; -by default a window pops up. In addition, a program can be executed, or mail -can be sent. Other methods of listing appointments (today, this week, next -week, or a keyword search for regular expressions) are also available. Plan -can be configured to display times in 12-hour or 24-hour formats, mmddyy and -ddmmyy date formats, and can show either Monday or Sunday in the leftmost -column. Four view modes are supported: month, year, week, day, and a 365-day -overview. The day, week, and overview plot appointments as colored and -labeled bars on a time chart. diff --git a/misc/plan/pkg/MESSAGE b/misc/plan/pkg/MESSAGE deleted file mode 100644 index e97cd2b781e..00000000000 --- a/misc/plan/pkg/MESSAGE +++ /dev/null @@ -1,2 +0,0 @@ -You can use one of the ${X11BASE}/share/plan/holiday/holiday_* files -as example for your ~/.holiday. See `man plan` for details. diff --git a/misc/plan/pkg/PLIST b/misc/plan/pkg/PLIST deleted file mode 100644 index a7611f1be8c..00000000000 --- a/misc/plan/pkg/PLIST +++ /dev/null @@ -1,46 +0,0 @@ -@comment $NetBSD: PLIST,v 1.5 2000/09/09 04:49:07 fredb Exp $ -bin/plan -libexec/plan/pland -libexec/plan/notifier -libexec/plan/netplan -libexec/plan/plan_cal.ps -@exec mkdir -p %D/libexec/plan/netplan.dir && chmod 700 %D/libexec/plan/netplan.dir && chown 32767:39 %D/libexec/plan/netplan.dir -@unexec rmdir %D/libexec/plan/netplan.dir 2>/dev/null || echo "==> %D/libexec/plan/netplan.dir not empty. You should remove it manually if it's no longer needed." -@unexec rmdir %D/libexec/plan 2>/dev/null || true -man/man1/plan.1 -man/man1/netplan.1 -man/man4/plan.4 -share/plan/HISTORY -share/plan/README -share/plan/holiday/holiday_australia -share/plan/holiday/holiday_austria -share/plan/holiday/holiday_bavarian -share/plan/holiday/holiday_belgium -share/plan/holiday/holiday_canada -share/plan/holiday/holiday_denmark -share/plan/holiday/holiday_dutch -share/plan/holiday/holiday_finnish -share/plan/holiday/holiday_french -share/plan/holiday/holiday_frswiss -share/plan/holiday/holiday_german -share/plan/holiday/holiday_greek -share/plan/holiday/holiday_hungary -share/plan/holiday/holiday_italy -share/plan/holiday/holiday_japan -share/plan/holiday/holiday_norway -share/plan/holiday/holiday_quebec -share/plan/holiday/holiday_spain -share/plan/holiday/holiday_swedish -share/plan/holiday/holiday_uk -share/plan/holiday/holiday_us -share/plan/holiday/holiday_combi -share/plan/holiday/holiday_czech -share/plan/holiday/holiday_portugal -share/plan/plan.help -share/plan/plan.lang.dutch -share/plan/plan.lang.english -share/plan/plan.lang.french -share/plan/plan.lang.german -share/plan/plan.lang.spanish -@dirrm share/plan/holiday -@dirrm share/plan diff --git a/misc/py-mxDateTime/Makefile b/misc/py-mxDateTime/Makefile deleted file mode 100644 index 710327925f9..00000000000 --- a/misc/py-mxDateTime/Makefile +++ /dev/null @@ -1,45 +0,0 @@ -# $NetBSD: Makefile,v 1.5 2000/12/12 16:51:40 jlam Exp $ - -DISTNAME= mxDateTime-1.3.0 -PKGNAME= py-mxDateTime-1.3.0 -WRKSRC= ${WRKDIR}/DateTime -CATEGORIES= misc -MASTER_SITES= http://starship.python.net/~lemburg/ -EXTRACT_SUFX= .zip - -MAINTAINER= packages@netbsd.org -HOMEPAGE= http://starship.python.net/~lemburg/mxDateTime.html - -BUILD_DEPENDS= unzip:../../archivers/unzip -DEPENDS+= python-2.0*:../../lang/python - -EXTRACT_CMD= unzip -Laqo ${DOWNLOADED_DISTFILE} - -RESTRICTED= No commercial distribution -NO_SRC_ON_CDROM= ${RESTRICTED} -NO_BIN_ON_CDROM= ${RESTRICTED} - -do-configure: - ( cd ${WRKSRC}/mxDateTime ; \ - make -f Makefile.pre.in boot ) - -do-build: - ( cd ${WRKSRC}/mxDateTime; make ) - ( cd ${WRKSRC}; python ${PREFIX}/lib/python2.0/compileall.py . ) - ( cd ${WRKSRC}; python -O ${PREFIX}/lib/python2.0/compileall.py . ) - -do-install: - @${INSTALL_SCRIPT_DIR} ${PREFIX}/lib/python2.0/site-packages - @${INSTALL_SCRIPT_DIR} ${PREFIX}/lib/python2.0/site-packages/DateTime - @${INSTALL_DATA} ${WRKSRC}/*.py* \ - ${PREFIX}/lib/python2.0/site-packages/DateTime - @${INSTALL_SCRIPT_DIR} \ - ${PREFIX}/lib/python2.0/site-packages/DateTime/mxDateTime - @${INSTALL_DATA} ${WRKSRC}/mxDateTime/*.so \ - ${WRKSRC}/mxDateTime/__init__.py* \ - ${PREFIX}/lib/python2.0/site-packages/DateTime/mxDateTime - @${INSTALL_DATA_DIR} ${PREFIX}/share/doc/html/py-mxDateTime - @${INSTALL_SCRIPT} ${WRKSRC}/Doc/*.html \ - ${PREFIX}/share/doc/html/py-mxDateTime/ - -.include "../../mk/bsd.pkg.mk" diff --git a/misc/py-mxDateTime/files/md5 b/misc/py-mxDateTime/files/md5 deleted file mode 100644 index 122140043aa..00000000000 --- a/misc/py-mxDateTime/files/md5 +++ /dev/null @@ -1,3 +0,0 @@ -$NetBSD: md5,v 1.1.1.1 1999/06/28 19:22:45 tsarna Exp $ - -MD5 (mxDateTime-1.3.0.zip) = 2cdf8741c7be9d11bebcb62291c59de9 diff --git a/misc/py-mxDateTime/pkg/COMMENT b/misc/py-mxDateTime/pkg/COMMENT deleted file mode 100644 index ce4ff504f3c..00000000000 --- a/misc/py-mxDateTime/pkg/COMMENT +++ /dev/null @@ -1 +0,0 @@ -Python extension that provides new types and conversions for dates diff --git a/misc/py-mxDateTime/pkg/DESCR b/misc/py-mxDateTime/pkg/DESCR deleted file mode 100644 index 89d7cc7796a..00000000000 --- a/misc/py-mxDateTime/pkg/DESCR +++ /dev/null @@ -1,10 +0,0 @@ -A C extension package for python that provides new datatypes for -handling dates and times together with a rich set of conversion and -parsing routines. - -These types were created to provide a consistent way of transferring -date and time data between Python and databases. Apart from handling -date before the Unix epoch (1.1.1970) they also correctly work with -dates beyond the Unix time limit (currently with Unix time value being -encoded using 32bit integers, the limit is reached in 2038) and thus -is Year 2000 and Year 2038 safe. diff --git a/misc/py-mxDateTime/pkg/PLIST b/misc/py-mxDateTime/pkg/PLIST deleted file mode 100644 index 32cda54e546..00000000000 --- a/misc/py-mxDateTime/pkg/PLIST +++ /dev/null @@ -1,46 +0,0 @@ -@comment $NetBSD: PLIST,v 1.4 2000/12/12 16:51:40 jlam Exp $ -lib/python2.0/site-packages/DateTime/mxDateTime/mxDateTime.so -lib/python2.0/site-packages/DateTime/mxDateTime/__init__.py -lib/python2.0/site-packages/DateTime/mxDateTime/__init__.pyc -lib/python2.0/site-packages/DateTime/mxDateTime/__init__.pyo -lib/python2.0/site-packages/DateTime/ARPA.py -lib/python2.0/site-packages/DateTime/ARPA.pyc -lib/python2.0/site-packages/DateTime/ARPA.pyo -lib/python2.0/site-packages/DateTime/DateTime.py -lib/python2.0/site-packages/DateTime/DateTime.pyc -lib/python2.0/site-packages/DateTime/DateTime.pyo -lib/python2.0/site-packages/DateTime/Feasts.py -lib/python2.0/site-packages/DateTime/Feasts.pyc -lib/python2.0/site-packages/DateTime/Feasts.pyo -lib/python2.0/site-packages/DateTime/ISO.py -lib/python2.0/site-packages/DateTime/ISO.pyc -lib/python2.0/site-packages/DateTime/ISO.pyo -lib/python2.0/site-packages/DateTime/LazyModule.py -lib/python2.0/site-packages/DateTime/LazyModule.pyc -lib/python2.0/site-packages/DateTime/LazyModule.pyo -lib/python2.0/site-packages/DateTime/Locale.py -lib/python2.0/site-packages/DateTime/Locale.pyc -lib/python2.0/site-packages/DateTime/Locale.pyo -lib/python2.0/site-packages/DateTime/NIST.py -lib/python2.0/site-packages/DateTime/NIST.pyc -lib/python2.0/site-packages/DateTime/NIST.pyo -lib/python2.0/site-packages/DateTime/ODMG.py -lib/python2.0/site-packages/DateTime/ODMG.pyc -lib/python2.0/site-packages/DateTime/ODMG.pyo -lib/python2.0/site-packages/DateTime/Parser.py -lib/python2.0/site-packages/DateTime/Parser.pyc -lib/python2.0/site-packages/DateTime/Parser.pyo -lib/python2.0/site-packages/DateTime/Timezone.py -lib/python2.0/site-packages/DateTime/Timezone.pyc -lib/python2.0/site-packages/DateTime/Timezone.pyo -lib/python2.0/site-packages/DateTime/__init__.py -lib/python2.0/site-packages/DateTime/__init__.pyc -lib/python2.0/site-packages/DateTime/__init__.pyo -lib/python2.0/site-packages/DateTime/timegm.py -lib/python2.0/site-packages/DateTime/timegm.pyc -lib/python2.0/site-packages/DateTime/timegm.pyo -share/doc/html/py-mxDateTime/mxDateTime.html -share/doc/html/py-mxDateTime/mxDateTime-History.html -@dirrm lib/python2.0/site-packages/DateTime/mxDateTime -@dirrm lib/python2.0/site-packages/DateTime -@dirrm share/doc/html/py-mxDateTime diff --git a/misc/remind/Makefile b/misc/remind/Makefile deleted file mode 100644 index bc56827f76d..00000000000 --- a/misc/remind/Makefile +++ /dev/null @@ -1,43 +0,0 @@ -# $NetBSD: Makefile,v 1.7 2000/09/03 11:17:23 wiz Exp $ - -DISTNAME= remind-03.00.21 -PKGNAME= ${DISTNAME:C/0([0-9])/\1/g} -CATEGORIES= misc -MASTER_SITES= http://www.roaringpenguin.com/ - -MAINTAINER= kim@tac.nyc.ny.us -HOMEPAGE= http://www.roaringpenguin.com/remind.html - -GNU_CONFIGURE= yes - -# We don't want to require tcl just for one script. -post-build: - @${SED} -e 's,@TCLSH@,tclsh8.0,' \ - < ${WRKSRC}/scripts/cm2rem.tcl \ - > ${WRKSRC}/scripts/cm2rem - @${MV} ${WRKSRC}/man/cm2rem.1 ${WRKSRC}/man/cm2rem.1.bak - @${SED} -e 's,@TCLSH@,tclsh8.0,' \ - < ${WRKSRC}/man/cm2rem.1.bak \ - > ${WRKSRC}/man/cm2rem.1 - -post-install: - ${INSTALL_DATA_DIR} ${PREFIX}/share/examples/remind - (cd ${WRKSRC}; \ - ${INSTALL_DATA} -p examples/defs.rem \ - ${PREFIX}/share/examples/remind; \ - ${INSTALL_DATA} -p examples/remind.vim \ - ${PREFIX}/share/examples/remind; \ - ${INSTALL_DATA} -p scripts/remind-all.csh \ - ${PREFIX}/share/examples/remind; \ - ${INSTALL_DATA} -p scripts/remind-all.sh \ - ${PREFIX}/share/examples/remind) - ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/remind - (cd ${WRKSRC}; \ - ${INSTALL_DATA} -p docs/README.UNIX \ - ${PREFIX}/share/doc/remind; \ - ${INSTALL_DATA} -p docs/WHATSNEW.30 \ - ${PREFIX}/share/doc/remind; \ - ${INSTALL_DATA} -p COPYRIGHT \ - ${PREFIX}/share/doc/remind) - -.include "../../mk/bsd.pkg.mk" diff --git a/misc/remind/files/md5 b/misc/remind/files/md5 deleted file mode 100644 index 954deb1276a..00000000000 --- a/misc/remind/files/md5 +++ /dev/null @@ -1,3 +0,0 @@ -$NetBSD: md5,v 1.3 2000/03/17 20:48:56 kim Exp $ - -MD5 (remind-03.00.21.tar.gz) = f70e2bca2b73dad27c52148017a8615b diff --git a/misc/remind/files/patch-sum b/misc/remind/files/patch-sum deleted file mode 100644 index df7cfd3754d..00000000000 --- a/misc/remind/files/patch-sum +++ /dev/null @@ -1,6 +0,0 @@ -$NetBSD: patch-sum,v 1.6 2000/05/01 03:35:01 kim Exp $ - -MD5 (patch-ab) = d8077f40b413b94299bc6fcc1e52d8d8 -MD5 (patch-ac) = 5e27d2f4831041bea2886f8dfac8a60a -MD5 (patch-ad) = 86304a2116ce8a8d3903151638566b6c -MD5 (patch-ae) = c07a1cace7f1cf070bb6064823c0fe7b diff --git a/misc/remind/patches/patch-ab b/misc/remind/patches/patch-ab deleted file mode 100644 index b8700ee74fd..00000000000 --- a/misc/remind/patches/patch-ab +++ /dev/null @@ -1,34 +0,0 @@ -$NetBSD: patch-ab,v 1.2 2000/03/17 20:48:56 kim Exp $ - ---- src/Makefile.in.orig Wed Mar 15 11:03:39 2000 -+++ src/Makefile.in Fri Mar 17 15:13:31 2000 -@@ -15,11 +15,12 @@ - - INSTALL=@INSTALL@ - INSTALL_PROGRAM=@INSTALL_PROGRAM@ -+INSTALL_SCRIPT=@INSTALL@ -m 0555 - INSTALL_DATA=@INSTALL_DATA@ - - PROGS= remind rem2ps - SCRIPTS= $(srcdir)/../scripts/kall $(srcdir)/../scripts/rem \ -- $(srcdir)/../scripts/tkremind $(srcdir)/../scripts/cm2rem.tcl -+ $(srcdir)/../scripts/tkremind $(srcdir)/../scripts/cm2rem - - MANS= $(srcdir)/../man/kall.1 $(srcdir)/../man/rem.1 \ - $(srcdir)/../man/rem2ps.1 $(srcdir)/../man/remind.1 \ -@@ -49,11 +50,12 @@ - @CC@ @LDFLAGS@ -o remind $(REMINDOBJS) @LIBS@ - - install: all -- for prog in $(PROGS) $(SCRIPTS) ; do \ -+ for prog in $(PROGS) ; do \ - $(INSTALL_PROGRAM) $$prog $(bindir) ; \ - done -- -strip $(bindir)/remind -- -strip $(bindir)/rem2ps -+ for prog in $(SCRIPTS) ; do \ -+ $(INSTALL_SCRIPT) $$prog $(bindir) ; \ -+ done - for man in $(MANS) ; do \ - $(INSTALL_DATA) $$man $(mandir)/man1 ; \ - done diff --git a/misc/remind/patches/patch-ac b/misc/remind/patches/patch-ac deleted file mode 100644 index 37b3136a609..00000000000 --- a/misc/remind/patches/patch-ac +++ /dev/null @@ -1,43 +0,0 @@ -$NetBSD: patch-ac,v 1.1 2000/03/02 00:56:45 kim Exp $ - ---- src/files.c.orig Mon Apr 5 13:34:48 1999 -+++ src/files.c Wed Mar 1 19:48:52 2000 -@@ -19,6 +19,7 @@ - - #include <string.h> - #include <ctype.h> -+#include <glob.h> - #include <sys/stat.h> - - #ifdef TM_IN_SYS_TIME -@@ -421,16 +422,26 @@ - { - DynamicBuffer buf; - int r, e; -+ glob_t g; - - DBufInit(&buf); -+ memset(&g, 0, sizeof(g)); -+ - if ( (r=ParseToken(p, &buf)) ) return r; - e = VerifyEoln(p); - if (e) Eprint("%s", ErrMsg[e]); -- if ( (r=IncludeFile(DBufValue(&buf))) ) { -- DBufFree(&buf); -- return r; -- } -+ -+ glob(DBufValue(&buf), GLOB_NOCHECK|GLOB_BRACE|GLOB_TILDE, NULL, &g); - DBufFree(&buf); -+ -+ do { -+ if ( (r=IncludeFile(*g.gl_pathv)) ) { -+ globfree(&g); -+ return r; -+ } -+ } while (*++g.gl_pathv != NULL); -+ -+ globfree(&g); - NumIfs = 0; - IfFlags = 0; - return OK; diff --git a/misc/remind/patches/patch-ad b/misc/remind/patches/patch-ad deleted file mode 100644 index feb025fdac7..00000000000 --- a/misc/remind/patches/patch-ad +++ /dev/null @@ -1,11 +0,0 @@ -$NetBSD: patch-ad,v 1.2 2000/05/01 03:35:02 kim Exp $ - ---- scripts/cm2rem.tcl.orig Thu Feb 17 22:45:38 2000 -+++ scripts/cm2rem.tcl Sun Apr 30 23:32:07 2000 -@@ -17,5 +17,5 @@ - - # the next line restarts using tclsh \ --exec tclsh "$0" "$@" -+exec @TCLSH@ "$0" "$@" - - set i 0 diff --git a/misc/remind/patches/patch-ae b/misc/remind/patches/patch-ae deleted file mode 100644 index 521f7581f97..00000000000 --- a/misc/remind/patches/patch-ae +++ /dev/null @@ -1,40 +0,0 @@ -$NetBSD: patch-ae,v 1.1 2000/03/17 20:48:56 kim Exp $ - ---- man/cm2rem.1.orig Wed Mar 15 10:51:36 2000 -+++ man/cm2rem.1 Fri Mar 17 15:18:27 2000 -@@ -2,27 +2,27 @@ - .TH CM2REM 1 "18 October 1999" - .UC4 - .SH NAME --cm2rem.tcl \- Convert Sun's "cm" input file to Remind format -+cm2rem \- Convert Sun's "cm" input file to Remind format - .SH SYNOPSIS --.B cm2rem.tcl < cm_file > remind_file -+.B cm2rem < cm_file > remind_file - .SH DESCRIPTION --\fBcm2rem.tcl\fR reads the Sun calendar manager data file and converts --it into a \fBRemind\fR script. Note that \fBcm2rem.tcl\fR can convert -+\fBcm2rem\fR reads the Sun calendar manager data file and converts -+it into a \fBRemind\fR script. Note that \fBcm2rem\fR can convert - \fIonly\fR version 3 calendar manager files. If you are using version 4 - files, there should be a system utility to convert them to version 3 files. - .SH AUTHOR --\fBcm2rem.tcl\fR is supported by Roaring Penguin Software -+\fBcm2rem\fR is supported by Roaring Penguin Software - Inc. (http://www.roaringpenguin.com) - .PP --\fBcm2rem.tcl\fR was written by David F. Skoll <dfs@roaringpenguin.com>. -+\fBcm2rem\fR was written by David F. Skoll <dfs@roaringpenguin.com>. - .SH BUGS - Not all of the Sun calendar manager options are respected. In particular, - nothing is done for e-mail actions. Also, the resulting Remind script - is not editable with \fBTkRemind\fR; you can only edit it with a text - editor. - .PP --\fBcm2rem.tcl\fR requires Tcl/Tk version 8.0 or higher. The --\fBtclsh\fR interpreter must be on your \fBpath\fR. -+\fBcm2rem\fR requires Tcl/Tk version 8.0 or higher. The -+\fB@TCLSH@\fR interpreter must be on your \fBpath\fR. - - .SH SEE ALSO - \fBremind(1)\fR, \fBtkremind(1)\fR diff --git a/misc/remind/pkg/COMMENT b/misc/remind/pkg/COMMENT deleted file mode 100644 index de4a63ebe27..00000000000 --- a/misc/remind/pkg/COMMENT +++ /dev/null @@ -1 +0,0 @@ -Calendar/alarm program with interpreted input language diff --git a/misc/remind/pkg/DESCR b/misc/remind/pkg/DESCR deleted file mode 100644 index 3ac31fcd393..00000000000 --- a/misc/remind/pkg/DESCR +++ /dev/null @@ -1,4 +0,0 @@ -REMIND is a calendar/alarm program that lets you specify reminders -and alarms with a versatile interpreted input language. REMIND -also produces PostScript calendars, and can handle both the -common and Hebrew calendars. diff --git a/misc/remind/pkg/PLIST b/misc/remind/pkg/PLIST deleted file mode 100644 index 415add2d57a..00000000000 --- a/misc/remind/pkg/PLIST +++ /dev/null @@ -1,22 +0,0 @@ -@comment $NetBSD: PLIST,v 1.3 2000/03/17 20:48:57 kim Exp $ -bin/cm2rem -bin/kall -bin/rem -bin/rem2ps -bin/remind -bin/tkremind -man/man1/cm2rem.1 -man/man1/kall.1 -man/man1/rem.1 -man/man1/rem2ps.1 -man/man1/remind.1 -man/man1/tkremind.1 -share/doc/remind/COPYRIGHT -share/doc/remind/README.UNIX -share/doc/remind/WHATSNEW.30 -share/examples/remind/defs.rem -share/examples/remind/remind-all.csh -share/examples/remind/remind-all.sh -share/examples/remind/remind.vim -@dirrm share/examples/remind -@dirrm share/doc/remind |