blob: ac759970d931863339c73b472cd4496c4c1eca18 (
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
# $NetBSD: module.mk,v 1.4 2009/04/17 17:41:23 minskim Exp $
#
# This Makefile fragment is inteded to be included by packages that build
# TeX Live packages.
#
# Package-settable variables:
#
# TEX_FORMAT_NAMES
# See ../../print/texlive-tetex/format.mk.
#
# TEX_HYPHEN_DAT
# See ../../print/texlive-tetex/hyphen.mk.
#
# TEX_HYPHEN_DEF
# See ../../print/texlive-tetex/hyphen.mk.
#
# TEX_MAP_FILES
# See ../../print/texlive-tetex/map.mk.
#
# TEX_MIXEDMAP_FILES
# See ../../print/texlive-tetex/map.mk.
#
# TEX_TEXMF_DIRS
# See ../../print/kpathsea/texmf.mk.
#
# TEXLIVE_IGNORE_PATTERNS
# glob patterns for files and directories in ${WRKSRC} that
# should not be installed.
CATEGORIES?= print
MASTER_SITES?= ${MASTER_SITE_TEX_CTAN:=systems/texlive/tlnet/2008/archive/}
DIST_SUBDIR?= ${PKGNAME_NOREV}
EXTRACT_SUFX?= .tar.lzma
HOMEPAGE?= http://www.tug.org/texlive/
PKG_DESTDIR_SUPPORT= user-destdir
USE_TOOLS+= pax
NO_BUILD?= yes
WRKSRC?= ${WRKDIR}
.PHONY: _texlive-set-permission:
_texlive-set-permission:
.for _pat in ${TEXLIVE_IGNORE_PATTERNS}
${RM} -rf ${WRKSRC}/${_pat}
.endfor
.for _texmf in texmf texmf-dist texmf-doc
if [ -d ${WRKSRC}/${_texmf} ]; then \
${FIND} ${WRKSRC}/${_texmf} -type d -exec ${CHMOD} ${PKGDIRMODE} {} \; ; \
${FIND} ${WRKSRC}/${_texmf} -type f -exec ${CHMOD} ${SHAREMODE} {} \; ; \
fi
.endfor
.PHONY: _texlive-install:
_texlive-install:
.for _texmf in texmf texmf-dist
if [ -d ${WRKSRC}/${_texmf} ]; then \
cd ${WRKSRC} && \
pax -rwpm -s ',.*\.orig$$,,' \
${_texmf} ${DESTDIR}${PREFIX}/share; \
fi
.endfor
if [ -d ${WRKSRC}/texmf-doc ]; then \
cd ${WRKSRC} && \
pax -rwpm -s ',.*\.orig$$,,' texmf-doc/* \
${DESTDIR}${PREFIX}/share/doc/texmf; \
fi
.include "../../print/kpathsea/texmf.mk"
.if !empty(TEX_FORMAT_NAMES)
. include "../../print/texlive-tetex/format.mk"
.endif
.if !empty(TEX_HYPHEN_DAT) || !empty(TEX_HYPHEN_DEF)
. include "../../print/texlive-tetex/hyphen.mk"
.endif
.if !empty(TEX_MAP_FILES) || !empty(TEX_MIXEDMAP_FILES)
. include "../../print/texlive-tetex/map.mk"
.endif
post-extract: _texlive-set-permission
do-install: _texlive-install
PRINT_PLIST_AWK+= /^@dirrm share\/texmf/ { next; }
PRINT_PLIST_AWK+= /^@dirrm share\/doc\/texmf/ { next; }
|