pkgsrc/editors/xemacs/options.mk
uebayasi 94e9002d02 * Correct PLIST when !defined(PKG_OPTIONS.xemacs:Mcanna).
* Move library/header path configurations from xemacs/Makefile.common
  to xemacs/Makefile and xemacs-nox11/Makefile.  Don't add X-related
  paths for -nox11.  Fix build failure reported by bulk builds.
2005-03-03 16:16:03 +00:00

29 lines
703 B
Makefile

# $NetBSD: options.mk,v 1.4 2005/03/03 16:16:03 uebayasi Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.xemacs
PKG_SUPPORTED_OPTIONS= ldap xface canna
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mldap)
CONFIGURE_ARGS= --with-ldap
. include "../../databases/openldap/buildlink3.mk"
.else
CONFIGURE_ARGS= --without-ldap
.endif
.if !empty(PKG_OPTIONS:Mxface)
CONFIGURE_ARGS= --with-xface
. include "../../mail/faces/buildlink3.mk"
.else
CONFIGURE_ARGS= --without-xface
.endif
.if !empty(PKG_OPTIONS:Mcanna)
. include "../../inputmethod/canna-lib/buildlink3.mk"
CONFIGURE_ARGS= --with-canna
PLIST_SUBST+= FOR_MULE=''
.else
CONFIGURE_ARGS= --without-canna
PLIST_SUBST+= FOR_MULE='@comment '
.endif