mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-18 00:10:04 +00:00
b946d410cc
Bump PORTREVISION of most USES=emacs ports after editors/emacs-devel major version increased from 30 to 31. Sponsored by: The FreeBSD Foundation
39 lines
906 B
Makefile
39 lines
906 B
Makefile
PORTNAME= dictionary
|
|
PORTVERSION= 1.8.7
|
|
PORTREVISION= 38
|
|
CATEGORIES= textproc net elisp
|
|
MASTER_SITES= http://me.in-berlin.de/~myrkr/dictionary/ \
|
|
http://bsdchat.com/dist/dryice/
|
|
PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Dictionary client for Emacs
|
|
WWW= https://www.myrkr.in-berlin.de/dictionary/
|
|
|
|
LICENSE= GPLv2+
|
|
LICENSE_FILE= ${WRKSRC}/GPL
|
|
|
|
USES= emacs
|
|
|
|
LISPDIR= ${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}/${PORTNAME}
|
|
ELS= connection.el dictionary.el link.el
|
|
|
|
PORTDOCS= *
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
do-build:
|
|
cd ${WRKSRC} && ${EMACS_CMD} -batch -l lpath.el -f batch-byte-compile ${ELS}
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${LISPDIR}
|
|
.for i in ${ELS} *.elc dictionary-init.el
|
|
${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${LISPDIR}
|
|
.endfor
|
|
|
|
do-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|