Initial import of remind version 0.3.

The remind is a scripting language for reminders, with a Tk front end.
This commit is contained in:
kevlo 2000-02-03 02:39:56 +00:00
parent f7ea467be2
commit e38e6744ba
8 changed files with 72 additions and 0 deletions

20
misc/remind/Makefile Normal file
View File

@ -0,0 +1,20 @@
# Makefile for "remind" port.
# $OpenBSD: Makefile,v 1.1.1.1 2000/02/03 02:39:56 kevlo Exp $
NEED_VERSION= 1.64
PKGNAME= remind-0.3
DISTNAME= remind-03.00.20
EXTRACT_SUFX= .tgz
CATEGORIES=office
MASTER_SITES = http://www.roaringpenguin.com/
MAINTAINER = ports@openbsd.org
# Can run without TK, but most unglamorous without it.
RUN_DEPENDS= wish8.0:${PORTSDIR}/x11/tk80
GNU_CONFIGURE= yes
.include <bsd.port.mk>

3
misc/remind/files/md5 Normal file
View File

@ -0,0 +1,3 @@
MD5 (remind-03.00.20.tgz) = 483099eaf6c12ec2d5be7e1c9029d304
RMD160 (remind-03.00.20.tgz) = 9e1affa867fba5557336b17b96dd337f4df75598
SHA1 (remind-03.00.20.tgz) = abb9c6c31fc7dbe11d3bce57823de3fd529c777d

View File

@ -0,0 +1,11 @@
--- scripts/tkremind.orig Wed Feb 2 15:20:35 2000
+++ scripts/tkremind Wed Feb 2 15:20:42 2000
@@ -15,7 +15,7 @@
# $Id: patch-aa,v 1.1.1.1 2000/02/03 02:39:57 kevlo Exp $
# the next line restarts using wish \
-exec wish "$0" "$@"
+exec wish8.0 "$0" "$@"
wm withdraw .

View File

@ -0,0 +1,14 @@
--- src/queue.c.orig Mon Apr 5 13:34:55 1999
+++ src/queue.c Wed Feb 2 15:19:34 2000
@@ -19,6 +19,11 @@
#undef _POSIX_SOURCE
#endif
+/* OpenBSD 2.6 needs this to get fd_set */
+#ifdef __OpenBSD__
+#undef _POSIX_SOURCE
+#endif
+
/* We only want object code generated if we have queued reminders */
#ifdef HAVE_QUEUED
#include <stdio.h>

View File

@ -0,0 +1,11 @@
--- src/Makefile.in.orig Thu Feb 3 10:36:59 2000
+++ src/Makefile.in Thu Feb 3 10:37:11 2000
@@ -49,7 +49,7 @@
install: all
for prog in $(PROGS) $(SCRIPTS) ; do \
- $(INSTALL_PROGRAM) $$prog $(bindir) ; \
+ $(INSTALL) $$prog $(bindir) ; \
done
-strip $(bindir)/remind
-strip $(bindir)/rem2ps

1
misc/remind/pkg/COMMENT Normal file
View File

@ -0,0 +1 @@
A scripting language for reminders, with a Tk front end.

2
misc/remind/pkg/DESCR Normal file
View File

@ -0,0 +1,2 @@
Remind is a full-featured calendar/alarm program, covered by the GPL.
See the writeup in the February 2000 issue of The Linux Journal.

10
misc/remind/pkg/PLIST Normal file
View File

@ -0,0 +1,10 @@
bin/kall
bin/rem
bin/rem2ps
bin/remind
bin/tkremind
man/man1/kall.1
man/man1/rem.1
man/man1/rem2ps.1
man/man1/remind.1
man/man1/tkremind.1