diff options
author | Robert Clausecker <fuz@fuz.su> | 2022-02-16 13:07:22 +0100 |
---|---|---|
committer | Li-Wen Hsu <lwhsu@FreeBSD.org> | 2022-02-17 02:01:36 +0800 |
commit | a1fa88108bf79682e19617e74df6e8c4ce421baa (patch) | |
tree | f65346773d2534be3ca503faf036c092a4e40d97 /deskutils/remind/files/patch-rem2html_Makefile.in | |
parent | sysutils/py-puremagic: Update to 1.12 (diff) |
deskutils/remind: update to 03.04.00
- change LAT_??? and LON_??? variables to DEFAULT_LATITUDE and
DEFAULT_LONGITUDE. Users who have set these variables must change
their make.conf
- fix fetch when port version is out of date
- add a new REM2PDF option
Upstream changes:
- add UTF-8 support
- add a remind-to-PDF converter REM2PDF
- tkremind now support PDF and PS export when printing
- replace LAT_??? and LON_??? macros with DEFAULT_LATITUDE and
DEFAULT_LONGITUDE.
- various bug fixes and documentation improvements
Changelog: https://git.skoll.ca/Skollsoft-Public/Remind/src/branch/master/docs/WHATSNEW
PR: 261986
Diffstat (limited to 'deskutils/remind/files/patch-rem2html_Makefile.in')
-rw-r--r-- | deskutils/remind/files/patch-rem2html_Makefile.in | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/deskutils/remind/files/patch-rem2html_Makefile.in b/deskutils/remind/files/patch-rem2html_Makefile.in index fcff8437266a..4c7c48a733aa 100644 --- a/deskutils/remind/files/patch-rem2html_Makefile.in +++ b/deskutils/remind/files/patch-rem2html_Makefile.in @@ -1,6 +1,6 @@ ---- rem2html/Makefile.in.orig 2021-10-16 12:02:17 UTC +--- rem2html/Makefile.in.orig 2022-02-10 22:15:01 UTC +++ rem2html/Makefile.in -@@ -12,16 +12,14 @@ all: +@@ -12,17 +12,15 @@ all: true install: @@ -11,6 +11,7 @@ - $(PERL) -M$$m -e 1 > /dev/null 2>&1; \ - if test $$? != 0 ; then echo "Not installing rem2html; missing $$m"; exit 0; fi; \ - done; \ +- pod2man rem2html > rem2html.1 && mkdir -p $(DESTDIR)$(mandir)/man1 && cp rem2html.1 $(DESTDIR)$(mandir)/man1/rem2html.1 || true; \ - echo "Installing rem2html in $(DESTDIR)$(bindir)"; \ - mkdir -p $(DESTDIR)$(bindir) && sed -e 's|^#!perl|#!$(PERL)|' < rem2html > $(DESTDIR)$(bindir)/rem2html && chmod 755 $(DESTDIR)$(bindir)/rem2html && exit 0; \ - exit 1; @@ -18,6 +19,7 @@ + do \ + $(PERL) -M$$m -e 1 ; \ + done ++ pod2man rem2html > rem2html.1 && mkdir -p $(DESTDIR)$(mandir)/man1 && cp rem2html.1 $(DESTDIR)$(mandir)/man1/rem2html.1 || true + @echo "Installing rem2html in $(DESTDIR)$(bindir)" + mkdir -p $(DESTDIR)$(bindir) + sed -e 's|^#!perl|#!$(PERL)|' < rem2html > rem2html.out |