mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-26 09:46:09 +00:00
- Fix breakage with emacs27.
- Regenerate patch-emacs_Makefile.in with make makepatch.
This commit is contained in:
parent
fb28a3886d
commit
19d2f59463
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=544801
@ -3,7 +3,7 @@
|
||||
|
||||
PORTNAME= uim-el
|
||||
PORTVERSION= 1.8.8
|
||||
PORTREVISION= 4
|
||||
PORTREVISION= 5
|
||||
CATEGORIES= textproc
|
||||
MASTER_SITES= https://github.com/uim/uim/releases/download/${PORTVERSION}/
|
||||
PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX}
|
||||
|
@ -1,15 +1,15 @@
|
||||
--- emacs/Makefile.in.orig Fri Jun 9 10:47:01 2006
|
||||
+++ emacs/Makefile.in Mon Jun 12 01:12:29 2006
|
||||
@@ -37,8 +37,6 @@
|
||||
--- emacs/Makefile.in.orig 2018-05-11 21:27:46 UTC
|
||||
+++ emacs/Makefile.in
|
||||
@@ -89,8 +89,6 @@ PRE_UNINSTALL = :
|
||||
POST_UNINSTALL = :
|
||||
build_triplet = @build@
|
||||
host_triplet = @host@
|
||||
-@UIM_EL_TRUE@bin_PROGRAMS = uim-el-agent$(EXEEXT) \
|
||||
-@UIM_EL_TRUE@ uim-el-helper-agent$(EXEEXT)
|
||||
subdir = emacs
|
||||
DIST_COMMON = README $(am__dist_uimel_lisp_DATA_DIST) \
|
||||
$(srcdir)/Makefile.am $(srcdir)/Makefile.in COPYING INSTALL
|
||||
@@ -874,7 +872,7 @@
|
||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
||||
am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_have_stl.m4 \
|
||||
@@ -1087,7 +1085,7 @@ distdir: $(DISTFILES)
|
||||
done
|
||||
check-am: all-am
|
||||
check: check-am
|
||||
@ -17,4 +17,4 @@
|
||||
+all-am: Makefile $(DATA)
|
||||
installdirs:
|
||||
for dir in "$(DESTDIR)$(bindir)" "$(DESTDIR)$(uimel_lispdir)"; do \
|
||||
test -z "$$dir" || $(mkdir_p) "$$dir"; \
|
||||
test -z "$$dir" || $(MKDIR_P) "$$dir"; \
|
||||
|
11
textproc/uim-el/files/patch-emacs_uim-helper.el
Normal file
11
textproc/uim-el/files/patch-emacs_uim-helper.el
Normal file
@ -0,0 +1,11 @@
|
||||
--- emacs/uim-helper.el.orig 2017-08-14 00:07:26 UTC
|
||||
+++ emacs/uim-helper.el
|
||||
@@ -106,7 +106,7 @@
|
||||
(if (not proc)
|
||||
(error "uim.el: Couldn't invoke uim-el-helper-agent."))
|
||||
|
||||
- (process-kill-without-query proc)
|
||||
+ (set-process-query-on-exit-flag proc nil)
|
||||
|
||||
;; wait "OK"
|
||||
(let ((patience uim-startup-timeout) (ok nil))
|
11
textproc/uim-el/files/patch-emacs_uim.el
Normal file
11
textproc/uim-el/files/patch-emacs_uim.el
Normal file
@ -0,0 +1,11 @@
|
||||
--- emacs/uim.el.orig 2018-05-08 04:53:27 UTC
|
||||
+++ emacs/uim.el
|
||||
@@ -488,7 +488,7 @@
|
||||
(error "uim.el: Couldn't invoke uim-el-agent."))
|
||||
|
||||
;; don't ask kill
|
||||
- (process-kill-without-query proc)
|
||||
+ (set-process-query-on-exit-flag proc nil)
|
||||
|
||||
;; wait "OK"
|
||||
(let ((patience uim-startup-timeout) (ok nil))
|
Loading…
Reference in New Issue
Block a user