1 | # Copyright 1999-2008 Gentoo Foundation |
1 | # Copyright 1999-2011 Gentoo Foundation |
2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/texlive-module.eclass,v 1.18 2008/09/02 10:00:06 aballier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/texlive-module.eclass,v 1.60 2011/08/29 01:28:10 vapier Exp $ |
4 | |
4 | |
5 | # @ECLASS: texlive-module.eclass |
5 | # @ECLASS: texlive-module.eclass |
6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
7 | # tex@gentoo.org |
7 | # tex@gentoo.org |
8 | # |
8 | # @AUTHOR: |
9 | # Original Author: Alexis Ballier <aballier@gentoo.org> |
9 | # Original Author: Alexis Ballier <aballier@gentoo.org> |
10 | # @BLURB: Provide generic install functions so that modular texlive's texmf ebuild will only have to inherit this eclass |
10 | # @BLURB: Provide generic install functions so that modular texlive's texmf ebuild will only have to inherit this eclass |
11 | # @DESCRIPTION: |
11 | # @DESCRIPTION: |
12 | # Purpose: Provide generic install functions so that modular texlive's texmf ebuilds will |
12 | # Purpose: Provide generic install functions so that modular texlive's texmf ebuilds will |
13 | # only have to inherit this eclass. |
13 | # only have to inherit this eclass. |
14 | # Ebuilds have to provide TEXLIVE_MODULE_CONTENTS variable that contains the list |
14 | # Ebuilds have to provide TEXLIVE_MODULE_CONTENTS variable that contains the list |
15 | # of packages that it will install. (See below) |
15 | # of packages that it will install. (See below) |
16 | # |
16 | # |
17 | # What is assumed is that it unpacks texmf and texmf-dist directories to |
17 | # For TeX Live versions prior to 2009, the ebuild was supposed to unpack the |
18 | # ${WORKDIR}. |
18 | # texmf and texmf-dist directories to ${WORKDIR} (which is what the default |
|
|
19 | # src_unpack does). |
|
|
20 | # Starting from TeX Live 2009, the eclass provides a src_unpack function taking |
|
|
21 | # care of unpacking and relocating the files that need it. |
19 | # |
22 | # |
20 | # It inherits texlive-common |
23 | # It inherits texlive-common and base for supporting patching via the PATCHES |
|
|
24 | # bash array with EAPI>=2. |
21 | |
25 | |
22 | # @ECLASS-VARIABLE: TEXLIVE_MODULE_CONTENTS |
26 | # @ECLASS-VARIABLE: TEXLIVE_MODULE_CONTENTS |
23 | # @DESCRIPTION: |
27 | # @DESCRIPTION: |
24 | # The list of packages that will be installed. This variable will be expanded to |
28 | # The list of packages that will be installed. This variable will be expanded to |
25 | # SRC_URI: |
29 | # SRC_URI: |
26 | # |
30 | # |
27 | # For TeX Live 2007: foo -> texlive-module-foo-${PV}.zip |
|
|
28 | # For TeX Live 2008: foo -> texlive-module-foo-${PV}.tar.lzma |
31 | # For TeX Live 2008: foo -> texlive-module-foo-${PV}.tar.lzma |
|
|
32 | # For TeX Live 2009: foo -> texlive-module-foo-${PV}.tar.xz |
29 | |
33 | |
30 | # @ECLASS-VARIABLE: TEXLIVE_MODULE_DOC_CONTENTS |
34 | # @ECLASS-VARIABLE: TEXLIVE_MODULE_DOC_CONTENTS |
31 | # @DESCRIPTION: |
35 | # @DESCRIPTION: |
32 | # The list of packages that will be installed if the doc useflag is enabled. |
36 | # The list of packages that will be installed if the doc useflag is enabled. |
33 | # Expansion to SRC_URI is the same as for TEXLIVE_MODULE_CONTENTS. This is only |
37 | # Expansion to SRC_URI is the same as for TEXLIVE_MODULE_CONTENTS. This is only |
34 | # valid for TeX Live 2008 |
38 | # valid for TeX Live 2008 and later. |
35 | |
39 | |
36 | # @ECLASS-VARIABLE: TEXLIVE_MODULE_SRC_CONTENTS |
40 | # @ECLASS-VARIABLE: TEXLIVE_MODULE_SRC_CONTENTS |
37 | # @DESCRIPTION: |
41 | # @DESCRIPTION: |
38 | # The list of packages that will be installed if the source useflag is enabled. |
42 | # The list of packages that will be installed if the source useflag is enabled. |
39 | # Expansion to SRC_URI is the same as for TEXLIVE_MODULE_CONTENTS. This is only |
43 | # Expansion to SRC_URI is the same as for TEXLIVE_MODULE_CONTENTS. This is only |
40 | # valid for TeX Live 2008 |
44 | # valid for TeX Live 2008 and later. |
41 | |
45 | |
42 | # @ECLASS-VARIABLE: TEXLIVE_MODULE_BINSCRIPTS |
46 | # @ECLASS-VARIABLE: TEXLIVE_MODULE_BINSCRIPTS |
43 | # @DESCRIPTION: |
47 | # @DESCRIPTION: |
44 | # A space separated list of files that are in fact scripts installed in the |
48 | # A space separated list of files that are in fact scripts installed in the |
45 | # texmf tree and that we want to be available directly. They will be installed in |
49 | # texmf tree and that we want to be available directly. They will be installed in |
46 | # /usr/bin. |
50 | # /usr/bin. |
47 | |
51 | |
|
|
52 | # @ECLASS-VARIABLE: TL_PV |
|
|
53 | # @DESCRIPTION: |
|
|
54 | # Normally the module's PV reflects the TeXLive release it belongs to. |
|
|
55 | # If this is not the case, TL_PV takes the version number for the |
|
|
56 | # needed app-text/texlive-core. |
|
|
57 | |
|
|
58 | # @ECLASS-VARIABLE: TL_MODULE_INFORMATION |
|
|
59 | # @DESCRIPTION: |
|
|
60 | # Information to display about the package. |
|
|
61 | # e.g. for enabling/disabling a feature |
|
|
62 | |
48 | inherit texlive-common |
63 | inherit texlive-common base |
49 | |
64 | |
50 | HOMEPAGE="http://www.tug.org/texlive/" |
65 | HOMEPAGE="http://www.tug.org/texlive/" |
51 | |
66 | |
52 | COMMON_DEPEND=">=app-text/texlive-core-${PV} |
67 | COMMON_DEPEND=">=app-text/texlive-core-${TL_PV:-${PV}}" |
53 | ${TEXLIVE_MODULES_DEPS}" |
|
|
54 | |
68 | |
55 | IUSE="" |
69 | IUSE="source" |
56 | |
70 | |
57 | # TeX Live 2007 was providing .zip files of CTAN packages. For 2008 they are now |
71 | # TeX Live 2008 was providing .tar.lzma files of CTAN packages. |
58 | # .tar.lzma |
72 | # For 2009 and 2010 they are now .tar.xz |
59 | if [ -z "${PV##2007*}" ] ; then |
73 | if [ "${PV#2008}" != "${PV}" ]; then |
|
|
74 | PKGEXT=tar.lzma |
|
|
75 | DEPEND="${COMMON_DEPEND} |
|
|
76 | || ( app-arch/xz-utils app-arch/lzma-utils )" |
|
|
77 | else |
|
|
78 | PKGEXT=tar.xz |
|
|
79 | DEPEND="${COMMON_DEPEND} |
|
|
80 | app-arch/xz-utils" |
|
|
81 | fi |
|
|
82 | |
60 | for i in ${TEXLIVE_MODULE_CONTENTS}; do |
83 | for i in ${TEXLIVE_MODULE_CONTENTS}; do |
61 | SRC_URI="${SRC_URI} mirror://gentoo/texlive-module-${i}-${PV}.zip" |
84 | SRC_URI="${SRC_URI} mirror://gentoo/texlive-module-${i}-${PV}.${PKGEXT}" |
62 | done |
85 | done |
63 | DEPEND="${COMMON_DEPEND} |
|
|
64 | app-arch/unzip" |
|
|
65 | else |
|
|
66 | for i in ${TEXLIVE_MODULE_CONTENTS}; do |
|
|
67 | SRC_URI="${SRC_URI} mirror://gentoo/texlive-module-${i}-${PV}.tar.lzma" |
|
|
68 | done |
|
|
69 | DEPEND="${COMMON_DEPEND} |
|
|
70 | app-arch/lzma-utils" |
|
|
71 | IUSE="${IUSE} source" |
|
|
72 | |
86 | |
73 | # Forge doc SRC_URI |
87 | # Forge doc SRC_URI |
74 | [ -n "${PN##*documentation*}" ] && [ -n "${TEXLIVE_MODULE_DOC_CONTENTS}" ] && SRC_URI="${SRC_URI} doc? (" |
88 | [ -n "${PN##*documentation*}" ] && [ -n "${TEXLIVE_MODULE_DOC_CONTENTS}" ] && SRC_URI="${SRC_URI} doc? (" |
75 | for i in ${TEXLIVE_MODULE_DOC_CONTENTS}; do |
89 | for i in ${TEXLIVE_MODULE_DOC_CONTENTS}; do |
76 | SRC_URI="${SRC_URI} mirror://gentoo/texlive-module-${i}-${PV}.tar.lzma" |
90 | SRC_URI="${SRC_URI} mirror://gentoo/texlive-module-${i}-${PV}.${PKGEXT}" |
77 | done |
91 | done |
78 | [ -n "${PN##*documentation*}" ] && [ -n "${TEXLIVE_MODULE_DOC_CONTENTS}" ] && SRC_URI="${SRC_URI} )" |
92 | [ -n "${PN##*documentation*}" ] && [ -n "${TEXLIVE_MODULE_DOC_CONTENTS}" ] && SRC_URI="${SRC_URI} )" |
79 | |
93 | |
80 | # Forge source SRC_URI |
94 | # Forge source SRC_URI |
81 | if [ -n "${TEXLIVE_MODULE_SRC_CONTENTS}" ] ; then |
95 | if [ -n "${TEXLIVE_MODULE_SRC_CONTENTS}" ] ; then |
82 | SRC_URI="${SRC_URI} source? (" |
96 | SRC_URI="${SRC_URI} source? (" |
83 | for i in ${TEXLIVE_MODULE_SRC_CONTENTS}; do |
97 | for i in ${TEXLIVE_MODULE_SRC_CONTENTS}; do |
84 | SRC_URI="${SRC_URI} mirror://gentoo/texlive-module-${i}-${PV}.tar.lzma" |
98 | SRC_URI="${SRC_URI} mirror://gentoo/texlive-module-${i}-${PV}.${PKGEXT}" |
85 | done |
99 | done |
86 | SRC_URI="${SRC_URI} )" |
100 | SRC_URI="${SRC_URI} )" |
87 | fi |
101 | fi |
|
|
102 | |
|
|
103 | RDEPEND="${COMMON_DEPEND}" |
|
|
104 | |
|
|
105 | [ -z "${PN##*documentation*}" ] || IUSE="${IUSE} doc" |
|
|
106 | |
|
|
107 | S="${WORKDIR}" |
|
|
108 | |
|
|
109 | if [ "${PV#2008}" = "${PV}" ]; then |
|
|
110 | |
|
|
111 | # @FUNCTION: texlive-module_src_unpack |
|
|
112 | # @DESCRIPTION: |
|
|
113 | # Only for TeX Live 2009 and later. |
|
|
114 | # Gives tar.xz unpack support until we can use an EAPI with that support. |
|
|
115 | # If EAPI supports tar.xz then it calls unpack instead of its own unpacker. |
|
|
116 | # After unpacking, the files that need to be relocated are moved accordingly. |
|
|
117 | |
|
|
118 | RELOC_TARGET=texmf-dist |
|
|
119 | |
|
|
120 | texlive-module_src_unpack() { |
|
|
121 | if has "${EAPI:-0}" 0 1 2 ; then |
|
|
122 | local i s |
|
|
123 | # Avoid installing world writable files |
|
|
124 | # Bugs #309997, #310039, #338881 |
|
|
125 | umask 022 |
|
|
126 | for i in ${A} |
|
|
127 | do |
|
|
128 | s="${DISTDIR%/}/${i}" |
|
|
129 | einfo "Unpacking ${s} to ${PWD}" |
|
|
130 | test -s "${s}" || die "${s} does not exist" |
|
|
131 | xz -dc -- "${s}" | tar xof - || die "Unpacking ${s} failed" |
|
|
132 | done |
|
|
133 | else |
|
|
134 | unpack ${A} |
|
|
135 | fi |
|
|
136 | |
|
|
137 | grep RELOC tlpkg/tlpobj/* | awk '{print $2}' | sed 's#^RELOC/##' > "${T}/reloclist" |
|
|
138 | { for i in $(<"${T}/reloclist"); do dirname $i; done; } | uniq > "${T}/dirlist" |
|
|
139 | for i in $(<"${T}/dirlist"); do |
|
|
140 | [ -d "${RELOC_TARGET}/${i}" ] || mkdir -p "${RELOC_TARGET}/${i}" |
|
|
141 | done |
|
|
142 | for i in $(<"${T}/reloclist"); do |
|
|
143 | mv "${i}" "${RELOC_TARGET}"/$(dirname "${i}") || die "failed to relocate ${i} to ${RELOC_TARGET}/$(dirname ${i})" |
|
|
144 | done |
|
|
145 | } |
|
|
146 | |
88 | fi |
147 | fi |
89 | |
148 | |
90 | RDEPEND="${COMMON_DEPEND}" |
149 | # @FUNCTION: texlive-module_add_format |
|
|
150 | # @DESCRIPTION: |
|
|
151 | # Creates/appends to a format.${PN}.cnf file for fmtutil. |
|
|
152 | # It parses the AddFormat directive of tlpobj files to create it. |
|
|
153 | # This will make fmtutil generate the formats when asked and allow the remaining |
|
|
154 | # src_compile phase to build the formats. |
91 | |
155 | |
92 | [ -z "${PN##*documentation*}" ] || IUSE="${IUSE} doc" |
156 | texlive-module_add_format() { |
93 | |
157 | local name engine mode patterns options |
94 | S="${WORKDIR}" |
158 | eval $@ |
95 | |
159 | einfo "Appending to format.${PN}.cnf for $@" |
|
|
160 | [ -d texmf/fmtutil ] || mkdir -p texmf/fmtutil |
|
|
161 | [ -f texmf/fmtutil/format.${PN}.cnf ] || { echo "# Generated for ${PN} by texlive-module.eclass" > texmf/fmtutil/format.${PN}.cnf; } |
|
|
162 | if [ "${mode}" = "disabled" ]; then |
|
|
163 | printf "#! " >> texmf/fmtutil/format.${PN}.cnf |
|
|
164 | fi |
|
|
165 | [ -z "${patterns}" ] && patterns="-" |
|
|
166 | printf "${name}\t${engine}\t${patterns}\t${options}\n" >> texmf/fmtutil/format.${PN}.cnf |
|
|
167 | } |
96 | |
168 | |
97 | # @FUNCTION: texlive-module_make_language_def_lines |
169 | # @FUNCTION: texlive-module_make_language_def_lines |
98 | # @DESCRIPTION: |
170 | # @DESCRIPTION: |
99 | # Only valid for TeXLive 2008. |
|
|
100 | # Creates a language.${PN}.def entry to put in /etc/texmf/language.def.d |
171 | # Creates a language.${PN}.def entry to put in /etc/texmf/language.def.d. |
101 | # It parses the AddHyphen directive of tlpobj files to create it. |
172 | # It parses the AddHyphen directive of tlpobj files to create it. |
102 | |
173 | |
103 | texlive-module_make_language_def_lines() { |
174 | texlive-module_make_language_def_lines() { |
104 | local lefthyphenmin righthyphenmin synonyms name file |
175 | local lefthyphenmin righthyphenmin synonyms name file file_patterns file_exceptions luaspecial |
105 | eval $@ |
176 | eval $@ |
106 | einfo "Generating language.def entry for $@" |
177 | einfo "Generating language.def entry for $@" |
107 | [ -z "$lefthyphenmin" ] && lefthyphenmin="2" |
178 | [ -z "$lefthyphenmin" ] && lefthyphenmin="2" |
108 | [ -z "$righthyphenmin" ] && righthyphenmin="3" |
179 | [ -z "$righthyphenmin" ] && righthyphenmin="3" |
109 | echo "\\addlanguage{$name}{$file}{}{$lefthyphenmin}{$righthyphenmin}" >> "${S}/language.${PN}.def" |
180 | echo "\\addlanguage{$name}{$file}{}{$lefthyphenmin}{$righthyphenmin}" >> "${S}/language.${PN}.def" |
… | |
… | |
115 | fi |
186 | fi |
116 | } |
187 | } |
117 | |
188 | |
118 | # @FUNCTION: texlive-module_make_language_dat_lines |
189 | # @FUNCTION: texlive-module_make_language_dat_lines |
119 | # @DESCRIPTION: |
190 | # @DESCRIPTION: |
120 | # Only valid for TeXLive 2008. |
|
|
121 | # Creates a language.${PN}.dat entry to put in /etc/texmf/language.dat.d |
191 | # Creates a language.${PN}.dat entry to put in /etc/texmf/language.dat.d. |
122 | # It parses the AddHyphen directive of tlpobj files to create it. |
192 | # It parses the AddHyphen directive of tlpobj files to create it. |
123 | |
193 | |
124 | texlive-module_make_language_dat_lines() { |
194 | texlive-module_make_language_dat_lines() { |
125 | local lefthyphenmin righthyphenmin synonyms name file |
195 | local lefthyphenmin righthyphenmin synonyms name file file_patterns file_exceptions luaspecial |
126 | eval $@ |
196 | eval $@ |
127 | einfo "Generating language.dat entry for $@" |
197 | einfo "Generating language.dat entry for $@" |
128 | echo "$name $file" >> "${S}/language.${PN}.dat" |
198 | echo "$name $file" >> "${S}/language.${PN}.dat" |
129 | if [ -n "$synonyms" ] ; then |
199 | if [ -n "$synonyms" ] ; then |
130 | for i in $(echo $synonyms | tr ',' ' ') ; do |
200 | for i in $(echo $synonyms | tr ',' ' ') ; do |
… | |
… | |
132 | echo "=$i" >> "${S}/language.${PN}.dat" |
202 | echo "=$i" >> "${S}/language.${PN}.dat" |
133 | done |
203 | done |
134 | fi |
204 | fi |
135 | } |
205 | } |
136 | |
206 | |
|
|
207 | # @FUNCTION: texlive-module_synonyms_to_language_lua_line |
|
|
208 | # @DESCRIPTION: |
|
|
209 | # Helper function for texlive-module_make_language_lua_lines to generate a |
|
|
210 | # correctly formatted synonyms entry for language.dat.lua. |
|
|
211 | |
|
|
212 | texlive-module_synonyms_to_language_lua_line() { |
|
|
213 | local prev="" |
|
|
214 | for i in $(echo $@ | tr ',' ' ') ; do |
|
|
215 | printf "${prev} '%s'" $i |
|
|
216 | prev="," |
|
|
217 | done |
|
|
218 | } |
|
|
219 | |
|
|
220 | # @FUNCTION: texlive-module_make_language_lua_lines |
|
|
221 | # @DESCRIPTION: |
|
|
222 | # Only valid for TeXLive 2010. |
|
|
223 | # Creates a language.${PN}.dat.lua entry to put in |
|
|
224 | # /etc/texmf/language.dat.lua.d. |
|
|
225 | # It parses the AddHyphen directive of tlpobj files to create it. |
|
|
226 | |
|
|
227 | texlive-module_make_language_lua_lines() { |
|
|
228 | local lefthyphenmin righthyphenmin synonyms name file file_patterns file_exceptions luaspecial |
|
|
229 | local dest="${S}/language.${PN}.dat.lua" |
|
|
230 | eval $@ |
|
|
231 | [ -z "$lefthyphenmin" ] && lefthyphenmin="2" |
|
|
232 | [ -z "$righthyphenmin" ] && righthyphenmin="3" |
|
|
233 | einfo "Generating language.dat.lua entry for $@" |
|
|
234 | printf "\t['%s'] = {\n" "$name" >> "$dest" |
|
|
235 | printf "\t\tloader = '%s',\n" "$file" >> "$dest" |
|
|
236 | printf "\t\tlefthyphenmin = %s,\n\t\trighthyphenmin = %s,\n" "$lefthyphenmin" "$righthyphenmin" >> "$dest" |
|
|
237 | printf "\t\tsynonyms = {%s },\n" "$(texlive-module_synonyms_to_language_lua_line "$synonyms")" >> "$dest" |
|
|
238 | [ -n "$file_patterns" ] && printf "\t\tpatterns = '%s',\n" "$file_patterns" >> "$dest" |
|
|
239 | [ -n "$file_exceptions" ] && printf "\t\thyphenation = '%s',\n" "$file_exceptions" >> "$dest" |
|
|
240 | [ -n "$luaspecial" ] && printf "\t\tspecial = '%s',\n" "$luaspecial" >> "$dest" |
|
|
241 | printf "\t},\n" >> "$dest" |
|
|
242 | } |
|
|
243 | |
137 | # @FUNCTION: texlive-module_src_compile |
244 | # @FUNCTION: texlive-module_src_compile |
138 | # @DESCRIPTION: |
245 | # @DESCRIPTION: |
139 | # exported function: |
246 | # exported function: |
140 | # Will look for format.foo.cnf and build foo format files using fmtutil |
247 | # Generates the config files that are to be installed in /etc/texmf; |
|
|
248 | # texmf-update script will take care of merging the different config files for |
|
|
249 | # different packages in a single one used by the whole tex installation. |
|
|
250 | # |
|
|
251 | # Once the config files are generated, we build the format files using fmtutil |
141 | # (provided by texlive-core). The compiled format files will be sent to |
252 | # (provided by texlive-core). The compiled format files will be sent to |
142 | # texmf-var/web2c, like fmtutil defaults to but with some trick to stay in the |
253 | # texmf-var/web2c, like fmtutil defaults to but with some trick to stay in the |
143 | # sandbox |
254 | # sandbox. |
144 | # The next step is to generate config files that are to be installed in |
|
|
145 | # /etc/texmf; texmf-update script will take care of merging the different config |
|
|
146 | # files for different packages in a single one used by the whole tex installation. |
|
|
147 | |
255 | |
148 | texlive-module_src_compile() { |
256 | texlive-module_src_compile() { |
149 | # Build format files |
257 | # Generate config files from the tlpobj files provided by TeX Live 2008 and |
150 | for i in texmf/fmtutil/format*.cnf; do |
258 | # later |
151 | if [ -f "${i}" ]; then |
|
|
152 | einfo "Building format ${i}" |
|
|
153 | TEXMFHOME="${S}/texmf:${S}/texmf-dist"\ |
|
|
154 | fmtutil --cnffile "${i}" --fmtdir "${S}/texmf-var/web2c" --all\ |
|
|
155 | || die "failed to build format ${i}" |
|
|
156 | fi |
|
|
157 | done |
|
|
158 | |
|
|
159 | # Generate config files |
|
|
160 | # TeX Live 2007 was providing lists. For 2008 they are now tlpobj. |
|
|
161 | if [ -z "${PV##2007*}" ] ; then |
|
|
162 | for i in "${S}"/texmf/lists/*; |
|
|
163 | do |
|
|
164 | grep '^!' "${i}" | sed -e 's/^!//' | tr ' ' '@' |sort|uniq >> "${T}/jobs" |
|
|
165 | done |
|
|
166 | else |
|
|
167 | for i in "${S}"/tlpkg/tlpobj/*; |
259 | for i in "${S}"/tlpkg/tlpobj/*; |
168 | do |
260 | do |
169 | grep '^execute ' "${i}" | sed -e 's/^execute //' | tr ' ' '@' |sort|uniq >> "${T}/jobs" |
261 | grep '^execute ' "${i}" | sed -e 's/^execute //' | tr ' \t' '@@' |sort|uniq >> "${T}/jobs" |
170 | done |
262 | done |
171 | fi |
|
|
172 | |
263 | |
173 | for i in $(<"${T}/jobs"); |
264 | for i in $(<"${T}/jobs"); |
174 | do |
265 | do |
175 | j="$(echo $i | tr '@' ' ')" |
266 | j="$(echo $i | tr '@' ' ')" |
176 | command=${j%% *} |
267 | command=${j%% *} |
… | |
… | |
184 | echo "p +${parameter}" >> "${S}/${PN}-config.ps";; |
275 | echo "p +${parameter}" >> "${S}/${PN}-config.ps";; |
185 | addDvipdfmMap) |
276 | addDvipdfmMap) |
186 | echo "f ${parameter}" >> "${S}/${PN}-config";; |
277 | echo "f ${parameter}" >> "${S}/${PN}-config";; |
187 | AddHyphen) |
278 | AddHyphen) |
188 | texlive-module_make_language_def_lines "$parameter" |
279 | texlive-module_make_language_def_lines "$parameter" |
189 | texlive-module_make_language_dat_lines "$parameter";; |
280 | texlive-module_make_language_dat_lines "$parameter" |
|
|
281 | [ "${PV#2008}" = "${PV}" -a "${PV#2009}" = "${PV}" ] && texlive-module_make_language_lua_lines "$parameter" |
|
|
282 | ;; |
|
|
283 | AddFormat) |
|
|
284 | texlive-module_add_format "$parameter";; |
190 | BuildFormat) |
285 | BuildFormat) |
191 | einfo "Format $parameter already built.";; |
286 | einfo "Format $parameter already built.";; |
192 | BuildLanguageDat) |
287 | BuildLanguageDat) |
193 | einfo "Language file $parameter already generated.";; |
288 | einfo "Language file $parameter already generated.";; |
194 | *) |
289 | *) |
195 | die "No rule to proccess ${command}. Please file a bug." |
290 | die "No rule to proccess ${command}. Please file a bug." |
196 | esac |
291 | esac |
197 | done |
292 | done |
|
|
293 | |
|
|
294 | # Build format files |
|
|
295 | for i in texmf/fmtutil/format*.cnf; do |
|
|
296 | if [ -f "${i}" ]; then |
|
|
297 | einfo "Building format ${i}" |
|
|
298 | VARTEXFONTS="${T}/fonts" TEXMFHOME="${S}/texmf:${S}/texmf-dist:${S}/texmf-var"\ |
|
|
299 | env -u TEXINPUTS fmtutil --cnffile "${i}" --fmtdir "${S}/texmf-var/web2c" --all\ |
|
|
300 | || die "failed to build format ${i}" |
|
|
301 | fi |
|
|
302 | done |
|
|
303 | |
|
|
304 | # Delete ls-R files, these should not be created but better be certain they |
|
|
305 | # do not end up being installed. |
|
|
306 | find . -name 'ls-R' -delete |
198 | } |
307 | } |
199 | |
308 | |
200 | # @FUNCTION: texlive-module_src_install |
309 | # @FUNCTION: texlive-module_src_install |
201 | # @DESCRIPTION: |
310 | # @DESCRIPTION: |
202 | # exported function: |
311 | # exported function: |
203 | # Install texmf and config files to the system |
312 | # Installs texmf and config files to the system. |
204 | |
313 | |
205 | texlive-module_src_install() { |
314 | texlive-module_src_install() { |
206 | for i in texmf/fmtutil/format*.cnf; do |
315 | for i in texmf/fmtutil/format*.cnf; do |
207 | [ -f "${i}" ] && etexlinks "${i}" |
316 | [ -f "${i}" ] && etexlinks "${i}" |
208 | done |
317 | done |
209 | |
318 | |
210 | insinto /usr/share |
319 | dodir /usr/share |
211 | if [ -z "${PN##*documentation*}" ] || use doc; then |
320 | if [ -z "${PN##*documentation*}" ] || use doc; then |
212 | [ -d texmf-doc ] && doins -r texmf-doc |
321 | [ -d texmf-doc ] && cp -pR texmf-doc "${D}/usr/share/" |
213 | else |
322 | else |
214 | [ -d texmf/doc ] && rm -rf texmf/doc |
323 | [ -d texmf/doc ] && rm -rf texmf/doc |
215 | [ -d texmf-dist/doc ] && rm -rf texmf-dist/doc |
324 | [ -d texmf-dist/doc ] && rm -rf texmf-dist/doc |
216 | fi |
325 | fi |
217 | |
326 | |
218 | [ -d texmf ] && doins -r texmf |
327 | [ -d texmf ] && cp -pR texmf "${D}/usr/share/" |
219 | [ -d texmf-dist ] && doins -r texmf-dist |
328 | [ -d texmf-dist ] && cp -pR texmf-dist "${D}/usr/share/" |
220 | [ -n "${PV##2007*}" ] && [ -d tlpkg ] && use source && doins -r tlpkg |
329 | [ -d tlpkg ] && use source && cp -pR tlpkg "${D}/usr/share/" |
221 | |
330 | |
222 | insinto /var/lib/texmf |
331 | insinto /var/lib/texmf |
223 | [ -d texmf-var ] && doins -r texmf-var/* |
332 | [ -d texmf-var ] && doins -r texmf-var/* |
224 | |
333 | |
225 | insinto /etc/texmf/updmap.d |
334 | insinto /etc/texmf/updmap.d |
… | |
… | |
236 | |
345 | |
237 | if [ -f "${S}/language.${PN}.dat" ] ; then |
346 | if [ -f "${S}/language.${PN}.dat" ] ; then |
238 | insinto /etc/texmf/language.dat.d |
347 | insinto /etc/texmf/language.dat.d |
239 | doins "${S}/language.${PN}.dat" |
348 | doins "${S}/language.${PN}.dat" |
240 | fi |
349 | fi |
|
|
350 | |
|
|
351 | if [ -f "${S}/language.${PN}.dat.lua" ] ; then |
|
|
352 | insinto /etc/texmf/language.dat.lua.d |
|
|
353 | doins "${S}/language.${PN}.dat.lua" |
|
|
354 | fi |
|
|
355 | |
241 | [ -n "${TEXLIVE_MODULE_BINSCRIPTS}" ] && dobin_texmf_scripts ${TEXLIVE_MODULE_BINSCRIPTS} |
356 | [ -n "${TEXLIVE_MODULE_BINSCRIPTS}" ] && dobin_texmf_scripts ${TEXLIVE_MODULE_BINSCRIPTS} |
242 | |
357 | |
243 | texlive-common_handle_config_files |
358 | texlive-common_handle_config_files |
244 | } |
359 | } |
245 | |
360 | |
246 | # @FUNCTION: texlive-module_pkg_postinst |
361 | # @FUNCTION: texlive-module_pkg_postinst |
247 | # @DESCRIPTION: |
362 | # @DESCRIPTION: |
248 | # exported function: |
363 | # exported function: |
249 | # run texmf-update to ensure the tex installation is consistent with the |
364 | # Run texmf-update to ensure the tex installation is consistent with the |
250 | # installed texmf trees. |
365 | # installed texmf trees. |
251 | |
366 | |
252 | texlive-module_pkg_postinst() { |
367 | texlive-module_pkg_postinst() { |
253 | if [ "$ROOT" = "/" ] && [ -x /usr/sbin/texmf-update ] ; then |
368 | etexmf-update |
254 | /usr/sbin/texmf-update |
369 | [ -n "${TL_MODULE_INFORMATION}" ] && elog "${TL_MODULE_INFORMATION}" |
255 | else |
|
|
256 | ewarn "Cannot run texmf-update for some reason." |
|
|
257 | ewarn "Your texmf tree might be inconsistent with your configuration" |
|
|
258 | ewarn "Please try to figure what has happened" |
|
|
259 | fi |
|
|
260 | } |
370 | } |
261 | |
371 | |
262 | # @FUNCTION: texlive-module_pkg_postrm |
372 | # @FUNCTION: texlive-module_pkg_postrm |
263 | # @DESCRIPTION: |
373 | # @DESCRIPTION: |
264 | # exported function: |
374 | # exported function: |
265 | # run texmf-update to ensure the tex installation is consistent with the |
375 | # Run texmf-update to ensure the tex installation is consistent with the |
266 | # installed texmf trees. |
376 | # installed texmf trees. |
267 | |
377 | |
268 | texlive-module_pkg_postrm() { |
378 | texlive-module_pkg_postrm() { |
269 | if [ "$ROOT" = "/" ] && [ -x /usr/sbin/texmf-update ] ; then |
379 | etexmf-update |
270 | /usr/sbin/texmf-update |
|
|
271 | else |
|
|
272 | ewarn "Cannot run texmf-update for some reason." |
|
|
273 | ewarn "Your texmf tree might be inconsistent with your configuration" |
|
|
274 | ewarn "Please try to figure what has happened" |
|
|
275 | fi |
|
|
276 | } |
380 | } |
277 | |
381 | |
|
|
382 | if [ "${PV#2008}" != "${PV}" ]; then |
278 | EXPORT_FUNCTIONS src_compile src_install pkg_postinst pkg_postrm |
383 | EXPORT_FUNCTIONS src_compile src_install pkg_postinst pkg_postrm |
|
|
384 | else |
|
|
385 | EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_postinst pkg_postrm |
|
|
386 | fi |