mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-15 03:14:23 +00:00
ea6b4bcf15
The Tile Widget Set is a next-generation re-implementation of many of the core Tk widgets, along with the addition of several new widgets. With Tile, Tk applications can achieve an appearance much closer to native platform widgets, as well as take advantage of a modern, highly dynamic theme engine to produce a wide variety of alternative user interface styles. Tile widgets complement the existing Tk widgets, and Tile is currently being incorporated directly into Tk. WWW: http://tktable.sourceforge.net/tile/
34 lines
1.0 KiB
Makefile
34 lines
1.0 KiB
Makefile
# New ports collection makefile for: tile
|
|
# Date created: 18 July 2006
|
|
# Whom: Andrew Pantyukhin <infofarmer@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= tile
|
|
PORTVERSION= 0.7.8
|
|
CATEGORIES= x11-toolkits tk84
|
|
MASTER_SITES= SF/tktable
|
|
|
|
MAINTAINER= infofarmer@FreeBSD.org
|
|
COMMENT= Themed widget set for Tk
|
|
|
|
LIB_DEPENDS= tk${USE_TK}.1:${PORTSDIR}/x11-toolkits/tk${USE_TK}
|
|
|
|
USE_TK= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --with-tcl=${LOCALBASE}/lib/tcl${TK_VER} \
|
|
--with-tk=${LOCALBASE}/lib/tk${TK_VER} \
|
|
--exec-prefix=${PREFIX} --enable-shared
|
|
CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS} ${TCL_INCLUDES} ${TK_INCLUDES}"
|
|
TCL_INCLUDES= -I${LOCALBASE}/include/tcl${TK_VER} -I${LOCALBASE}/include/tcl${TK_VER}/generic
|
|
TK_INCLUDES= -I${LOCALBASE}/include/tk${TK_VER} -I${LOCALBASE}/include/tk${TK_VER}/generic
|
|
TKPKG= ${PORTNAME}${PORTVERSION}
|
|
PLIST_SUB= VER=${PORTVERSION} TKPKG=${TKPKG}
|
|
USE_LDCONFIG= ${PREFIX}/lib/${TKPKG}
|
|
|
|
post-install:
|
|
@${LN} -sf ${USE_LDCONFIG}/lib${TKPKG}.so ${USE_LDCONFIG}/lib${TKPKG}.so.0
|
|
|
|
.include <bsd.port.mk>
|