diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2007-03-09 09:49:08 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2007-03-09 09:49:08 +0000 |
commit | ed66da00b82767c55935268f2356ab30506b35f2 (patch) | |
tree | 31823fd74b72bcc5f4886bfbceee497f4ca4732f /lang/tcl83 | |
parent | 58199652efafb286b8b3d83e414b4dd52c269900 (diff) | |
download | ports-ed66da00b82767c55935268f2356ab30506b35f2.tar.gz ports-ed66da00b82767c55935268f2356ab30506b35f2.zip |
Notes
Diffstat (limited to 'lang/tcl83')
-rw-r--r-- | lang/tcl83/Makefile | 17 | ||||
-rw-r--r-- | lang/tcl83/pkg-deinstall.tclsh | 22 | ||||
-rw-r--r-- | lang/tcl83/pkg-install.tclsh | 35 |
3 files changed, 11 insertions, 63 deletions
diff --git a/lang/tcl83/Makefile b/lang/tcl83/Makefile index 4c384c4d0ee6..afc06ee93cef 100644 --- a/lang/tcl83/Makefile +++ b/lang/tcl83/Makefile @@ -7,13 +7,13 @@ PORTNAME= tcl PORTVERSION= 8.3.5 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= lang tcl83 MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= tcl DISTNAME= ${PORTNAME}${PORTVERSION}-src -MAINTAINER= ports@FreeBSD.org +MAINTAINER= martin@matuska.org COMMENT= Tool Command Language LATEST_LINK= tcl83 @@ -24,15 +24,20 @@ GNU_CONFIGURE= yes CONFIGURE_ARGS= --enable-shared --includedir=${LOCALBASE}/include/tcl${TCL_VER} CONFIGURE_ENV= PORTSDIR=${PORTSDIR} MAKE_ENV= SHORT_TCL_VER=83 -PKGINSTALL= ${PKGDIR}/pkg-install.tclsh -PKGDEINSTALL= ${PKGDIR}/pkg-deinstall.tclsh TCL_VER= 8.3 NOPRECIOUSMAKEVARS= yes # Otherwise 'make readmes' is broken PLIST_SUB= TCL_VER=${TCL_VER} SHORT_TCL_VER=83 +OPTIONS= TCL83_MAN "Install tcl 8.3 manpages" on \ + TCLSH_WRAPPER "Require tclsh wrapper from ports" off + .include <bsd.port.pre.mk> -.if defined(WITH_TCL83_MAN) +.if defined(WITH_TCLSH_WRAPPER) +RUN_DEPENDS+= tclsh:${PORTSDIR}/lang/tcl-tk-wrapper +.endif + +.if !defined(NO_INSTALL_MANPAGES) && defined(WITH_TCL83_MAN) MAN1= tclsh.1 @@ -432,7 +437,7 @@ post-configure: ${REINPLACE_CMD} \ -e 's|${WRKDIRPREFIX}${.CURDIR}|$${WRKDIRPREFIX}${TCLBASE}|' \ ${WRKSRC}/tclConfig.sh -.if !defined(WITH_TCL83_MAN) +.if defined(NO_INSTALL_MANPAGES) || !defined(WITH_TCL83_MAN) ${REINPLACE_CMD} -e 's|^MAN_INSTALL_DIR.*$$|MAN_INSTALL_DIR = ${WRKDIR}|' \ ${WRKSRC}/Makefile .endif diff --git a/lang/tcl83/pkg-deinstall.tclsh b/lang/tcl83/pkg-deinstall.tclsh deleted file mode 100644 index c48dc863cf43..000000000000 --- a/lang/tcl83/pkg-deinstall.tclsh +++ /dev/null @@ -1,22 +0,0 @@ -#! /bin/sh -# -# Remove the ${PREFIX}/bin/tclsh script that gets installed by INSTALL.tclsh -# if we are the last tclsh installation to be pkg_delete'd. -# -# $FreeBSD$ -# - -# -# Explicitly listing /usr/X11R6/bin here is debatable. -# -BINDIR="${PKG_PREFIX}/bin /usr/X11R6/bin" -TCLSH=${PKG_PREFIX}/bin/tclsh - -tclshs=$(/bin/ls ${BINDIR} 2> /dev/null | \ - egrep '^(i?tclsh[0-9]+\.[0-9]+(\_r)?([a-z][a-z])?)|otclsh$') - -if [ "$tclshs" = "" -a -f ${TCLSH} ] && \ - (head -3 ${TCLSH} | grep awieYJFnsuILOnfsYEW) > /dev/null 2>&1 -then - rm -f ${PKG_PREFIX}/bin/tclsh -fi diff --git a/lang/tcl83/pkg-install.tclsh b/lang/tcl83/pkg-install.tclsh deleted file mode 100644 index 3b808e2b500f..000000000000 --- a/lang/tcl83/pkg-install.tclsh +++ /dev/null @@ -1,35 +0,0 @@ -#!/bin/sh - -# The user may have a tclsh they want to preserve -ver=`grep -a awieYJFnsuILOnfsYEW ${PKG_PREFIX}/bin/tclsh 2> /dev/null \ - | sed -e 's/.*\*\*//'` -if [ ! -e ${PKG_PREFIX}/bin/tclsh ] || [ "$ver" != "" -a "$ver" -lt 002 ] -then - [ -f ${PKG_PREFIX}/bin/tclsh ] && chmod u+w ${PKG_PREFIX}/bin/tclsh - - mkdir -p ${PKG_PREFIX}/bin - cat > ${PKG_PREFIX}/bin/tclsh <<'EOF' -#!/bin/sh -# Installed by ports system. id: awieYJFnsuILOnfsYEW**002 -# -# $FreeBSD$ -# - -( -echo "In FreeBSD, tclsh is named with a version number. This is because" -echo "different versions of tclsh are not compatible with each other and" -echo "they can not all be called \"tclsh\"! You may need multiple versions" -echo "installed because a given port may depend on a specific version." -echo -echo "On your system, tclsh is installed under at least the following names:" -echo -for name in $(/bin/ls $(echo $PATH | sed 's/:/ /g') 2> /dev/null | egrep '^(i?tclsh[0-9]+\.[0-9]+(\_r)?([a-z][a-z])?)|otclsh$') -do - echo $name -done -[ "$name" = "" ] && echo "No tclsh installations found, sorry." -) 1>&2 -exit 1 -EOF - chmod 555 ${PKG_PREFIX}/bin/tclsh -fi |