diff options
author | thorpej <thorpej> | 1998-12-09 06:18:21 +0000 |
---|---|---|
committer | thorpej <thorpej> | 1998-12-09 06:18:21 +0000 |
commit | 97eef817484819c518fca7c62742ad889d3b4eef (patch) | |
tree | a4739aa6178ddf1936b4eed1087d88f5fad71740 /net/zenicb/Makefile | |
parent | 4e9c5d02e7553b019dd8ea775e93da0b81976ab9 (diff) | |
download | pkgsrc-97eef817484819c518fca7c62742ad889d3b4eef.tar.gz |
Waste time on the International Citizens Band with ZenICB, and ICB client
for Emacs. This version is the one maintained by Faried Nawaz <fn@hungry.com>,
though he does not version his distribution (because it is still prerelease),
so we maintain a dated version as a LOCAL_PORT.
Diffstat (limited to 'net/zenicb/Makefile')
-rw-r--r-- | net/zenicb/Makefile | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/net/zenicb/Makefile b/net/zenicb/Makefile new file mode 100644 index 00000000000..ef74430d4c4 --- /dev/null +++ b/net/zenicb/Makefile @@ -0,0 +1,39 @@ +# $NetBSD: Makefile,v 1.1.1.1 1998/12/09 06:18:21 thorpej Exp $ + +DISTNAME= zenicb-19981202 +CATEGORIES= net +MASTER_SITES= ${MASTER_SITE_LOCAL} + +MAINTAINER= thorpej@netbsd.org + +MIRROR_DISTFILE= no + +# XXX YUCK! I really don't like this, but what else are we going to do? +.include "../../mk/bsd.prefs.mk" +.if defined(USE_XEMACS) +EMACS= xemacs +RUN_DEPENDS+= xemacs-20.4:../../editors/xemacs20 +.else +EMACS= emacs +RUN_DEPENDS+= emacs-20.3:../../editors/emacs +.endif + +ELISPDIR= ${PREFIX}/share/${EMACS}/site-lisp + +PLIST_SRC= ${WRKDIR}/PLIST.tmp + +pre-configure: + @${ECHO} "To install for Xemacs, set the environment variable USE_XEMACS." + +pre-install: + ${SED} -e "s/@EMACS@/${EMACS}/g" ${PKGDIR}/PLIST > ${PLIST_SRC} + +do-build: + +do-install: + @for file in ${WRKSRC}/src/*.el; do \ + j="${INSTALL_DATA} $$file ${ELISPDIR}/"; \ + echo $$j; $$j; \ + done + +.include "../../mk/bsd.pkg.mk" |