From owner-svn-ports-all@freebsd.org Sat Feb 6 18:51:02 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DA39DA9FEA8; Sat, 6 Feb 2016 18:51:02 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AB0CF1EE9; Sat, 6 Feb 2016 18:51:02 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u16Ip1ef040039; Sat, 6 Feb 2016 18:51:01 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u16Ip1ud040038; Sat, 6 Feb 2016 18:51:01 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201602061851.u16Ip1ud040038@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sat, 6 Feb 2016 18:51:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r408310 - head/textproc/xmlto X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 06 Feb 2016 18:51:03 -0000 Author: antoine Date: Sat Feb 6 18:51:01 2016 New Revision: 408310 URL: https://svnweb.freebsd.org/changeset/ports/408310 Log: In post-patch, only touch files that need to be, otherwise some autotools may be needed (for instance if configure.in is touched after configure) Reported by: pkg-fallout Modified: head/textproc/xmlto/Makefile Modified: head/textproc/xmlto/Makefile ============================================================================== --- head/textproc/xmlto/Makefile Sat Feb 6 18:38:01 2016 (r408309) +++ head/textproc/xmlto/Makefile Sat Feb 6 18:51:01 2016 (r408310) @@ -73,7 +73,12 @@ CONFIGURE_ARGS+= --with-backend=dblatex post-patch: @# get rid of nonstandard "type" option -t: - cd ${WRKSRC} && ${FIND} . -type f -exec ${REINPLACE_CMD} -i '' -e 's/type -t/which/;' '{}' '+' + ${SED} -i '' -e 's/type -t/which/;' \ + ${WRKSRC}/format/docbook/epub \ + ${WRKSRC}/format/docbook/txt \ + ${WRKSRC}/format/fo/dvi \ + ${WRKSRC}/format/fo/pdf \ + ${WRKSRC}/format/xhtml1/txt @# get rid of GNU-make-ism (BSD make defines $< only in suffix rules) ${REINPLACE_CMD} -e '/^GEN_MANPAGE/{s/\$$/;}' ${WRKSRC}/Makefile.in