svn commit: r331365 - in head/textproc/htmltolatex: . files
Tijl Coosemans
tijl at FreeBSD.org
Wed Oct 23 10:42:10 UTC 2013
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 at 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 at FreeBSD.org
+MAINTAINER= fbsd-ports at 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)
{
More information about the svn-ports-all
mailing list