fdce22c0cc
2.12.3 (2016-10-22) * fix crash with bad translations * fix crash and leaks in mpcinfo plugin * add mhop command * change ping timeout to 60 by default * update translations 2.12.2 (2016-10-08) * fix input box theme with Adwaita 3.20 * fix return value of hexchat_pluginpref_get_int() * fix tab color changing when print events are eaten * fix network name not being sanitized for scrollback files * fix building sysinfo on OS X <= 10.9 * fix resume with DCC GET * fix possible assertion when decoding incoming text * fix possible crashes when plugins modify the UI during context close * add "chanmodes" to channel list in plugin api * lua: o add automatic return and = handling in console o fix pluginpref usage * fishlim: o fix saving nicks containing [ or ] o add commands: /topic+, /msg+, and /notice+ o add support for /me o add /keyx command to do DH1080 key exchanges * improve efficiency of various timers * reduce updates of user count in titlebar/userlist * download extra redist for perl on Windows * update appdata file * update translations * update dependencies on Windows This is a leaf package, and in preparation of a security fix. "please commit" gdt@
117 lines
2.7 KiB
Makefile
117 lines
2.7 KiB
Makefile
# $NetBSD: options.mk,v 1.5 2017/03/28 16:18:25 khorben Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.hexchat
|
|
PKG_SUPPORTED_OPTIONS= dbus gtk2 inet6 libcanberra libnotify libpci libproxy
|
|
PKG_SUPPORTED_OPTIONS+= libsexy lua ntlm openssl perl python tests themes xft2
|
|
PKG_SUGGESTED_OPTIONS+= gtk2 inet6 libproxy libsexy openssl xft2
|
|
|
|
PLIST_VARS+= dbus gtk2 libpci lua perl python
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mdbus)
|
|
.include "../../sysutils/dbus-glib/buildlink3.mk"
|
|
.include "../../sysutils/dbus/buildlink3.mk"
|
|
PLIST.dbus= yes
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-dbus
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mgtk2)
|
|
.include "../../graphics/hicolor-icon-theme/buildlink3.mk"
|
|
.include "../../sysutils/desktop-file-utils/desktopdb.mk"
|
|
.include "../../graphics/gdk-pixbuf2/buildlink3.mk"
|
|
.include "../../x11/gtk2/buildlink3.mk"
|
|
PLIST.gtk2= yes
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-gtkfe
|
|
.endif
|
|
|
|
.if empty(PKG_OPTIONS:Minet6)
|
|
CONFIGURE_ARGS+= --disable-ipv6
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mlibcanberra)
|
|
.include "../../audio/libcanberra/buildlink3.mk"
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-libcanberra
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mlibnotify)
|
|
.include "../../sysutils/libnotify/buildlink3.mk"
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-libnotify
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mlibpci)
|
|
.include "../../sysutils/pciutils/buildlink3.mk"
|
|
.if ${OPSYS} == "NetBSD"
|
|
LIBS+= -lpciutils
|
|
.else
|
|
LIBS+= -lpci
|
|
.endif
|
|
PLIST.libpci= yes
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mlibproxy)
|
|
.include "../../www/libproxy/buildlink3.mk"
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-libproxy
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mlua)
|
|
.include "../../lang/lua/buildlink3.mk"
|
|
CONFIGURE_ARGS+= --enable-lua
|
|
PLIST.lua= yes
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-lua
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mntlm)
|
|
.include "../../devel/libntlm/buildlink3.mk"
|
|
CONFIGURE_ARGS+= --enable-ntlm=yes
|
|
.else
|
|
CONFIGURE_ARGS+= --enable-ntlm=no
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mopenssl)
|
|
.include "../../security/openssl/buildlink3.mk"
|
|
.else
|
|
CONFIGURE_ARGS+= --enable-openssl=no
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mperl)
|
|
.include "../../lang/perl5/buildlink3.mk"
|
|
USE_TOOLS+= perl
|
|
PLIST.perl= yes
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-perl
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mpython)
|
|
.include "../../lang/python/pyversion.mk"
|
|
PLIST.python= yes
|
|
.else
|
|
CONFIGURE_ARGS+= --enable-python=no
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mlibsexy)
|
|
.include "../../devel/libsexy/buildlink3.mk"
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mtests)
|
|
CONFIGURE_ARGS+= --enable-glibtest
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-glibtest
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mthemes)
|
|
#BROKEN= The themes option does not build at the moment.
|
|
.include "../../devel/monodevelop/buildlink3.mk"
|
|
CONFIGURE_ARGS+= --with-theme-manager=on
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mxft2)
|
|
.include "../../x11/libXext/buildlink3.mk"
|
|
.include "../../x11/libXft/buildlink3.mk"
|
|
.endif
|