67b4042451
location for both emacs and xemacs. * List the info files directly in the PLIST. * Use EMACS_MODULES to deal with a possible xemacs-packages dependency.
34 lines
864 B
Makefile
34 lines
864 B
Makefile
# $NetBSD: Makefile,v 1.8 2006/03/30 03:31:13 jlam Exp $
|
|
#
|
|
|
|
DISTNAME= riece-2.0.2
|
|
PKGNAME= ${EMACS_PKGNAME_PREFIX}${DISTNAME}
|
|
PKGREVISION= 2
|
|
CATEGORIES= chat japanese
|
|
MASTER_SITES= http://savannah.nongnu.org/download/riece/
|
|
|
|
MAINTAINER= uebayasi@NetBSD.org
|
|
HOMEPAGE= http://www.nongnu.org/riece/
|
|
COMMENT= IRC client for Emacs
|
|
|
|
EMACS_VERSIONS_ACCEPTED= \
|
|
emacs21 emacs21nox xemacs214
|
|
|
|
WRKSRC= ${WRKDIR}/${DISTNAME:C|[^0-9]$||}
|
|
|
|
GNU_CONFIGURE= YES
|
|
INFO_FILES= # PLIST
|
|
EMACS_MODULES= base
|
|
|
|
.include "../../mk/emacs.mk"
|
|
|
|
.if ${EMACS_FLAVOR} == "emacs"
|
|
CONFIGURE_ARGS+= --with-emacs=${EMACS_BIN:Q}
|
|
.elif ${EMACS_FLAVOR} == "xemacs"
|
|
CONFIGURE_ARGS+= --with-xemacs=${EMACS_BIN:Q}
|
|
CONFIGURE_ARGS+= --with-packagedir=${EMACS_LISPPREFIX:C|/lisp\$||}
|
|
.endif
|
|
# Riece digs sub directory.
|
|
CONFIGURE_ARGS+= --with-lispdir=${EMACS_LISPPREFIX:Q}
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|