43114a2eba
Highlights of Tk 8.5 * New modern theming engine: New and complementary widgets that make use of platform-specific theming on Mac OS X and Windows to better fit in with those environments, and feature an improved look and feel under X11. * New widgets: Part of the themed widget set, Tk now has core notebook, combobox, treeview and progressbar widgets. * text widget: Smooth scrolling, widget peering, and improved procedures for counting and replacing text. * Font rendering: Now uses anti-aliased text under X11, and a more modern text engine (ATSUI) on Mac OS X. * Additional improvements: Window transparency, new fullscreen option for windows, enhancements to specific widgets and window layout, and more. from Stuart Cassoff (MAINTAINER) ok steven@
74 lines
1.7 KiB
Makefile
74 lines
1.7 KiB
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2008/04/25 14:17:25 deanna Exp $
|
|
|
|
COMMENT= graphical toolkit for Tcl
|
|
|
|
VERSION= 8.5.2
|
|
|
|
DISTNAME= tk${VERSION}
|
|
PKGNAME= tk-${VERSION}
|
|
SHARED_LIBS= tk85 0.0
|
|
CATEGORIES= x11 x11/tk
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=tcl/}
|
|
DISTFILES= tk${VERSION}-src.tar.gz
|
|
WANTLIB= X11 Xau Xdmcp Xext Xft Xrender Xss c expat fontconfig freetype m z
|
|
|
|
MAINTAINER= Stuart Cassoff <aa72aa60@sympatico.ca>
|
|
HOMEPAGE= http://www.tcl.tk/
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
LIB_DEPENDS= tcl85:tcl->=8.5:lang/tcl/8.5
|
|
|
|
FLAVORS= threaded
|
|
FLAVOR?=
|
|
|
|
WRKSRC= ${WRKDIST}/unix
|
|
|
|
USE_X11= Yes
|
|
SEPARATE_BUILD= concurrent
|
|
AUTOCONF_VERSION= 2.59
|
|
CONFIGURE_STYLE= autoconf no-autoheader old
|
|
CONFIGURE_ARGS= ${CONFIGURE_SHARED} \
|
|
--with-tcl="${LOCALBASE}/lib/tcl8.5" \
|
|
--includedir="${LOCALBASE}/include/tk8.5" \
|
|
--mandir="${LOCALBASE}/lib/tk8.5/man" \
|
|
--sysconfdir="${SYSCONFDIR}"
|
|
|
|
CONFIGURE_ENV+= LIBtk85_VERSION="${LIBtk85_VERSION}"
|
|
CONFIGURE_ENV+= CFLAGS=""
|
|
|
|
FAKE_FLAGS= INSTALL_DATA_DIR="${INSTALL_DATA_DIR}" \
|
|
INSTALL_LIBRARY="${INSTALL_DATA}" \
|
|
INSTALL_DATA="${INSTALL_DATA}"
|
|
|
|
FAKE_FLAGS+=INSTALL_PROGRAM="${INSTALL_PROGRAM}"
|
|
|
|
.if ${FLAVOR:L:Mthreaded}
|
|
CONFIGURE_ARGS+=--enable-threads
|
|
WANTLIB+=pthread
|
|
.endif
|
|
|
|
# This regression test wants an X11 display
|
|
REGRESS_IS_INTERACTIVE= Yes
|
|
REGRESS_TARGET= test
|
|
REGRESS_FLAGS= HOME=${TESTHOME}
|
|
REGRESS_FLAGS+= DISPLAY=${DISPLAY} XAUTHORITY=${XAUTHORITY}
|
|
TESTHOME=${WRKDIR}/testhome
|
|
|
|
pre-regress:
|
|
.for t in DISPLAY XAUTHORITY
|
|
. if !defined($t)
|
|
@echo "$t needs to be set to run regress"; exit 1
|
|
. endif
|
|
.endfor
|
|
@mkdir -p ${TESTHOME}
|
|
|
|
post-install:
|
|
ln -s libtkstub85.a ${PREFIX}/lib/libtkstub85_pic.a
|
|
|
|
.include <bsd.port.mk>
|