From owner-svn-ports-all@freebsd.org Tue Sep 12 19:04:35 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 43B3DE18498; Tue, 12 Sep 2017 19:04:35 +0000 (UTC) (envelope-from cy@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 0CEC081CE7; Tue, 12 Sep 2017 19:04:34 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v8CJ4YFG074171; Tue, 12 Sep 2017 19:04:34 GMT (envelope-from cy@FreeBSD.org) Received: (from cy@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v8CJ4Ylv074168; Tue, 12 Sep 2017 19:04:34 GMT (envelope-from cy@FreeBSD.org) Message-Id: <201709121904.v8CJ4Ylv074168@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cy set sender to cy@FreeBSD.org using -f From: Cy Schubert Date: Tue, 12 Sep 2017 19:04:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r449703 - in head/graphics: xpdf xpdf4 X-SVN-Group: ports-head X-SVN-Commit-Author: cy X-SVN-Commit-Paths: in head/graphics: xpdf xpdf4 X-SVN-Commit-Revision: 449703 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: Tue, 12 Sep 2017 19:04:35 -0000 Author: cy Date: Tue Sep 12 19:04:33 2017 New Revision: 449703 URL: https://svnweb.freebsd.org/changeset/ports/449703 Log: Fixup issue with symlink outide of stagedir. Reported by: qa-script Modified: head/graphics/xpdf/Makefile head/graphics/xpdf4/Makefile Modified: head/graphics/xpdf/Makefile ============================================================================== --- head/graphics/xpdf/Makefile Tue Sep 12 19:01:10 2017 (r449702) +++ head/graphics/xpdf/Makefile Tue Sep 12 19:04:33 2017 (r449703) @@ -2,7 +2,7 @@ PORTNAME= xpdf PORTVERSION= 3.04 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= graphics print MASTER_SITES= http://mirrors.rit.edu/zi/ \ ftp://ftp.foolabs.com/pub/xpdf/ \ @@ -59,7 +59,8 @@ post-install: .for file in ANNOUNCE CHANGES README misc/hello.pdf ${INSTALL_DATA} ${WRKSRC}/${file} ${STAGEDIR}${DOCSDIR} .endfor - ${LN} -sf ${PREFIX}/libexec/xpdf/xpdf ${STAGEDIR}${PREFIX}/bin/xpdf + @cd ${STAGEDIR}${PREFIX}; \ + ${LN} -sf libexec/xpdf/xpdf bin/xpdf ${INSTALL_DATA} ${WRKDIR}/xpdf-man.conf \ ${STAGEDIR}${PREFIX}/etc/man.d/xpdf.conf Modified: head/graphics/xpdf4/Makefile ============================================================================== --- head/graphics/xpdf4/Makefile Tue Sep 12 19:01:10 2017 (r449702) +++ head/graphics/xpdf4/Makefile Tue Sep 12 19:04:33 2017 (r449703) @@ -2,6 +2,7 @@ PORTNAME= xpdf PORTVERSION= 4.00 +PORTREVISION= 1 CATEGORIES= graphics print MASTER_SITES= http://www.xpdfreader.com/dl/ PKGNAMESUFFIX= 4 @@ -41,7 +42,9 @@ GUI_CMAKE_ARGS+= -DNO_TEXT_SELECT:BOOL=OFF GUI_USE= QT5=buildtools_build,qmake_build,concurrent,core,gui,widgets,printsupport post-install: - ${LN} -sf ${PREFIX}/libexec/xpdf/xpdf ${STAGEDIR}${PREFIX}/bin/xpdf + @cd ${STAGEDIR}${PREFIX}; \ + ${LN} -sf libexec/xpdf/xpdf bin/xpdf + ${INSTALL_DATA} ${WRKSRC}/doc/sample-xpdfrc ${STAGEDIR}${PREFIX}/etc/xpdfrc.sample ${INSTALL_DATA} ${WRKDIR}/xpdf-man.conf \ ${STAGEDIR}${PREFIX}/etc/man.d/xpdf.conf