pkgsrc/editors/xemacs/options.mk
hauke 5613c7b36a For the sake of MKPIE, we need to .include Makefile.common before
options.mk.

Since Makefile.common now does not see the x11 option, we have to move
all x11 related commands into options.mk. Within options, move
.includes to the end for consistency.
2021-10-03 17:53:11 +00:00

97 lines
2.7 KiB
Makefile

# $NetBSD: options.mk,v 1.18 2021/10/03 17:53:11 hauke Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.xemacs
PKG_SUPPORTED_OPTIONS+= ldap canna debug
.include "../../mk/bsd.options.mk"
###
### Support drawing pretty X11 Lucid widgets
###
PLIST_VARS+= x11
.if !empty(PKG_OPTIONS:Mx11)
PLIST.x11= yes
CONFIGURE_ARGS+= --with-x
CONFIGURE_ARGS+= --with-jpeg
CONFIGURE_ARGS+= --with-png
CONFIGURE_ARGS+= --with-tiff
CONFIGURE_ARGS+= --with-xpm
CONFIGURE_ARGS+= --site-includes=${PREFIX}/include:${X11BASE}/include
CONFIGURE_ARGS+= --site-libraries=${PREFIX}/lib:${X11BASE}/lib
CONFIGURE_ARGS+= --site-runtime-libraries=${PREFIX}/lib:${X11BASE}/lib
# Lucid widgets
CONFIGURE_ARGS+= --with-toolbars=yes
CONFIGURE_ARGS+= --with-menubars=lucid
CONFIGURE_ARGS+= --with-scrollbars=lucid
# Setting these to 'lucid' will sneak in Motif, so don't
CONFIGURE_ARGS+= --with-dialogs=athena
CONFIGURE_ARGS+= --with-widgets=athena
CONFIGURE_ARGS+= --with-athena=xaw
CONFIGURE_ARGS+= --with-xim=xlib
SUBST_CLASSES+= desktop-file
SUBST_STAGE.desktop-file= pre-configure
SUBST_MESSAGE.desktop-file= Fixing paths in XEmacs desktop file
SUBST_VARS.desktop-file= PREFIX LIBDIR
SUBST_FILES.desktop-file= etc/xemacs.desktop
INSTALLATION_DIRS+= share/applications
post-extract-x11:
cp ${FILESDIR}/xemacs.desktop ${WRKSRC}/etc/
post-install-x11:
${INSTALL_DATA} ${WRKSRC}/etc/xemacs.desktop \
${DESTDIR}${PREFIX}/share/applications/
. include "../../sysutils/desktop-file-utils/desktopdb.mk"
. include "../../mk/jpeg.buildlink3.mk"
. include "../../graphics/png/buildlink3.mk"
. include "../../graphics/tiff/buildlink3.mk"
. include "../../x11/libXpm/buildlink3.mk"
. include "../../mk/xaw.buildlink3.mk"
. include "../../x11/xbitmaps/buildlink3.mk"
.else
CONFIGURE_ARGS+= --without-x
CONFIGURE_ARGS+= --without-jpeg
CONFIGURE_ARGS+= --without-png
CONFIGURE_ARGS+= --without-tiff
CONFIGURE_ARGS+= --without-xpm
CONFIGURE_ARGS+= --site-includes=${PREFIX}/include
CONFIGURE_ARGS+= --site-libraries=${PREFIX}/lib
CONFIGURE_ARGS+= --site-runtime-libraries=${PREFIX}/lib
# Nothing to do
post-extract-x11:
post-install-x11:
.endif
.if !empty(PKG_OPTIONS:Mldap)
CONFIGURE_ARGS+= --with-ldap
. include "../../databases/openldap-client/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
PLIST_VARS+= canna
.if !empty(PKG_OPTIONS:Mcanna)
CONFIGURE_ARGS+= --with-canna
. include "../../inputmethod/canna-lib/buildlink3.mk"
PLIST.canna= yes
.else
CONFIGURE_ARGS+= --without-canna
.endif
PLIST_VARS+= debug
.if !empty(PKG_OPTIONS:Mdebug)
CONFIGURE_ARGS+= --debug
CFLAGS+= -g3
INSTALL_UNSTRIPPED= yes
.endif