diff options
author | mi <mi@FreeBSD.org> | 2003-04-25 00:36:17 +0800 |
---|---|---|
committer | mi <mi@FreeBSD.org> | 2003-04-25 00:36:17 +0800 |
commit | c7e556e8d14629948c4b5407a84ba77a6accec17 (patch) | |
tree | 64e464cac23e6f45c1d058ff9a373ddc39c7db36 /devel | |
parent | cb12dc0bf1e30422dfb3fc94a62d833946785c5d (diff) | |
download | freebsd-ports-gnome-c7e556e8d14629948c4b5407a84ba77a6accec17.tar.gz freebsd-ports-gnome-c7e556e8d14629948c4b5407a84ba77a6accec17.tar.zst freebsd-ports-gnome-c7e556e8d14629948c4b5407a84ba77a6accec17.zip |
Add the forgotten patch...
Diffstat (limited to 'devel')
-rw-r--r-- | devel/tcllib/files/patch-doc | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/devel/tcllib/files/patch-doc b/devel/tcllib/files/patch-doc new file mode 100644 index 000000000000..c5878cf72932 --- /dev/null +++ b/devel/tcllib/files/patch-doc @@ -0,0 +1,37 @@ + . Don't install the redundant HTML-formatted documentation. + . Use the correct tclsh executable. + +--- Makefile.in Mon Jun 10 19:14:53 2002 ++++ Makefile.in Sun Feb 23 12:28:49 2003 +@@ -234,9 +234,5 @@ + + # Generation of documentation is platform dependent +-doc: +- $(MAKE) html-doc +- if [ `echo 'puts $$tcl_platform(platform) ; exit' | $(TCLSH_PROG)` = unix ] ; then \ +- $(MAKE) nroff-doc ; \ +- fi ++doc: nroff-doc + + install: all install-libraries install-doc +@@ -273,11 +269,6 @@ + install-doc: doc + @echo Installing documentation for $(PACKAGE) +- @if [ `echo 'puts $$tcl_platform(platform) ; exit' | $(TCLSH_PROG)` = unix ] ; then \ +- $(mkinstalldirs) $(mandir)/mann ; \ +- for f in doc/nroff/*.n ; do cp -f $$f $(mandir)/mann ; done ; \ +- $(INSTALL_DATA) $(srcdir)/man.macros $(mandir) ; \ +- fi +- $(mkinstalldirs) $(pkglibdir)/htmldoc +- cp doc/html/*.html $(pkglibdir)/htmldoc ++ ${BSD_INSTALL_MAN} doc/nroff/*.n $(mandir)/mann ++ $(INSTALL_DATA) $(srcdir)/man.macros $(mandir) + + test: +@@ -398,5 +389,5 @@ + #======================================================================== + +-DOC_EXP=$(srcdir)/modules/doctools/mpexpand ++DOC_EXP=${TCLSH_PROG} $(srcdir)/modules/doctools/mpexpand + + ## Parameters: |