blob: 1e01136d88330ce2a839e7c532662e99f6af2d16 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# $NetBSD: Makefile,v 1.5 2003/07/17 22:54:14 grant Exp $
DISTNAME= dictionary-1.8.2
PKGNAME= ${DISTNAME:S/dictionary/emacs-dict-client/}
CATEGORIES= textproc
MASTER_SITES= ${HOMEPAGE}
MAINTAINER= tech-pkg@NetBSD.org
HOMEPAGE= http://me.in-berlin.de/~myrkr/dictionary/
COMMENT= Emacs package for talking to a dictionary server
DEPENDS+= emacs>=21.2:../../editors/emacs
do-install:
${INSTALL_DATA_DIR} ${PREFIX}/share/emacs/site-lisp/dictionary
cd ${WRKSRC}; \
${INSTALL_DATA} connection.elc connection.el dictionary.elc \
dictionary.el link.elc link.el dictionary-init.el \
${PREFIX}/share/emacs/site-lisp/dictionary
.include "../../mk/bsd.pkg.mk"
|