blob: ac388ab0e83634142505f11214fe1866f46e5d84 (
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
63
64
|
# $NetBSD: Makefile,v 1.10 2013/06/04 22:16:03 tron Exp $
DISTNAME= ghostscript-cidfonts-ryumin-${GS_VERSION}
DISTFILES= # empty
PKGREVISION= 6
CATEGORIES= fonts
MAINTAINER= pkgsrc-users@NetBSD.org
COMMENT= Enable Ryumin-Light and GothicBBB for ghostscript
LICENSE= generic-nonlicense
.include "../../print/ghostscript-gpl/Makefile.common"
GS_RESOURCEDIR= share/ghostscript/${PKGVERSION}/Resource
WRKSRC= ${WRKDIR}/gcr
INSTALLATION_DIRS+= ${GS_RESOURCEDIR}/Font
INSTALLATION_DIRS+= ${GS_RESOURCEDIR}/Init
DEPENDS+= ghostscript-gpl>=9.05:../../print/ghostscript-gpl
DEPENDS+= ghostscript-cidfonts>=20000901nb3:../../fonts/ghostscript-cidfonts
BUILD_DEFS+= GS_CIDFMAP
# used in options.mk to switch adobe or ttf
SUBST_VARS= GCR_INSTALL_TYPE
.include "options.mk"
.if !empty(GS_CIDFMAP)
SUBST_CLASSES+= ttf_path
SUBST_STAGE.ttf_path= post-build
SUBST_MESSAGE.ttf_path=Fixing ttf install directory in cidfmap
SUBST_FILES.ttf_path= ${GS_CIDFMAP}
SUBST_SED.ttf_path= -e 's|%%PREFIX%%|${PREFIX}|'
.endif
# To edit %%PREFIX%% in cidfmap before installation by SUBST,
do-build:
.if !empty(GS_CIDFMAP)
${MKDIR} ${WRKSRC}
${CP} files/${GS_CIDFMAP} ${WRKSRC}
.endif
do-install:
.if !empty(GS_CIDFMAP)
${INSTALL_DATA} ${WRKSRC}/${GS_CIDFMAP} ${DESTDIR}${PREFIX}/${GS_RESOURCEDIR}/Init/cidfmap
.endif
# mainly Ryumin and GothicBBB
${INSTALL_DATA} files/${GCR_INSTALL_TYPE}/[GR]* ${DESTDIR}${PREFIX}/${GS_RESOURCEDIR}/Font
# no need to edit cidfmap
.if empty(GS_CIDFMAP)
NO_BUILD= yes
.endif
NO_CHECKSUM= yes
NO_CONFIGURE= yes
.include "../../print/ghostscript-gpl/buildlink3.mk"
.if empty(PKG_BUILD_OPTIONS.ghostscript-gpl:Mdisable-compile-inits)
PKG_FAIL_REASON+= 'You need to set PKG_OPTIONS.ghostscript+= disable-compile-inits, at its compile time.'
.endif
#.include "../../fonts/adobe-cidfonts/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
|