From owner-svn-ports-head@freebsd.org Sat May 6 11:44:26 2017 Return-Path: Delivered-To: svn-ports-head@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 13502D61B78; Sat, 6 May 2017 11:44:26 +0000 (UTC) (envelope-from bapt@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 9CC8A1E7D; Sat, 6 May 2017 11:44:25 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v46BiOVS023822; Sat, 6 May 2017 11:44:24 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v46BiOQc023821; Sat, 6 May 2017 11:44:24 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201705061144.v46BiOQc023821@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Sat, 6 May 2017 11:44:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r440259 - head/security/proxytunnel X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 06 May 2017 11:44:26 -0000 Author: bapt Date: Sat May 6 11:44:24 2017 New Revision: 440259 URL: https://svnweb.freebsd.org/changeset/ports/440259 Log: Replace xmlto with minixmlto, it reduces the number of build dependencies Approved by: ehaupt (maintainer) Differential Revision: https://reviews.freebsd.org/D10560 Modified: head/security/proxytunnel/Makefile Modified: head/security/proxytunnel/Makefile ============================================================================== --- head/security/proxytunnel/Makefile Sat May 6 11:33:29 2017 (r440258) +++ head/security/proxytunnel/Makefile Sat May 6 11:44:24 2017 (r440259) @@ -13,13 +13,16 @@ LICENSE_COMB= multi LICENSE_FILE= ${WRKSRC}/LICENSE.txt BUILD_DEPENDS= asciidoc:textproc/asciidoc \ - xmlto:textproc/xmlto + minixmlto:textproc/minixmlto USES= pkgconfig gmake ssl USE_GITHUB= yes PLIST_FILES= bin/proxytunnel man/man1/proxytunnel.1.gz +post-patch: + ${REINPLACE_CMD} -e "s/xmlto/minixmlto/g" ${WRKSRC}/docs/Makefile + do-install: ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin ${INSTALL_MAN} ${WRKSRC}/docs/${PORTNAME}.1 \