diff options
author | fenner <fenner@FreeBSD.org> | 1999-05-05 03:33:50 +0800 |
---|---|---|
committer | fenner <fenner@FreeBSD.org> | 1999-05-05 03:33:50 +0800 |
commit | 2493d36161e920b0a0daaf9fd1c3908eee36bcab (patch) | |
tree | 888a4d9324599ba08f1f312b2c4c33ba20118644 /lang/tcl80/Makefile | |
parent | de3d1d7367b675ad6abfae74d4fab185dd18a294 (diff) | |
download | freebsd-ports-gnome-2493d36161e920b0a0daaf9fd1c3908eee36bcab.tar.gz freebsd-ports-gnome-2493d36161e920b0a0daaf9fd1c3908eee36bcab.tar.zst freebsd-ports-gnome-2493d36161e920b0a0daaf9fd1c3908eee36bcab.zip |
Fix the script that makes the long-name man page links, and add the
long-name man pages to PLIST.
Note that instead of including a 54k patch, there's a post-patch: target
in the Makefile that uses sed.
PR: ports/9786 and ports/9787
Diffstat (limited to 'lang/tcl80/Makefile')
-rw-r--r-- | lang/tcl80/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lang/tcl80/Makefile b/lang/tcl80/Makefile index c80df9686088..6cfa6f04563c 100644 --- a/lang/tcl80/Makefile +++ b/lang/tcl80/Makefile @@ -3,7 +3,7 @@ # Date created: 19 August 1997 # Whom: jkh # -# $Id: Makefile,v 1.15 1999/04/22 00:17:05 scrappy Exp $ +# $Id: Makefile,v 1.16 1999/04/30 16:09:51 cwt Exp $ # DISTNAME= tcl8.0.5 @@ -34,6 +34,10 @@ TCL_LIB_FILE= ${TCL_LIB}.${SHLIB_MAJOR} TCL_LIB_FILE= ${TCL_LIB}.${SHLIB_MAJOR}.${SHLIB_MINOR} .endif +post-patch: + @${CP} ${WRKSRC}/mkLinks ${WRKSRC}/mkLinks.orig + @${SED} -e 's/\.[3n]/&.gz/g' ${WRKSRC}/mkLinks.orig > ${WRKSRC}/mkLinks + post-configure: @${CP} ${FILESDIR}/Makefile.lib ${WRKSRC} @${CP} ${FILESDIR}/makefile ${WRKSRC} |