pkgsrc/time/remind/Makefile
obache 2f249c7dd7 Update remind to 3.1.9.
close PR#43791.

Changes to pkgsrc
* use INSTALL_SCRIPT from configure (patch-ab).
* update tclsh name, current its version in pkgsrc is 8.4.

CHANGES TO REMIND

* Version 3.1 Patch 9 - 2010-06-20

- MAJOR ENHANCEMENT: New "purge mode" to delete expired reminders.  See
  the PURGE MODE section of the remind man page.

- ENHANCEMENT: Support DURATION in TkRemind.  Thanks to Marek Marczykowski.

- BUG FIX: Don't change the order of PS and PSFILE reminders.  Bug found
  by John McGowan.

- BUG FIX: "REM 1990-01-01 SATISFY 1" would yield a spurious parse error
  in earlier versions of Remind.

- BUG FIX: Yom HaShoah is moved to Thursday if it would normally fall on
  a Friday.  Thanks to Jonathan Kamens for pointing this out.

* Version 3.1 Patch 8 - 2010-03-09

- ENHANCEMENT: Include some useful scripts in contrib/

- ENHANCEMENT: Add the $T, $Td, $Tm, $Tw, $Ty, $U, $Ud, $Um, $Uw, $Uy
  special variables to make reminder files less wordy.  See man page
  for details.

- MINOR ENHANCEMENT: Set an icon photo window manager resource on TkRemind.

- POLICY CHANGE: Discourage use of Remind on MS Windows or Apple Mac OS X.

- BUG FIX: Ignore msgprefix() and msgsuffix() on RUN-type reminders.

- BUG FIX: Adjust Remind and Rem2PS so that SHADE specials don't obliterate
  earlier MOON specials.

- BUG FIX: Fix bug in SCHED calculations if Remind is started in the middle
  of a SCHED interval.
2010-09-09 11:39:58 +00:00

52 lines
1.4 KiB
Makefile

# $NetBSD: Makefile,v 1.16 2010/09/09 11:39:58 obache Exp $
#
DISTNAME= remind-03.01.09
PKGNAME= ${DISTNAME:C/0([0-9])/\1/g}
CATEGORIES= time
MASTER_SITES= http://www.roaringpenguin.com/files/download/
MAINTAINER= kim@tac.nyc.ny.us
HOMEPAGE= http://www.roaringpenguin.com/products/remind
COMMENT= Calendar/alarm program with interpreted input language
LICENSE= gnu-gpl-v2
PKG_DESTDIR_SUPPORT= user-destdir
GNU_CONFIGURE= yes
USE_TOOLS+= perl:run
USE_FEATURES= glob
REPLACE_PERL= www/rem2html
TEST_TARGET= test
# We don't want to require tcl just for one script.
post-build:
${SED} -e 's,@TCLSH@,tclsh8.4,' \
< ${WRKSRC}/scripts/cm2rem.tcl \
> ${WRKSRC}/scripts/cm2rem
${MV} ${WRKSRC}/man/cm2rem.1 ${WRKSRC}/man/cm2rem.1.bak
${SED} -e 's,@TCLSH@,tclsh8.4,' \
< ${WRKSRC}/man/cm2rem.1.bak \
> ${WRKSRC}/man/cm2rem.1
INSTALLATION_DIRS= share/examples/remind share/doc/remind
post-install:
cd ${WRKSRC}; \
${INSTALL_DATA} examples/defs.rem \
${DESTDIR}${PREFIX}/share/examples/remind; \
${INSTALL_DATA} examples/remind.vim \
${DESTDIR}${PREFIX}/share/examples/remind; \
cd ${WRKSRC}; \
${INSTALL_DATA} docs/README.UNIX \
${DESTDIR}${PREFIX}/share/doc/remind; \
${INSTALL_DATA} docs/WHATSNEW \
${DESTDIR}${PREFIX}/share/doc/remind; \
${INSTALL_DATA} COPYRIGHT \
${DESTDIR}${PREFIX}/share/doc/remind
${INSTALL_SCRIPT} ${WRKSRC}/www/rem2html \
${DESTDIR}${PREFIX}/bin/rem2html
.include "../../mk/bsd.pkg.mk"