8415339e29
- Flag (interactive) was removed from the following functions: dictem-select-strategy, dictem-select-database, dictem-read-query and dictem-run. This fixes Debian bug #564251.
37 lines
1 KiB
Makefile
37 lines
1 KiB
Makefile
# $NetBSD: Makefile,v 1.10 2012/08/25 20:52:24 cheusov Exp $
|
|
|
|
DISTNAME= dictem-1.0.4
|
|
PKGNAME= ${EMACS_PKGNAME_PREFIX}${DISTNAME}
|
|
CATEGORIES= textproc editors
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=dictem/} \
|
|
http://www.mova.org/~cheusov/pub/dictem/
|
|
|
|
MAINTAINER= cheusov@NetBSD.org
|
|
HOMEPAGE= http://freshmeat.net/projects/dictem/
|
|
COMMENT= Dictionary client (RFC-2229) for [X]Emacs
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
DEPENDS+= dict-client>=1.9.14:../../textproc/dict-client
|
|
|
|
SRCS= dictem.el
|
|
DOCS= README NEWS COPYING # ChangeLog
|
|
|
|
INSTALLATION_DIRS+= share/doc/${PKGBASE} ${EMACS_LISPPREFIX}
|
|
|
|
do-build:
|
|
.for f in ${SRCS}
|
|
${EMACS_BIN} --no-init-file --no-site-file -batch \
|
|
-f batch-byte-compile ${WRKSRC}/${f}
|
|
.endfor
|
|
|
|
do-install:
|
|
set -e; \
|
|
cd ${WRKSRC} && ${INSTALL_DATA} ${SRCS} ${SRCS:.el=.elc} \
|
|
${DESTDIR}${EMACS_LISPPREFIX}; \
|
|
cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} \
|
|
${DESTDIR}${PREFIX}/share/doc/${PKGBASE}
|
|
|
|
.include "../../editors/emacs/modules.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|