| 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.34 2010/01/13 15:16:49 fauli Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/texlive-module.eclass,v 1.39 2010/10/23 21:48:18 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 | # |
| … | |
… | |
| 105 | # Gives tar.xz unpack support until we can use an EAPI with that support. |
105 | # Gives tar.xz unpack support until we can use an EAPI with that support. |
| 106 | |
106 | |
| 107 | RELOC_TARGET=texmf-dist |
107 | RELOC_TARGET=texmf-dist |
| 108 | |
108 | |
| 109 | texlive-module_src_unpack() { |
109 | texlive-module_src_unpack() { |
|
|
110 | if has "${EAPI:-0}" 0 1 2 ; then |
| 110 | local i s |
111 | local i s |
| 111 | for i in ${A} |
112 | for i in ${A} |
| 112 | do |
113 | do |
| 113 | s="${DISTDIR%/}/${i}" |
114 | s="${DISTDIR%/}/${i}" |
| 114 | einfo "Unpacking ${s} to ${PWD}" |
115 | einfo "Unpacking ${s} to ${PWD}" |
| 115 | test -s "${s}" || die "${s} does not exist" |
116 | test -s "${s}" || die "${s} does not exist" |
| 116 | xz -dc -- "${s}" | tar xof - || die "Unpacking ${s} failed" |
117 | xz -dc -- "${s}" | tar xof - || die "Unpacking ${s} failed" |
| 117 | done |
118 | done |
|
|
119 | else |
|
|
120 | unpack ${A} |
|
|
121 | fi |
| 118 | grep RELOC tlpkg/tlpobj/* | awk '{print $2}' | sed 's#^RELOC/##' > "${T}/reloclist" |
122 | grep RELOC tlpkg/tlpobj/* | awk '{print $2}' | sed 's#^RELOC/##' > "${T}/reloclist" |
| 119 | { for i in $(<"${T}/reloclist"); do dirname $i; done; } | uniq > "${T}/dirlist" |
123 | { for i in $(<"${T}/reloclist"); do dirname $i; done; } | uniq > "${T}/dirlist" |
| 120 | for i in $(<"${T}/dirlist"); do |
124 | for i in $(<"${T}/dirlist"); do |
| 121 | [ -d "${RELOC_TARGET}/${i}" ] || mkdir -p "${RELOC_TARGET}/${i}" |
125 | [ -d "${RELOC_TARGET}/${i}" ] || mkdir -p "${RELOC_TARGET}/${i}" |
| 122 | done |
126 | done |
| … | |
… | |
| 150 | # @DESCRIPTION: |
154 | # @DESCRIPTION: |
| 151 | # Creates a language.${PN}.def entry to put in /etc/texmf/language.def.d |
155 | # Creates a language.${PN}.def entry to put in /etc/texmf/language.def.d |
| 152 | # It parses the AddHyphen directive of tlpobj files to create it. |
156 | # It parses the AddHyphen directive of tlpobj files to create it. |
| 153 | |
157 | |
| 154 | texlive-module_make_language_def_lines() { |
158 | texlive-module_make_language_def_lines() { |
| 155 | local lefthyphenmin righthyphenmin synonyms name file |
159 | local lefthyphenmin righthyphenmin synonyms name file file_patterns file_exceptions luaspecial |
| 156 | eval $@ |
160 | eval $@ |
| 157 | einfo "Generating language.def entry for $@" |
161 | einfo "Generating language.def entry for $@" |
| 158 | [ -z "$lefthyphenmin" ] && lefthyphenmin="2" |
162 | [ -z "$lefthyphenmin" ] && lefthyphenmin="2" |
| 159 | [ -z "$righthyphenmin" ] && righthyphenmin="3" |
163 | [ -z "$righthyphenmin" ] && righthyphenmin="3" |
| 160 | echo "\\addlanguage{$name}{$file}{}{$lefthyphenmin}{$righthyphenmin}" >> "${S}/language.${PN}.def" |
164 | echo "\\addlanguage{$name}{$file}{}{$lefthyphenmin}{$righthyphenmin}" >> "${S}/language.${PN}.def" |
| … | |
… | |
| 171 | # Only valid for TeXLive 2008. |
175 | # Only valid for TeXLive 2008. |
| 172 | # Creates a language.${PN}.dat entry to put in /etc/texmf/language.dat.d |
176 | # Creates a language.${PN}.dat entry to put in /etc/texmf/language.dat.d |
| 173 | # It parses the AddHyphen directive of tlpobj files to create it. |
177 | # It parses the AddHyphen directive of tlpobj files to create it. |
| 174 | |
178 | |
| 175 | texlive-module_make_language_dat_lines() { |
179 | texlive-module_make_language_dat_lines() { |
| 176 | local lefthyphenmin righthyphenmin synonyms name file |
180 | local lefthyphenmin righthyphenmin synonyms name file file_patterns file_exceptions luaspecial |
| 177 | eval $@ |
181 | eval $@ |
| 178 | einfo "Generating language.dat entry for $@" |
182 | einfo "Generating language.dat entry for $@" |
| 179 | echo "$name $file" >> "${S}/language.${PN}.dat" |
183 | echo "$name $file" >> "${S}/language.${PN}.dat" |
| 180 | if [ -n "$synonyms" ] ; then |
184 | if [ -n "$synonyms" ] ; then |
| 181 | for i in $(echo $synonyms | tr ',' ' ') ; do |
185 | for i in $(echo $synonyms | tr ',' ' ') ; do |
| … | |
… | |
| 183 | echo "=$i" >> "${S}/language.${PN}.dat" |
187 | echo "=$i" >> "${S}/language.${PN}.dat" |
| 184 | done |
188 | done |
| 185 | fi |
189 | fi |
| 186 | } |
190 | } |
| 187 | |
191 | |
|
|
192 | # @FUNCTION: texlive-module_synonyms_to_language_lua_line |
|
|
193 | # @DESCRIPTION: |
|
|
194 | # Helper function for texlive-module_make_language_lua_lines to generate a |
|
|
195 | # correctly formatted synonyms entry for language.lua.dat |
|
|
196 | |
|
|
197 | texlive-module_synonyms_to_language_lua_line() { |
|
|
198 | local prev="" |
|
|
199 | for i in $(echo $@ | tr ',' ' ') ; do |
|
|
200 | printf "${prev} '%s'" $i |
|
|
201 | prev="," |
|
|
202 | done |
|
|
203 | } |
|
|
204 | |
|
|
205 | # @FUNCTION: texlive-module_make_language_lua_lines |
|
|
206 | # @DESCRIPTION: |
|
|
207 | # Only valid for TeXLive 2010. |
|
|
208 | # Creates a language.${PN}.dat.lua entry to put in /etc/texmf/language.dat.lua.d |
|
|
209 | # It parses the AddHyphen directive of tlpobj files to create it. |
|
|
210 | |
|
|
211 | texlive-module_make_language_lua_lines() { |
|
|
212 | local lefthyphenmin righthyphenmin synonyms name file file_patterns file_exceptions luaspecial |
|
|
213 | local dest="${S}/language.${PN}.dat.lua" |
|
|
214 | eval $@ |
|
|
215 | einfo "Generating language.lua.dat entry for $@" |
|
|
216 | printf "\t['%s'] = {\n" "$name" >> "$dest" |
|
|
217 | printf "\t\tloader = '%s',\n" "$file" >> "$dest" |
|
|
218 | printf "\t\tlefthyphenmin = %s,\n\t\trighthyphenmin = %s,\n" "$lefthyphenmin" "$righthyphenmin" >> "$dest" |
|
|
219 | printf "\t\tsynonyms = {%s },\n" "$(texlive-module_synonyms_to_language_lua_line "$synonyms")" >> "$dest" |
|
|
220 | [ -n "$file_patterns" ] && printf "\t\tpatterns = '%s',\n" "$file_patterns" >> "$dest" |
|
|
221 | [ -n "$file_exceptions" ] && printf "\t\thyphenation = '%s',\n" "$file_exceptions" >> "$dest" |
|
|
222 | [ -n "$luaspecial" ] && printf "\t\tspecial = '%s',\n" "$luaspecial" >> "$dest" |
|
|
223 | printf "\t},\n" >> "$dest" |
|
|
224 | } |
|
|
225 | |
| 188 | # @FUNCTION: texlive-module_src_compile |
226 | # @FUNCTION: texlive-module_src_compile |
| 189 | # @DESCRIPTION: |
227 | # @DESCRIPTION: |
| 190 | # exported function: |
228 | # exported function: |
| 191 | # Will look for format.foo.cnf and build foo format files using fmtutil |
229 | # Will look for format.foo.cnf and build foo format files using fmtutil |
| 192 | # (provided by texlive-core). The compiled format files will be sent to |
230 | # (provided by texlive-core). The compiled format files will be sent to |
| … | |
… | |
| 199 | texlive-module_src_compile() { |
237 | texlive-module_src_compile() { |
| 200 | # Generate config files |
238 | # Generate config files |
| 201 | # TeX Live 2007 was providing lists. For 2008 they are now tlpobj. |
239 | # TeX Live 2007 was providing lists. For 2008 they are now tlpobj. |
| 202 | for i in "${S}"/tlpkg/tlpobj/*; |
240 | for i in "${S}"/tlpkg/tlpobj/*; |
| 203 | do |
241 | do |
| 204 | grep '^execute ' "${i}" | sed -e 's/^execute //' | tr ' ' '@' |sort|uniq >> "${T}/jobs" |
242 | grep '^execute ' "${i}" | sed -e 's/^execute //' | tr ' \t' '@@' |sort|uniq >> "${T}/jobs" |
| 205 | done |
243 | done |
| 206 | |
244 | |
| 207 | for i in $(<"${T}/jobs"); |
245 | for i in $(<"${T}/jobs"); |
| 208 | do |
246 | do |
| 209 | j="$(echo $i | tr '@' ' ')" |
247 | j="$(echo $i | tr '@' ' ')" |
| … | |
… | |
| 218 | echo "p +${parameter}" >> "${S}/${PN}-config.ps";; |
256 | echo "p +${parameter}" >> "${S}/${PN}-config.ps";; |
| 219 | addDvipdfmMap) |
257 | addDvipdfmMap) |
| 220 | echo "f ${parameter}" >> "${S}/${PN}-config";; |
258 | echo "f ${parameter}" >> "${S}/${PN}-config";; |
| 221 | AddHyphen) |
259 | AddHyphen) |
| 222 | texlive-module_make_language_def_lines "$parameter" |
260 | texlive-module_make_language_def_lines "$parameter" |
| 223 | texlive-module_make_language_dat_lines "$parameter";; |
261 | texlive-module_make_language_dat_lines "$parameter" |
|
|
262 | [ "${PV#2008}" = "${PV}" -a "${PV#2009}" = "${PV}" ] && texlive-module_make_language_lua_lines "$parameter" |
|
|
263 | ;; |
| 224 | AddFormat) |
264 | AddFormat) |
| 225 | texlive-module_add_format "$parameter";; |
265 | texlive-module_add_format "$parameter";; |
| 226 | BuildFormat) |
266 | BuildFormat) |
| 227 | einfo "Format $parameter already built.";; |
267 | einfo "Format $parameter already built.";; |
| 228 | BuildLanguageDat) |
268 | BuildLanguageDat) |
| … | |
… | |
| 286 | |
326 | |
| 287 | if [ -f "${S}/language.${PN}.dat" ] ; then |
327 | if [ -f "${S}/language.${PN}.dat" ] ; then |
| 288 | insinto /etc/texmf/language.dat.d |
328 | insinto /etc/texmf/language.dat.d |
| 289 | doins "${S}/language.${PN}.dat" |
329 | doins "${S}/language.${PN}.dat" |
| 290 | fi |
330 | fi |
|
|
331 | |
|
|
332 | if [ -f "${S}/language.${PN}.dat.lua" ] ; then |
|
|
333 | insinto /etc/texmf/language.dat.lua.d |
|
|
334 | doins "${S}/language.${PN}.dat.lua" |
|
|
335 | fi |
|
|
336 | |
| 291 | [ -n "${TEXLIVE_MODULE_BINSCRIPTS}" ] && dobin_texmf_scripts ${TEXLIVE_MODULE_BINSCRIPTS} |
337 | [ -n "${TEXLIVE_MODULE_BINSCRIPTS}" ] && dobin_texmf_scripts ${TEXLIVE_MODULE_BINSCRIPTS} |
| 292 | |
338 | |
| 293 | texlive-common_handle_config_files |
339 | texlive-common_handle_config_files |
| 294 | } |
340 | } |
| 295 | |
341 | |