Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 1 Feb 2001 12:57:59 -0500 (EST)
From:      sk-ports@vegamuse.org
To:        FreeBSD-gnats-submit@freebsd.org
Subject:   ports/24783: port update: mail/mahogany - fix for install
Message-ID:  <200102011757.f11Hvwj77358@witchblade.va.vegamuse.org>

next in thread | raw e-mail | index | archive | help

>Number:         24783
>Category:       ports
>Synopsis:       port update: mail/mahogany - fix for install failure
>Confidential:   no
>Severity:       non-critical
>Priority:       medium
>Responsible:    freebsd-ports
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          maintainer-update
>Submitter-Id:   current-users
>Arrival-Date:   Thu Feb 01 09:40:01 PST 2001
>Closed-Date:
>Last-Modified:
>Originator:     
>Release:        FreeBSD 5.0-CURRENT i386
>Organization:
>Environment:
>Description:
	Mahogany port fails to install when creating HTML version of docs.

>How-To-Repeat:
	Run a 'make install' on the mail/mahogany port

>Fix:
	Needed to add -mkdir flag to latex2html

	Replacement for existing patch-af below:

# This is a shell archive.  Save it in a file, remove anything before
# this line, and then unpack it by entering "sh file".  Note, it may
# create directories; files and directories will be owned by you and
# have default permissions.
#
# This archive contains:
#
#	patch-af
#
echo x - patch-af
sed 's/^X//' >patch-af << 'END-of-patch-af'
X--- doc/HackersGuide.htex.orig	Sun Nov 12 06:24:51 2000
X+++ doc/HackersGuide.htex	Sun Nov 12 06:24:47 2000
X@@ -1,8 +1,8 @@
X %% LyX 1.1 created this file.  For more info, see http://www.lyx.org/.
X %% Do not edit unless you really know what you are doing.
X \documentclass[12pt,letterpaper,oneside]{book}
X-\usepackage{palatino}
X-\usepackage[T1]{fontenc}
X+%% \usepackage{palatino}
X+%% \usepackage[T1]{fontenc}
X 
X \makeatletter
X 
X--- doc/Manual.htex.orig	Sun Nov 12 06:24:00 2000
X+++ doc/Manual.htex	Sun Nov 12 06:25:02 2000
X@@ -3,8 +3,8 @@
X 
X %% Do not edit this file unless you know what you are doing.
X \documentclass[12pt,letterpaper,oneside]{book}
X-\usepackage[T1]{fontenc}
X-\usepackage{palatino}
X+%% \usepackage[T1]{fontenc}
X+%% \usepackage{palatino}
X 
X \makeatletter
X 
X--- doc/Makefile.sub.orig	Sat Sep 30 12:10:13 2000
X+++ doc/Makefile.sub	Thu Feb  1 12:44:15 2001
X@@ -3,12 +3,14 @@
X 
X include ../../makeopts
X 
X-all:	wxhelp.map
X+all:	$(DIR)/wxhelp.map
X 	@true
X 
X #include ../../makerules
X 
X-wxhelp.map: ../.src/$(DIR).htex ../.src/html.sty
X+HTML2WXHELP=	$(shell pwd)/../../.src/extra/scripts/html2wxhelp
X+
X+$(DIR)/wxhelp.map: ../.src/$(DIR).htex ../.src/html.sty
X 	@ln -sf ../.src/$(DIR).htex ../.src/html.sty ../.src/pics .
X 	../../.src/extra/scripts/striphelpids $(DIR).htex >tmp.tex
X 	$(LATEX) tmp.tex </dev/null
X@@ -21,11 +23,12 @@
X 	mv tmp.dvi $(DIR).dvi
X 	mv tmp.aux $(DIR).aux
X 	rm -f tmp.*
X-	@$(RM) -r $(DIR)
X-	$(LATEX2HTML) -local_icons -debug $(DIR).htex
X-	cd $(DIR) && ../../../.src/extra/scripts/html2wxhelp > ../wxhelp.map
X+	$(LATEX2HTML) -mkdir -dir /tmp/$(DIR) -local_icons -debug $(DIR).htex
X+	cd /tmp/$(DIR) && $(HTML2WXHELP) > wxhelp.map
X+	@(cd /tmp; tar -cpf - ${DIR}) | tar -xf -
X+	@${RM} -r /tmp/$(DIR)
X 
X-install: wxhelp.map
X+install: $(DIR)/wxhelp.map
X 	$(INSTALL_DATA) $(DIR).pdf $(DOCDIR)/Pdf
X 	@$(RM) -r $(DOCDIR)/$(DIR)
X 	$(INSTALL) -d $(DOCDIR)/$(DIR)
END-of-patch-af
exit


>Release-Note:
>Audit-Trail:
>Unformatted:
 


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-ports" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200102011757.f11Hvwj77358>