blob: 84d8963bd6ae61f6df6e3ae6deaaf0fa8c32fa88 (
plain) (
blame)
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
75
76
77
78
79
80
81
82
83
84
85
86
|
# Created by: Matthew Luckie <mjl@luckie.org.nz>
# $FreeBSD$
PORTNAME= thunderbird-dictionaries
PORTVERSION= 20060220
PORTREVISION= 8
CATEGORIES= mail
MASTER_SITES= ${MASTER_SITE_MOZDEV}
MASTER_SITE_SUBDIR= dictionaries
DISTFILES= # filled in later after options
DIST_SUBDIR= thunderbird
MAINTAINER= mjl@luckie.org.nz
COMMENT= Dictionaries for Mozilla Thunderbird
RUN_DEPENDS= thunderbird>=6.0:${PORTSDIR}/mail/thunderbird
USE_ZIP= yes
NO_BUILD= yes
WRKSRC= ${WRKDIR}/dictionaries
.include "${.CURDIR}/Makefile.options"
.include <bsd.port.options.mk>
.include <bsd.port.pre.mk>
.include "${.CURDIR}/Makefile.dict"
# For batch building, build all dictionaries
.if defined(BATCH)
PORT_OPTIONS+= ${ALLDICTS}
.endif
# All available dictionaries are listed in Makefile.dict
# this dictionary requires special handling in do-install
BG_DICT= BG
# Build and install all dictionaries
.if ${PORT_OPTIONS:MALL}
PORT_OPTIONS+= ${ALLDICTS}
.endif
# Figure out which distfiles to use, and how to construct the plist
.for f in ${ALLDICTS}
.if ${PORT_OPTIONS:M${f}}
PLIST_SUB+= ${f}=""
HAVE_DICT= yes
DISTFILES+= ${${f}_FILE}
.else
PLIST_SUB+= ${f}="@comment "
.endif
.endfor
# Extract the relevant distfiles
do-extract:
@${MKDIR} ${WRKSRC}
.for f in ${ALLDICTS}
.if ${PORT_OPTIONS:M${f}}
@${UNZIP_CMD} -q ${DISTDIR}/${DIST_SUBDIR}/${${f}_FILE} -d ${WRKSRC}/${${f}_FILE}
.endif
.endfor
# Install the requested dictionaries
do-install:
.for f in ${ALLDICTS}
.if ${PORT_OPTIONS:M${f}}
.if ${BG_DICT}==${f}
@${INSTALL_DATA} \
${WRKSRC}/${${f}_FILE}/bin/components/myspell/${${f}_FILE:S/spell-//:S/xpi//}aff \
${PREFIX}/lib/thunderbird/dictionaries
@${INSTALL_DATA} \
${WRKSRC}/${${f}_FILE}/bin/components/myspell/${${f}_FILE:S/spell-//:S/xpi//}dic \
${PREFIX}/lib/thunderbird/dictionaries
.else
@${INSTALL_DATA} \
${WRKSRC}/${${f}_FILE}/${${f}_FILE:S/spell-//:S/xpi//}aff \
${PREFIX}/lib/thunderbird/dictionaries
@${INSTALL_DATA} \
${WRKSRC}/${${f}_FILE}/${${f}_FILE:S/spell-//:S/xpi//}dic \
${PREFIX}/lib/thunderbird/dictionaries
.endif
.endif
.endfor
.include <bsd.port.post.mk>
|