diff options
author | Dirk Meyer <dinoex@FreeBSD.org> | 2002-05-09 16:39:18 +0000 |
---|---|---|
committer | Dirk Meyer <dinoex@FreeBSD.org> | 2002-05-09 16:39:18 +0000 |
commit | efa7952a2b7e777017baf4723a9091e977e4ebfb (patch) | |
tree | 185691d60e3a0f932c9fac12377b9a52b389855c /x11-toolkits/tk83 | |
parent | 2f530066ec889182cabe725b6e86a1c1e1bbab74 (diff) | |
download | ports-efa7952a2b7e777017baf4723a9091e977e4ebfb.tar.gz ports-efa7952a2b7e777017baf4723a9091e977e4ebfb.zip |
- Set soname for libtk84.so
- Add pkgIndex.tcl submitted by doconnor@gsoft.com.au
so "package require Tk" is now supported.
- Add pkgIndex.tcl for tk83 and tk84
Notes
Notes:
svn path=/head/; revision=58814
Diffstat (limited to 'x11-toolkits/tk83')
-rw-r--r-- | x11-toolkits/tk83/Makefile | 14 | ||||
-rw-r--r-- | x11-toolkits/tk83/files/pkgIndex.tcl | 3 | ||||
-rw-r--r-- | x11-toolkits/tk83/pkg-plist | 1 |
3 files changed, 12 insertions, 6 deletions
diff --git a/x11-toolkits/tk83/Makefile b/x11-toolkits/tk83/Makefile index 15d926b2325f..3b406ca21a98 100644 --- a/x11-toolkits/tk83/Makefile +++ b/x11-toolkits/tk83/Makefile @@ -7,7 +7,7 @@ PORTNAME= tk PORTVERSION= 8.3.4 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= x11-toolkits tk83 MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= tcl @@ -22,14 +22,15 @@ USE_XLIB= yes INSTALLS_SHLIB= yes WRKSRC= ${WRKDIR}/${PORTNAME}${PORTVERSION}/unix GNU_CONFIGURE= yes -CONFIGURE_ARGS= --enable-shared --with-tcl=${PREFIX}/lib/tcl8.3 -CONFIGURE_ENV= PORTSDIR=${PORTSDIR} TK_LIB_FILE=libtk83.so.1 -MAKE_ENV= SHORT_TK_VER=83 +TK_VER= 8.3 +SHORT_TK_VER= 83 +CONFIGURE_ARGS= --enable-shared --with-tcl=${PREFIX}/lib/tcl${TK_VER} +CONFIGURE_ENV= PORTSDIR=${PORTSDIR} TK_LIB_FILE=libtk${SHORT_TK_VER}.so.1 +MAKE_ENV= SHORT_TK_VER=${SHORT_TK_VER} +PLIST_SUB= TK_VER=${TK_VER} SHORT_TK_VER=${SHORT_TK_VER} PKGINSTALL= ${PKGDIR}/pkg-install.wish PKGDEINSTALL= ${PKGDIR}/pkg-deinstall.wish -PLIST_SUB= TK_VER=8.3 SHORT_TK_VER=83 - MANCOMPRESSED= no MAN1= wish.1 @@ -317,6 +318,7 @@ MLINKS= 3DBorder.3 Tk_Alloc3DBorderFromObj.3 \ .include <bsd.port.pre.mk> post-install: + ${INSTALL_DATA} ${FILESDIR}/pkgIndex.tcl ${PREFIX}/lib/tk${TK_VER}/ .if exists(${PKGINSTALL}) ${SETENV} PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} .endif diff --git a/x11-toolkits/tk83/files/pkgIndex.tcl b/x11-toolkits/tk83/files/pkgIndex.tcl new file mode 100644 index 000000000000..47743949502f --- /dev/null +++ b/x11-toolkits/tk83/files/pkgIndex.tcl @@ -0,0 +1,3 @@ +# Tcl package index file, version 1.0 + +package ifneeded Tk 8.3 [list load "[file join [file dirname $dir] libtk83.so.1]" Tk] diff --git a/x11-toolkits/tk83/pkg-plist b/x11-toolkits/tk83/pkg-plist index 26b2783a4011..185cf4c99734 100644 --- a/x11-toolkits/tk83/pkg-plist +++ b/x11-toolkits/tk83/pkg-plist @@ -120,6 +120,7 @@ lib/tk%%TK_VER%%/msgbox.tcl lib/tk%%TK_VER%%/obsolete.tcl lib/tk%%TK_VER%%/optMenu.tcl lib/tk%%TK_VER%%/palette.tcl +lib/tk%%TK_VER%%/pkgIndex.tcl lib/tk%%TK_VER%%/prolog.ps lib/tk%%TK_VER%%/safetk.tcl lib/tk%%TK_VER%%/scale.tcl |