mirror of
https://git.freebsd.org/ports.git
synced 2025-05-01 19:16:39 -04:00
* Take maintainership as there are already 3 successive maintainer timeout in the past. * Switch to DISTVERSION. * Set DISTVERSION to 6.9 and explicitly set DISTFILES. At first upstream released source archive as 'mew-6.9.tar.gz'. But issue that results in installation error is reported. So he fixed it and release new source archive as 'mew-6.9a.tar.gz'. And he said the latter is rerolled source archive of version 6.9. * Remove patch-no-native-compile as Mew works fine with native compilation now. * Install elisp and image files to EMACS_VERSION_SITE_LISPDIR. * Unconditionally install mew.ja.info as per section 5.17.4 of Porter's Handbook. * Pet portclippy. * Tidy up Makefile with portfmt. ReleaseNotes: https://github.com/kazu-yamamoto/Mew/blob/v6.9/RELEASENOTE.md PR: 269532 Approved by: maintainer timeout
27 lines
696 B
Text
27 lines
696 B
Text
--- info/Makefile.orig 2021-01-31 07:40:24 UTC
|
|
+++ info/Makefile
|
|
@@ -15,7 +15,7 @@
|
|
## EDIT THE FOLLOWINGS
|
|
##
|
|
|
|
-prefix=/usr/local
|
|
+prefix=${PREFIX}
|
|
infodir=$(prefix)/info
|
|
|
|
EMACS=emacs
|
|
@@ -59,6 +59,7 @@ mew.info: tmp.texi
|
|
$(EMACS) -batch -q -no-site-file \
|
|
--eval "(set-default-coding-systems 'utf-8-unix)" \
|
|
-l texinfmt -f batch-texinfo-format $?
|
|
+ $(RM) tmp.text
|
|
|
|
tmpj.texi: mew.texi
|
|
sed -e 's/@setfilename mew.info/@setfilename mew.ja.info/' \
|
|
@@ -69,6 +70,7 @@ mew.ja.info: tmpj.texi
|
|
$(EMACS) -batch -q -no-site-file \
|
|
--eval "(set-default-coding-systems 'utf-8-unix)" \
|
|
-l texinfmt -f batch-texinfo-format $?
|
|
+ $(RM) tmpj.text
|
|
|
|
install: install-info
|
|
install-info:
|