Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 17 Aug 2021 05:27:17 GMT
From:      "Tobias C. Berner" <tcberner@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-branches@FreeBSD.org
Subject:   git: 32cf8dd59c51 - 2021Q3 - german/hunspell: fix swiss-german dictionary
Message-ID:  <202108170527.17H5RHf0002751@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch 2021Q3 has been updated by tcberner:

URL: https://cgit.FreeBSD.org/ports/commit/?id=32cf8dd59c513ac04f8d91e77b1f04c8768b70fb

commit 32cf8dd59c513ac04f8d91e77b1f04c8768b70fb
Author:     Tobias C. Berner <tcberner@FreeBSD.org>
AuthorDate: 2021-08-16 12:50:42 +0000
Commit:     Tobias C. Berner <tcberner@FreeBSD.org>
CommitDate: 2021-08-17 05:27:04 +0000

    german/hunspell: fix swiss-german dictionary
    
    - The swiss-german dictionary was not properly prepared, as the used
      sed (/bin/sed) was unable to replace 'ß' by 'ss'.
    
    - Use the shebangfix framework to make it use gsed, which is already
      depended on.
    
    Approved by:    office (fluffy)
    PR:             257882
    
    (cherry picked from commit 3b26637cd90d6e9b3f8a392e293cd5e181f51c64)
---
 german/hunspell/Makefile | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/german/hunspell/Makefile b/german/hunspell/Makefile
index 66d7235b59a2..c7b8fca0dcad 100644
--- a/german/hunspell/Makefile
+++ b/german/hunspell/Makefile
@@ -1,6 +1,6 @@
 PORTNAME=	hunspell
 PORTVERSION=	20161207
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	german textproc
 MASTER_SITES=	https://www.j3e.de/ispell/igerman98/dict/ \
 		LOCAL/sunpoet/${PORTNAME}
@@ -25,7 +25,11 @@ USE_PERL5=	build
 
 ALL_TARGET=	hunspell-all
 NO_ARCH=	yes
-SHEBANG_FILES=	bin/*.pl
+SHEBANG_FILES=	bin/*.pl \
+		bin/conv_dict_de_CH
+SHEBANG_LANG=	sed
+sed_OLD_CMD=	/bin/sed
+sed_CMD=	${LOCALBASE}/bin/gsed
 
 BINARY_ALIAS=	sed=${LOCALBASE}/bin/gsed
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202108170527.17H5RHf0002751>