| 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.15 2008/08/22 11:31:40 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 | |
|
|
42 | # @ECLASS-VARIABLE: TEXLIVE_MODULE_BINSCRIPTS |
|
|
43 | # @DESCRIPTION: |
|
|
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 |
|
|
46 | # /usr/bin. |
|
|
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. |
| 41 | |
53 | |
| 42 | inherit texlive-common |
54 | inherit texlive-common |
| 43 | |
55 | |
| 44 | HOMEPAGE="http://www.tug.org/texlive/" |
56 | HOMEPAGE="http://www.tug.org/texlive/" |
| 45 | |
57 | |
| 46 | COMMON_DEPEND=">=app-text/texlive-core-${PV} |
58 | COMMON_DEPEND=">=app-text/texlive-core-${TL_PV:-${PV}}" |
| 47 | ${TEXLIVE_MODULES_DEPS}" |
|
|
| 48 | |
59 | |
| 49 | IUSE="" |
60 | IUSE="source" |
| 50 | |
61 | |
| 51 | # TeX Live 2007 was providing .zip files of CTAN packages. For 2008 they are now |
62 | # TeX Live 2008 was providing .tar.lzma files of CTAN packages. For 2009 they are now |
| 52 | # .tar.lzma |
63 | # .tar.xz |
| 53 | if [ -z "${PV##2007*}" ] ; then |
64 | if [ "${PV#2008}" != "${PV}" ]; then |
|
|
65 | PKGEXT=tar.lzma |
|
|
66 | DEPEND="${COMMON_DEPEND} |
|
|
67 | || ( app-arch/xz-utils app-arch/lzma-utils )" |
|
|
68 | else |
|
|
69 | PKGEXT=tar.xz |
|
|
70 | DEPEND="${COMMON_DEPEND} |
|
|
71 | app-arch/xz-utils" |
|
|
72 | fi |
|
|
73 | |
| 54 | for i in ${TEXLIVE_MODULE_CONTENTS}; do |
74 | for i in ${TEXLIVE_MODULE_CONTENTS}; do |
| 55 | SRC_URI="${SRC_URI} mirror://gentoo/texlive-module-${i}-${PV}.zip" |
75 | SRC_URI="${SRC_URI} mirror://gentoo/texlive-module-${i}-${PV}.${PKGEXT}" |
| 56 | done |
76 | done |
| 57 | DEPEND="${COMMON_DEPEND} |
|
|
| 58 | app-arch/unzip" |
|
|
| 59 | else |
|
|
| 60 | for i in ${TEXLIVE_MODULE_CONTENTS}; do |
|
|
| 61 | SRC_URI="${SRC_URI} mirror://gentoo/texlive-module-${i}-${PV}.tar.lzma" |
|
|
| 62 | done |
|
|
| 63 | DEPEND="${COMMON_DEPEND} |
|
|
| 64 | app-arch/lzma-utils" |
|
|
| 65 | IUSE="${IUSE} source" |
|
|
| 66 | |
77 | |
| 67 | # Forge doc SRC_URI |
78 | # Forge doc SRC_URI |
| 68 | [ -n "${PN##*documentation*}" ] && [ -n "${TEXLIVE_MODULE_DOC_CONTENTS}" ] && SRC_URI="${SRC_URI} doc? (" |
79 | [ -n "${PN##*documentation*}" ] && [ -n "${TEXLIVE_MODULE_DOC_CONTENTS}" ] && SRC_URI="${SRC_URI} doc? (" |
| 69 | for i in ${TEXLIVE_MODULE_DOC_CONTENTS}; do |
80 | for i in ${TEXLIVE_MODULE_DOC_CONTENTS}; do |
| 70 | SRC_URI="${SRC_URI} mirror://gentoo/texlive-module-${i}-${PV}.tar.lzma" |
81 | SRC_URI="${SRC_URI} mirror://gentoo/texlive-module-${i}-${PV}.${PKGEXT}" |
| 71 | done |
82 | done |
| 72 | [ -n "${PN##*documentation*}" ] && [ -n "${TEXLIVE_MODULE_DOC_CONTENTS}" ] && SRC_URI="${SRC_URI} )" |
83 | [ -n "${PN##*documentation*}" ] && [ -n "${TEXLIVE_MODULE_DOC_CONTENTS}" ] && SRC_URI="${SRC_URI} )" |
| 73 | |
84 | |
| 74 | # Forge source SRC_URI |
85 | # Forge source SRC_URI |
| 75 | if [ -n "${TEXLIVE_MODULE_SRC_CONTENTS}" ] ; then |
86 | if [ -n "${TEXLIVE_MODULE_SRC_CONTENTS}" ] ; then |
| 76 | SRC_URI="${SRC_URI} source? (" |
87 | SRC_URI="${SRC_URI} source? (" |
| 77 | for i in ${TEXLIVE_MODULE_SRC_CONTENTS}; do |
88 | for i in ${TEXLIVE_MODULE_SRC_CONTENTS}; do |
| 78 | SRC_URI="${SRC_URI} mirror://gentoo/texlive-module-${i}-${PV}.tar.lzma" |
89 | SRC_URI="${SRC_URI} mirror://gentoo/texlive-module-${i}-${PV}.${PKGEXT}" |
| 79 | done |
90 | done |
| 80 | SRC_URI="${SRC_URI} )" |
91 | SRC_URI="${SRC_URI} )" |
| 81 | fi |
92 | fi |
|
|
93 | |
|
|
94 | RDEPEND="${COMMON_DEPEND}" |
|
|
95 | |
|
|
96 | [ -z "${PN##*documentation*}" ] || IUSE="${IUSE} doc" |
|
|
97 | |
|
|
98 | S="${WORKDIR}" |
|
|
99 | |
|
|
100 | if [ "${PV#2008}" == "${PV}" ]; then |
|
|
101 | |
|
|
102 | # @FUNCTION: texlive-module_src_unpack |
|
|
103 | # @DESCRIPTION: |
|
|
104 | # Only for TeX Live 2009. |
|
|
105 | # Gives tar.xz unpack support until we can use an EAPI with that support. |
|
|
106 | |
|
|
107 | RELOC_TARGET=texmf-dist |
|
|
108 | |
|
|
109 | texlive-module_src_unpack() { |
|
|
110 | local i s |
|
|
111 | for i in ${A} |
|
|
112 | do |
|
|
113 | s="${DISTDIR%/}/${i}" |
|
|
114 | einfo "Unpacking ${s} to ${PWD}" |
|
|
115 | test -s "${s}" || die "${s} does not exist" |
|
|
116 | xz -dc -- "${s}" | tar xof - || die "Unpacking ${s} failed" |
|
|
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 |
|
|
126 | } |
|
|
127 | |
| 82 | fi |
128 | fi |
| 83 | |
129 | |
| 84 | RDEPEND="${COMMON_DEPEND}" |
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 |
| 85 | |
135 | |
| 86 | [ -z "${PN##*documentation*}" ] || IUSE="${IUSE} doc" |
136 | texlive-module_add_format() { |
| 87 | |
137 | local name engine mode patterns options |
| 88 | S="${WORKDIR}" |
138 | eval $@ |
| 89 | |
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 | } |
| 90 | |
148 | |
| 91 | # @FUNCTION: texlive-module_make_language_def_lines |
149 | # @FUNCTION: texlive-module_make_language_def_lines |
| 92 | # @DESCRIPTION: |
150 | # @DESCRIPTION: |
| 93 | # Only valid for TeXLive 2008. |
|
|
| 94 | # Creates a language.${PN}.def entry to put in /etc/texmf/langauge.def.d |
151 | # Creates a language.${PN}.def entry to put in /etc/texmf/language.def.d |
| 95 | # It parses the AddHyphen directive of tlpobj files to create it. |
152 | # It parses the AddHyphen directive of tlpobj files to create it. |
| 96 | |
153 | |
| 97 | texlive-module_make_language_def_lines() { |
154 | texlive-module_make_language_def_lines() { |
| 98 | local lefthyphenmin righthyphenmin synonyms name file |
155 | local lefthyphenmin righthyphenmin synonyms name file |
| 99 | eval $@ |
156 | eval $@ |
| … | |
… | |
| 110 | } |
167 | } |
| 111 | |
168 | |
| 112 | # @FUNCTION: texlive-module_make_language_dat_lines |
169 | # @FUNCTION: texlive-module_make_language_dat_lines |
| 113 | # @DESCRIPTION: |
170 | # @DESCRIPTION: |
| 114 | # Only valid for TeXLive 2008. |
171 | # Only valid for TeXLive 2008. |
| 115 | # Creates a language.${PN}.dat entry to put in /etc/texmf/langauge.dat.d |
172 | # Creates a language.${PN}.dat entry to put in /etc/texmf/language.dat.d |
| 116 | # It parses the AddHyphen directive of tlpobj files to create it. |
173 | # It parses the AddHyphen directive of tlpobj files to create it. |
| 117 | |
174 | |
| 118 | texlive-module_make_language_dat_lines() { |
175 | texlive-module_make_language_dat_lines() { |
| 119 | local lefthyphenmin righthyphenmin synonyms name file |
176 | local lefthyphenmin righthyphenmin synonyms name file |
| 120 | eval $@ |
177 | eval $@ |
| … | |
… | |
| 138 | # 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 |
| 139 | # /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 |
| 140 | # 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. |
| 141 | |
198 | |
| 142 | texlive-module_src_compile() { |
199 | texlive-module_src_compile() { |
| 143 | # Build format files |
|
|
| 144 | for i in texmf/fmtutil/format*.cnf; do |
|
|
| 145 | if [ -f "${i}" ]; then |
|
|
| 146 | einfo "Building format ${i}" |
|
|
| 147 | TEXMFHOME="${S}/texmf:${S}/texmf-dist"\ |
|
|
| 148 | fmtutil --cnffile "${i}" --fmtdir "${S}/texmf-var/web2c" --all\ |
|
|
| 149 | || die "failed to build format ${i}" |
|
|
| 150 | fi |
|
|
| 151 | done |
|
|
| 152 | |
|
|
| 153 | # Generate config files |
200 | # Generate config files |
| 154 | # 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. |
| 155 | if [ -z "${PV##2007*}" ] ; then |
|
|
| 156 | for i in "${S}"/texmf/lists/*; |
|
|
| 157 | do |
|
|
| 158 | grep '^!' "${i}" | sed -e 's/^!//' | tr ' ' '@' |sort|uniq >> "${T}/jobs" |
|
|
| 159 | done |
|
|
| 160 | else |
|
|
| 161 | for i in "${S}"/tlpkg/tlpobj/*; |
202 | for i in "${S}"/tlpkg/tlpobj/*; |
| 162 | do |
203 | do |
| 163 | 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" |
| 164 | done |
205 | done |
| 165 | fi |
|
|
| 166 | |
206 | |
| 167 | for i in $(<"${T}/jobs"); |
207 | for i in $(<"${T}/jobs"); |
| 168 | do |
208 | do |
| 169 | j="$(echo $i | tr '@' ' ')" |
209 | j="$(echo $i | tr '@' ' ')" |
| 170 | command=${j%% *} |
210 | command=${j%% *} |
| … | |
… | |
| 179 | addDvipdfmMap) |
219 | addDvipdfmMap) |
| 180 | echo "f ${parameter}" >> "${S}/${PN}-config";; |
220 | echo "f ${parameter}" >> "${S}/${PN}-config";; |
| 181 | AddHyphen) |
221 | AddHyphen) |
| 182 | texlive-module_make_language_def_lines "$parameter" |
222 | texlive-module_make_language_def_lines "$parameter" |
| 183 | texlive-module_make_language_dat_lines "$parameter";; |
223 | texlive-module_make_language_dat_lines "$parameter";; |
|
|
224 | AddFormat) |
|
|
225 | texlive-module_add_format "$parameter";; |
| 184 | BuildFormat) |
226 | BuildFormat) |
| 185 | einfo "Format $parameter already built.";; |
227 | einfo "Format $parameter already built.";; |
| 186 | BuildLanguageDat) |
228 | BuildLanguageDat) |
| 187 | einfo "Language file $parameter already generated.";; |
229 | einfo "Language file $parameter already generated.";; |
| 188 | *) |
230 | *) |
| 189 | die "No rule to proccess ${command}. Please file a bug." |
231 | die "No rule to proccess ${command}. Please file a bug." |
| 190 | esac |
232 | esac |
| 191 | done |
233 | done |
|
|
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 | |
|
|
245 | # Delete ls-R files, these should not be created but better be certain they |
|
|
246 | # do not end up being installed. |
|
|
247 | find . -name 'ls-R' -delete |
| 192 | } |
248 | } |
| 193 | |
249 | |
| 194 | # @FUNCTION: texlive-module_src_install |
250 | # @FUNCTION: texlive-module_src_install |
| 195 | # @DESCRIPTION: |
251 | # @DESCRIPTION: |
| 196 | # exported function: |
252 | # exported function: |
| … | |
… | |
| 199 | texlive-module_src_install() { |
255 | texlive-module_src_install() { |
| 200 | for i in texmf/fmtutil/format*.cnf; do |
256 | for i in texmf/fmtutil/format*.cnf; do |
| 201 | [ -f "${i}" ] && etexlinks "${i}" |
257 | [ -f "${i}" ] && etexlinks "${i}" |
| 202 | done |
258 | done |
| 203 | |
259 | |
| 204 | insinto /usr/share |
260 | dodir /usr/share |
| 205 | if [ -z "${PN##*documentation*}" ] || use doc; then |
261 | if [ -z "${PN##*documentation*}" ] || use doc; then |
| 206 | [ -d texmf-doc ] && doins -r texmf-doc |
262 | [ -d texmf-doc ] && cp -pR texmf-doc "${D}/usr/share/" |
| 207 | else |
263 | else |
| 208 | [ -d texmf/doc ] && rm -rf texmf/doc |
264 | [ -d texmf/doc ] && rm -rf texmf/doc |
| 209 | [ -d texmf-dist/doc ] && rm -rf texmf-dist/doc |
265 | [ -d texmf-dist/doc ] && rm -rf texmf-dist/doc |
| 210 | fi |
266 | fi |
| 211 | |
267 | |
| 212 | [ -d texmf ] && doins -r texmf |
268 | [ -d texmf ] && cp -pR texmf "${D}/usr/share/" |
| 213 | [ -d texmf-dist ] && doins -r texmf-dist |
269 | [ -d texmf-dist ] && cp -pR texmf-dist "${D}/usr/share/" |
| 214 | [ -n "${PV##2007*}" ] && [ -d tlpkg ] && use source && doins -r tlpkg |
270 | [ -d tlpkg ] && use source && cp -pR tlpkg "${D}/usr/share/" |
| 215 | |
271 | |
| 216 | insinto /var/lib/texmf |
272 | insinto /var/lib/texmf |
| 217 | [ -d texmf-var ] && doins -r texmf-var/* |
273 | [ -d texmf-var ] && doins -r texmf-var/* |
| 218 | |
274 | |
| 219 | insinto /etc/texmf/updmap.d |
275 | insinto /etc/texmf/updmap.d |
| … | |
… | |
| 230 | |
286 | |
| 231 | if [ -f "${S}/language.${PN}.dat" ] ; then |
287 | if [ -f "${S}/language.${PN}.dat" ] ; then |
| 232 | insinto /etc/texmf/language.dat.d |
288 | insinto /etc/texmf/language.dat.d |
| 233 | doins "${S}/language.${PN}.dat" |
289 | doins "${S}/language.${PN}.dat" |
| 234 | fi |
290 | fi |
|
|
291 | [ -n "${TEXLIVE_MODULE_BINSCRIPTS}" ] && dobin_texmf_scripts ${TEXLIVE_MODULE_BINSCRIPTS} |
| 235 | |
292 | |
| 236 | texlive-common_handle_config_files |
293 | texlive-common_handle_config_files |
| 237 | } |
294 | } |
| 238 | |
295 | |
| 239 | # @FUNCTION: texlive-module_pkg_postinst |
296 | # @FUNCTION: texlive-module_pkg_postinst |
| … | |
… | |
| 266 | ewarn "Your texmf tree might be inconsistent with your configuration" |
323 | ewarn "Your texmf tree might be inconsistent with your configuration" |
| 267 | ewarn "Please try to figure what has happened" |
324 | ewarn "Please try to figure what has happened" |
| 268 | fi |
325 | fi |
| 269 | } |
326 | } |
| 270 | |
327 | |
|
|
328 | if [ "${PV#2008}" != "${PV}" ]; then |
| 271 | EXPORT_FUNCTIONS src_compile src_install pkg_postinst pkg_postrm |
329 | EXPORT_FUNCTIONS src_compile src_install pkg_postinst pkg_postrm |
|
|
330 | else |
|
|
331 | EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_postinst pkg_postrm |
|
|
332 | fi |