From owner-svn-ports-all@freebsd.org Wed Oct 25 19:59:11 2017 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 08FDCE530D2; Wed, 25 Oct 2017 19:59:11 +0000 (UTC) (envelope-from thierry@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 CBBFA8049D; Wed, 25 Oct 2017 19:59:10 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v9PJxA1C034716; Wed, 25 Oct 2017 19:59:10 GMT (envelope-from thierry@FreeBSD.org) Received: (from thierry@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v9PJxA2N034715; Wed, 25 Oct 2017 19:59:10 GMT (envelope-from thierry@FreeBSD.org) Message-Id: <201710251959.v9PJxA2N034715@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: thierry set sender to thierry@FreeBSD.org using -f From: Thierry Thomas Date: Wed, 25 Oct 2017 19:59:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r452894 - head/cad/kicad X-SVN-Group: ports-head X-SVN-Commit-Author: thierry X-SVN-Commit-Paths: head/cad/kicad X-SVN-Commit-Revision: 452894 X-SVN-Commit-Repository: ports 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.23 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: Wed, 25 Oct 2017 19:59:11 -0000 Author: thierry Date: Wed Oct 25 19:59:09 2017 New Revision: 452894 URL: https://svnweb.freebsd.org/changeset/ports/452894 Log: KiCad has not depended on xpdf for a long time. As such, the RUN_DEPENDS can safely be removed. Submitted by: Kevin Zheng Modified: head/cad/kicad/Makefile Modified: head/cad/kicad/Makefile ============================================================================== --- head/cad/kicad/Makefile Wed Oct 25 19:44:12 2017 (r452893) +++ head/cad/kicad/Makefile Wed Oct 25 19:59:09 2017 (r452894) @@ -3,7 +3,7 @@ PORTNAME= kicad PORTVERSION= 4.0.7 -PORTREVISION= 3 +PORTREVISION= 4 PORTEPOCH= 2 CATEGORIES= cad @@ -18,7 +18,6 @@ LIB_DEPENDS= libboost_thread.so:devel/boost-libs \ libpixman-1.so:x11/pixman \ libpng.so:graphics/png \ libcurl.so:ftp/curl -RUN_DEPENDS= xpdf:graphics/xpdf CONFLICTS= kicad-devel-r201* @@ -63,12 +62,9 @@ DOXYGEN_PORTDOCS= doxygen pre-configure: ${REINPLACE_CMD} -e 's|/usr/share/kicad|${DATADIR}|' \ -e 's|/usr/local|${PREFIX}|' \ - -e 's|/usr/bin/evince|${LOCALBASE}/bin/xpdf|' \ - -e 's|/usr/bin/kpdf|${LOCALBASE}/bin/okular|' \ - -e 's|/usr/bin/xpdf|${LOCALBASE}/bin/xpdf|' \ - -e 's|/usr/bin/konqueror|${LOCALBASE}/bin/konqueror|' \ - -e 's|/usr/bin/xdg-open|${LOCALBASE}/bin/xdg-open|' \ ${WRKSRC}/common/gestfich.cpp + ${REINPLACE_CMD} -e 's|/usr/bin/xdg-open|${LOCALBASE}/bin/xdg-open|' \ + ${WRKSRC}/common/pgm_base.cpp post-install-DOCS-on: (cd ${WRKSRC}/Documentation && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR})