blob: 1a38b536a7e4b3ea5033a8118a6d2d8af90821ba (
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
|
# 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}
${LN} -fs ${LOCALEDIR}/${LANG}/LC_CTYPE \
${BASELOCALEDIR}/${LANG}/LC_CTYPE
post-install:
@${CAT} ${PKGMESSAGE}
.include <bsd.port.post.mk>
|