From owner-freebsd-ports-bugs@FreeBSD.ORG Sat May 24 11:50:03 2008 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 08ED4106567A for ; Sat, 24 May 2008 11:50:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D827A8FC21 for ; Sat, 24 May 2008 11:50:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.2/8.14.2) with ESMTP id m4OBo2er082386 for ; Sat, 24 May 2008 11:50:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.2/8.14.1/Submit) id m4OBo2Pg082385; Sat, 24 May 2008 11:50:02 GMT (envelope-from gnats) Resent-Date: Sat, 24 May 2008 11:50:02 GMT Resent-Message-Id: <200805241150.m4OBo2Pg082385@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Matthias Andree Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8B50F106566C for ; Sat, 24 May 2008 11:44:33 +0000 (UTC) (envelope-from matthias.andree@gmx.de) Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by mx1.freebsd.org (Postfix) with SMTP id 0BD1B8FC15 for ; Sat, 24 May 2008 11:44:32 +0000 (UTC) (envelope-from matthias.andree@gmx.de) Received: (qmail invoked by alias); 24 May 2008 11:44:31 -0000 Received: from f054173017.adsl.alicedsl.de (EHLO m2a2.dyndns.org) [78.54.173.17] by mail.gmx.net (mp009) with SMTP; 24 May 2008 13:44:31 +0200 Received: by merlin.emma.line.org (Postfix, from userid 500) id 99D15C220; Sat, 24 May 2008 13:44:29 +0200 (CEST) Message-Id: <20080524114429.99D15C220@merlin.emma.line.org> Date: Sat, 24 May 2008 13:44:29 +0200 (CEST) From: Matthias Andree To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/123952: [PATCH] textproc/xmlto: fix output formats other than man, take maintainership X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 May 2008 11:50:03 -0000 >Number: 123952 >Category: ports >Synopsis: [PATCH] textproc/xmlto: fix output formats other than man, take maintainership >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat May 24 11:50:02 UTC 2008 >Closed-Date: >Last-Modified: >Originator: Matthias Andree >Release: FreeBSD 6.3-STABLE i386 >Organization: >Environment: System: FreeBSD merlin.emma.line.org 6.3-STABLE FreeBSD 6.3-STABLE #31: Tue Apr 29 09:26:46 CEST 2008 >Description: - Fix all scripts that use cp -a to instead use cp -PpR, fixing output formats such as html, html-nochunks and others. - Move files/patch-xmlto.in into post-patch section of Makefile - Take maintainership Removed file(s): - files/patch-xmlto.in - files/ (empty directory) Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- xmlto-0.0.20_1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/textproc/xmlto/Makefile /usr/home/emma/ports/textproc/xmlto/Makefile --- /usr/ports/textproc/xmlto/Makefile 2008-05-07 11:23:11.000000000 +0200 +++ /usr/home/emma/ports/textproc/xmlto/Makefile 2008-05-24 13:41:05.000000000 +0200 @@ -10,10 +10,11 @@ PORTNAME= xmlto PORTVERSION= 0.0.20 +PORTREVISION= 1 CATEGORIES= textproc MASTER_SITES= http://cyberelk.net/tim/data/xmlto/stable/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= matthias.andree@gmx.de COMMENT= Front-end to an XSL toolchain BUILD_DEPENDS= ${BASH_CMD}:${PORTSDIR}/shells/bash \ @@ -44,8 +45,12 @@ DOCS= AUTHORS NEWS post-patch: - @${REINPLACE_CMD} -e 's|-a|-PpR|' \ - ${WRKSRC}/format/docbook/man + @${REINPLACE_CMD} -e 's,^#!/bin/bash,#!@BASH@,' ${WRKSRC}/xmlto.in +.for i in docbook/htmlhelp docbook/xhtml-nochunks docbook/javahelp \ + docbook/html docbook/html-nochunks docbook/xhtml docbook/fo \ + docbook/man fo/dvi fo/pdf + @${REINPLACE_CMD} -e 's|-a|-PpR|' ${WRKSRC}/format/${i} +.endfor .if !defined(WITH_PASSIVETEX) @${REINPLACE_CMD} -e '/format\/fo\//d' ${WRKSRC}/Makefile.in .endif diff -ruN --exclude=CVS /usr/ports/textproc/xmlto/files/patch-xmlto.in /usr/home/emma/ports/textproc/xmlto/files/patch-xmlto.in --- /usr/ports/textproc/xmlto/files/patch-xmlto.in 2004-01-05 07:33:16.000000000 +0100 +++ /usr/home/emma/ports/textproc/xmlto/files/patch-xmlto.in 1970-01-01 01:00:00.000000000 +0100 @@ -1,8 +0,0 @@ ---- xmlto.in.orig Mon Jan 5 09:20:01 2004 -+++ xmlto.in Mon Jan 5 09:20:32 2004 -@@ -1,4 +1,4 @@ --#!/bin/bash -+#!@BASH@ - # - # @PACKAGE@ - apply an XSL stylesheet to an XML document - # Copyright (C) 2001, 2002, 2003 Tim Waugh --- xmlto-0.0.20_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: