From owner-svn-ports-all@freebsd.org Fri Sep 22 08:21:52 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 B49DAE1E3A8; Fri, 22 Sep 2017 08:21:52 +0000 (UTC) (envelope-from woodsb02@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 8007D9FF; Fri, 22 Sep 2017 08:21:52 +0000 (UTC) (envelope-from woodsb02@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v8M8LpaN025549; Fri, 22 Sep 2017 08:21:51 GMT (envelope-from woodsb02@FreeBSD.org) Received: (from woodsb02@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v8M8LpSa025548; Fri, 22 Sep 2017 08:21:51 GMT (envelope-from woodsb02@FreeBSD.org) Message-Id: <201709220821.v8M8LpSa025548@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: woodsb02 set sender to woodsb02@FreeBSD.org using -f From: Ben Woods Date: Fri, 22 Sep 2017 08:21:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r450320 - head/print/hplip X-SVN-Group: ports-head X-SVN-Commit-Author: woodsb02 X-SVN-Commit-Paths: head/print/hplip X-SVN-Commit-Revision: 450320 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: Fri, 22 Sep 2017 08:21:52 -0000 Author: woodsb02 Date: Fri Sep 22 08:21:51 2017 New Revision: 450320 URL: https://svnweb.freebsd.org/changeset/ports/450320 Log: print/hplip: Fix gui crash due to incorrect reference to /etc/hplip.conf Reported by: Keith MFH: 2017Q3 Modified: head/print/hplip/Makefile Modified: head/print/hplip/Makefile ============================================================================== --- head/print/hplip/Makefile Fri Sep 22 07:39:06 2017 (r450319) +++ head/print/hplip/Makefile Fri Sep 22 08:21:51 2017 (r450320) @@ -3,6 +3,7 @@ PORTNAME= hplip PORTVERSION= 3.17.7 +PORTREVISION= 1 CATEGORIES= print MASTER_SITES= SF @@ -129,7 +130,8 @@ post-patch: ${WRKSRC}/prnt/hpijs/hpcupsfax.cpp \ ${WRKSRC}/prnt/hpijs/hpijs.cpp \ ${WRKSRC}/ui/devmgr4.py \ - ${WRKSRC}/ui4/devmgr5.py + ${WRKSRC}/ui4/devmgr5.py \ + ${WRKSRC}/ui5/devmgr5.py @${REINPLACE_CMD} -e 's/umask(0)/umask(0o022)/' \ -e 's/umask(0o111)/umask(0o133)/' \ ${WRKSRC}/base/os_utils.py \