mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-18 00:10:04 +00:00
26421ac37c
- Bump Emacs version in Mk/Uses/emacs.mk to update version-specific paths - Bump PORTREVISION of ports with USES=emacs. This is required for two reasons. Emacs lisp files need to be byte compiled for the new Emacs version, and files installed under, e.g., EMACS_VERSION_SITE_LISPDIR need to be relocated. Reviewed by: ashish Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D44492
26 lines
488 B
Makefile
26 lines
488 B
Makefile
PORTNAME= epl.el
|
|
PORTVERSION= 0.8
|
|
PORTREVISION= 16
|
|
CATEGORIES= devel elisp
|
|
PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX}
|
|
|
|
MAINTAINER= hrs@FreeBSD.org
|
|
COMMENT= Emacs Package Library
|
|
WWW= https://github.com/cask/epl
|
|
|
|
LICENSE= GPLv3
|
|
|
|
USES= emacs
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= cask
|
|
GH_PROJECT= epl
|
|
|
|
NO_BUILD= yes
|
|
PLIST_FILES= ${EMACS_SITE_LISPDIR}/epl.el
|
|
|
|
do-install:
|
|
(cd ${WRKSRC} && ${INSTALL_DATA} ${PLIST_FILES:M*.el:T} \
|
|
${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR})
|
|
|
|
.include <bsd.port.mk>
|