Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 23 Oct 2013 10:42:09 +0000 (UTC)
From:      Tijl Coosemans <tijl@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r331365 - in head/textproc/htmltolatex: . files
Message-ID:  <201310231042.r9NAg9dB029209@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: tijl
Date: Wed Oct 23 10:42:09 2013
New Revision: 331365
URL: http://svnweb.freebsd.org/changeset/ports/331365

Log:
  - Change a patch to fix build with libc++.
  - Support staging.
  - Hand maintainership to submitter.
  
  PR:		ports/183111
  Submitted by:	Kurt Jaeger <fbsd-ports@opsec.eu>

Modified:
  head/textproc/htmltolatex/Makefile   (contents, props changed)
  head/textproc/htmltolatex/files/patch-StyleTree.cpp   (contents, props changed)

Modified: head/textproc/htmltolatex/Makefile
==============================================================================
--- head/textproc/htmltolatex/Makefile	Wed Oct 23 10:29:10 2013	(r331364)
+++ head/textproc/htmltolatex/Makefile	Wed Oct 23 10:42:09 2013	(r331365)
@@ -3,12 +3,12 @@
 
 PORTNAME=	htmltolatex
 PORTVERSION=	1
-PORTREVISION=	16
+PORTREVISION=	17
 CATEGORIES=	textproc
 MASTER_SITES=	http://people.FreeBSD.org/~foxfair/distfiles/
 DISTNAME=	${PORTNAME}
 
-MAINTAINER=	ports@FreeBSD.org
+MAINTAINER=	fbsd-ports@opsec.eu
 COMMENT=	HTML to LaTeX to PDF Converter
 
 LIB_DEPENDS=	GraphicsMagick++:${PORTSDIR}/graphics/GraphicsMagick
@@ -21,7 +21,6 @@ MAKE_ARGS=	CXX="${CXX}" \
 		CXXFLAGS="${CXXFLAGS} -DUNIX \
 		    `GraphicsMagick++-config --cppflags`"
 
-NO_STAGE=	yes
 post-configure:
 	${REINPLACE_CMD} -e 's,/usr/local,${LOCALBASE},g'	\
 	    -e 's,-lMagick,-lGraphicsMagick,g'	\
@@ -37,8 +36,8 @@ post-build test:
 	fi
 
 do-install:
-	${INSTALL_PROGRAM} ${WRKSRC}/h2l ${PREFIX}/bin
-	@${MKDIR} ${DATADIR}
-	${INSTALL_DATA} ${WRKSRC}/nmr.tex ${DATADIR}
+	${INSTALL_PROGRAM} ${WRKSRC}/h2l ${STAGEDIR}${PREFIX}/bin
+	@${MKDIR} ${STAGEDIR}${DATADIR}
+	${INSTALL_DATA} ${WRKSRC}/nmr.tex ${STAGEDIR}${DATADIR}
 
 .include <bsd.port.mk>

Modified: head/textproc/htmltolatex/files/patch-StyleTree.cpp
==============================================================================
--- head/textproc/htmltolatex/files/patch-StyleTree.cpp	Wed Oct 23 10:29:10 2013	(r331364)
+++ head/textproc/htmltolatex/files/patch-StyleTree.cpp	Wed Oct 23 10:42:09 2013	(r331365)
@@ -12,7 +12,7 @@ $FreeBSD$
 +
  #include "StyleTree.h"
  #include <stdexcept>
-+#include <ostream.h>
++#include <ostream>
  
  void StyleTag::set_from_unparsed_string(const string &s)
  {



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