| 1 | # Author Matthew Turk <m-turk@nwu.edu> |
1 | # Copyright 1999-2004 Gentoo Foundation |
|
|
2 | # Distributed under the terms of the GNU General Public License v2 |
|
|
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/latex-package.eclass,v 1.27 2006/02/28 11:09:25 nattfodd Exp $ |
|
|
4 | # |
|
|
5 | # Author Matthew Turk <satai@gentoo.org> |
| 2 | # |
6 | # |
| 3 | # This eClass is designed to be easy to use and implement. The vast majority of |
7 | # This eClass is designed to be easy to use and implement. The vast majority of |
| 4 | # LaTeX packages will only need to define SRC_URI (and sometimes S) for a |
8 | # LaTeX packages will only need to define SRC_URI (and sometimes S) for a |
| 5 | # successful installation. If fonts need to be installed, then the variable |
9 | # successful installation. If fonts need to be installed, then the variable |
| 6 | # SUPPLIER must also be defined. |
10 | # SUPPLIER must also be defined. |
| … | |
… | |
| 28 | # latex-package_src_install |
32 | # latex-package_src_install |
| 29 | # } |
33 | # } |
| 30 | # |
34 | # |
| 31 | # The eClass automatically takes care of rehashing TeX's cache (ls-lR) after |
35 | # The eClass automatically takes care of rehashing TeX's cache (ls-lR) after |
| 32 | # installation and after removal, as well as creating final documentation from |
36 | # installation and after removal, as well as creating final documentation from |
| 33 | # TeX files that come with the source. Note that we break TeX layout standards |
37 | # TeX files that come with the source. Note that we break TeX layout standards |
| 34 | # by placing documentation in /usr/share/doc/${PN} |
38 | # by placing documentation in /usr/share/doc/${PN} |
| 35 | # |
39 | # |
| 36 | # For examples of basic installations, check out app-text/latex-aastex and |
40 | # For examples of basic installations, check out dev-tex/aastex and |
| 37 | # app-text/latex-leaflet. |
41 | # dev-tex/leaflet . |
| 38 | # |
42 | # |
| 39 | # NOTE: The CTAN "directory grab" function creates files with different MD5 |
43 | # NOTE: The CTAN "directory grab" function creates files with different MD5 |
| 40 | # signatures EVERY TIME. For this reason, if you are grabbing from the CTAN, |
44 | # signatures EVERY TIME. For this reason, if you are grabbing from the CTAN, |
| 41 | # you must either grab each file individually, or find a place to mirror an |
45 | # you must either grab each file individually, or find a place to mirror an |
| 42 | # archive of them. (iBiblio) |
46 | # archive of them. (iBiblio) |
| 43 | |
47 | |
| 44 | inherit base |
48 | inherit base |
| 45 | INHERITED="$INHERITED $ECLASS" |
|
|
| 46 | |
49 | |
| 47 | newdepend ">=app-text/tetex-1.0.7" |
50 | DEPEND="virtual/tetex |
| 48 | ECLASS=latex-package |
51 | >=sys-apps/texinfo-4.2-r5" |
| 49 | HOMEPAGE="http://www.tug.org/" |
52 | HOMEPAGE="http://www.tug.org/" |
| 50 | SRC_URI="ftp://tug.ctan.org/macros/latex/" |
53 | SRC_URI="ftp://tug.ctan.org/macros/latex/" |
| 51 | S=${WORKDIR}/${P} |
54 | S=${WORKDIR}/${P} |
| 52 | TEXMF="/usr/share/texmf" |
55 | TEXMF="/usr/share/texmf" |
| 53 | SUPPLIER="misc" # This refers to the font supplier; it should be overridden |
56 | SUPPLIER="misc" # This refers to the font supplier; it should be overridden |
| 54 | |
57 | |
|
|
58 | latex-package_has_tetex_3() { |
|
|
59 | if has_version '>=app-text/tetex-3' || has_version '>=app-text/ptex-3.1.8' ; then |
|
|
60 | true |
|
|
61 | else |
|
|
62 | false |
|
|
63 | fi |
|
|
64 | } |
|
|
65 | |
| 55 | latex-package_src_doinstall() { |
66 | latex-package_src_doinstall() { |
| 56 | debug-print function $FUNCNAME $* |
67 | debug-print function $FUNCNAME $* |
| 57 | # This actually follows the directions for a "single-user" system |
68 | # This actually follows the directions for a "single-user" system |
| 58 | # at http://www.ctan.org/installationadvice/ modified for gentoo. |
69 | # at http://www.ctan.org/installationadvice/ modified for gentoo. |
| 59 | [ -z "$1" ] && latex-package_src_install all |
70 | [ -z "$1" ] && latex-package_src_install all |
| 60 | |
71 | |
| 61 | while [ "$1" ]; do |
72 | while [ "$1" ]; do |
| 62 | case $1 in |
73 | case $1 in |
| 63 | "sh") |
74 | "sh") |
| 64 | for i in `find . -maxdepth 1 -type f -name "*.${1}"` |
75 | for i in `find . -maxdepth 1 -type f -name "*.${1}"` |
| 65 | do |
76 | do |
| 66 | dobin $i |
77 | dobin $i || die "dobin $i failed" |
| 67 | done |
78 | done |
| 68 | ;; |
79 | ;; |
| 69 | "sty" | "cls" | "fd" | "clo" | "def") |
80 | "sty" | "cls" | "fd" | "clo" | "def" | "cfg") |
| 70 | for i in `find . -maxdepth 1 -type f -name "*.${1}"` |
81 | for i in `find . -maxdepth 1 -type f -name "*.${1}"` |
| 71 | do |
82 | do |
| 72 | insinto ${TEXMF}/tex/latex/${PN} |
83 | insinto ${TEXMF}/tex/latex/${PN} |
| 73 | doins $i |
84 | doins $i || die "doins $i failed" |
| 74 | done |
85 | done |
| 75 | ;; |
86 | ;; |
| 76 | "dvi" | "ps" | "pdf" | "tex" | "dtx") |
87 | "dvi" | "ps" | "pdf") |
| 77 | for i in `find . -maxdepth 1 -type f -name "*.${1}"` |
88 | for i in `find . -maxdepth 1 -type f -name "*.${1}"` |
| 78 | do |
89 | do |
| 79 | dodoc $i |
90 | insinto /usr/share/doc/${P} |
| 80 | done |
91 | doins $i || "doins $i failed" |
| 81 | ;; |
92 | #dodoc -u $i |
| 82 | "tfm" | "vf" | "afm" | "pfb") |
93 | done |
|
|
94 | ;; |
|
|
95 | "tex" | "dtx") |
| 83 | for i in `find . -maxdepth 1 -type f -name "*.${1}"` |
96 | for i in `find . -maxdepth 1 -type f -name "*.${1}"` |
| 84 | do |
97 | do |
|
|
98 | einfo "Making documentation: $i" |
|
|
99 | texi2dvi -q -c --language=latex $i &> /dev/null |
|
|
100 | done |
|
|
101 | ;; |
|
|
102 | "tfm" | "vf" | "afm") |
|
|
103 | for i in `find . -maxdepth 1 -type f -name "*.${1}"` |
|
|
104 | do |
| 85 | insinto ${TEXMF}/fonts/${1}/${SUPPLIER}/${PN} |
105 | insinto ${TEXMF}/fonts/${1}/${SUPPLIER}/${PN} |
| 86 | doins $i |
106 | doins $i || die "doins $i failed" |
| 87 | done |
107 | done |
| 88 | ;; |
108 | ;; |
| 89 | "ttf") |
109 | "pfb") |
|
|
110 | for i in `find . -maxdepth 1 -type f -name "*.pfb"` |
|
|
111 | do |
|
|
112 | insinto ${TEXMF}/fonts/type1/${SUPPLIER}/${PN} |
|
|
113 | doins $i || die "doins $i failed" |
|
|
114 | done |
|
|
115 | ;; |
|
|
116 | "ttf") |
| 90 | for i in `find . -maxdepth 1 -type f -name "*.ttf"` |
117 | for i in `find . -maxdepth 1 -type f -name "*.ttf"` |
| 91 | do |
118 | do |
| 92 | insinto ${TEXMF}/fonts/truetype/${SUPPLIER}/${PN} |
119 | insinto ${TEXMF}/fonts/truetype/${SUPPLIER}/${PN} |
| 93 | doins $i |
120 | doins $i || die "doins $i failed" |
| 94 | done |
121 | done |
| 95 | ;; |
122 | ;; |
| 96 | "styles") |
123 | "bst") |
|
|
124 | for i in `find . -maxdepth 1 -type f -name "*.bst"` |
|
|
125 | do |
|
|
126 | insinto ${TEXMF}/bibtex/bst/${PN} |
|
|
127 | doins $i || die "doins $i failed" |
|
|
128 | done |
|
|
129 | ;; |
|
|
130 | "styles") |
| 97 | latex-package_src_doinstall sty cls fd clo def |
131 | latex-package_src_doinstall sty cls fd clo def cfg bst |
| 98 | ;; |
132 | ;; |
| 99 | "doc") |
133 | "doc") |
| 100 | latex-package_src_doinstall dvi ps pdf tex dtx |
134 | latex-package_src_doinstall tex dtx dvi ps pdf |
| 101 | ;; |
135 | ;; |
| 102 | "fonts") |
136 | "fonts") |
| 103 | latex-package_src_doinstall tfm vg afm pfb ttf |
137 | latex-package_src_doinstall tfm vf afm pfb ttf |
| 104 | ;; |
138 | ;; |
| 105 | "bin") |
139 | "bin") |
| 106 | latex-package_src_doinstall sh |
140 | latex-package_src_doinstall sh |
| 107 | ;; |
141 | ;; |
| 108 | "all") |
142 | "all") |
| 109 | latex-package_src_doinstall styles doc fonts bin |
143 | latex-package_src_doinstall styles fonts bin doc |
| 110 | ;; |
144 | ;; |
| 111 | esac |
145 | esac |
| 112 | shift |
146 | shift |
| 113 | done |
147 | done |
| 114 | } |
148 | } |
| 115 | |
149 | |
| 116 | latex-package_src_compile() { |
150 | latex-package_src_compile() { |
| 117 | debug-print function $FUNCNAME $* |
151 | debug-print function $FUNCNAME $* |
| 118 | cd ${S} |
|
|
| 119 | for i in `find \`pwd\` -maxdepth 1 -type f -name "*.ins"` |
152 | for i in `find \`pwd\` -maxdepth 1 -type f -name "*.ins"` |
| 120 | do |
153 | do |
| 121 | echo "Extracting from $i" |
154 | einfo "Extracting from $i" |
| 122 | latex --interaction=batchmode $i > /dev/null |
155 | latex --interaction=batchmode $i &> /dev/null |
| 123 | done |
156 | done |
| 124 | } |
157 | } |
| 125 | |
158 | |
| 126 | latex-package_src_install() { |
159 | latex-package_src_install() { |
| 127 | debug-print function $FUNCNAME $* |
160 | debug-print function $FUNCNAME $* |
| 128 | cd ${S} |
|
|
| 129 | latex-package_src_doinstall all |
161 | latex-package_src_doinstall all |
|
|
162 | if [ -n "${DOCS}" ] ; then |
|
|
163 | dodoc ${DOCS} |
|
|
164 | fi |
| 130 | } |
165 | } |
| 131 | |
166 | |
| 132 | latex-package_pkg_postinst() { |
167 | latex-package_pkg_postinst() { |
| 133 | debug-print function $FUNCNAME $* |
168 | debug-print function $FUNCNAME $* |
| 134 | latex-package_rehash |
169 | latex-package_rehash |
| 135 | if [ ! -e /usr/doc/latex/${PN} ] ; then return ; fi |
|
|
| 136 | cd /usr/share/doc/${PN} |
|
|
| 137 | latex-package_make_documentation |
|
|
| 138 | } |
170 | } |
| 139 | |
171 | |
| 140 | latex-package_pkg_postrm() { |
172 | latex-package_pkg_postrm() { |
| 141 | debug-print function $FUNCNAME $* |
173 | debug-print function $FUNCNAME $* |
| 142 | latex-package_rehash |
174 | latex-package_rehash |
| 143 | } |
175 | } |
| 144 | |
176 | |
| 145 | latex-package_rehash() { |
177 | latex-package_rehash() { |
| 146 | debug-print function $FUNCNAME $* |
178 | debug-print function $FUNCNAME $* |
|
|
179 | if latex-package_has_tetex_3 ; then |
|
|
180 | texmf-update |
|
|
181 | else |
| 147 | texconfig rehash |
182 | texconfig rehash |
| 148 | } |
183 | fi |
| 149 | |
|
|
| 150 | latex-package_make_documentation() { |
|
|
| 151 | debug-print function $FUNCNAME $* |
|
|
| 152 | for i in `find \`pwd\` -maxdepth 1 -type f -name "*.[dt]tex"` |
|
|
| 153 | do |
|
|
| 154 | echo "Making Documentation: $i" |
|
|
| 155 | latex --interaction=batchmode $i > /dev/null |
|
|
| 156 | # And we don't want any leftovers... |
|
|
| 157 | for ext in aux toc log |
|
|
| 158 | do |
|
|
| 159 | rm ${i}.${ext} |
|
|
| 160 | done |
|
|
| 161 | done |
|
|
| 162 | echo "Completed." |
|
|
| 163 | } |
184 | } |
| 164 | |
185 | |
| 165 | EXPORT_FUNCTIONS src_compile src_install pkg_postinst pkg_postrm |
186 | EXPORT_FUNCTIONS src_compile src_install pkg_postinst pkg_postrm |