diff options
Diffstat (limited to 'editors/emacs24/patches/patch-ae')
-rw-r--r-- | editors/emacs24/patches/patch-ae | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/editors/emacs24/patches/patch-ae b/editors/emacs24/patches/patch-ae new file mode 100644 index 00000000000..10c6858f119 --- /dev/null +++ b/editors/emacs24/patches/patch-ae @@ -0,0 +1,50 @@ +$NetBSD: patch-ae,v 1.1 2012/06/16 21:03:42 dholland Exp $ + +Remove info + +--- Makefile.in.orig 2012-05-14 21:00:02.000000000 +0900 ++++ Makefile.in 2012-06-09 23:27:07.000000000 +0900 +@@ -137,7 +137,7 @@ + infodir=@infodir@ + INFO_FILES=ada-mode auth autotype calc ccmode cl dbus dired-x ebrowse \ + ede ediff edt eieio efaq eintr elisp emacs emacs-gnutls emacs-mime epa erc \ +- ert eshell eudc flymake forms gnus idlwave info mairix-el \ ++ ert eshell eudc flymake forms gnus idlwave mairix-el \ + message mh-e newsticker nxml-mode org pcl-cvs pgg rcirc \ + reftex remember sasl sc semantic ses sieve smtpmail speedbar \ + tramp url vip viper widget woman +@@ -461,7 +461,7 @@ + install: all install-arch-indep install-arch-dep install-leim blessmail + @true + +-MV_DIRS = for i in $$dir; do rm -fr `basename "$$i"` ; mv "$$i" . ; done ++MV_DIRS = for i in $$dir; do if test -e $$i ; then rm -fr `basename "$$i"` ; mv "$$i" . ; fi; done + + ### Install the executables that were compiled specifically for this machine. + ### It would be nice to do something for a parallel make +@@ -620,7 +620,6 @@ + else \ + (cd $${thisdir}; \ + ${INSTALL_DATA} ${srcdir}/info/dir $(DESTDIR)${infodir}/dir; \ +- chmod a+r $(DESTDIR)${infodir}/dir); \ + fi; \ + cd ${srcdir}/info ; \ + for elt in $(INFO_FILES); do \ +@@ -637,16 +636,7 @@ + done); \ + else true; fi + -unset CDPATH; \ +- thisdir=`/bin/pwd`; \ +- if [ `(cd ${srcdir}/info && /bin/pwd)` != `(cd $(DESTDIR)${infodir} && /bin/pwd)` ]; \ +- then \ +- for elt in $(INFO_FILES); do \ +- test "$(HAVE_MAKEINFO)" = "no" && test ! -f $$elt && continue; \ +- (cd $${thisdir}; \ +- ${INSTALL_INFO} --info-dir=$(DESTDIR)${infodir} $(DESTDIR)${infodir}/$$elt); \ +- done; \ +- else true; fi +- -chmod -R a+r $(DESTDIR)${datadir}/emacs/${version} ${COPYDESTS} ++ chmod -R a+r $(DESTDIR)${datadir}/emacs/${version} ${COPYDESTS} + thisdir=`/bin/pwd`; \ + cd ${mansrcdir}; \ + for page in ${MAN_PAGES}; do \ |