diff options
Diffstat (limited to 'time')
-rw-r--r-- | time/wyrd/DESCR | 11 | ||||
-rw-r--r-- | time/wyrd/Makefile | 25 | ||||
-rw-r--r-- | time/wyrd/PLIST | 6 | ||||
-rw-r--r-- | time/wyrd/distinfo | 6 | ||||
-rw-r--r-- | time/wyrd/patches/patch-aa | 17 |
5 files changed, 65 insertions, 0 deletions
diff --git a/time/wyrd/DESCR b/time/wyrd/DESCR new file mode 100644 index 00000000000..3c2d909bc00 --- /dev/null +++ b/time/wyrd/DESCR @@ -0,0 +1,11 @@ +Wyrd is a text-based front-end to Remind, a sophisticated calendar +and alarm program. Remind's power lies in its programmability, and +Wyrd does not hide this capability behind flashy GUI dialogs. +Rather, Wyrd is designed to make you more efficient at editing your +reminder files directly. It also offers a scrollable timetable +suitable for visualizing your schedule at a glance. + +Unlike most of the calendar applications available today, Wyrd is +designed to be both lightweight and fast. Startup time is negligible, +UI navigation is instantaneous, and the wyrd process typically +consumes less than 2MB of resident memory. diff --git a/time/wyrd/Makefile b/time/wyrd/Makefile new file mode 100644 index 00000000000..c6780fdd329 --- /dev/null +++ b/time/wyrd/Makefile @@ -0,0 +1,25 @@ +# $NetBSD: Makefile,v 1.1.1.1 2006/07/24 23:03:35 wiz Exp $ +# + +DISTNAME= wyrd-1.4.1 +CATEGORIES= time +MASTER_SITES= http://www.eecs.umich.edu/~pelzlpj/wyrd/ + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= http://www.eecs.umich.edu/~pelzlpj/wyrd/ +COMMENT= Text-based front-end to Remind + +DEPENDS+= remind>=3.00.24:../../time/remind + +USE_PKGLOCALEDIR= yes +USE_NCURSES= yes # chgat(), typeahead(), ... +USE_TOOLS+= gmake +CONFIGURE_ARGS+= --with-ncurses +GNU_CONFIGURE= yes + +CONF_FILES+= ${PREFIX}/share/examples/wyrd/wyrdrc \ + ${PKG_SYSCONFDIR}/wyrdrc + +.include "../../devel/ncurses/buildlink3.mk" +.include "../../lang/ocaml/buildlink3.mk" +.include "../../mk/bsd.pkg.mk" diff --git a/time/wyrd/PLIST b/time/wyrd/PLIST new file mode 100644 index 00000000000..8051730c9ec --- /dev/null +++ b/time/wyrd/PLIST @@ -0,0 +1,6 @@ +@comment $NetBSD: PLIST,v 1.1.1.1 2006/07/24 23:03:35 wiz Exp $ +bin/wyrd +man/man1/wyrd.1 +man/man5/wyrdrc.5 +share/examples/wyrd/wyrdrc +@dirrm share/examples/wyrd diff --git a/time/wyrd/distinfo b/time/wyrd/distinfo new file mode 100644 index 00000000000..93696e52143 --- /dev/null +++ b/time/wyrd/distinfo @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1.1.1 2006/07/24 23:03:35 wiz Exp $ + +SHA1 (wyrd-1.4.1.tar.gz) = 5d34bdef0ae5a28f47ac7fc927fe60639926a568 +RMD160 (wyrd-1.4.1.tar.gz) = cb6ce509c140f97123a544aaf94d390d59811e9f +Size (wyrd-1.4.1.tar.gz) = 198530 bytes +SHA1 (patch-aa) = d4ad2bbfbc1e493797d4c078863e233b9422b5d3 diff --git a/time/wyrd/patches/patch-aa b/time/wyrd/patches/patch-aa new file mode 100644 index 00000000000..3b41efbb685 --- /dev/null +++ b/time/wyrd/patches/patch-aa @@ -0,0 +1,17 @@ +$NetBSD: patch-aa,v 1.1.1.1 2006/07/24 23:03:35 wiz Exp $ + +--- Makefile.in.orig 2006-07-16 22:29:41.000000000 +0000 ++++ Makefile.in +@@ -107,10 +107,10 @@ version.ml: Makefile + + install-indep: + mkdir -p $(BINDIR) +- mkdir -p $(DESTDIR)/$(sysconfdir) + mkdir -p $(MANDIR)/man1 + mkdir -p $(MANDIR)/man5 +- install -m 644 wyrdrc $(DESTDIR)/$(sysconfdir) ++ mkdir -p $(DESTDIR)/$(prefix)/share/examples/wyrd ++ install -m 644 wyrdrc $(DESTDIR)/$(prefix)/share/examples/wyrd + install -m 644 doc/wyrd.1 $(MANDIR)/man1/wyrd.1 + install -m 644 doc/wyrdrc.5 $(MANDIR)/man5/wyrdrc.5 + |