pkgsrc/x11/tk-Tix/options.mk
he 29979e0a1c Update tk-Tix from using http://tixlibrary.sourceforge.net/, which seems
to be stuck at version 8.2.0b1, to http://tix.sourceforge.net/, which
offers version 8.4.3, straight-forward buildable with the recently updated
tcl.

Gone is "tixwish" as a separate program, instead use tk's "wish" +
"package require Tix" instead.

For a complete set of changes, see ChangeLog in the source.  The major
changes for 8.4.0 were:

    + Complete rewrite of the build system to use TEA
    + Separation of Tix package require and Tix style usage
    + Code cleanup to use Tcl 8.4 as a base version
2012-08-28 11:46:32 +00:00

19 lines
467 B
Makefile

# $NetBSD: options.mk,v 1.1 2012/08/28 11:46:32 he Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.Tix
PKG_SUPPORTED_OPTIONS= threads debug
PKG_SUGGESTED_OPTIONS= threads
.include "../../mk/bsd.prefs.mk"
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mdebug)
CONFIGURE_ARGS+= --enable-symbols
.endif
.if !empty(PKG_OPTIONS:Mthreads)
CONFIGURE_ARGS+= --enable-threads
. include "../../mk/pthread.buildlink3.mk"
.else
CONFIGURE_ARGS+= --disable-threads
.endif