| 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.28 2010/01/07 18:42:47 aballier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/texlive-module.eclass,v 1.34 2010/01/13 15:16:49 fauli 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 | # |
| … | |
… | |
| 22 | # @ECLASS-VARIABLE: TEXLIVE_MODULE_CONTENTS |
22 | # @ECLASS-VARIABLE: TEXLIVE_MODULE_CONTENTS |
| 23 | # @DESCRIPTION: |
23 | # @DESCRIPTION: |
| 24 | # The list of packages that will be installed. This variable will be expanded to |
24 | # The list of packages that will be installed. This variable will be expanded to |
| 25 | # SRC_URI: |
25 | # SRC_URI: |
| 26 | # |
26 | # |
| 27 | # For TeX Live 2007: foo -> texlive-module-foo-${PV}.zip |
|
|
| 28 | # For TeX Live 2008: foo -> texlive-module-foo-${PV}.tar.lzma |
27 | # For TeX Live 2008: foo -> texlive-module-foo-${PV}.tar.lzma |
|
|
28 | # For TeX Live 2009: foo -> texlive-module-foo-${PV}.tar.xz |
| 29 | |
29 | |
| 30 | # @ECLASS-VARIABLE: TEXLIVE_MODULE_DOC_CONTENTS |
30 | # @ECLASS-VARIABLE: TEXLIVE_MODULE_DOC_CONTENTS |
| 31 | # @DESCRIPTION: |
31 | # @DESCRIPTION: |
| 32 | # The list of packages that will be installed if the doc useflag is enabled. |
32 | # 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 |
33 | # Expansion to SRC_URI is the same as for TEXLIVE_MODULE_CONTENTS. This is only |
| 34 | # valid for TeX Live 2008 |
34 | # valid for TeX Live 2008 and later |
| 35 | |
35 | |
| 36 | # @ECLASS-VARIABLE: TEXLIVE_MODULE_SRC_CONTENTS |
36 | # @ECLASS-VARIABLE: TEXLIVE_MODULE_SRC_CONTENTS |
| 37 | # @DESCRIPTION: |
37 | # @DESCRIPTION: |
| 38 | # The list of packages that will be installed if the source useflag is enabled. |
38 | # 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 |
39 | # Expansion to SRC_URI is the same as for TEXLIVE_MODULE_CONTENTS. This is only |
| 40 | # valid for TeX Live 2008 |
40 | # valid for TeX Live 2008 and later |
| 41 | |
41 | |
| 42 | # @ECLASS-VARIABLE: TEXLIVE_MODULE_BINSCRIPTS |
42 | # @ECLASS-VARIABLE: TEXLIVE_MODULE_BINSCRIPTS |
| 43 | # @DESCRIPTION: |
43 | # @DESCRIPTION: |
| 44 | # A space separated list of files that are in fact scripts installed in the |
44 | # 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 |
45 | # texmf tree and that we want to be available directly. They will be installed in |
| 46 | # /usr/bin. |
46 | # /usr/bin. |
| 47 | |
47 | |
|
|
48 | # @ECLASS-VARIABLE: TL_PV |
|
|
49 | # @DESCRIPTION: |
|
|
50 | # Normally the module's PV reflects the TeXLive release it belongs to. |
|
|
51 | # If this is not the case, TL_PV takes the version number for the |
|
|
52 | # needed app-text/texlive-core. |
|
|
53 | |
| 48 | inherit texlive-common |
54 | inherit texlive-common |
| 49 | |
55 | |
| 50 | HOMEPAGE="http://www.tug.org/texlive/" |
56 | HOMEPAGE="http://www.tug.org/texlive/" |
| 51 | |
57 | |
| 52 | COMMON_DEPEND=">=app-text/texlive-core-${PV}" |
58 | COMMON_DEPEND=">=app-text/texlive-core-${TL_PV:-${PV}}" |
| 53 | |
59 | |
| 54 | IUSE="source" |
60 | IUSE="source" |
| 55 | |
61 | |
| 56 | # TeX Live 2008 was providing .tar.lzma files of CTAN packages. For 2009 they are now |
62 | # TeX Live 2008 was providing .tar.lzma files of CTAN packages. For 2009 they are now |
| 57 | # .tar.xz |
63 | # .tar.xz |
| … | |
… | |
| 96 | # @FUNCTION: texlive-module_src_unpack |
102 | # @FUNCTION: texlive-module_src_unpack |
| 97 | # @DESCRIPTION: |
103 | # @DESCRIPTION: |
| 98 | # Only for TeX Live 2009. |
104 | # Only for TeX Live 2009. |
| 99 | # 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. |
| 100 | |
106 | |
|
|
107 | RELOC_TARGET=texmf-dist |
|
|
108 | |
| 101 | texlive-module_src_unpack() { |
109 | texlive-module_src_unpack() { |
| 102 | local i s |
110 | local i s |
| 103 | for i in ${A} |
111 | for i in ${A} |
| 104 | do |
112 | do |
| 105 | s="${DISTDIR%/}/${i}" |
113 | s="${DISTDIR%/}/${i}" |
| 106 | einfo "Unpacking ${s} to ${PWD}" |
114 | einfo "Unpacking ${s} to ${PWD}" |
| 107 | test -s "${s}" || die "${s} does not exist" |
115 | test -s "${s}" || die "${s} does not exist" |
| 108 | xz -dc -- "${s}" | tar xof - || die "Unpacking ${s} failed" |
116 | xz -dc -- "${s}" | tar xof - || die "Unpacking ${s} failed" |
| 109 | done |
117 | done |
|
|
118 | 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" |
|
|
120 | for i in $(<"${T}/dirlist"); do |
|
|
121 | [ -d "${RELOC_TARGET}/${i}" ] || mkdir -p "${RELOC_TARGET}/${i}" |
|
|
122 | done |
|
|
123 | for i in $(<"${T}/reloclist"); do |
|
|
124 | mv "${i}" "${RELOC_TARGET}"/$(dirname "${i}") || die "failed to relocate ${i} to ${RELOC_TARGET}/$(dirname ${i})" |
|
|
125 | done |
| 110 | } |
126 | } |
| 111 | |
127 | |
| 112 | fi |
128 | fi |
|
|
129 | |
|
|
130 | # @FUNCTION: texlive-module_add_format |
|
|
131 | # @DESCRIPTION: |
|
|
132 | # Creates/appends to a format.${PN}.cnf file for fmtutil. |
|
|
133 | # This will make fmtutil generate the formats when asked and allow the remaining |
|
|
134 | # src_compile phase to build the formats |
|
|
135 | |
|
|
136 | texlive-module_add_format() { |
|
|
137 | local name engine mode patterns options |
|
|
138 | eval $@ |
|
|
139 | einfo "Appending to format.${PN}.cnf for $@" |
|
|
140 | [ -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; } |
|
|
142 | if [ "${mode}" == "disabled" ]; then |
|
|
143 | printf "#! " >> texmf/fmtutil/format.${PN}.cnf |
|
|
144 | fi |
|
|
145 | [ -z "${patterns}" ] && patterns="-" |
|
|
146 | printf "${name}\t${engine}\t${patterns}\t${options}\n" >> texmf/fmtutil/format.${PN}.cnf |
|
|
147 | } |
| 113 | |
148 | |
| 114 | # @FUNCTION: texlive-module_make_language_def_lines |
149 | # @FUNCTION: texlive-module_make_language_def_lines |
| 115 | # @DESCRIPTION: |
150 | # @DESCRIPTION: |
| 116 | # Creates a language.${PN}.def entry to put in /etc/texmf/language.def.d |
151 | # Creates a language.${PN}.def entry to put in /etc/texmf/language.def.d |
| 117 | # It parses the AddHyphen directive of tlpobj files to create it. |
152 | # It parses the AddHyphen directive of tlpobj files to create it. |
| … | |
… | |
| 160 | # The next step is to generate config files that are to be installed in |
195 | # The next step is to generate config files that are to be installed in |
| 161 | # /etc/texmf; texmf-update script will take care of merging the different config |
196 | # /etc/texmf; texmf-update script will take care of merging the different config |
| 162 | # files for different packages in a single one used by the whole tex installation. |
197 | # files for different packages in a single one used by the whole tex installation. |
| 163 | |
198 | |
| 164 | texlive-module_src_compile() { |
199 | texlive-module_src_compile() { |
| 165 | # Build format files |
|
|
| 166 | for i in texmf/fmtutil/format*.cnf; do |
|
|
| 167 | if [ -f "${i}" ]; then |
|
|
| 168 | einfo "Building format ${i}" |
|
|
| 169 | VARTEXFONTS="${T}/fonts" TEXMFHOME="${S}/texmf:${S}/texmf-dist:${S}/texmf-var"\ |
|
|
| 170 | env -u TEXINPUTS fmtutil --cnffile "${i}" --fmtdir "${S}/texmf-var/web2c" --all\ |
|
|
| 171 | || die "failed to build format ${i}" |
|
|
| 172 | fi |
|
|
| 173 | done |
|
|
| 174 | |
|
|
| 175 | # Generate config files |
200 | # Generate config files |
| 176 | # TeX Live 2007 was providing lists. For 2008 they are now tlpobj. |
201 | # TeX Live 2007 was providing lists. For 2008 they are now tlpobj. |
| 177 | for i in "${S}"/tlpkg/tlpobj/*; |
202 | for i in "${S}"/tlpkg/tlpobj/*; |
| 178 | do |
203 | do |
| 179 | grep '^execute ' "${i}" | sed -e 's/^execute //' | tr ' ' '@' |sort|uniq >> "${T}/jobs" |
204 | grep '^execute ' "${i}" | sed -e 's/^execute //' | tr ' ' '@' |sort|uniq >> "${T}/jobs" |
| … | |
… | |
| 194 | addDvipdfmMap) |
219 | addDvipdfmMap) |
| 195 | echo "f ${parameter}" >> "${S}/${PN}-config";; |
220 | echo "f ${parameter}" >> "${S}/${PN}-config";; |
| 196 | AddHyphen) |
221 | AddHyphen) |
| 197 | texlive-module_make_language_def_lines "$parameter" |
222 | texlive-module_make_language_def_lines "$parameter" |
| 198 | texlive-module_make_language_dat_lines "$parameter";; |
223 | texlive-module_make_language_dat_lines "$parameter";; |
|
|
224 | AddFormat) |
|
|
225 | texlive-module_add_format "$parameter";; |
| 199 | BuildFormat) |
226 | BuildFormat) |
| 200 | einfo "Format $parameter already built.";; |
227 | einfo "Format $parameter already built.";; |
| 201 | BuildLanguageDat) |
228 | BuildLanguageDat) |
| 202 | einfo "Language file $parameter already generated.";; |
229 | einfo "Language file $parameter already generated.";; |
| 203 | *) |
230 | *) |
| 204 | die "No rule to proccess ${command}. Please file a bug." |
231 | die "No rule to proccess ${command}. Please file a bug." |
| 205 | esac |
232 | esac |
| 206 | done |
233 | done |
| 207 | |
234 | |
|
|
235 | # Build format files |
|
|
236 | for i in texmf/fmtutil/format*.cnf; do |
|
|
237 | if [ -f "${i}" ]; then |
|
|
238 | einfo "Building format ${i}" |
|
|
239 | VARTEXFONTS="${T}/fonts" TEXMFHOME="${S}/texmf:${S}/texmf-dist:${S}/texmf-var"\ |
|
|
240 | env -u TEXINPUTS fmtutil --cnffile "${i}" --fmtdir "${S}/texmf-var/web2c" --all\ |
|
|
241 | || die "failed to build format ${i}" |
|
|
242 | fi |
|
|
243 | done |
|
|
244 | |
| 208 | # Delete ls-R files, these should not be created but better be certain they |
245 | # Delete ls-R files, these should not be created but better be certain they |
| 209 | # do not end up being installed. |
246 | # do not end up being installed. |
| 210 | find . -name 'ls-R' -delete |
247 | find . -name 'ls-R' -delete |
| 211 | } |
248 | } |
| 212 | |
249 | |