diff options
author | hrs <hrs@FreeBSD.org> | 2019-02-19 08:41:17 +0800 |
---|---|---|
committer | hrs <hrs@FreeBSD.org> | 2019-02-19 08:41:17 +0800 |
commit | fa23bc7b4967bf5b00913a138e34a8602b32127f (patch) | |
tree | b7a1342df4636c7adad39ff3644fb9b3aa9dc5b7 /editors | |
parent | 57e46fb454072f579321c41a9f89a0b18c60c8b1 (diff) | |
download | freebsd-ports-gnome-fa23bc7b4967bf5b00913a138e34a8602b32127f.tar.gz freebsd-ports-gnome-fa23bc7b4967bf5b00913a138e34a8602b32127f.tar.zst freebsd-ports-gnome-fa23bc7b4967bf5b00913a138e34a8602b32127f.zip |
Add temporary workaround for poudriere build breakage.
PR: 228812
Diffstat (limited to 'editors')
-rw-r--r-- | editors/tamago/Makefile | 5 | ||||
-rw-r--r-- | editors/tamago/files/patch-Makefile.in | 15 | ||||
-rw-r--r-- | editors/tamago/files/patch-egg-Makefile.in | 15 | ||||
-rw-r--r-- | editors/tamago/files/patch-its-Makefile.in | 15 |
4 files changed, 45 insertions, 5 deletions
diff --git a/editors/tamago/Makefile b/editors/tamago/Makefile index dfe8d08f87dd..64bb067b13c5 100644 --- a/editors/tamago/Makefile +++ b/editors/tamago/Makefile @@ -13,11 +13,6 @@ COMMENT= Egg V4, Multilingual Input Method for Emacsen LICENSE= GPLv2 -.if ${FLAVOR:U} != devel -# http://pkg.awarnach.mathstat.dal.ca/data/11i386-default/2018-05-30_07h36m11s/logs/errors/tamago-emacs26-4.0.6.0.20041122.19.14_4.log -BROKEN= fails to build -.endif - USES= emacs EMACS_FLAVORS_EXCLUDE= devel_full # fails to build USE_GITHUB= yes diff --git a/editors/tamago/files/patch-Makefile.in b/editors/tamago/files/patch-Makefile.in new file mode 100644 index 000000000000..666ae26c41a5 --- /dev/null +++ b/editors/tamago/files/patch-Makefile.in @@ -0,0 +1,15 @@ +--- Makefile.in.orig 2016-05-15 21:22:18 UTC ++++ Makefile.in +@@ -423,8 +423,11 @@ distclean-hdr: + $(EMACS) --batch \ + $(AM_ELCFLAGS) $(ELCFLAGS) \ + $$am__subdir_includes -L $(builddir) -L $(srcdir) \ +- --eval "(defun byte-compile-dest-file (f) \"$@\")" \ ++ --eval "(defun byte-compile-dest-file (f) \"/tmp/$@\")" \ + --eval "(unless (byte-compile-file \"$<\") (kill-emacs 1))"; \ ++ if [ -f "/tmp/$@" ]; then \ ++ cp /tmp/$@ $@ && rm -f /tmp/$@; \ ++ fi; \ + else :; fi + + install-dist_lispLISP: $(dist_lisp_LISP) $(ELCFILES) diff --git a/editors/tamago/files/patch-egg-Makefile.in b/editors/tamago/files/patch-egg-Makefile.in new file mode 100644 index 000000000000..5f24565559c4 --- /dev/null +++ b/editors/tamago/files/patch-egg-Makefile.in @@ -0,0 +1,15 @@ +--- egg/Makefile.in.orig 2016-05-15 21:22:18 UTC ++++ egg/Makefile.in +@@ -322,8 +322,11 @@ $(am__aclocal_m4_deps): + $(EMACS) --batch \ + $(AM_ELCFLAGS) $(ELCFLAGS) \ + $$am__subdir_includes -L $(builddir) -L $(srcdir) \ +- --eval "(defun byte-compile-dest-file (f) \"$@\")" \ ++ --eval "(defun byte-compile-dest-file (f) \"/tmp/$@\")" \ + --eval "(unless (byte-compile-file \"$<\") (kill-emacs 1))"; \ ++ if [ -f "/tmp/$@" ]; then \ ++ cp /tmp/$@ $@ && rm -f /tmp/$@; \ ++ fi; \ + else :; fi + + install-dist_lispLISP: $(dist_lisp_LISP) $(ELCFILES) diff --git a/editors/tamago/files/patch-its-Makefile.in b/editors/tamago/files/patch-its-Makefile.in new file mode 100644 index 000000000000..d92978653283 --- /dev/null +++ b/editors/tamago/files/patch-its-Makefile.in @@ -0,0 +1,15 @@ +--- its/Makefile.in.orig 2016-05-15 21:22:18 UTC ++++ its/Makefile.in +@@ -336,8 +336,11 @@ $(am__aclocal_m4_deps): + $(EMACS) --batch \ + $(AM_ELCFLAGS) $(ELCFLAGS) \ + $$am__subdir_includes -L $(builddir) -L $(srcdir) \ +- --eval "(defun byte-compile-dest-file (f) \"$@\")" \ ++ --eval "(defun byte-compile-dest-file (f) \"/tmp/$@\")" \ + --eval "(unless (byte-compile-file \"$<\") (kill-emacs 1))"; \ ++ if [ -f "/tmp/$@" ]; then \ ++ cp /tmp/$@ $@ && rm -f /tmp/$@; \ ++ fi; \ + else :; fi + + install-dist_lispLISP: $(dist_lisp_LISP) $(ELCFILES) |