blob: d117894e148ffedef35c0c8ad2c0c5f94010cb31 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# $NetBSD: Makefile,v 1.2 2001/09/27 23:18:16 jlam Exp $
#
DISTNAME= eieio-0.16
CATEGORIES= lang editors
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=cedet/}
MAINTAINER= cjones@netbsd.org
HOMEPAGE= http://cedet.sourceforge.net/eieio.shtml
COMMENT= Enhanced Integration of Emacs Interpreted Objects
.include "../../mk/bsd.prefs.mk"
.if defined(USE_XEMACS)
DEPENDS+= xemacs-[0-9]*:../../editors/xemacs
EMACS= xemacs
LISPDIR= lib/xemacs/xemacs-packages/lisp/eieio
.else
DEPENDS+= emacs-[0-9]*:../../editors/emacs
EMACS= emacs
LISPDIR= share/emacs/site-lisp/eieio
.endif
BUILD_ENV+= EMACS=${EMACS}
PLIST_SUBST+= LISPDIR=${LISPDIR}
NO_CONFIGURE= # set
USE_GMAKE= # set
INFO_FILES= eieio.info
SRCS= eieio.el eieio-comp.el eieio-opt.el eieio-custom.el \
eieio-doc.el eieio-base.el compare-strings.el
do-install:
${INSTALL_DATA_DIR} ${PREFIX}/${LISPDIR}
cd ${WRKSRC} && ${INSTALL_DATA} ${SRCS} ${SRCS:.el=.elc} \
${PREFIX}/${LISPDIR}
cd ${WRKSRC} && ${INSTALL_DATA} ${INFO_FILES} ${PREFIX}/info
.include "../../mk/bsd.pkg.mk"
|