| 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.43 2010/10/23 23:21:10 aballier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/texlive-module.eclass,v 1.50 2010/10/23 23:31:59 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 | # |
| … | |
… | |
| 60 | |
60 | |
| 61 | COMMON_DEPEND=">=app-text/texlive-core-${TL_PV:-${PV}}" |
61 | COMMON_DEPEND=">=app-text/texlive-core-${TL_PV:-${PV}}" |
| 62 | |
62 | |
| 63 | IUSE="source" |
63 | IUSE="source" |
| 64 | |
64 | |
| 65 | # TeX Live 2008 was providing .tar.lzma files of CTAN packages. For 2009 they are now |
65 | # TeX Live 2008 was providing .tar.lzma files of CTAN packages. |
| 66 | # .tar.xz |
66 | # For 2009 and 2010 they are now .tar.xz |
| 67 | if [ "${PV#2008}" != "${PV}" ]; then |
67 | if [ "${PV#2008}" != "${PV}" ]; then |
| 68 | PKGEXT=tar.lzma |
68 | PKGEXT=tar.lzma |
| 69 | DEPEND="${COMMON_DEPEND} |
69 | DEPEND="${COMMON_DEPEND} |
| 70 | || ( app-arch/xz-utils app-arch/lzma-utils )" |
70 | || ( app-arch/xz-utils app-arch/lzma-utils )" |
| 71 | else |
71 | else |
| … | |
… | |
| 102 | |
102 | |
| 103 | if [ "${PV#2008}" = "${PV}" ]; then |
103 | if [ "${PV#2008}" = "${PV}" ]; then |
| 104 | |
104 | |
| 105 | # @FUNCTION: texlive-module_src_unpack |
105 | # @FUNCTION: texlive-module_src_unpack |
| 106 | # @DESCRIPTION: |
106 | # @DESCRIPTION: |
| 107 | # Only for TeX Live 2009. |
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 | # Only valid for TeXLive 2008. |
|
|
| 179 | # 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. |
| 180 | # It parses the AddHyphen directive of tlpobj files to create it. |
182 | # It parses the AddHyphen directive of tlpobj files to create it. |
| 181 | |
183 | |
| 182 | texlive-module_make_language_dat_lines() { |
184 | texlive-module_make_language_dat_lines() { |
| 183 | local lefthyphenmin righthyphenmin synonyms name file file_patterns file_exceptions luaspecial |
185 | local lefthyphenmin righthyphenmin synonyms name file file_patterns file_exceptions luaspecial |
| 184 | eval $@ |
186 | eval $@ |
| … | |
… | |
| 193 | } |
195 | } |
| 194 | |
196 | |
| 195 | # @FUNCTION: texlive-module_synonyms_to_language_lua_line |
197 | # @FUNCTION: texlive-module_synonyms_to_language_lua_line |
| 196 | # @DESCRIPTION: |
198 | # @DESCRIPTION: |
| 197 | # 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 |
| 198 | # correctly formatted synonyms entry for language.dat.lua |
200 | # correctly formatted synonyms entry for language.dat.lua. |
| 199 | |
201 | |
| 200 | texlive-module_synonyms_to_language_lua_line() { |
202 | texlive-module_synonyms_to_language_lua_line() { |
| 201 | local prev="" |
203 | local prev="" |
| 202 | for i in $(echo $@ | tr ',' ' ') ; do |
204 | for i in $(echo $@ | tr ',' ' ') ; do |
| 203 | printf "${prev} '%s'" $i |
205 | printf "${prev} '%s'" $i |
| … | |
… | |
| 206 | } |
208 | } |
| 207 | |
209 | |
| 208 | # @FUNCTION: texlive-module_make_language_lua_lines |
210 | # @FUNCTION: texlive-module_make_language_lua_lines |
| 209 | # @DESCRIPTION: |
211 | # @DESCRIPTION: |
| 210 | # Only valid for TeXLive 2010. |
212 | # Only valid for TeXLive 2010. |
| 211 | # 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. |
| 212 | # It parses the AddHyphen directive of tlpobj files to create it. |
215 | # It parses the AddHyphen directive of tlpobj files to create it. |
| 213 | |
216 | |
| 214 | texlive-module_make_language_lua_lines() { |
217 | texlive-module_make_language_lua_lines() { |
| 215 | local lefthyphenmin righthyphenmin synonyms name file file_patterns file_exceptions luaspecial |
218 | local lefthyphenmin righthyphenmin synonyms name file file_patterns file_exceptions luaspecial |
| 216 | local dest="${S}/language.${PN}.dat.lua" |
219 | local dest="${S}/language.${PN}.dat.lua" |
| … | |
… | |
| 227 | } |
230 | } |
| 228 | |
231 | |
| 229 | # @FUNCTION: texlive-module_src_compile |
232 | # @FUNCTION: texlive-module_src_compile |
| 230 | # @DESCRIPTION: |
233 | # @DESCRIPTION: |
| 231 | # exported function: |
234 | # exported function: |
| 232 | # Will look for format.foo.cnf and build foo format files using fmtutil |
235 | # Generates the config files that are to be installed in /etc/texmf; |
|
|
236 | # texmf-update script will take care of merging the different config files for |
|
|
237 | # different packages in a single one used by the whole tex installation. |
|
|
238 | # |
|
|
239 | # Once the config files are generated, we build the format files using fmtutil |
| 233 | # (provided by texlive-core). The compiled format files will be sent to |
240 | # (provided by texlive-core). The compiled format files will be sent to |
| 234 | # texmf-var/web2c, like fmtutil defaults to but with some trick to stay in the |
241 | # texmf-var/web2c, like fmtutil defaults to but with some trick to stay in the |
| 235 | # sandbox |
242 | # sandbox. |
| 236 | # The next step is to generate config files that are to be installed in |
|
|
| 237 | # /etc/texmf; texmf-update script will take care of merging the different config |
|
|
| 238 | # files for different packages in a single one used by the whole tex installation. |
|
|
| 239 | |
243 | |
| 240 | texlive-module_src_compile() { |
244 | texlive-module_src_compile() { |
| 241 | # Generate config files from the tlpobj files provided by TeX Live 2008 and |
245 | # Generate config files from the tlpobj files provided by TeX Live 2008 and |
| 242 | # later |
246 | # later |
| 243 | for i in "${S}"/tlpkg/tlpobj/*; |
247 | for i in "${S}"/tlpkg/tlpobj/*; |
| … | |
… | |
| 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 |