David Stes
2024-03-31 8cdd197ba643eb2608c5aab87567625bb9336cee
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#
# This file and its contents are supplied under the terms of the
# Common Development and Distribution License ("CDDL)". You may
# only use this file in accordance with the terms of the CDDL.
#
# A full copy of the text of the CDDL should have accompanied this
# source. A copy of the CDDL is also available via the Internet at
# http://www.illumos.org/license/CDDL.
#
 
#
# Copyright (c) 2016 Alexander Pyhalov
#
 
include ../../../make-rules/shared-macros.mk
 
COMPONENT_NAME=            hunspell-de
COMPONENT_VERSION=        2016.12.7
HUMAN_VERSION=            20161207
COMPONENT_REVISION=        1
COMPONENT_PROJECT_URL=    https://www.j3e.de/ispell/igerman98/index_en.html
COMPONENT_SUMMARY=        Myspell and Hunspell spell dictionary files for German
COMPONENT_LICENSE=        GPLv2
COMPONENT_LICENSE_FILE=    hunspell/COPYING_GPLv2
COMPONENT_SRC=            igerman98-$(HUMAN_VERSION)
COMPONENT_ARCHIVE=        $(COMPONENT_SRC).tar.bz2
COMPONENT_ARCHIVE_HASH=    sha256:17296f03c5fea62d76ecc530ebe80f6adc430278f58d472dc1842d71612960a8
COMPONENT_ARCHIVE_URL=    https://www.j3e.de/ispell/igerman98/dict/$(COMPONENT_ARCHIVE)
COMPONENT_FMRI=            library/myspell/dictionary/de
COMPONENT_CLASSIFICATION=    System/Localizations
 
include $(WS_MAKE_RULES)/prep.mk
include $(WS_MAKE_RULES)/justmake.mk
include $(WS_MAKE_RULES)/ips.mk
 
COMPONENT_BUILD_TARGETS = hunspell-all
 
DESTDIR=/usr/share/spell/hunspell
LINKDIR=/usr/share/spell/myspell
FFDIR=/usr/lib/firefox/dictionaries
TBDIR=/usr/lib/thunderbird/dictionaries
 
CHALIASES=    de_LI
DEALIASES=    de_BE de_LU
 
$(SOURCE_DIR)/.installed:       $(BUILD_32)
    [ -d $(PROTO_DIR)$(DESTDIR) ] || mkdir -p $(PROTO_DIR)$(DESTDIR)
    [ -d $(PROTO_DIR)$(LINKDIR) ] || mkdir -p $(PROTO_DIR)$(LINKDIR)
    [ -d $(PROTO_DIR)$(FFDIR) ] || mkdir -p $(PROTO_DIR)$(FFDIR)
    [ -d $(PROTO_DIR)$(TBDIR) ] || mkdir -p $(PROTO_DIR)$(TBDIR)
    for file in $(BUILD_DIR_32)/hunspell/de_{AT,CH,DE}.{aff,dic}; do \
        cp $$file $(PROTO_DIR)$(DESTDIR)/; \
    done
    for alias in $(CHALIASES); do\
        ln -fs de_CH.aff $(PROTO_DIR)$(DESTDIR)/$$alias.aff; \
        ln -fs de_CH.dic $(PROTO_DIR)$(DESTDIR)/$$alias.dic; \
    done
    for alias in $(DEALIASES); do\
        ln -fs de_DE.aff $(PROTO_DIR)$(DESTDIR)/$$alias.aff; \
        ln -fs de_DE.dic $(PROTO_DIR)$(DESTDIR)/$$alias.dic;\
    done
    for file in `cd $(PROTO_DIR)/$(DESTDIR)/; ls`;  do\
        ln -fs ../../../..$(DESTDIR)/$$file $(PROTO_DIR)$(LINKDIR)/$$file; \
        ln -fs ../../../..$(DESTDIR)/$$file $(PROTO_DIR)$(FFDIR)/$$file; \
        ln -fs ../../../..$(DESTDIR)/$$file $(PROTO_DIR)$(TBDIR)/$$file; \
    done
    $(TOUCH) $@
 
build: $(BUILD_32)
 
install: $(SOURCE_DIR)/.installed
 
# Build dependencies
REQUIRED_PACKAGES+= text/aspell