mirror of
https://git.freebsd.org/ports.git
synced 2025-07-17 01:09:24 -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
18 lines
631 B
Text
18 lines
631 B
Text
--- Makefile.orig 2018-01-06 17:26:53 UTC
|
|
+++ Makefile
|
|
@@ -10,13 +10,13 @@ ALLCOMPILED=$(wildcard $(LISPDIR)/*.elc)
|
|
DESTDIR=
|
|
PREFIX=$(DESTDIR)/usr/local
|
|
INFODIR=$(PREFIX)/info
|
|
-MAN1DIR=$(PREFIX)/share/man/man1
|
|
+MAN1DIR=$(PREFIX)/man/man1
|
|
BINDIR=$(PREFIX)/bin
|
|
SITELISP=$(PREFIX)/share/emacs/site-lisp/emms
|
|
|
|
GINSTALLINFO = /usr/bin/ginstall-info --info-dir=$(INFODIR)
|
|
# For systems without ginstall-info
|
|
-INSTALLINFO = /usr/bin/install-info --info-dir=$(INFODIR)
|
|
+INSTALLINFO = /usr/local/bin/install-info --info-dir=$(INFODIR)
|
|
CHANGELOG_CMD = git log --pretty=medium --no-merges
|
|
|
|
# The currently released version of EMMS
|