blob: 097f5deb03d4d9bff63b49e582bb6950cbc06138 (
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
60
61
62
|
# $NetBSD: Makefile,v 1.7 2000/06/28 21:50:24 wiz Exp $
DISTNAME= intlfonts-1.2
CATEGORIES= fonts x11
MASTER_SITES= ${MASTER_SITE_GNU:=intlfonts/intlfonts-1.2-split/}
DISTFILES= ${FONT_SETS:S/$/${EXTRACT_SUFX}/} ${MISC_FILES}
MAINTAINER= packages@netbsd.org
FONT_SETS= Asian \
Chinese \
Ethiopic \
European \
Japanese \
Misc
# These are extra files that not many folks will likely need or want
# They are all bigger than 24 dots -- you'll only want them if you
# want to display text in really big fonts.
#
EXTRA_FONTS= Chinese.BIG \
European.BIG \
Japanese.BIG
# Type1/TrueType fonts for Latin1, Thai and Vietnamese
# XXX need "fonts.scale" for them
#
#EXTRA_FONTS+= Type1 \
# TrueType
#CONFIGURE_ARGS+=--with-type1 --with-truetype
MISC_FILES= README.split
DIST_SUBDIR= ${PKGNAME}
EXTRACT_ONLY= ${FONT_SETS:S/$/${EXTRACT_SUFX}/}
MESSAGE_FILE= ${WRKSRC}/MESSAGE
USE_X11BASE= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS+=--with-fontdir=${PREFIX}/lib/X11/fonts/intlfonts \
--without-bdf --enable-compress=gzip
.include "../../mk/bsd.prefs.mk"
.if !defined(NO_EXTRA_FONTS)
FONT_SETS+= ${EXTRA_FONTS}
PLIST_SRC= ${WRKDIR}/PLIST
# the order may look strange, but we need to make "@dirrm" the last item.
post-patch:
${CAT} ${PKGDIR}/PLIST.extrafonts ${PKGDIR}/PLIST > ${PLIST_SRC}
.endif
post-extract:
.for FILE in ${MISC_FILES}
${CP} ${_DISTDIR}/${FILE} ${WRKSRC}
.endfor
do-build:
${SED} -e 's#@PREFIX@#${PREFIX}#g' <${PKGDIR}/MESSAGE >${MESSAGE_FILE}
.include "../../mk/bsd.pkg.mk"
|