| 1 | # Copyright 1999-2003 Gentoo Technologies, Inc. |
1 | # Copyright 1999-2004 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/latex-package.eclass,v 1.17 2004/04/10 13:02:38 usata Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/latex-package.eclass,v 1.23 2005/04/09 04:42:10 usata Exp $ |
| 4 | # |
4 | # |
| 5 | # Author Matthew Turk <satai@gentoo.org> |
5 | # Author Matthew Turk <satai@gentoo.org> |
| 6 | # |
6 | # |
| 7 | # 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 |
| 8 | # 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 |
| … | |
… | |
| 55 | SRC_URI="ftp://tug.ctan.org/macros/latex/" |
55 | SRC_URI="ftp://tug.ctan.org/macros/latex/" |
| 56 | S=${WORKDIR}/${P} |
56 | S=${WORKDIR}/${P} |
| 57 | TEXMF="/usr/share/texmf" |
57 | TEXMF="/usr/share/texmf" |
| 58 | SUPPLIER="misc" # This refers to the font supplier; it should be overridden |
58 | SUPPLIER="misc" # This refers to the font supplier; it should be overridden |
| 59 | |
59 | |
|
|
60 | latex-package_has_tetex_3() { |
|
|
61 | if has_version '>=app-text/tetex-3' || has_version '>=app-text/ptex-3.1.8' ; then |
|
|
62 | true |
|
|
63 | else |
|
|
64 | false |
|
|
65 | fi |
|
|
66 | } |
|
|
67 | |
| 60 | latex-package_src_doinstall() { |
68 | latex-package_src_doinstall() { |
| 61 | debug-print function $FUNCNAME $* |
69 | debug-print function $FUNCNAME $* |
| 62 | # This actually follows the directions for a "single-user" system |
70 | # This actually follows the directions for a "single-user" system |
| 63 | # at http://www.ctan.org/installationadvice/ modified for gentoo. |
71 | # at http://www.ctan.org/installationadvice/ modified for gentoo. |
| 64 | [ -z "$1" ] && latex-package_src_install all |
72 | [ -z "$1" ] && latex-package_src_install all |
| 65 | |
73 | |
| 66 | while [ "$1" ]; do |
74 | while [ "$1" ]; do |
| 67 | case $1 in |
75 | case $1 in |
| 68 | "sh") |
76 | "sh") |
| 69 | for i in `find . -maxdepth 1 -type f -name "*.${1}"` |
77 | for i in `find . -maxdepth 1 -type f -name "*.${1}"` |
| 70 | do |
78 | do |
| 71 | dobin $i |
79 | dobin $i || die "dobin $i failed" |
| 72 | done |
80 | done |
| 73 | ;; |
81 | ;; |
| 74 | "sty" | "cls" | "fd" | "clo" | "def") |
82 | "sty" | "cls" | "fd" | "clo" | "def" | "cfg") |
| 75 | for i in `find . -maxdepth 1 -type f -name "*.${1}"` |
83 | for i in `find . -maxdepth 1 -type f -name "*.${1}"` |
| 76 | do |
84 | do |
| 77 | insinto ${TEXMF}/tex/latex/${PN} |
85 | insinto ${TEXMF}/tex/latex/${PN} |
| 78 | doins $i |
86 | doins $i || die "doins $i failed" |
| 79 | done |
87 | done |
| 80 | ;; |
88 | ;; |
| 81 | "dvi" | "ps" | "pdf") |
89 | "dvi" | "ps" | "pdf") |
| 82 | for i in `find . -maxdepth 1 -type f -name "*.${1}"` |
90 | for i in `find . -maxdepth 1 -type f -name "*.${1}"` |
| 83 | do |
91 | do |
| 84 | insinto /usr/share/doc/${P} |
92 | insinto /usr/share/doc/${P} |
| 85 | doins $i |
93 | doins $i || "doins $i failed" |
| 86 | #dodoc -u $i |
94 | #dodoc -u $i |
| 87 | done |
95 | done |
| 88 | ;; |
96 | ;; |
| 89 | "tex" | "dtx") |
97 | "tex" | "dtx") |
| 90 | for i in `find . -maxdepth 1 -type f -name "*.${1}"` |
98 | for i in `find . -maxdepth 1 -type f -name "*.${1}"` |
| 91 | do |
99 | do |
| 92 | einfo "Making documentation: $i" |
100 | einfo "Making documentation: $i" |
| 93 | texi2dvi -q -c --language=latex $i &> /dev/null |
101 | texi2dvi -q -c --language=latex $i &> /dev/null |
| 94 | done |
102 | done |
| 95 | ;; |
103 | ;; |
| 96 | "tfm" | "vf" | "afm" | "pfb") |
104 | "tfm" | "vf" | "afm" | "pfb") |
| 97 | for i in `find . -maxdepth 1 -type f -name "*.${1}"` |
105 | for i in `find . -maxdepth 1 -type f -name "*.${1}"` |
| 98 | do |
106 | do |
| 99 | insinto ${TEXMF}/fonts/${1}/${SUPPLIER}/${PN} |
107 | insinto ${TEXMF}/fonts/${1}/${SUPPLIER}/${PN} |
| 100 | doins $i |
108 | doins $i || die "doins $i failed" |
| 101 | done |
109 | done |
| 102 | ;; |
110 | ;; |
| 103 | "ttf") |
111 | "ttf") |
| 104 | for i in `find . -maxdepth 1 -type f -name "*.ttf"` |
112 | for i in `find . -maxdepth 1 -type f -name "*.ttf"` |
| 105 | do |
113 | do |
| 106 | insinto ${TEXMF}/fonts/truetype/${SUPPLIER}/${PN} |
114 | insinto ${TEXMF}/fonts/truetype/${SUPPLIER}/${PN} |
| 107 | doins $i |
115 | doins $i || die "doins $i failed" |
| 108 | done |
116 | done |
| 109 | ;; |
117 | ;; |
| 110 | "bst") |
118 | "bst") |
| 111 | for i in `find . -maxdepth 1 -type f -name "*.bst"` |
119 | for i in `find . -maxdepth 1 -type f -name "*.bst"` |
| 112 | do |
120 | do |
| 113 | insinto ${TEXMF}/bibtex/bst/${PN} |
121 | insinto ${TEXMF}/bibtex/bst/${PN} |
| 114 | doins $i |
122 | doins $i || die "doins $i failed" |
| 115 | done |
123 | done |
| 116 | ;; |
124 | ;; |
| 117 | "styles") |
125 | "styles") |
| 118 | latex-package_src_doinstall sty cls fd clo def bst |
126 | latex-package_src_doinstall sty cls fd clo def cfg bst |
| 119 | ;; |
127 | ;; |
| 120 | "doc") |
128 | "doc") |
| 121 | latex-package_src_doinstall tex dtx dvi ps pdf |
129 | latex-package_src_doinstall tex dtx dvi ps pdf |
| 122 | ;; |
130 | ;; |
| 123 | "fonts") |
131 | "fonts") |
| 124 | latex-package_src_doinstall tfm vg afm pfb ttf |
132 | latex-package_src_doinstall tfm vf afm pfb ttf |
| 125 | ;; |
133 | ;; |
| 126 | "bin") |
134 | "bin") |
| 127 | latex-package_src_doinstall sh |
135 | latex-package_src_doinstall sh |
| 128 | ;; |
136 | ;; |
| 129 | "all") |
137 | "all") |
| 130 | latex-package_src_doinstall styles fonts bin doc |
138 | latex-package_src_doinstall styles fonts bin doc |
| 131 | ;; |
139 | ;; |
| 132 | esac |
140 | esac |
| 133 | shift |
141 | shift |
| 134 | done |
142 | done |
| 135 | } |
143 | } |
| 136 | |
144 | |
| 137 | latex-package_src_compile() { |
145 | latex-package_src_compile() { |
| 138 | debug-print function $FUNCNAME $* |
146 | debug-print function $FUNCNAME $* |
| 139 | for i in `find \`pwd\` -maxdepth 1 -type f -name "*.ins"` |
147 | for i in `find \`pwd\` -maxdepth 1 -type f -name "*.ins"` |
| 140 | do |
148 | do |
| 141 | einfo "Extracting from $i" |
149 | einfo "Extracting from $i" |
| 142 | latex --interaction=batchmode $i &> /dev/null |
150 | latex --interaction=batchmode $i &> /dev/null |
| 143 | done |
151 | done |
| 144 | } |
152 | } |
| 145 | |
153 | |
| 146 | latex-package_src_install() { |
154 | latex-package_src_install() { |
| 147 | debug-print function $FUNCNAME $* |
155 | debug-print function $FUNCNAME $* |
| 148 | latex-package_src_doinstall all |
156 | latex-package_src_doinstall all |
|
|
157 | if [ -n "${DOCS}" ] ; then |
|
|
158 | dodoc ${DOCS} |
|
|
159 | fi |
| 149 | } |
160 | } |
| 150 | |
161 | |
| 151 | latex-package_pkg_postinst() { |
162 | latex-package_pkg_postinst() { |
| 152 | debug-print function $FUNCNAME $* |
163 | debug-print function $FUNCNAME $* |
| 153 | latex-package_rehash |
164 | latex-package_rehash |
| 154 | } |
165 | } |
| 155 | |
166 | |
| 156 | latex-package_pkg_postrm() { |
167 | latex-package_pkg_postrm() { |
| 157 | debug-print function $FUNCNAME $* |
168 | debug-print function $FUNCNAME $* |
| 158 | latex-package_rehash |
169 | latex-package_rehash |
| 159 | } |
170 | } |
| 160 | |
171 | |
| 161 | latex-package_rehash() { |
172 | latex-package_rehash() { |
| 162 | debug-print function $FUNCNAME $* |
173 | debug-print function $FUNCNAME $* |
|
|
174 | if latex-package_has_tetex_3 ; then |
|
|
175 | texmf-update |
|
|
176 | else |
| 163 | texconfig rehash |
177 | texconfig rehash |
|
|
178 | fi |
| 164 | } |
179 | } |
| 165 | |
180 | |
| 166 | EXPORT_FUNCTIONS src_compile src_install pkg_postinst pkg_postrm |
181 | EXPORT_FUNCTIONS src_compile src_install pkg_postinst pkg_postrm has_tetex_3 |