From owner-svn-ports-head@freebsd.org Thu Nov 24 15:34:30 2016 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 EE63EC53D56; Thu, 24 Nov 2016 15:34:30 +0000 (UTC) (envelope-from sunpoet@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 9E0729E3; Thu, 24 Nov 2016 15:34:30 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uAOFYTMd001515; Thu, 24 Nov 2016 15:34:29 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uAOFYTIq001512; Thu, 24 Nov 2016 15:34:29 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201611241534.uAOFYTIq001512@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 24 Nov 2016 15:34:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r427033 - in head/textproc/hyphen: . files 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: Thu, 24 Nov 2016 15:34:31 -0000 Author: sunpoet Date: Thu Nov 24 15:34:29 2016 New Revision: 427033 URL: https://svnweb.freebsd.org/changeset/ports/427033 Log: - Update LICENSE - Add LICENSE_FILE - Import upstream patch to drop dependency on lang/gawk [1] - Update WWW Obtained from: https://github.com/hunspell/hyphen/commit/726a506ef16cb76cf1ed97ed5b2fc2c77cddef84 [1] Added: head/textproc/hyphen/files/ head/textproc/hyphen/files/patch-lig.awk (contents, props changed) Modified: head/textproc/hyphen/Makefile head/textproc/hyphen/pkg-descr Modified: head/textproc/hyphen/Makefile ============================================================================== --- head/textproc/hyphen/Makefile Thu Nov 24 15:34:24 2016 (r427032) +++ head/textproc/hyphen/Makefile Thu Nov 24 15:34:29 2016 (r427033) @@ -9,12 +9,11 @@ DIST_SUBDIR= ${PORTNAME} MAINTAINER= office@FreeBSD.org COMMENT= Library for high quality hyphenation and justification -LICENSE= LGPL21 LGPL3 MPL +LICENSE= LGPL21+ MPL LICENSE_COMB= dual +LICENSE_FILE_LGPL21= ${WRKSRC}/COPYING.LGPL +LICENSE_FILE_MPL= ${WRKSRC}/COPYING.MPL -BUILD_DEPENDS= gawk:lang/gawk - -CONFIGURE_ENV= ac_cv_prog_AWK=gawk GNU_CONFIGURE= yes USES= libtool pathfix perl5 shebangfix USE_LDCONFIG= yes Added: head/textproc/hyphen/files/patch-lig.awk ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/hyphen/files/patch-lig.awk Thu Nov 24 15:34:29 2016 (r427033) @@ -0,0 +1,29 @@ +--- lig.awk.orig 2010-03-04 12:13:47 UTC ++++ lig.awk +@@ -24,14 +24,20 @@ c=b + c!=b { print c } + + /f[1-9]?$/ { +- print gensub("f[1-9]?$", "ff", "g", b); +- if (c!=b) print gensub("f[1-9]?$", "ff", "g", c); ++ out=b; gsub("f[1-9]?$", "ff", out); print out ++ if (c!=b) { ++ out=c; gsub("f[1-9]?$", "ff", out); print out ++ } + +- print gensub("f[1-9]?$", "fi", "g", b); +- if (c!=b) print gensub("f[1-9]?$", "fi", "g", c); ++ out=b; gsub("f[1-9]?$", "fi", out); print out ++ if (c!=b) { ++ out=c; gsub("f[1-9]?$", "fi", out); print out ++ } + +- print gensub("f[1-9]?$", "fl", "g", b); +- if (c!=b) print gensub("f[1-9]?$", "fl", "g", c); ++ out=b; gsub("f[1-9]?$", "fl", out); print out ++ if (c!=b) { ++ out=c; gsub("f[1-9]?$", "fl", out); print out ++ } + } + + Modified: head/textproc/hyphen/pkg-descr ============================================================================== --- head/textproc/hyphen/pkg-descr Thu Nov 24 15:34:24 2016 (r427032) +++ head/textproc/hyphen/pkg-descr Thu Nov 24 15:34:29 2016 (r427033) @@ -1,3 +1,3 @@ Hyphen - hyphenation library to use converted TeX hyphenation patterns -WWW: http://hunspell.sourceforge.net +WWW: https://github.com/hunspell/hyphen