blob: 01b0fdf978c767ecebcb5fe05ac1fb5ec21c68ad (
plain)
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
|
# New ports collection makefile for: big5width
# Date created: Sep 20 2006
# Whom: Rong-En Fan <rafan@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= big5width
PORTVERSION= 1.0
CATEGORIES= chinese
MASTER_SITES= # none
DISTFILES= # none
MAINTAINER= rafan@FreeBSD.org
COMMENT= Unicode width dirty fix for Big5 font (${LANG} locale)
BASELOCALEDIR= ${DESTDIR}/usr/share/locale
LOCALEDIR= ${PREFIX}/share/locale
LANG= zh_TW.UTF-8
PLIST_SUB= BASELOCALEDIR=${BASELOCALEDIR} \
LOCALEDIR=${LOCALEDIR} \
LANG=${LANG}
.include <bsd.port.pre.mk>
.if ${OSVERSION} < 502110
IGNORE= requires UTF-8 locales in base system
.endif
SRCBASE?= ${PORTSDIR}/../src
SRCDIR= ${SRCBASE}/share/mklocale
.if !exists(${SRCDIR})
IGNORE= need to build this port with the locale source
.endif
do-extract:
@${MKDIR} ${WRKDIR}
@${CP} -R ${SRCDIR} ${WRKSRC}
@${CP} ${WRKSRC}/UTF-8.src ${WRKSRC}/${LANG}.src
do-build:
/usr/bin/mklocale -o ${WRKSRC}/LC_CTYPE ${WRKSRC}/${LANG}.src
do-install:
${MKDIR} ${LOCALEDIR}/${LANG}
${INSTALL_DATA} ${WRKSRC}/LC_CTYPE ${LOCALEDIR}/${LANG}
${CP} -p ${BASELOCALEDIR}/${LANG}/LC_CTYPE \
${LOCALEDIR}/${LANG}/LC_CTYPE.old
.if !defined(PACKAGE_BUILDING) # don't modify building environment
${LN} -sf ${LOCALEDIR}/${LANG}/LC_CTYPE \
${BASELOCALEDIR}/${LANG}/LC_CTYPE
.endif
post-install:
@${CAT} ${PKGMESSAGE}
.include <bsd.port.post.mk>
|