diff options
author | uebayasi <uebayasi@pkgsrc.org> | 2004-11-30 08:18:39 +0000 |
---|---|---|
committer | uebayasi <uebayasi@pkgsrc.org> | 2004-11-30 08:18:39 +0000 |
commit | 8f47bffcd502c3d0ee1d9380e09e7b373d71f7df (patch) | |
tree | 1f466fd994c7035056a81b412799a34e82dac7eb /chat/riece/Makefile | |
parent | fb680c859b0a52497a19fc9dda5fed3f4f542b4a (diff) | |
download | pkgsrc-8f47bffcd502c3d0ee1d9380e09e7b373d71f7df.tar.gz |
Initial import of Riece 1.0.5.
Riece is a redesign of the Liece IRC client.
Riece has many advanced features:
+ Can connect to multiple servers per session
+ Provide more sophisticated API
+ Reduced code size (total amount of code is about 5k lines)
+ 100% APEL free
Diffstat (limited to 'chat/riece/Makefile')
-rw-r--r-- | chat/riece/Makefile | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/chat/riece/Makefile b/chat/riece/Makefile new file mode 100644 index 00000000000..b7eb2f26e0f --- /dev/null +++ b/chat/riece/Makefile @@ -0,0 +1,33 @@ +# $NetBSD: Makefile,v 1.1.1.1 2004/11/30 08:18:39 uebayasi Exp $ +# + +DISTNAME= riece-1.0.5 +CATEGORIES= chat japanese +MASTER_SITES= http://wiliki.designflaw.org/riece/ + +MAINTAINER= uebayasi@NetBSD.org +HOMEPAGE= http://www.nongnu.org/riece/ +COMMENT= IRC client for Emacs + +USE_NEW_EMACS_MK= \ + YES + +EMACS_VERSIONS_ACCEPTED= \ + emacs21 emacs21nox xemacs214 + +.include "../../mk/emacs.mk" + +GNU_CONFIGURE= YES +.if ${EMACS_FLAVOR} == "emacs" +CONFIGURE_ARGS+=--with-emacs=${EMACS_BIN} +.elif ${EMACS_FLAVOR} == "xemacs" +CONFIGURE_ARGS+=--with-xemacs=${EMACS_BIN} +CONFIGURE_ARGS+=--with-packagedir=${EMACS_LISPPREFIX:C|/lisp\$||} +.elif ${EMACS_FLAVOR} == "xemacs" +.endif +# Riece digs sub directory. +CONFIGURE_ARGS+=--with-lispdir=${EMACS_LISPPREFIX} + +INFO_FILES= riece-ja.info + +.include "../../mk/bsd.pkg.mk" |