| 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.42 2010/10/23 23:19:29 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 | # |
| … | |
… | |
| 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 |
| 21 | |
24 | |
| 22 | # @ECLASS-VARIABLE: TEXLIVE_MODULE_CONTENTS |
25 | # @ECLASS-VARIABLE: TEXLIVE_MODULE_CONTENTS |
| 23 | # @DESCRIPTION: |
26 | # @DESCRIPTION: |
| … | |
… | |
| 95 | |
98 | |
| 96 | [ -z "${PN##*documentation*}" ] || IUSE="${IUSE} doc" |
99 | [ -z "${PN##*documentation*}" ] || IUSE="${IUSE} doc" |
| 97 | |
100 | |
| 98 | S="${WORKDIR}" |
101 | S="${WORKDIR}" |
| 99 | |
102 | |
| 100 | if [ "${PV#2008}" == "${PV}" ]; then |
103 | if [ "${PV#2008}" = "${PV}" ]; then |
| 101 | |
104 | |
| 102 | # @FUNCTION: texlive-module_src_unpack |
105 | # @FUNCTION: texlive-module_src_unpack |
| 103 | # @DESCRIPTION: |
106 | # @DESCRIPTION: |
| 104 | # Only for TeX Live 2009. |
107 | # Only for TeX Live 2009. |
| 105 | # 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. |
| 106 | |
109 | |
| 107 | RELOC_TARGET=texmf-dist |
110 | RELOC_TARGET=texmf-dist |
| 108 | |
111 | |
| 109 | texlive-module_src_unpack() { |
112 | texlive-module_src_unpack() { |
|
|
113 | if has "${EAPI:-0}" 0 1 2 ; then |
| 110 | local i s |
114 | local i s |
| 111 | for i in ${A} |
115 | for i in ${A} |
| 112 | do |
116 | do |
| 113 | s="${DISTDIR%/}/${i}" |
117 | s="${DISTDIR%/}/${i}" |
| 114 | einfo "Unpacking ${s} to ${PWD}" |
118 | einfo "Unpacking ${s} to ${PWD}" |
| 115 | test -s "${s}" || die "${s} does not exist" |
119 | test -s "${s}" || die "${s} does not exist" |
| 116 | xz -dc -- "${s}" | tar xof - || die "Unpacking ${s} failed" |
120 | xz -dc -- "${s}" | tar xof - || die "Unpacking ${s} failed" |
| 117 | done |
121 | done |
|
|
122 | else |
|
|
123 | unpack ${A} |
|
|
124 | fi |
| 118 | grep RELOC tlpkg/tlpobj/* | awk '{print $2}' | sed 's#^RELOC/##' > "${T}/reloclist" |
125 | 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" |
126 | { for i in $(<"${T}/reloclist"); do dirname $i; done; } | uniq > "${T}/dirlist" |
| 120 | for i in $(<"${T}/dirlist"); do |
127 | for i in $(<"${T}/dirlist"); do |
| 121 | [ -d "${RELOC_TARGET}/${i}" ] || mkdir -p "${RELOC_TARGET}/${i}" |
128 | [ -d "${RELOC_TARGET}/${i}" ] || mkdir -p "${RELOC_TARGET}/${i}" |
| 122 | done |
129 | done |
| … | |
… | |
| 137 | local name engine mode patterns options |
144 | local name engine mode patterns options |
| 138 | eval $@ |
145 | eval $@ |
| 139 | einfo "Appending to format.${PN}.cnf for $@" |
146 | einfo "Appending to format.${PN}.cnf for $@" |
| 140 | [ -d texmf/fmtutil ] || mkdir -p texmf/fmtutil |
147 | [ -d texmf/fmtutil ] || mkdir -p texmf/fmtutil |
| 141 | [ -f texmf/fmtutil/format.${PN}.cnf ] || { echo "# Generated for ${PN} by texlive-module.eclass" > texmf/fmtutil/format.${PN}.cnf; } |
148 | [ -f texmf/fmtutil/format.${PN}.cnf ] || { echo "# Generated for ${PN} by texlive-module.eclass" > texmf/fmtutil/format.${PN}.cnf; } |
| 142 | if [ "${mode}" == "disabled" ]; then |
149 | if [ "${mode}" = "disabled" ]; then |
| 143 | printf "#! " >> texmf/fmtutil/format.${PN}.cnf |
150 | printf "#! " >> texmf/fmtutil/format.${PN}.cnf |
| 144 | fi |
151 | fi |
| 145 | [ -z "${patterns}" ] && patterns="-" |
152 | [ -z "${patterns}" ] && patterns="-" |
| 146 | printf "${name}\t${engine}\t${patterns}\t${options}\n" >> texmf/fmtutil/format.${PN}.cnf |
153 | printf "${name}\t${engine}\t${patterns}\t${options}\n" >> texmf/fmtutil/format.${PN}.cnf |
| 147 | } |
154 | } |
| … | |
… | |
| 150 | # @DESCRIPTION: |
157 | # @DESCRIPTION: |
| 151 | # Creates a language.${PN}.def entry to put in /etc/texmf/language.def.d |
158 | # 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. |
159 | # It parses the AddHyphen directive of tlpobj files to create it. |
| 153 | |
160 | |
| 154 | texlive-module_make_language_def_lines() { |
161 | texlive-module_make_language_def_lines() { |
| 155 | local lefthyphenmin righthyphenmin synonyms name file |
162 | local lefthyphenmin righthyphenmin synonyms name file file_patterns file_exceptions luaspecial |
| 156 | eval $@ |
163 | eval $@ |
| 157 | einfo "Generating language.def entry for $@" |
164 | einfo "Generating language.def entry for $@" |
| 158 | [ -z "$lefthyphenmin" ] && lefthyphenmin="2" |
165 | [ -z "$lefthyphenmin" ] && lefthyphenmin="2" |
| 159 | [ -z "$righthyphenmin" ] && righthyphenmin="3" |
166 | [ -z "$righthyphenmin" ] && righthyphenmin="3" |
| 160 | echo "\\addlanguage{$name}{$file}{}{$lefthyphenmin}{$righthyphenmin}" >> "${S}/language.${PN}.def" |
167 | echo "\\addlanguage{$name}{$file}{}{$lefthyphenmin}{$righthyphenmin}" >> "${S}/language.${PN}.def" |
| … | |
… | |
| 171 | # Only valid for TeXLive 2008. |
178 | # Only valid for TeXLive 2008. |
| 172 | # Creates a language.${PN}.dat entry to put in /etc/texmf/language.dat.d |
179 | # 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. |
180 | # It parses the AddHyphen directive of tlpobj files to create it. |
| 174 | |
181 | |
| 175 | texlive-module_make_language_dat_lines() { |
182 | texlive-module_make_language_dat_lines() { |
| 176 | local lefthyphenmin righthyphenmin synonyms name file |
183 | local lefthyphenmin righthyphenmin synonyms name file file_patterns file_exceptions luaspecial |
| 177 | eval $@ |
184 | eval $@ |
| 178 | einfo "Generating language.dat entry for $@" |
185 | einfo "Generating language.dat entry for $@" |
| 179 | echo "$name $file" >> "${S}/language.${PN}.dat" |
186 | echo "$name $file" >> "${S}/language.${PN}.dat" |
| 180 | if [ -n "$synonyms" ] ; then |
187 | if [ -n "$synonyms" ] ; then |
| 181 | for i in $(echo $synonyms | tr ',' ' ') ; do |
188 | for i in $(echo $synonyms | tr ',' ' ') ; do |
| … | |
… | |
| 183 | echo "=$i" >> "${S}/language.${PN}.dat" |
190 | echo "=$i" >> "${S}/language.${PN}.dat" |
| 184 | done |
191 | done |
| 185 | fi |
192 | fi |
| 186 | } |
193 | } |
| 187 | |
194 | |
|
|
195 | # @FUNCTION: texlive-module_synonyms_to_language_lua_line |
|
|
196 | # @DESCRIPTION: |
|
|
197 | # Helper function for texlive-module_make_language_lua_lines to generate a |
|
|
198 | # correctly formatted synonyms entry for language.dat.lua |
|
|
199 | |
|
|
200 | texlive-module_synonyms_to_language_lua_line() { |
|
|
201 | local prev="" |
|
|
202 | for i in $(echo $@ | tr ',' ' ') ; do |
|
|
203 | printf "${prev} '%s'" $i |
|
|
204 | prev="," |
|
|
205 | done |
|
|
206 | } |
|
|
207 | |
|
|
208 | # @FUNCTION: texlive-module_make_language_lua_lines |
|
|
209 | # @DESCRIPTION: |
|
|
210 | # Only valid for TeXLive 2010. |
|
|
211 | # Creates a language.${PN}.dat.lua entry to put in /etc/texmf/language.dat.lua.d |
|
|
212 | # It parses the AddHyphen directive of tlpobj files to create it. |
|
|
213 | |
|
|
214 | texlive-module_make_language_lua_lines() { |
|
|
215 | local lefthyphenmin righthyphenmin synonyms name file file_patterns file_exceptions luaspecial |
|
|
216 | local dest="${S}/language.${PN}.dat.lua" |
|
|
217 | eval $@ |
|
|
218 | einfo "Generating language.dat.lua entry for $@" |
|
|
219 | printf "\t['%s'] = {\n" "$name" >> "$dest" |
|
|
220 | printf "\t\tloader = '%s',\n" "$file" >> "$dest" |
|
|
221 | printf "\t\tlefthyphenmin = %s,\n\t\trighthyphenmin = %s,\n" "$lefthyphenmin" "$righthyphenmin" >> "$dest" |
|
|
222 | printf "\t\tsynonyms = {%s },\n" "$(texlive-module_synonyms_to_language_lua_line "$synonyms")" >> "$dest" |
|
|
223 | [ -n "$file_patterns" ] && printf "\t\tpatterns = '%s',\n" "$file_patterns" >> "$dest" |
|
|
224 | [ -n "$file_exceptions" ] && printf "\t\thyphenation = '%s',\n" "$file_exceptions" >> "$dest" |
|
|
225 | [ -n "$luaspecial" ] && printf "\t\tspecial = '%s',\n" "$luaspecial" >> "$dest" |
|
|
226 | printf "\t},\n" >> "$dest" |
|
|
227 | } |
|
|
228 | |
| 188 | # @FUNCTION: texlive-module_src_compile |
229 | # @FUNCTION: texlive-module_src_compile |
| 189 | # @DESCRIPTION: |
230 | # @DESCRIPTION: |
| 190 | # exported function: |
231 | # exported function: |
| 191 | # Will look for format.foo.cnf and build foo format files using fmtutil |
232 | # 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 |
233 | # (provided by texlive-core). The compiled format files will be sent to |
| … | |
… | |
| 199 | texlive-module_src_compile() { |
240 | texlive-module_src_compile() { |
| 200 | # Generate config files |
241 | # Generate config files |
| 201 | # TeX Live 2007 was providing lists. For 2008 they are now tlpobj. |
242 | # TeX Live 2007 was providing lists. For 2008 they are now tlpobj. |
| 202 | for i in "${S}"/tlpkg/tlpobj/*; |
243 | for i in "${S}"/tlpkg/tlpobj/*; |
| 203 | do |
244 | do |
| 204 | grep '^execute ' "${i}" | sed -e 's/^execute //' | tr ' ' '@' |sort|uniq >> "${T}/jobs" |
245 | grep '^execute ' "${i}" | sed -e 's/^execute //' | tr ' \t' '@@' |sort|uniq >> "${T}/jobs" |
| 205 | done |
246 | done |
| 206 | |
247 | |
| 207 | for i in $(<"${T}/jobs"); |
248 | for i in $(<"${T}/jobs"); |
| 208 | do |
249 | do |
| 209 | j="$(echo $i | tr '@' ' ')" |
250 | j="$(echo $i | tr '@' ' ')" |
| … | |
… | |
| 218 | echo "p +${parameter}" >> "${S}/${PN}-config.ps";; |
259 | echo "p +${parameter}" >> "${S}/${PN}-config.ps";; |
| 219 | addDvipdfmMap) |
260 | addDvipdfmMap) |
| 220 | echo "f ${parameter}" >> "${S}/${PN}-config";; |
261 | echo "f ${parameter}" >> "${S}/${PN}-config";; |
| 221 | AddHyphen) |
262 | AddHyphen) |
| 222 | texlive-module_make_language_def_lines "$parameter" |
263 | texlive-module_make_language_def_lines "$parameter" |
| 223 | texlive-module_make_language_dat_lines "$parameter";; |
264 | texlive-module_make_language_dat_lines "$parameter" |
|
|
265 | [ "${PV#2008}" = "${PV}" -a "${PV#2009}" = "${PV}" ] && texlive-module_make_language_lua_lines "$parameter" |
|
|
266 | ;; |
| 224 | AddFormat) |
267 | AddFormat) |
| 225 | texlive-module_add_format "$parameter";; |
268 | texlive-module_add_format "$parameter";; |
| 226 | BuildFormat) |
269 | BuildFormat) |
| 227 | einfo "Format $parameter already built.";; |
270 | einfo "Format $parameter already built.";; |
| 228 | BuildLanguageDat) |
271 | BuildLanguageDat) |
| … | |
… | |
| 286 | |
329 | |
| 287 | if [ -f "${S}/language.${PN}.dat" ] ; then |
330 | if [ -f "${S}/language.${PN}.dat" ] ; then |
| 288 | insinto /etc/texmf/language.dat.d |
331 | insinto /etc/texmf/language.dat.d |
| 289 | doins "${S}/language.${PN}.dat" |
332 | doins "${S}/language.${PN}.dat" |
| 290 | fi |
333 | fi |
|
|
334 | |
|
|
335 | if [ -f "${S}/language.${PN}.dat.lua" ] ; then |
|
|
336 | insinto /etc/texmf/language.dat.lua.d |
|
|
337 | doins "${S}/language.${PN}.dat.lua" |
|
|
338 | fi |
|
|
339 | |
| 291 | [ -n "${TEXLIVE_MODULE_BINSCRIPTS}" ] && dobin_texmf_scripts ${TEXLIVE_MODULE_BINSCRIPTS} |
340 | [ -n "${TEXLIVE_MODULE_BINSCRIPTS}" ] && dobin_texmf_scripts ${TEXLIVE_MODULE_BINSCRIPTS} |
| 292 | |
341 | |
| 293 | texlive-common_handle_config_files |
342 | texlive-common_handle_config_files |
| 294 | } |
343 | } |
| 295 | |
344 | |