diff options
author | jlam <jlam@pkgsrc.org> | 2002-08-25 21:50:52 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2002-08-25 21:50:52 +0000 |
commit | a020ed9056d4d74e13cd2a99898f3dec09c162b7 (patch) | |
tree | f54fdc39f5381d6b58a06e7e3ed458f63f0e9df2 /x11/tk-Tix/Makefile | |
parent | 287b5c5601b23446d25c27bbf0140c8dc4b4391e (diff) | |
download | pkgsrc-a020ed9056d4d74e13cd2a99898f3dec09c162b7.tar.gz |
Merge packages from the buildlink2 branch back into the main trunk that
have been converted to USE_BUILDLINK2.
Diffstat (limited to 'x11/tk-Tix/Makefile')
-rw-r--r-- | x11/tk-Tix/Makefile | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/x11/tk-Tix/Makefile b/x11/tk-Tix/Makefile index 42e6ac09389..d0a2692db43 100644 --- a/x11/tk-Tix/Makefile +++ b/x11/tk-Tix/Makefile @@ -1,8 +1,9 @@ -# $NetBSD: Makefile,v 1.2 2002/04/16 14:06:53 seb Exp $ +# $NetBSD: Makefile,v 1.3 2002/08/25 21:52:46 jlam Exp $ # DISTNAME= tix8.2.0b1 PKGNAME= tk-Tix-8.2.0b1 +WRKSRC= ${WRKDIR}/tix8.2.0/unix CATEGORIES= x11 tcl tk MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=tixlibrary/} @@ -10,17 +11,17 @@ MAINTAINER= he@netbsd.org HOMEPAGE= http://tixlibrary.sourceforge.net/ COMMENT= Powerful widget library for Tcl/Tk +USE_BUILDLINK2= yes +USE_X11= yes GNU_CONFIGURE= yes -CONFIGURE_ARGS+= --enable-shared --with-tcl=${BUILDLINK_DIR}/lib \ - --with-tk=${BUILDLINK_DIR}/lib \ +CONFIGURE_ARGS+= --enable-shared --with-tcl=${BUILDLINK_PREFIX.tcl}/lib \ + --with-tk=${BUILDLINK_PREFIX.tk}/lib \ --disable-stubs -USE_BUILDLINK_ONLY= YES - -WRKSRC= ${WRKDIR}/tix8.2.0/unix +MAKE_ENV+= TCL_DIR=${BUILDLINK_PREFIX.tcl} +MAKE_ENV+= TK_DIR=${BUILDLINK_PREFIX.tk} test: - @(cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${MAKE} test) + @cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${MAKE_PROGRAM} test -.include "../../mk/x11.buildlink.mk" -.include "../../x11/tk/buildlink.mk" +.include "../../x11/tk/buildlink2.mk" .include "../../mk/bsd.pkg.mk" |