mirror of
https://git.freebsd.org/ports.git
synced 2025-06-16 02:00:30 -04:00
- Convert USE_EMACS to USES=emacs - Remove editors/emacs-nox11 (refer to nox flavors of editors/emacs and editors/emacs-devel) - Permit default Emacs flavor to be specified in make.conf - Rename japanese/migemo-emacs23 to japanese/migemo-emacs - Update and simplify audio/emms and fix build on FreeBSD 10 [1] - Update databases/bbdd and fix build on FreeBSD 10 [1] - Update editors/emacs-devel - Ensure Makefile shell commands that change directory are executed in a subshell - Silence some portlint warnings [1] By not depending on base texinfo PR: 225404 Reviewed by: antoine Approved by: portmgr (mat) ashish (maintainer) Differential Revision: https://reviews.freebsd.org/D13506
22 lines
787 B
Text
22 lines
787 B
Text
--- Makefile.in.orig 2017-12-31 05:56:38 UTC
|
|
+++ Makefile.in
|
|
@@ -99,19 +99,6 @@ install-lisp: lisp
|
|
$(INSTALL_DATA) shimbun/$$p "$(DESTDIR)$(lispdir)/s$$p";\
|
|
fi;\
|
|
done;\
|
|
- for p in `cd shimbun && echo *.el`; do\
|
|
- echo "$(INSTALL_DATA) shimbun/$$p \"$(DESTDIR)$(lispdir)/$$p\"";\
|
|
- $(INSTALL_DATA) shimbun/$$p "$(DESTDIR)$(lispdir)/$$p";\
|
|
- if test $(COMPRESS_INSTALL) = yes -a -n "$(GZIP_PROG)"\
|
|
- -a -f "shimbun/$$p"c; then\
|
|
- rm -f "$(DESTDIR)$(lispdir)/$$p".gz;\
|
|
- "$(GZIP_PROG)" -9n "$(DESTDIR)$(lispdir)/$$p";\
|
|
- fi;\
|
|
- done;\
|
|
- for p in `cd shimbun && echo *.elc`; do\
|
|
- echo "$(INSTALL_DATA) shimbun/$$p \"$(DESTDIR)$(lispdir)/$$p\"";\
|
|
- $(INSTALL_DATA) shimbun/$$p "$(DESTDIR)$(lispdir)/$$p";\
|
|
- done;\
|
|
fi
|
|
|
|
install-icons:
|