diff options
author | Joseph Mingrone <jrm@FreeBSD.org> | 2018-02-01 18:03:09 +0000 |
---|---|---|
committer | Joseph Mingrone <jrm@FreeBSD.org> | 2018-02-01 18:03:09 +0000 |
commit | a3cc513bfc69ef10d52ed310dd9a6e6bb8c57491 (patch) | |
tree | 4a6b8513515fb032f2183d945863a1d39dbcd0c1 /editors/apel/Makefile | |
parent | Add patch that forces configuration files in $H/.KeeperRL directory (diff) |
Flavorize and modernize Emacs ports
- 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
Notes
Notes:
svn path=/head/; revision=460621
Diffstat (limited to 'editors/apel/Makefile')
-rw-r--r-- | editors/apel/Makefile | 25 |
1 files changed, 8 insertions, 17 deletions
diff --git a/editors/apel/Makefile b/editors/apel/Makefile index 5f9578332b09..bedefd3be501 100644 --- a/editors/apel/Makefile +++ b/editors/apel/Makefile @@ -3,33 +3,24 @@ PORTNAME= apel PORTVERSION= ${APEL_VER} -PORTREVISION= 14 +PORTREVISION= 15 CATEGORIES= editors elisp MASTER_SITES= http://git.chise.org/elisp/dist/apel/ -PKGNAMESUFFIX= -${EMACS_PORT_NAME} +PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} MAINTAINER= nobutaka@FreeBSD.org COMMENT= Portable Emacs Library LICENSE= GPLv2 -# distfile version -APEL_VER= 10.8 -# apel lispdir -APEL_LISPDIR?= ${LOCALBASE}/${EMACS_VERSION_SITE_LISPDIR} -APEL_VERSION_SPECIFIC_LISPDIR?= ${LOCALBASE}/${EMACS_VERSION_SITE_LISPDIR} - -# emacs port setup -USE_EMACS= yes +USES= emacs -DESCR= ${PKGDIR}/pkg-descr +NO_ARCH= yes -# target name for make build -ALL_TARGET?= elc -# environments -MAKE_ARGS+= PREFIX="${STAGEDIR}${LOCALBASE}" \ - LISPDIR="${STAGEDIR}${APEL_LISPDIR}" \ - VERSION_SPECIFIC_LISPDIR="${STAGEDIR}${APEL_VERSION_SPECIFIC_LISPDIR}" +APEL_VER= 10.8 +ALL_TARGET= elc +MAKE_ARGS+= PREFIX="${STAGEDIR}${PREFIX}" \ + LISPDIR="${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR}" OPTIONS_DEFINE= DOCS |