2005-06-16 08:57:37 +02:00
|
|
|
# $NetBSD: Makefile,v 1.11 2005/06/16 06:58:00 jlam Exp $
|
2001-06-08 22:22:00 +02:00
|
|
|
#
|
|
|
|
|
2003-01-11 09:53:48 +01:00
|
|
|
DISTNAME= eieio-0.17
|
2001-06-08 22:22:00 +02:00
|
|
|
CATEGORIES= lang editors
|
|
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=cedet/}
|
|
|
|
|
2003-07-17 23:41:05 +02:00
|
|
|
MAINTAINER= cjones@NetBSD.org
|
2001-06-08 22:22:00 +02:00
|
|
|
HOMEPAGE= http://cedet.sourceforge.net/eieio.shtml
|
|
|
|
COMMENT= Enhanced Integration of Emacs Interpreted Objects
|
|
|
|
|
2003-01-11 09:53:48 +01:00
|
|
|
.include "../../mk/emacs.mk"
|
2001-06-08 22:22:00 +02:00
|
|
|
|
2003-01-11 09:53:48 +01:00
|
|
|
.if ${EMACS_FLAVOR} == "emacs"
|
|
|
|
.elif ${EMACS_FLAVOR} == "xemacs"
|
|
|
|
DEPENDS+= xemacs-packages:../../editors/xemacs-packages
|
2001-06-08 22:22:00 +02:00
|
|
|
.endif
|
|
|
|
|
2003-01-11 09:53:48 +01:00
|
|
|
MAKEFLAGS+= EMACS=${EMACS_BIN}
|
2001-06-08 22:22:00 +02:00
|
|
|
|
|
|
|
NO_CONFIGURE= # set
|
2005-05-22 22:07:36 +02:00
|
|
|
USE_TOOLS+= gmake
|
2001-06-08 22:22:00 +02:00
|
|
|
|
|
|
|
INFO_FILES= eieio.info
|
|
|
|
|
2003-01-11 09:53:48 +01:00
|
|
|
# XXX $cd ${WRKSRC}; ${MAKE} -V eieio_LISP
|
|
|
|
SRCS= eieio.el eieio-comp.el eieio-opt.el eieio-custom.el eieio-doc.el \
|
|
|
|
eieio-base.el
|
|
|
|
# XXX $cd ${WRKSRC}; ${MAKE} -V examples_LISP
|
|
|
|
SRCS+= tree.el call-tree.el chart.el eieio-speedbar.el linemark.el
|
2001-06-08 22:22:00 +02:00
|
|
|
|
2005-06-16 08:57:37 +02:00
|
|
|
INSTALLATION_DIRS= ${INFO_DIR}
|
|
|
|
|
2001-06-08 22:22:00 +02:00
|
|
|
do-install:
|
2003-01-11 09:53:48 +01:00
|
|
|
${INSTALL_DATA_DIR} ${EMACS_LISPPREFIX}/eieio
|
2001-06-08 22:22:00 +02:00
|
|
|
cd ${WRKSRC} && ${INSTALL_DATA} ${SRCS} ${SRCS:.el=.elc} \
|
2003-01-11 09:53:48 +01:00
|
|
|
${EMACS_LISPPREFIX}/eieio
|
2004-04-06 00:13:43 +02:00
|
|
|
cd ${WRKSRC} && ${INSTALL_DATA} ${INFO_FILES} ${PREFIX}/${INFO_DIR}
|
2001-06-08 22:22:00 +02:00
|
|
|
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|