| 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.54 2010/10/24 00:41:41 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: |
| 24 | # 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 |
| 25 | # SRC_URI: |
28 | # SRC_URI: |
| … | |
… | |
| 29 | |
32 | |
| 30 | # @ECLASS-VARIABLE: TEXLIVE_MODULE_DOC_CONTENTS |
33 | # @ECLASS-VARIABLE: TEXLIVE_MODULE_DOC_CONTENTS |
| 31 | # @DESCRIPTION: |
34 | # @DESCRIPTION: |
| 32 | # 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. |
| 33 | # 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 |
| 34 | # valid for TeX Live 2008 and later |
37 | # valid for TeX Live 2008 and later. |
| 35 | |
38 | |
| 36 | # @ECLASS-VARIABLE: TEXLIVE_MODULE_SRC_CONTENTS |
39 | # @ECLASS-VARIABLE: TEXLIVE_MODULE_SRC_CONTENTS |
| 37 | # @DESCRIPTION: |
40 | # @DESCRIPTION: |
| 38 | # 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. |
| 39 | # 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 |
| 40 | # valid for TeX Live 2008 and later |
43 | # valid for TeX Live 2008 and later. |
| 41 | |
44 | |
| 42 | # @ECLASS-VARIABLE: TEXLIVE_MODULE_BINSCRIPTS |
45 | # @ECLASS-VARIABLE: TEXLIVE_MODULE_BINSCRIPTS |
| 43 | # @DESCRIPTION: |
46 | # @DESCRIPTION: |
| 44 | # 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 |
| 45 | # 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 |
| … | |
… | |
| 57 | |
60 | |
| 58 | COMMON_DEPEND=">=app-text/texlive-core-${TL_PV:-${PV}}" |
61 | COMMON_DEPEND=">=app-text/texlive-core-${TL_PV:-${PV}}" |
| 59 | |
62 | |
| 60 | IUSE="source" |
63 | IUSE="source" |
| 61 | |
64 | |
| 62 | # 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. |
| 63 | # .tar.xz |
66 | # For 2009 and 2010 they are now .tar.xz |
| 64 | if [ "${PV#2008}" != "${PV}" ]; then |
67 | if [ "${PV#2008}" != "${PV}" ]; then |
| 65 | PKGEXT=tar.lzma |
68 | PKGEXT=tar.lzma |
| 66 | DEPEND="${COMMON_DEPEND} |
69 | DEPEND="${COMMON_DEPEND} |
| 67 | || ( app-arch/xz-utils app-arch/lzma-utils )" |
70 | || ( app-arch/xz-utils app-arch/lzma-utils )" |
| 68 | else |
71 | else |
| … | |
… | |
| 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 and later. |
| 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. |
|
|
109 | # If EAPI supports tar.xz then it calls unpack instead of its own unpacker. |
|
|
110 | # After unpacking, the files that need to be relocated are moved accordingly. |
| 106 | |
111 | |
| 107 | RELOC_TARGET=texmf-dist |
112 | RELOC_TARGET=texmf-dist |
| 108 | |
113 | |
| 109 | texlive-module_src_unpack() { |
114 | texlive-module_src_unpack() { |
|
|
115 | if has "${EAPI:-0}" 0 1 2 ; then |
| 110 | local i s |
116 | local i s |
| 111 | for i in ${A} |
117 | for i in ${A} |
| 112 | do |
118 | do |
| 113 | s="${DISTDIR%/}/${i}" |
119 | s="${DISTDIR%/}/${i}" |
| 114 | einfo "Unpacking ${s} to ${PWD}" |
120 | einfo "Unpacking ${s} to ${PWD}" |
| 115 | test -s "${s}" || die "${s} does not exist" |
121 | test -s "${s}" || die "${s} does not exist" |
| 116 | xz -dc -- "${s}" | tar xof - || die "Unpacking ${s} failed" |
122 | xz -dc -- "${s}" | tar xof - || die "Unpacking ${s} failed" |
| 117 | done |
123 | done |
|
|
124 | else |
|
|
125 | unpack ${A} |
|
|
126 | fi |
|
|
127 | |
| 118 | grep RELOC tlpkg/tlpobj/* | awk '{print $2}' | sed 's#^RELOC/##' > "${T}/reloclist" |
128 | 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" |
129 | { for i in $(<"${T}/reloclist"); do dirname $i; done; } | uniq > "${T}/dirlist" |
| 120 | for i in $(<"${T}/dirlist"); do |
130 | for i in $(<"${T}/dirlist"); do |
| 121 | [ -d "${RELOC_TARGET}/${i}" ] || mkdir -p "${RELOC_TARGET}/${i}" |
131 | [ -d "${RELOC_TARGET}/${i}" ] || mkdir -p "${RELOC_TARGET}/${i}" |
| 122 | done |
132 | done |
| … | |
… | |
| 128 | fi |
138 | fi |
| 129 | |
139 | |
| 130 | # @FUNCTION: texlive-module_add_format |
140 | # @FUNCTION: texlive-module_add_format |
| 131 | # @DESCRIPTION: |
141 | # @DESCRIPTION: |
| 132 | # Creates/appends to a format.${PN}.cnf file for fmtutil. |
142 | # Creates/appends to a format.${PN}.cnf file for fmtutil. |
|
|
143 | # It parses the AddFormat directive of tlpobj files to create it. |
| 133 | # This will make fmtutil generate the formats when asked and allow the remaining |
144 | # This will make fmtutil generate the formats when asked and allow the remaining |
| 134 | # src_compile phase to build the formats |
145 | # src_compile phase to build the formats. |
| 135 | |
146 | |
| 136 | texlive-module_add_format() { |
147 | texlive-module_add_format() { |
| 137 | local name engine mode patterns options |
148 | local name engine mode patterns options |
| 138 | eval $@ |
149 | eval $@ |
| 139 | einfo "Appending to format.${PN}.cnf for $@" |
150 | einfo "Appending to format.${PN}.cnf for $@" |
| 140 | [ -d texmf/fmtutil ] || mkdir -p texmf/fmtutil |
151 | [ -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; } |
152 | [ -f texmf/fmtutil/format.${PN}.cnf ] || { echo "# Generated for ${PN} by texlive-module.eclass" > texmf/fmtutil/format.${PN}.cnf; } |
| 142 | if [ "${mode}" == "disabled" ]; then |
153 | if [ "${mode}" = "disabled" ]; then |
| 143 | printf "#! " >> texmf/fmtutil/format.${PN}.cnf |
154 | printf "#! " >> texmf/fmtutil/format.${PN}.cnf |
| 144 | fi |
155 | fi |
| 145 | [ -z "${patterns}" ] && patterns="-" |
156 | [ -z "${patterns}" ] && patterns="-" |
| 146 | printf "${name}\t${engine}\t${patterns}\t${options}\n" >> texmf/fmtutil/format.${PN}.cnf |
157 | printf "${name}\t${engine}\t${patterns}\t${options}\n" >> texmf/fmtutil/format.${PN}.cnf |
| 147 | } |
158 | } |
| 148 | |
159 | |
| 149 | # @FUNCTION: texlive-module_make_language_def_lines |
160 | # @FUNCTION: texlive-module_make_language_def_lines |
| 150 | # @DESCRIPTION: |
161 | # @DESCRIPTION: |
| 151 | # Creates a language.${PN}.def entry to put in /etc/texmf/language.def.d |
162 | # 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. |
163 | # It parses the AddHyphen directive of tlpobj files to create it. |
| 153 | |
164 | |
| 154 | texlive-module_make_language_def_lines() { |
165 | texlive-module_make_language_def_lines() { |
| 155 | local lefthyphenmin righthyphenmin synonyms name file |
166 | local lefthyphenmin righthyphenmin synonyms name file file_patterns file_exceptions luaspecial |
| 156 | eval $@ |
167 | eval $@ |
| 157 | einfo "Generating language.def entry for $@" |
168 | einfo "Generating language.def entry for $@" |
| 158 | [ -z "$lefthyphenmin" ] && lefthyphenmin="2" |
169 | [ -z "$lefthyphenmin" ] && lefthyphenmin="2" |
| 159 | [ -z "$righthyphenmin" ] && righthyphenmin="3" |
170 | [ -z "$righthyphenmin" ] && righthyphenmin="3" |
| 160 | echo "\\addlanguage{$name}{$file}{}{$lefthyphenmin}{$righthyphenmin}" >> "${S}/language.${PN}.def" |
171 | echo "\\addlanguage{$name}{$file}{}{$lefthyphenmin}{$righthyphenmin}" >> "${S}/language.${PN}.def" |
| … | |
… | |
| 166 | fi |
177 | fi |
| 167 | } |
178 | } |
| 168 | |
179 | |
| 169 | # @FUNCTION: texlive-module_make_language_dat_lines |
180 | # @FUNCTION: texlive-module_make_language_dat_lines |
| 170 | # @DESCRIPTION: |
181 | # @DESCRIPTION: |
| 171 | # Only valid for TeXLive 2008. |
|
|
| 172 | # Creates a language.${PN}.dat entry to put in /etc/texmf/language.dat.d |
182 | # 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. |
183 | # It parses the AddHyphen directive of tlpobj files to create it. |
| 174 | |
184 | |
| 175 | texlive-module_make_language_dat_lines() { |
185 | texlive-module_make_language_dat_lines() { |
| 176 | local lefthyphenmin righthyphenmin synonyms name file |
186 | local lefthyphenmin righthyphenmin synonyms name file file_patterns file_exceptions luaspecial |
| 177 | eval $@ |
187 | eval $@ |
| 178 | einfo "Generating language.dat entry for $@" |
188 | einfo "Generating language.dat entry for $@" |
| 179 | echo "$name $file" >> "${S}/language.${PN}.dat" |
189 | echo "$name $file" >> "${S}/language.${PN}.dat" |
| 180 | if [ -n "$synonyms" ] ; then |
190 | if [ -n "$synonyms" ] ; then |
| 181 | for i in $(echo $synonyms | tr ',' ' ') ; do |
191 | for i in $(echo $synonyms | tr ',' ' ') ; do |
| … | |
… | |
| 183 | echo "=$i" >> "${S}/language.${PN}.dat" |
193 | echo "=$i" >> "${S}/language.${PN}.dat" |
| 184 | done |
194 | done |
| 185 | fi |
195 | fi |
| 186 | } |
196 | } |
| 187 | |
197 | |
|
|
198 | # @FUNCTION: texlive-module_synonyms_to_language_lua_line |
|
|
199 | # @DESCRIPTION: |
|
|
200 | # Helper function for texlive-module_make_language_lua_lines to generate a |
|
|
201 | # correctly formatted synonyms entry for language.dat.lua. |
|
|
202 | |
|
|
203 | texlive-module_synonyms_to_language_lua_line() { |
|
|
204 | local prev="" |
|
|
205 | for i in $(echo $@ | tr ',' ' ') ; do |
|
|
206 | printf "${prev} '%s'" $i |
|
|
207 | prev="," |
|
|
208 | done |
|
|
209 | } |
|
|
210 | |
|
|
211 | # @FUNCTION: texlive-module_make_language_lua_lines |
|
|
212 | # @DESCRIPTION: |
|
|
213 | # Only valid for TeXLive 2010. |
|
|
214 | # Creates a language.${PN}.dat.lua entry to put in |
|
|
215 | # /etc/texmf/language.dat.lua.d. |
|
|
216 | # It parses the AddHyphen directive of tlpobj files to create it. |
|
|
217 | |
|
|
218 | texlive-module_make_language_lua_lines() { |
|
|
219 | local lefthyphenmin righthyphenmin synonyms name file file_patterns file_exceptions luaspecial |
|
|
220 | local dest="${S}/language.${PN}.dat.lua" |
|
|
221 | eval $@ |
|
|
222 | [ -z "$lefthyphenmin" ] && lefthyphenmin="2" |
|
|
223 | [ -z "$righthyphenmin" ] && righthyphenmin="3" |
|
|
224 | einfo "Generating language.dat.lua entry for $@" |
|
|
225 | printf "\t['%s'] = {\n" "$name" >> "$dest" |
|
|
226 | printf "\t\tloader = '%s',\n" "$file" >> "$dest" |
|
|
227 | printf "\t\tlefthyphenmin = %s,\n\t\trighthyphenmin = %s,\n" "$lefthyphenmin" "$righthyphenmin" >> "$dest" |
|
|
228 | printf "\t\tsynonyms = {%s },\n" "$(texlive-module_synonyms_to_language_lua_line "$synonyms")" >> "$dest" |
|
|
229 | [ -n "$file_patterns" ] && printf "\t\tpatterns = '%s',\n" "$file_patterns" >> "$dest" |
|
|
230 | [ -n "$file_exceptions" ] && printf "\t\thyphenation = '%s',\n" "$file_exceptions" >> "$dest" |
|
|
231 | [ -n "$luaspecial" ] && printf "\t\tspecial = '%s',\n" "$luaspecial" >> "$dest" |
|
|
232 | printf "\t},\n" >> "$dest" |
|
|
233 | } |
|
|
234 | |
| 188 | # @FUNCTION: texlive-module_src_compile |
235 | # @FUNCTION: texlive-module_src_compile |
| 189 | # @DESCRIPTION: |
236 | # @DESCRIPTION: |
| 190 | # exported function: |
237 | # exported function: |
| 191 | # Will look for format.foo.cnf and build foo format files using fmtutil |
238 | # Generates the config files that are to be installed in /etc/texmf; |
|
|
239 | # texmf-update script will take care of merging the different config files for |
|
|
240 | # different packages in a single one used by the whole tex installation. |
|
|
241 | # |
|
|
242 | # Once the config files are generated, we build the format files using fmtutil |
| 192 | # (provided by texlive-core). The compiled format files will be sent to |
243 | # (provided by texlive-core). The compiled format files will be sent to |
| 193 | # texmf-var/web2c, like fmtutil defaults to but with some trick to stay in the |
244 | # texmf-var/web2c, like fmtutil defaults to but with some trick to stay in the |
| 194 | # sandbox |
245 | # sandbox. |
| 195 | # The next step is to generate config files that are to be installed in |
|
|
| 196 | # /etc/texmf; texmf-update script will take care of merging the different config |
|
|
| 197 | # files for different packages in a single one used by the whole tex installation. |
|
|
| 198 | |
246 | |
| 199 | texlive-module_src_compile() { |
247 | texlive-module_src_compile() { |
| 200 | # Generate config files |
248 | # Generate config files from the tlpobj files provided by TeX Live 2008 and |
| 201 | # TeX Live 2007 was providing lists. For 2008 they are now tlpobj. |
249 | # later |
| 202 | for i in "${S}"/tlpkg/tlpobj/*; |
250 | for i in "${S}"/tlpkg/tlpobj/*; |
| 203 | do |
251 | do |
| 204 | grep '^execute ' "${i}" | sed -e 's/^execute //' | tr ' ' '@' |sort|uniq >> "${T}/jobs" |
252 | grep '^execute ' "${i}" | sed -e 's/^execute //' | tr ' \t' '@@' |sort|uniq >> "${T}/jobs" |
| 205 | done |
253 | done |
| 206 | |
254 | |
| 207 | for i in $(<"${T}/jobs"); |
255 | for i in $(<"${T}/jobs"); |
| 208 | do |
256 | do |
| 209 | j="$(echo $i | tr '@' ' ')" |
257 | j="$(echo $i | tr '@' ' ')" |
| … | |
… | |
| 218 | echo "p +${parameter}" >> "${S}/${PN}-config.ps";; |
266 | echo "p +${parameter}" >> "${S}/${PN}-config.ps";; |
| 219 | addDvipdfmMap) |
267 | addDvipdfmMap) |
| 220 | echo "f ${parameter}" >> "${S}/${PN}-config";; |
268 | echo "f ${parameter}" >> "${S}/${PN}-config";; |
| 221 | AddHyphen) |
269 | AddHyphen) |
| 222 | texlive-module_make_language_def_lines "$parameter" |
270 | texlive-module_make_language_def_lines "$parameter" |
| 223 | texlive-module_make_language_dat_lines "$parameter";; |
271 | texlive-module_make_language_dat_lines "$parameter" |
|
|
272 | [ "${PV#2008}" = "${PV}" -a "${PV#2009}" = "${PV}" ] && texlive-module_make_language_lua_lines "$parameter" |
|
|
273 | ;; |
| 224 | AddFormat) |
274 | AddFormat) |
| 225 | texlive-module_add_format "$parameter";; |
275 | texlive-module_add_format "$parameter";; |
| 226 | BuildFormat) |
276 | BuildFormat) |
| 227 | einfo "Format $parameter already built.";; |
277 | einfo "Format $parameter already built.";; |
| 228 | BuildLanguageDat) |
278 | BuildLanguageDat) |
| … | |
… | |
| 248 | } |
298 | } |
| 249 | |
299 | |
| 250 | # @FUNCTION: texlive-module_src_install |
300 | # @FUNCTION: texlive-module_src_install |
| 251 | # @DESCRIPTION: |
301 | # @DESCRIPTION: |
| 252 | # exported function: |
302 | # exported function: |
| 253 | # Install texmf and config files to the system |
303 | # Installs texmf and config files to the system. |
| 254 | |
304 | |
| 255 | texlive-module_src_install() { |
305 | texlive-module_src_install() { |
| 256 | for i in texmf/fmtutil/format*.cnf; do |
306 | for i in texmf/fmtutil/format*.cnf; do |
| 257 | [ -f "${i}" ] && etexlinks "${i}" |
307 | [ -f "${i}" ] && etexlinks "${i}" |
| 258 | done |
308 | done |
| … | |
… | |
| 286 | |
336 | |
| 287 | if [ -f "${S}/language.${PN}.dat" ] ; then |
337 | if [ -f "${S}/language.${PN}.dat" ] ; then |
| 288 | insinto /etc/texmf/language.dat.d |
338 | insinto /etc/texmf/language.dat.d |
| 289 | doins "${S}/language.${PN}.dat" |
339 | doins "${S}/language.${PN}.dat" |
| 290 | fi |
340 | fi |
|
|
341 | |
|
|
342 | if [ -f "${S}/language.${PN}.dat.lua" ] ; then |
|
|
343 | insinto /etc/texmf/language.dat.lua.d |
|
|
344 | doins "${S}/language.${PN}.dat.lua" |
|
|
345 | fi |
|
|
346 | |
| 291 | [ -n "${TEXLIVE_MODULE_BINSCRIPTS}" ] && dobin_texmf_scripts ${TEXLIVE_MODULE_BINSCRIPTS} |
347 | [ -n "${TEXLIVE_MODULE_BINSCRIPTS}" ] && dobin_texmf_scripts ${TEXLIVE_MODULE_BINSCRIPTS} |
| 292 | |
348 | |
| 293 | texlive-common_handle_config_files |
349 | texlive-common_handle_config_files |
| 294 | } |
350 | } |
| 295 | |
351 | |
| 296 | # @FUNCTION: texlive-module_pkg_postinst |
352 | # @FUNCTION: texlive-module_pkg_postinst |
| 297 | # @DESCRIPTION: |
353 | # @DESCRIPTION: |
| 298 | # exported function: |
354 | # exported function: |
| 299 | # run texmf-update to ensure the tex installation is consistent with the |
355 | # Run texmf-update to ensure the tex installation is consistent with the |
| 300 | # installed texmf trees. |
356 | # installed texmf trees. |
| 301 | |
357 | |
| 302 | texlive-module_pkg_postinst() { |
358 | texlive-module_pkg_postinst() { |
| 303 | if [ "$ROOT" = "/" ] && [ -x /usr/sbin/texmf-update ] ; then |
359 | if [ "$ROOT" = "/" ] && [ -x /usr/sbin/texmf-update ] ; then |
| 304 | /usr/sbin/texmf-update |
360 | /usr/sbin/texmf-update |
| … | |
… | |
| 310 | } |
366 | } |
| 311 | |
367 | |
| 312 | # @FUNCTION: texlive-module_pkg_postrm |
368 | # @FUNCTION: texlive-module_pkg_postrm |
| 313 | # @DESCRIPTION: |
369 | # @DESCRIPTION: |
| 314 | # exported function: |
370 | # exported function: |
| 315 | # run texmf-update to ensure the tex installation is consistent with the |
371 | # Run texmf-update to ensure the tex installation is consistent with the |
| 316 | # installed texmf trees. |
372 | # installed texmf trees. |
| 317 | |
373 | |
| 318 | texlive-module_pkg_postrm() { |
374 | texlive-module_pkg_postrm() { |
| 319 | if [ "$ROOT" = "/" ] && [ -x /usr/sbin/texmf-update ] ; then |
375 | if [ "$ROOT" = "/" ] && [ -x /usr/sbin/texmf-update ] ; then |
| 320 | /usr/sbin/texmf-update |
376 | /usr/sbin/texmf-update |