| 1 | # Copyright 1999-2008 Gentoo Foundation |
1 | # Copyright 1999-2008 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.47 2010/10/23 23:26:38 aballier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/texlive-module.eclass,v 1.51 2010/10/23 23:37:24 aballier 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 | # |
| … | |
… | |
| 18 | # texmf and texmf-dist directories to ${WORKDIR} (which is what the default |
18 | # texmf and texmf-dist directories to ${WORKDIR} (which is what the default |
| 19 | # src_unpack does). |
19 | # src_unpack does). |
| 20 | # Starting from TeX Live 2009, the eclass provides a src_unpack function taking |
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. |
21 | # care of unpacking and relocating the files that need it. |
| 22 | # |
22 | # |
| 23 | # It inherits texlive-common |
23 | # It inherits texlive-common. |
| 24 | |
24 | |
| 25 | # @ECLASS-VARIABLE: TEXLIVE_MODULE_CONTENTS |
25 | # @ECLASS-VARIABLE: TEXLIVE_MODULE_CONTENTS |
| 26 | # @DESCRIPTION: |
26 | # @DESCRIPTION: |
| 27 | # The list of packages that will be installed. This variable will be expanded to |
27 | # The list of packages that will be installed. This variable will be expanded to |
| 28 | # SRC_URI: |
28 | # SRC_URI: |
| … | |
… | |
| 32 | |
32 | |
| 33 | # @ECLASS-VARIABLE: TEXLIVE_MODULE_DOC_CONTENTS |
33 | # @ECLASS-VARIABLE: TEXLIVE_MODULE_DOC_CONTENTS |
| 34 | # @DESCRIPTION: |
34 | # @DESCRIPTION: |
| 35 | # The list of packages that will be installed if the doc useflag is enabled. |
35 | # The list of packages that will be installed if the doc useflag is enabled. |
| 36 | # Expansion to SRC_URI is the same as for TEXLIVE_MODULE_CONTENTS. This is only |
36 | # Expansion to SRC_URI is the same as for TEXLIVE_MODULE_CONTENTS. This is only |
| 37 | # valid for TeX Live 2008 and later |
37 | # valid for TeX Live 2008 and later. |
| 38 | |
38 | |
| 39 | # @ECLASS-VARIABLE: TEXLIVE_MODULE_SRC_CONTENTS |
39 | # @ECLASS-VARIABLE: TEXLIVE_MODULE_SRC_CONTENTS |
| 40 | # @DESCRIPTION: |
40 | # @DESCRIPTION: |
| 41 | # The list of packages that will be installed if the source useflag is enabled. |
41 | # The list of packages that will be installed if the source useflag is enabled. |
| 42 | # Expansion to SRC_URI is the same as for TEXLIVE_MODULE_CONTENTS. This is only |
42 | # Expansion to SRC_URI is the same as for TEXLIVE_MODULE_CONTENTS. This is only |
| 43 | # valid for TeX Live 2008 and later |
43 | # valid for TeX Live 2008 and later. |
| 44 | |
44 | |
| 45 | # @ECLASS-VARIABLE: TEXLIVE_MODULE_BINSCRIPTS |
45 | # @ECLASS-VARIABLE: TEXLIVE_MODULE_BINSCRIPTS |
| 46 | # @DESCRIPTION: |
46 | # @DESCRIPTION: |
| 47 | # A space separated list of files that are in fact scripts installed in the |
47 | # A space separated list of files that are in fact scripts installed in the |
| 48 | # texmf tree and that we want to be available directly. They will be installed in |
48 | # texmf tree and that we want to be available directly. They will be installed in |
| … | |
… | |
| 104 | |
104 | |
| 105 | # @FUNCTION: texlive-module_src_unpack |
105 | # @FUNCTION: texlive-module_src_unpack |
| 106 | # @DESCRIPTION: |
106 | # @DESCRIPTION: |
| 107 | # Only for TeX Live 2009 and later. |
107 | # Only for TeX Live 2009 and later. |
| 108 | # Gives tar.xz unpack support until we can use an EAPI with that support. |
108 | # Gives tar.xz unpack support until we can use an EAPI with that support. |
|
|
109 | # If EAPI supports tar.xz then it calls unpack instead of its own unpacker. |
|
|
110 | # After unpacking, the files that need to relocated are moved accordingly. |
| 109 | |
111 | |
| 110 | RELOC_TARGET=texmf-dist |
112 | RELOC_TARGET=texmf-dist |
| 111 | |
113 | |
| 112 | texlive-module_src_unpack() { |
114 | texlive-module_src_unpack() { |
| 113 | if has "${EAPI:-0}" 0 1 2 ; then |
115 | if has "${EAPI:-0}" 0 1 2 ; then |
| … | |
… | |
| 135 | fi |
137 | fi |
| 136 | |
138 | |
| 137 | # @FUNCTION: texlive-module_add_format |
139 | # @FUNCTION: texlive-module_add_format |
| 138 | # @DESCRIPTION: |
140 | # @DESCRIPTION: |
| 139 | # Creates/appends to a format.${PN}.cnf file for fmtutil. |
141 | # Creates/appends to a format.${PN}.cnf file for fmtutil. |
|
|
142 | # It parses the AddFormat directive of tlpobj files to create it. |
| 140 | # This will make fmtutil generate the formats when asked and allow the remaining |
143 | # This will make fmtutil generate the formats when asked and allow the remaining |
| 141 | # src_compile phase to build the formats |
144 | # src_compile phase to build the formats. |
| 142 | |
145 | |
| 143 | texlive-module_add_format() { |
146 | texlive-module_add_format() { |
| 144 | local name engine mode patterns options |
147 | local name engine mode patterns options |
| 145 | eval $@ |
148 | eval $@ |
| 146 | einfo "Appending to format.${PN}.cnf for $@" |
149 | einfo "Appending to format.${PN}.cnf for $@" |
| … | |
… | |
| 153 | printf "${name}\t${engine}\t${patterns}\t${options}\n" >> texmf/fmtutil/format.${PN}.cnf |
156 | printf "${name}\t${engine}\t${patterns}\t${options}\n" >> texmf/fmtutil/format.${PN}.cnf |
| 154 | } |
157 | } |
| 155 | |
158 | |
| 156 | # @FUNCTION: texlive-module_make_language_def_lines |
159 | # @FUNCTION: texlive-module_make_language_def_lines |
| 157 | # @DESCRIPTION: |
160 | # @DESCRIPTION: |
| 158 | # Creates a language.${PN}.def entry to put in /etc/texmf/language.def.d |
161 | # Creates a language.${PN}.def entry to put in /etc/texmf/language.def.d. |
| 159 | # It parses the AddHyphen directive of tlpobj files to create it. |
162 | # It parses the AddHyphen directive of tlpobj files to create it. |
| 160 | |
163 | |
| 161 | texlive-module_make_language_def_lines() { |
164 | texlive-module_make_language_def_lines() { |
| 162 | local lefthyphenmin righthyphenmin synonyms name file file_patterns file_exceptions luaspecial |
165 | local lefthyphenmin righthyphenmin synonyms name file file_patterns file_exceptions luaspecial |
| 163 | eval $@ |
166 | eval $@ |
| … | |
… | |
| 173 | fi |
176 | fi |
| 174 | } |
177 | } |
| 175 | |
178 | |
| 176 | # @FUNCTION: texlive-module_make_language_dat_lines |
179 | # @FUNCTION: texlive-module_make_language_dat_lines |
| 177 | # @DESCRIPTION: |
180 | # @DESCRIPTION: |
| 178 | # Creates a language.${PN}.dat entry to put in /etc/texmf/language.dat.d |
181 | # Creates a language.${PN}.dat entry to put in /etc/texmf/language.dat.d. |
| 179 | # It parses the AddHyphen directive of tlpobj files to create it. |
182 | # It parses the AddHyphen directive of tlpobj files to create it. |
| 180 | |
183 | |
| 181 | texlive-module_make_language_dat_lines() { |
184 | texlive-module_make_language_dat_lines() { |
| 182 | local lefthyphenmin righthyphenmin synonyms name file file_patterns file_exceptions luaspecial |
185 | local lefthyphenmin righthyphenmin synonyms name file file_patterns file_exceptions luaspecial |
| 183 | eval $@ |
186 | eval $@ |
| … | |
… | |
| 192 | } |
195 | } |
| 193 | |
196 | |
| 194 | # @FUNCTION: texlive-module_synonyms_to_language_lua_line |
197 | # @FUNCTION: texlive-module_synonyms_to_language_lua_line |
| 195 | # @DESCRIPTION: |
198 | # @DESCRIPTION: |
| 196 | # Helper function for texlive-module_make_language_lua_lines to generate a |
199 | # Helper function for texlive-module_make_language_lua_lines to generate a |
| 197 | # correctly formatted synonyms entry for language.dat.lua |
200 | # correctly formatted synonyms entry for language.dat.lua. |
| 198 | |
201 | |
| 199 | texlive-module_synonyms_to_language_lua_line() { |
202 | texlive-module_synonyms_to_language_lua_line() { |
| 200 | local prev="" |
203 | local prev="" |
| 201 | for i in $(echo $@ | tr ',' ' ') ; do |
204 | for i in $(echo $@ | tr ',' ' ') ; do |
| 202 | printf "${prev} '%s'" $i |
205 | printf "${prev} '%s'" $i |
| … | |
… | |
| 205 | } |
208 | } |
| 206 | |
209 | |
| 207 | # @FUNCTION: texlive-module_make_language_lua_lines |
210 | # @FUNCTION: texlive-module_make_language_lua_lines |
| 208 | # @DESCRIPTION: |
211 | # @DESCRIPTION: |
| 209 | # Only valid for TeXLive 2010. |
212 | # Only valid for TeXLive 2010. |
| 210 | # Creates a language.${PN}.dat.lua entry to put in /etc/texmf/language.dat.lua.d |
213 | # Creates a language.${PN}.dat.lua entry to put in |
|
|
214 | # /etc/texmf/language.dat.lua.d. |
| 211 | # It parses the AddHyphen directive of tlpobj files to create it. |
215 | # It parses the AddHyphen directive of tlpobj files to create it. |
| 212 | |
216 | |
| 213 | texlive-module_make_language_lua_lines() { |
217 | texlive-module_make_language_lua_lines() { |
| 214 | local lefthyphenmin righthyphenmin synonyms name file file_patterns file_exceptions luaspecial |
218 | local lefthyphenmin righthyphenmin synonyms name file file_patterns file_exceptions luaspecial |
| 215 | local dest="${S}/language.${PN}.dat.lua" |
219 | local dest="${S}/language.${PN}.dat.lua" |
| … | |
… | |
| 291 | } |
295 | } |
| 292 | |
296 | |
| 293 | # @FUNCTION: texlive-module_src_install |
297 | # @FUNCTION: texlive-module_src_install |
| 294 | # @DESCRIPTION: |
298 | # @DESCRIPTION: |
| 295 | # exported function: |
299 | # exported function: |
| 296 | # Install texmf and config files to the system |
300 | # Installs texmf and config files to the system. |
| 297 | |
301 | |
| 298 | texlive-module_src_install() { |
302 | texlive-module_src_install() { |
| 299 | for i in texmf/fmtutil/format*.cnf; do |
303 | for i in texmf/fmtutil/format*.cnf; do |
| 300 | [ -f "${i}" ] && etexlinks "${i}" |
304 | [ -f "${i}" ] && etexlinks "${i}" |
| 301 | done |
305 | done |
| … | |
… | |
| 343 | } |
347 | } |
| 344 | |
348 | |
| 345 | # @FUNCTION: texlive-module_pkg_postinst |
349 | # @FUNCTION: texlive-module_pkg_postinst |
| 346 | # @DESCRIPTION: |
350 | # @DESCRIPTION: |
| 347 | # exported function: |
351 | # exported function: |
| 348 | # run texmf-update to ensure the tex installation is consistent with the |
352 | # Run texmf-update to ensure the tex installation is consistent with the |
| 349 | # installed texmf trees. |
353 | # installed texmf trees. |
| 350 | |
354 | |
| 351 | texlive-module_pkg_postinst() { |
355 | texlive-module_pkg_postinst() { |
| 352 | if [ "$ROOT" = "/" ] && [ -x /usr/sbin/texmf-update ] ; then |
356 | if [ "$ROOT" = "/" ] && [ -x /usr/sbin/texmf-update ] ; then |
| 353 | /usr/sbin/texmf-update |
357 | /usr/sbin/texmf-update |
| … | |
… | |
| 359 | } |
363 | } |
| 360 | |
364 | |
| 361 | # @FUNCTION: texlive-module_pkg_postrm |
365 | # @FUNCTION: texlive-module_pkg_postrm |
| 362 | # @DESCRIPTION: |
366 | # @DESCRIPTION: |
| 363 | # exported function: |
367 | # exported function: |
| 364 | # run texmf-update to ensure the tex installation is consistent with the |
368 | # Run texmf-update to ensure the tex installation is consistent with the |
| 365 | # installed texmf trees. |
369 | # installed texmf trees. |
| 366 | |
370 | |
| 367 | texlive-module_pkg_postrm() { |
371 | texlive-module_pkg_postrm() { |
| 368 | if [ "$ROOT" = "/" ] && [ -x /usr/sbin/texmf-update ] ; then |
372 | if [ "$ROOT" = "/" ] && [ -x /usr/sbin/texmf-update ] ; then |
| 369 | /usr/sbin/texmf-update |
373 | /usr/sbin/texmf-update |