summaryrefslogtreecommitdiff
path: root/lang/eieio/Makefile
diff options
context:
space:
mode:
authorcjones <cjones>2001-06-08 20:22:00 +0000
committercjones <cjones>2001-06-08 20:22:00 +0000
commit6f29c4816bd649fc8222e477ed834c367939d609 (patch)
tree9f46ac8687a4fff9ea61a61fca73b5195e1252ad /lang/eieio/Makefile
parent8469e8597aca446e11e9de938675f06ea7afb65d (diff)
downloadpkgsrc-6f29c4816bd649fc8222e477ed834c367939d609.tar.gz
Add eieio, which is a CLOS implementation for Emacs. Needed for JDE.
Diffstat (limited to 'lang/eieio/Makefile')
-rw-r--r--lang/eieio/Makefile41
1 files changed, 41 insertions, 0 deletions
diff --git a/lang/eieio/Makefile b/lang/eieio/Makefile
new file mode 100644
index 00000000000..eccc2f88fe9
--- /dev/null
+++ b/lang/eieio/Makefile
@@ -0,0 +1,41 @@
+# $NetBSD: Makefile,v 1.1.1.1 2001/06/08 20:22:00 cjones 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-*:../../editors/xemacs
+EMACS= xemacs
+LISPDIR= lib/xemacs/xemacs-packages/lisp/eieio
+.else
+DEPENDS+= emacs-*:../../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"