pkgsrc/x11/nucleo/options.mk
bjs a1dc60dc3c Update to nucleo-0.7.1. The list of changes is fairly verbose and I do
not have time to include it here (see ChangeLog).

Significant pkgsrc-related changes:

 - ffmpeg plugin now builds (see new SUBST_* declarations).  Use
   ffmpeg-devel instead of ffmpeg.
 - DESTDIR support
 - GNU TLS option (enabled by default, evidently used by XML parser (?))
 - Include graphics/gd, as its dependencies completely overlap and it
   doesn't take too long to build.
 - Add x11/libXi to get Xinput functionality.
 - Yet another header patch (patch-am)
 - TODO file (place reading it on your TODO list today!)

 Next up:  wm/metisse!
2008-05-07 02:53:41 +00:00

25 lines
581 B
Makefile

PKG_OPTIONS_VAR= PKG_OPTIONS.nucleo
PKG_SUPPORTED_OPTIONS= gnutls # qt4
PKG_SUGGESTED_OPTIONS= gnutls
.include "../../mk/bsd.options.mk"
###
### XXX The build currently fails. This needs to be investigated.
###
#.if !empty(PKG_OPTIONS:Mqt4)
#CONFIGURE_ARGS+= --with-qt
#PLIST_VARS+= qt4
#. include "../../x11/qt4-libs/buildlink3.mk"
#.else
#CONFIGURE_ARGS+= --without-qt
#.endif
.if !empty(PKG_OPTIONS:Mgnutls)
CONFIGURE_ARGS+= --with-gnutls
PLIST.gnutls= yes
. include "../../security/gnutls/buildlink3.mk"
.else
CONFIGURE_ARGS+= --without-gnutls
PLIST.gnutls= no
.endif