| 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.11 2008/07/03 22:36:12 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 | # |
| 9 | # Original Author: Alexis Ballier <aballier@gentoo.org> |
9 | # Original Author: Alexis Ballier <aballier@gentoo.org> |
| 10 | # @BLURB: Provide generic install functions so that modular texlive's texmf ebuild will only have to inherit this eclass |
10 | # @BLURB: Provide generic install functions so that modular texlive's texmf ebuild will only have to inherit this eclass |
| 11 | # @DESCRIPTION: |
11 | # @DESCRIPTION: |
| 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 | # |
| … | |
… | |
| 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 | |
|
|
30 | # @ECLASS-VARIABLE: TEXLIVE_MODULE_DOC_CONTENTS |
|
|
31 | # @DESCRIPTION: |
|
|
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 |
|
|
34 | # valid for TeX Live 2008 and later |
|
|
35 | |
|
|
36 | # @ECLASS-VARIABLE: TEXLIVE_MODULE_SRC_CONTENTS |
|
|
37 | # @DESCRIPTION: |
|
|
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 |
|
|
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. |
| 29 | |
53 | |
| 30 | inherit texlive-common |
54 | inherit texlive-common |
| 31 | |
55 | |
| 32 | HOMEPAGE="http://www.tug.org/texlive/" |
56 | HOMEPAGE="http://www.tug.org/texlive/" |
| 33 | |
57 | |
| 34 | COMMON_DEPEND=">=app-text/texlive-core-${PV} |
58 | COMMON_DEPEND=">=app-text/texlive-core-${TL_PV:-${PV}}" |
| 35 | ${TEXLIVE_MODULES_DEPS}" |
|
|
| 36 | |
59 | |
|
|
60 | IUSE="source" |
|
|
61 | |
| 37 | # 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 |
| 38 | # .tar.lzma |
63 | # .tar.xz |
| 39 | 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 | |
| 40 | for i in ${TEXLIVE_MODULE_CONTENTS}; do |
74 | for i in ${TEXLIVE_MODULE_CONTENTS}; do |
| 41 | SRC_URI="${SRC_URI} mirror://gentoo/texlive-module-${i}-${PV}.zip" |
75 | SRC_URI="${SRC_URI} mirror://gentoo/texlive-module-${i}-${PV}.${PKGEXT}" |
| 42 | done |
76 | done |
| 43 | DEPEND="${COMMON_DEPEND} |
77 | |
| 44 | app-arch/unzip" |
78 | # Forge doc SRC_URI |
| 45 | else |
79 | [ -n "${PN##*documentation*}" ] && [ -n "${TEXLIVE_MODULE_DOC_CONTENTS}" ] && SRC_URI="${SRC_URI} doc? (" |
| 46 | for i in ${TEXLIVE_MODULE_CONTENTS}; do |
80 | for i in ${TEXLIVE_MODULE_DOC_CONTENTS}; do |
| 47 | SRC_URI="${SRC_URI} mirror://gentoo/texlive-module-${i}-${PV}.tar.lzma" |
81 | SRC_URI="${SRC_URI} mirror://gentoo/texlive-module-${i}-${PV}.${PKGEXT}" |
| 48 | done |
82 | done |
| 49 | DEPEND="${COMMON_DEPEND} |
83 | [ -n "${PN##*documentation*}" ] && [ -n "${TEXLIVE_MODULE_DOC_CONTENTS}" ] && SRC_URI="${SRC_URI} )" |
| 50 | app-arch/lzma-utils" |
84 | |
|
|
85 | # Forge source SRC_URI |
|
|
86 | if [ -n "${TEXLIVE_MODULE_SRC_CONTENTS}" ] ; then |
|
|
87 | SRC_URI="${SRC_URI} source? (" |
|
|
88 | for i in ${TEXLIVE_MODULE_SRC_CONTENTS}; do |
|
|
89 | SRC_URI="${SRC_URI} mirror://gentoo/texlive-module-${i}-${PV}.${PKGEXT}" |
|
|
90 | done |
|
|
91 | SRC_URI="${SRC_URI} )" |
| 51 | fi |
92 | fi |
| 52 | |
93 | |
| 53 | RDEPEND="${COMMON_DEPEND}" |
94 | RDEPEND="${COMMON_DEPEND}" |
| 54 | |
95 | |
| 55 | [ -z "${PN##*documentation*}" ] || IUSE="doc" |
96 | [ -z "${PN##*documentation*}" ] || IUSE="${IUSE} doc" |
| 56 | |
97 | |
| 57 | S="${WORKDIR}" |
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 | |
|
|
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 | } |
|
|
148 | |
|
|
149 | # @FUNCTION: texlive-module_make_language_def_lines |
|
|
150 | # @DESCRIPTION: |
|
|
151 | # 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. |
|
|
153 | |
|
|
154 | texlive-module_make_language_def_lines() { |
|
|
155 | local lefthyphenmin righthyphenmin synonyms name file |
|
|
156 | eval $@ |
|
|
157 | einfo "Generating language.def entry for $@" |
|
|
158 | [ -z "$lefthyphenmin" ] && lefthyphenmin="2" |
|
|
159 | [ -z "$righthyphenmin" ] && righthyphenmin="3" |
|
|
160 | echo "\\addlanguage{$name}{$file}{}{$lefthyphenmin}{$righthyphenmin}" >> "${S}/language.${PN}.def" |
|
|
161 | if [ -n "$synonyms" ] ; then |
|
|
162 | for i in $(echo $synonyms | tr ',' ' ') ; do |
|
|
163 | einfo "Generating language.def synonym $i for $@" |
|
|
164 | echo "\\addlanguage{$i}{$file}{}{$lefthyphenmin}{$righthyphenmin}" >> "${S}/language.${PN}.def" |
|
|
165 | done |
|
|
166 | fi |
|
|
167 | } |
|
|
168 | |
|
|
169 | # @FUNCTION: texlive-module_make_language_dat_lines |
|
|
170 | # @DESCRIPTION: |
|
|
171 | # Only valid for TeXLive 2008. |
|
|
172 | # 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. |
|
|
174 | |
|
|
175 | texlive-module_make_language_dat_lines() { |
|
|
176 | local lefthyphenmin righthyphenmin synonyms name file |
|
|
177 | eval $@ |
|
|
178 | einfo "Generating language.dat entry for $@" |
|
|
179 | echo "$name $file" >> "${S}/language.${PN}.dat" |
|
|
180 | if [ -n "$synonyms" ] ; then |
|
|
181 | for i in $(echo $synonyms | tr ',' ' ') ; do |
|
|
182 | einfo "Generating language.dat synonym $i for $@" |
|
|
183 | echo "=$i" >> "${S}/language.${PN}.dat" |
|
|
184 | done |
|
|
185 | fi |
|
|
186 | } |
| 58 | |
187 | |
| 59 | # @FUNCTION: texlive-module_src_compile |
188 | # @FUNCTION: texlive-module_src_compile |
| 60 | # @DESCRIPTION: |
189 | # @DESCRIPTION: |
| 61 | # exported function: |
190 | # exported function: |
| 62 | # Will look for format.foo.cnf and build foo format files using fmtutil |
191 | # Will look for format.foo.cnf and build foo format files using fmtutil |
| … | |
… | |
| 66 | # 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 |
| 67 | # /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 |
| 68 | # 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. |
| 69 | |
198 | |
| 70 | texlive-module_src_compile() { |
199 | texlive-module_src_compile() { |
| 71 | # Build format files |
|
|
| 72 | for i in texmf/fmtutil/format*.cnf; do |
|
|
| 73 | if [ -f "${i}" ]; then |
|
|
| 74 | einfo "Building format ${i}" |
|
|
| 75 | TEXMFHOME="${S}/texmf:${S}/texmf-dist"\ |
|
|
| 76 | fmtutil --cnffile "${i}" --fmtdir "${S}/texmf-var/web2c" --all\ |
|
|
| 77 | || die "failed to build format ${i}" |
|
|
| 78 | fi |
|
|
| 79 | done |
|
|
| 80 | |
|
|
| 81 | # Generate config files |
200 | # Generate config files |
| 82 | # 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. |
| 83 | if [ -z "${PV##2007*}" ] ; then |
|
|
| 84 | for i in "${S}"/texmf/lists/*; |
|
|
| 85 | do |
|
|
| 86 | grep '^!' "${i}" | sed -e 's/^!//' | tr ' ' '@' |sort|uniq >> "${T}/jobs" |
|
|
| 87 | done |
|
|
| 88 | else |
|
|
| 89 | for i in "${S}"/tlpkg/tlpobj/*; |
202 | for i in "${S}"/tlpkg/tlpobj/*; |
| 90 | do |
203 | do |
| 91 | 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" |
| 92 | done |
205 | done |
| 93 | fi |
|
|
| 94 | |
206 | |
| 95 | for i in $(<"${T}/jobs"); |
207 | for i in $(<"${T}/jobs"); |
| 96 | do |
208 | do |
| 97 | j="$(echo $i | tr '@' ' ')" |
209 | j="$(echo $i | tr '@' ' ')" |
| 98 | command=${j%% *} |
210 | command=${j%% *} |
| … | |
… | |
| 105 | addDvipsMap) |
217 | addDvipsMap) |
| 106 | echo "p +${parameter}" >> "${S}/${PN}-config.ps";; |
218 | echo "p +${parameter}" >> "${S}/${PN}-config.ps";; |
| 107 | addDvipdfmMap) |
219 | addDvipdfmMap) |
| 108 | echo "f ${parameter}" >> "${S}/${PN}-config";; |
220 | echo "f ${parameter}" >> "${S}/${PN}-config";; |
| 109 | AddHyphen) |
221 | AddHyphen) |
| 110 | ewarn "Sorry, $command not implemented yet.";; |
222 | texlive-module_make_language_def_lines "$parameter" |
|
|
223 | texlive-module_make_language_dat_lines "$parameter";; |
|
|
224 | AddFormat) |
|
|
225 | texlive-module_add_format "$parameter";; |
| 111 | BuildFormat) |
226 | BuildFormat) |
| 112 | elog "Format $parameter already built.";; |
227 | einfo "Format $parameter already built.";; |
| 113 | BuildLanguageDat) |
228 | BuildLanguageDat) |
| 114 | elog "Language file $parameter already generated.";; |
229 | einfo "Language file $parameter already generated.";; |
| 115 | *) |
230 | *) |
| 116 | die "No rule to proccess ${command}. Please file a bug." |
231 | die "No rule to proccess ${command}. Please file a bug." |
| 117 | esac |
232 | esac |
| 118 | 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 |
| 119 | } |
248 | } |
| 120 | |
249 | |
| 121 | # @FUNCTION: texlive-module_src_install |
250 | # @FUNCTION: texlive-module_src_install |
| 122 | # @DESCRIPTION: |
251 | # @DESCRIPTION: |
| 123 | # exported function: |
252 | # exported function: |
| … | |
… | |
| 126 | texlive-module_src_install() { |
255 | texlive-module_src_install() { |
| 127 | for i in texmf/fmtutil/format*.cnf; do |
256 | for i in texmf/fmtutil/format*.cnf; do |
| 128 | [ -f "${i}" ] && etexlinks "${i}" |
257 | [ -f "${i}" ] && etexlinks "${i}" |
| 129 | done |
258 | done |
| 130 | |
259 | |
| 131 | insinto /usr/share |
260 | dodir /usr/share |
| 132 | if [ -z "${PN##*documentation*}" ] || use doc; then |
261 | if [ -z "${PN##*documentation*}" ] || use doc; then |
| 133 | [ -d texmf-doc ] && doins -r texmf-doc |
262 | [ -d texmf-doc ] && cp -pR texmf-doc "${D}/usr/share/" |
| 134 | else |
263 | else |
| 135 | [ -d texmf/doc ] && rm -rf texmf/doc |
264 | [ -d texmf/doc ] && rm -rf texmf/doc |
| 136 | [ -d texmf-dist/doc ] && rm -rf texmf-dist/doc |
265 | [ -d texmf-dist/doc ] && rm -rf texmf-dist/doc |
| 137 | fi |
266 | fi |
| 138 | |
267 | |
| 139 | [ -d texmf ] && doins -r texmf |
268 | [ -d texmf ] && cp -pR texmf "${D}/usr/share/" |
| 140 | [ -d texmf-dist ] && doins -r texmf-dist |
269 | [ -d texmf-dist ] && cp -pR texmf-dist "${D}/usr/share/" |
| 141 | [ -d tlpkg ] && doins -r tlpkg |
270 | [ -d tlpkg ] && use source && cp -pR tlpkg "${D}/usr/share/" |
| 142 | |
271 | |
| 143 | insinto /var/lib/texmf |
272 | insinto /var/lib/texmf |
| 144 | [ -d texmf-var ] && doins -r texmf-var/* |
273 | [ -d texmf-var ] && doins -r texmf-var/* |
| 145 | |
274 | |
| 146 | insinto /etc/texmf/updmap.d |
275 | insinto /etc/texmf/updmap.d |
| 147 | [ -f "${S}/${PN}.cfg" ] && doins "${S}/${PN}.cfg" |
276 | [ -f "${S}/${PN}.cfg" ] && doins "${S}/${PN}.cfg" |
| 148 | insinto /etc/texmf/dvips.d |
277 | insinto /etc/texmf/dvips.d |
| 149 | [ -f "${S}/${PN}-config.ps" ] && doins "${S}/${PN}-config.ps" |
278 | [ -f "${S}/${PN}-config.ps" ] && doins "${S}/${PN}-config.ps" |
| 150 | insinto /etc/texmf/dvipdfm/config |
279 | insinto /etc/texmf/dvipdfm/config |
| 151 | [ -f "${S}/${PN}-config" ] && doins "${S}/${PN}-config" |
280 | [ -f "${S}/${PN}-config" ] && doins "${S}/${PN}-config" |
|
|
281 | |
|
|
282 | if [ -f "${S}/language.${PN}.def" ] ; then |
|
|
283 | insinto /etc/texmf/language.def.d |
|
|
284 | doins "${S}/language.${PN}.def" |
|
|
285 | fi |
|
|
286 | |
|
|
287 | if [ -f "${S}/language.${PN}.dat" ] ; then |
|
|
288 | insinto /etc/texmf/language.dat.d |
|
|
289 | doins "${S}/language.${PN}.dat" |
|
|
290 | fi |
|
|
291 | [ -n "${TEXLIVE_MODULE_BINSCRIPTS}" ] && dobin_texmf_scripts ${TEXLIVE_MODULE_BINSCRIPTS} |
| 152 | |
292 | |
| 153 | texlive-common_handle_config_files |
293 | texlive-common_handle_config_files |
| 154 | } |
294 | } |
| 155 | |
295 | |
| 156 | # @FUNCTION: texlive-module_pkg_postinst |
296 | # @FUNCTION: texlive-module_pkg_postinst |
| … | |
… | |
| 183 | ewarn "Your texmf tree might be inconsistent with your configuration" |
323 | ewarn "Your texmf tree might be inconsistent with your configuration" |
| 184 | ewarn "Please try to figure what has happened" |
324 | ewarn "Please try to figure what has happened" |
| 185 | fi |
325 | fi |
| 186 | } |
326 | } |
| 187 | |
327 | |
|
|
328 | if [ "${PV#2008}" != "${PV}" ]; then |
| 188 | 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 |