Port details |
- hunspell German hunspell dictionaries
- 20161207_3 german =3 20161207_3Version of this port present on the latest quarterly branch.
- Maintainer: office@FreeBSD.org
- Port Added: 2011-07-20 14:02:26
- Last Update: 2022-09-07 21:58:51
- Commit Hash: fb16dfe
- People watching this port, also watch:: libssh, p5-MIME-Tools, noto-tc, linux-c7-atk
- Also Listed In: textproc
- License: GPLv2 GPLv3
- WWW:
- https://www.j3e.de/ispell/igerman98/
- Description:
- German hunspell dictionaries
- ¦ ¦ ¦ ¦
- Manual pages:
- FreshPorts has no man page information for this port.
- pkg-plist: as obtained via:
make generate-plist - Dependency lines:
-
- de-hunspell>0:german/hunspell
- To install the port:
- cd /usr/ports/german/hunspell/ && make install clean
- To add the package, run one of these commands:
- pkg install german/hunspell
- pkg install de-hunspell
NOTE: If this package has multiple flavors (see below), then use one of them instead of the name specified above.- PKGNAME: de-hunspell
- Flavors: there is no flavor information for this port.
- distinfo:
- TIMESTAMP = 1481824225
SHA256 (hunspell/igerman98-20161207.tar.bz2) = 17296f03c5fea62d76ecc530ebe80f6adc430278f58d472dc1842d71612960a8
SIZE (hunspell/igerman98-20161207.tar.bz2) = 470207
Packages (timestamps in pop-ups are UTC):
- Dependencies
- NOTE: FreshPorts displays only information on required and default dependencies. Optional dependencies are not covered.
- Build dependencies:
-
- aspell : textproc/aspell
- gsed : textproc/gsed
- hunspell : textproc/hunspell
- gmake>=4.3 : devel/gmake
- perl5>=5.32.r0<5.33 : lang/perl5.32
- There are no ports dependent upon this port
Configuration Options:
- No options to configure
- Options name:
- german_hunspell
- USES:
- gmake perl5 shebangfix tar:bzip2
- FreshPorts was unable to extract/find any pkg message
- Master Sites:
|
Commit History - (may be incomplete: for full details, see links to repositories near top of page) |
Commit | Credits | Log message |
07 Sep 2022 21:58:51 |
Stefan Eßer (se) |
Remove WWW entries moved into port Makefiles
Commit b7f05445c00f has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.
This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.
Approved by: portmgr (tcberner) |
20161207_3 07 Sep 2022 21:10:59 |
Stefan Eßer (se) |
Add WWW entries to port Makefiles
It has been common practice to have one or more URLs at the end of the
ports' pkg-descr files, one per line and prefixed with "WWW:". These
URLs should point at a project website or other relevant resources.
Access to these URLs required processing of the pkg-descr files, and
they have often become stale over time. If more than one such URL was
present in a pkg-descr file, only the first one was tarnsfered into
the port INDEX, but for many ports only the last line did contain the
port specific URL to further information.
There have been several proposals to make a project URL available as
a macro in the ports' Makefiles, over time.
(Only the first 15 lines of the commit message are shown above ) |
20161207_3 17 Aug 2021 05:24:08 |
Tobias C. Berner (tcberner) |
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 |
20161207_2 09 Aug 2021 06:39:07 |
Baptiste Daroussin (bapt) |
hunspell: avoid plist substitution
When using PLIST_FILES substitution is not necessary and recommended not
to use, the direct use of make(1) variables, works perfectly fine. |
20161207_2 07 Apr 2021 08:09:01 |
Mathieu Arnold (mat) |
One more small cleanup, forgotten yesterday.
Reported by: lwhsu |
20161207_2 06 Apr 2021 14:31:07 |
Mathieu Arnold (mat) |
Remove # $FreeBSD$ from Makefiles. |
20161207_2 02 Mar 2019 17:47:43 |
sunpoet |
Pet portlint: reorder knobs |
20161207_2 26 Feb 2019 08:40:58 |
tobik |
german/hunspell: Use gsed during the build
hunspell's build currently attempts to use base sed and \t, most
certainly with the expectation that the latter will expand to a
tab. With base sed, this is currently not the case - '\t' gets
passed through literally to regex(3), which sees this as an escape
of an ordinary character. Escapes of ordinary characters will be
disallowed in future versions of regex(3), so switch to textproc/gsed
for now which does the right thing with \t.
PR: 233439
Submitted by: kevans
Approved by: office (maintainer timeout, > 2 months) |
20161207_1 06 Jan 2019 20:41:17 |
sunpoet |
Update MASTER_SITES and WWW |
20161207_1 30 Nov 2017 06:13:35 |
linimon |
For ports that are marked BROKEN on armv6, and also fail to build on
armv7, mark them so.
This is part two of a multipart commit to bring armv7 ports to parity
with armv6.
Approved by: portmgr (tier-2 blanket)
Obtained from: lonesome.com -exp run |
20161207_1 26 May 2017 20:02:44 |
linimon |
Mark some ports failing on armv6, for errors classified as "???".
While here, pet portlint.
Approved by: portmgr (tier-2 blanket) |
20161207_1 18 Jan 2017 13:20:32 |
tijl |
The output of tools like awk, date, sort, tr,... depends on the current
locale set by the user. Add LANG=C and LC_ALL=C at the beginning of
bsd.port.mk and export them so all commands are executed with the C locale.
LC_ALL=C overrides all other LC_* variables. LANG is used by setlocale(3)
as default value for LC_* variables, so normally it isn't used when LC_ALL
is set, but there's code out there that looks at LANG directly so it's safer
to set it as well. The only commands not captured by this are !=
assignments before any inclusion of bsd.port.*mk.
Introduce USE_LOCALE=<locale> that adds LANG=<locale> and LC_ALL=<locale> to
CONFIGURE_ENV and MAKE_ENV so upstream build systems can be executed with a
different locale (e.g. USE_LOCALE=en_US.UTF-8).
PR: 215882
Exp-run by: antoine
Approved by: portmgr (antoine) |
20161207_1 07 Jan 2017 14:43:11 |
jbeich |
textproc/hunspell: update to 1.6.0
- Restore DIST_SUBDIR from r305651
- Adjust license for "or later" clause
- Restore GPLv2+/LGPL21+ license files removed upstream as
GPLv3+/LGPL3+ only affects Hunspell 2.0 (not currently built)
- Unbreak |make makepatch|
Changes: https://github.com/hunspell/hunspell/releases/tag/v1.6.0
PR: 215714
Submitted by: sunpoet (based on)
Exp-run by: antoine
MFH: 2017Q1
Differential Revision: https://reviews.freebsd.org/D8887 |
20161207 17 Dec 2016 12:58:28 |
sunpoet |
- Update to 20161207 |
20160407_1 03 Dec 2016 22:24:36 |
jbeich |
textproc/hunspell: update to 1.5.4
Changes: https://github.com/hunspell/hunspell/blob/v1.5.4/ChangeLog
PR: 214837
Exp-run by: antoine (for 1.5.3)
Approved by: office (bapt) |
20160407 20 Nov 2016 23:55:38 |
sunpoet |
- Update to 20160407 |
20151222 01 Apr 2016 14:00:57 |
mat |
Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g.
With hat: portmgr
Sponsored by: Absolight |
20151222 17 Jan 2016 13:12:51 |
sunpoet |
- Make build process independent from locale setting
PR: 206191
Submitted by: Rainer Hurling <rhurlin@gwdg.de>
Sponsored by: PortsCamp Taiwan |
20151222 12 Jan 2016 21:37:26 |
sunpoet |
- Update to 20151222 |
20131206 18 Jul 2015 15:01:39 |
sunpoet |
- Add NO_ARCH |
20131206 20 Dec 2014 18:48:58 |
bapt |
Cleanup plist |
20131206 16 Jul 2014 15:34:12 |
sunpoet |
- Use USES=tar:bzip2 |
20131206 28 Jan 2014 11:30:55 |
bapt |
Use aspell instead of ispell to build the package
Cleanup build_depends
mute the mkdir |
20131206 09 Dec 2013 11:37:43 |
sunpoet |
- Update to 20131206 |
20120607 19 Nov 2013 10:12:00 |
sunpoet |
- Add my LOCAL to MASTER_SITES
- Add LICENSE
- Sort USES |
20120607 17 Nov 2013 17:54:55 |
sunpoet |
- Use single space after WWW: |
20120607 04 Nov 2013 10:49:04 |
bapt |
Support stage, use bsdtar to extract |
20120607 20 Sep 2013 18:30:01 |
bapt |
Add NO_STAGE all over the place in preparation for the staging support (cat:
german) |
20120607 04 Aug 2013 12:47:44 |
az |
- Convert to new perl framework
Approved by: bapt@ (office@) |
20120607 07 May 2013 13:12:32 |
bapt |
Add some shebangfix to allow building most of the ports tree without
/usr/bin/perl
Submitted by: John Marino
Obtained from: DPorts |
20120607 28 Jun 2012 02:17:14 |
sunpoet |
- Update to 20120607 |
20110609_1 17 Aug 2011 18:03:06 |
sunpoet |
- Set DIST_SUBDIR: move dist files to DISTDIR/hunspell |
20110609_1 12 Aug 2011 19:17:06 |
sunpoet |
- Unify COMMENT and pkg-descr
- Set WRKSRC
- Fix typo
- Add trailing slash of WWW |
20110609_1 09 Aug 2011 13:33:40 |
sunpoet |
- Fix PLIST: explicitly list installing filenames
- Fix typo |
20110609_1 01 Aug 2011 21:58:24 |
bapt |
Fix build
Reported by: pointyhat (pav@) |
20110609_1 29 Jul 2011 13:11:06 |
sunpoet |
- Move language prefix to PKGNAMEPREFIX
- Use DATADIR
- Use PLIST_DIRSTRY for DATADIR
- Explicitly list installing filenames
- Bump PORTREVISION for PORTNAME and PLIST change
- Sort PLIST
- Cosmetic change |
20110609_1 28 Jul 2011 07:12:00 |
sunpoet |
- Add perl as build dependency [1]
- Use PLIST_DIRSTRY for PREFIX/share/hunspell
- Bump PORTREVISION for PLIST change
- Cosmetic change
Reported by: pointyhat [1] |
20110609 25 Jul 2011 08:53:21 |
sunpoet |
- Fix typo |
20110609 22 Jul 2011 05:30:11 |
bapt |
Pass matainership to the new office team |
20110609 20 Jul 2011 14:01:55 |
bapt |
Add german hunspell dictionnaries |