diff options
author | gahr <gahr@FreeBSD.org> | 2013-09-20 15:07:48 +0800 |
---|---|---|
committer | gahr <gahr@FreeBSD.org> | 2013-09-20 15:07:48 +0800 |
commit | 6a29af3f9ebf84938a49300e22f3d7b95d580484 (patch) | |
tree | 1850a0a4e3ea232c4f712d7e8482e7e6f76535df | |
parent | 5da1dfc984cf6939c4a94fd4719a1659d17236fa (diff) | |
download | freebsd-ports-gnome-6a29af3f9ebf84938a49300e22f3d7b95d580484.tar.gz freebsd-ports-gnome-6a29af3f9ebf84938a49300e22f3d7b95d580484.tar.zst freebsd-ports-gnome-6a29af3f9ebf84938a49300e22f3d7b95d580484.zip |
- Fix a problem that causes modules not to be found
- Bump PORTREVISION
Reported by: Christoph Lukas <clukas@firc.de>
-rw-r--r-- | lang/tcl85/Makefile | 6 | ||||
-rw-r--r-- | lang/tcl85/files/patch-unix-Makefile.in | 6 |
2 files changed, 7 insertions, 5 deletions
diff --git a/lang/tcl85/Makefile b/lang/tcl85/Makefile index ab930729b3f7..d550467c2e36 100644 --- a/lang/tcl85/Makefile +++ b/lang/tcl85/Makefile @@ -2,12 +2,14 @@ # $FreeBSD$ PORTNAME= tcl -DISTVERSION= 8.5.15 +PORTVERSION= 8.5.15 +PORTREVISION= 1 CATEGORIES= lang MASTER_SITES= ${MASTER_SITE_TCLTK} \ SF/tcl/Tcl/${PORTVERSION} MASTER_SITE_SUBDIR=tcl8_5 -DISTNAME= ${PORTNAME}${DISTVERSION}-src +DISTNAME= ${PORTNAME}${PORTVERSION}-src +PKGNAMESUFFIX= ${PORTVERSION:R:S/.//} MAINTAINER= tcltk@FreeBSD.org COMMENT= Tool Command Language diff --git a/lang/tcl85/files/patch-unix-Makefile.in b/lang/tcl85/files/patch-unix-Makefile.in index 1cfca72ccc1a..78cfae050092 100644 --- a/lang/tcl85/files/patch-unix-Makefile.in +++ b/lang/tcl85/files/patch-unix-Makefile.in @@ -1,5 +1,5 @@ ---- Makefile.in.orig 2013-08-30 18:26:25.000000000 +0200 -+++ Makefile.in 2013-09-02 15:13:47.000000000 +0200 +--- Makefile.in.orig 2013-09-13 18:07:56.000000000 +0200 ++++ Makefile.in 2013-09-20 09:03:18.000000000 +0200 @@ -54,6 +54,8 @@ # Directory in which to install the include file tcl.h: @@ -119,7 +119,7 @@ + $(INSTALL_DATA) $$i "$(SCRIPT_INSTALL_DIR)"/encoding; \ + done; + @echo "Customizing tcl module path"; -+ @echo "::tcl::tm::path add {$(SCRIPT_INSTALL_DIR)}" >> \ ++ @echo "::tcl::tm::path add {$(SCRIPT_INSTALL_DIR)}" >> \ + "$(SCRIPT_INSTALL_DIR)"/tm.tcl; + +install-tm: |