diff options
Diffstat (limited to 'chat/irchat/Makefile')
-rw-r--r-- | chat/irchat/Makefile | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/chat/irchat/Makefile b/chat/irchat/Makefile index 4bba5109809..616ba647146 100644 --- a/chat/irchat/Makefile +++ b/chat/irchat/Makefile @@ -1,6 +1,7 @@ -# $NetBSD: Makefile,v 1.2 2001/02/16 13:51:26 wiz Exp $ +# $NetBSD: Makefile,v 1.3 2002/09/13 10:37:53 uebayasi Exp $ DISTNAME= irchat-pj-2.4.24.20 +PKGNAME= ${EMACS_PKGPREFIX}${DISTNAME} CATEGORIES= chat MASTER_SITES= ftp://ftp.madoka.org/pub/irchat-pj/ @@ -8,6 +9,17 @@ MAINTAINER= tech-pkg-ja@jp.netbsd.org HOMEPAGE= http://www.fan.gr.jp/~simm/irchat/ COMMENT= Emacs lisp interface to Internet Relay Chat -DEPENDS+= emacs-20.*:../../editors/emacs +.include "../../mk/emacs.mk" + +.if ${EMACS_FLAVOR} == "emacs" +INSTALL_TARGET= install +PLIST_SRC= ${PKGDIR}/PLIST.emacs +.elif ${EMACS_FLAVOR} == "xemacs" +ALL_TARGET= package +INSTALL_TARGET= install-package +PLIST_SRC= ${PKGDIR}/PLIST.xemacs +.else +IGNORE+= "Unknown Emacs flavor" +.endif .include "../../mk/bsd.pkg.mk" |