|
|
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 | # |
| 1 | # Author Matthew Turk <satai@gentoo.org> |
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 |
| … | |
… | |
| 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 | >=sys-apps/texinfo-4.2-r5" |
51 | >=sys-apps/texinfo-4.2-r5" |
| 49 | ECLASS=latex-package |
|
|
| 50 | HOMEPAGE="http://www.tug.org/" |
52 | HOMEPAGE="http://www.tug.org/" |
| 51 | SRC_URI="ftp://tug.ctan.org/macros/latex/" |
53 | SRC_URI="ftp://tug.ctan.org/macros/latex/" |
| 52 | S=${WORKDIR}/${P} |
54 | S=${WORKDIR}/${P} |
| 53 | TEXMF="/usr/share/texmf" |
55 | TEXMF="/usr/share/texmf" |
| 54 | 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 |
| 55 | |
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 | |
| 56 | latex-package_src_doinstall() { |
66 | latex-package_src_doinstall() { |
| 57 | debug-print function $FUNCNAME $* |
67 | debug-print function $FUNCNAME $* |
| 58 | # This actually follows the directions for a "single-user" system |
68 | # This actually follows the directions for a "single-user" system |
| 59 | # at http://www.ctan.org/installationadvice/ modified for gentoo. |
69 | # at http://www.ctan.org/installationadvice/ modified for gentoo. |
| 60 | [ -z "$1" ] && latex-package_src_install all |
70 | [ -z "$1" ] && latex-package_src_install all |
| 61 | |
71 | |
| 62 | while [ "$1" ]; do |
72 | while [ "$1" ]; do |
| 63 | case $1 in |
73 | case $1 in |
| 64 | "sh") |
74 | "sh") |
| 65 | for i in `find . -maxdepth 1 -type f -name "*.${1}"` |
|
|
| 66 | do |
|
|
| 67 | dobin $i |
|
|
| 68 | done |
|
|
| 69 | ;; |
|
|
| 70 | "sty" | "cls" | "fd" | "clo" | "def") |
|
|
| 71 | for i in `find . -maxdepth 1 -type f -name "*.${1}"` |
|
|
| 72 | do |
|
|
| 73 | insinto ${TEXMF}/tex/latex/${PN} |
|
|
| 74 | doins $i |
|
|
| 75 | done |
|
|
| 76 | ;; |
|
|
| 77 | "dvi" | "ps" | "pdf") |
|
|
| 78 | for i in `find . -maxdepth 1 -type f -name "*.${1}"` |
|
|
| 79 | do |
|
|
| 80 | insinto /usr/share/doc/${P} |
|
|
| 81 | doins $i |
|
|
| 82 | #dodoc -u $i |
|
|
| 83 | done |
|
|
| 84 | ;; |
|
|
| 85 | "tex" | "dtx") |
|
|
| 86 | for i in `find . -maxdepth 1 -type f -name "*.${1}"` |
75 | for i in `find . -maxdepth 1 -type f -name "*.${1}"` |
| 87 | do |
76 | do |
|
|
77 | dobin $i || die "dobin $i failed" |
|
|
78 | done |
|
|
79 | ;; |
|
|
80 | "sty" | "cls" | "fd" | "clo" | "def" | "cfg") |
|
|
81 | for i in `find . -maxdepth 1 -type f -name "*.${1}"` |
|
|
82 | do |
|
|
83 | insinto ${TEXMF}/tex/latex/${PN} |
|
|
84 | doins $i || die "doins $i failed" |
|
|
85 | done |
|
|
86 | ;; |
|
|
87 | "dvi" | "ps" | "pdf") |
|
|
88 | for i in `find . -maxdepth 1 -type f -name "*.${1}"` |
|
|
89 | do |
|
|
90 | insinto /usr/share/doc/${P} |
|
|
91 | doins $i || "doins $i failed" |
|
|
92 | #dodoc -u $i |
|
|
93 | done |
|
|
94 | ;; |
|
|
95 | "tex" | "dtx") |
|
|
96 | for i in `find . -maxdepth 1 -type f -name "*.${1}"` |
|
|
97 | do |
| 88 | echo "Making documentation: $i" |
98 | einfo "Making documentation: $i" |
| 89 | texi2dvi -q -c --language=latex $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 |
|
|
105 | insinto ${TEXMF}/fonts/${1}/${SUPPLIER}/${PN} |
|
|
106 | doins $i || die "doins $i failed" |
|
|
107 | done |
|
|
108 | ;; |
|
|
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") |
|
|
117 | for i in `find . -maxdepth 1 -type f -name "*.ttf"` |
|
|
118 | do |
|
|
119 | insinto ${TEXMF}/fonts/truetype/${SUPPLIER}/${PN} |
|
|
120 | doins $i || die "doins $i failed" |
|
|
121 | done |
|
|
122 | ;; |
|
|
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") |
|
|
131 | latex-package_src_doinstall sty cls fd clo def cfg bst |
|
|
132 | ;; |
|
|
133 | "doc") |
|
|
134 | latex-package_src_doinstall tex dtx dvi ps pdf |
|
|
135 | ;; |
|
|
136 | "fonts") |
|
|
137 | latex-package_src_doinstall tfm vf afm pfb ttf |
|
|
138 | ;; |
|
|
139 | "bin") |
|
|
140 | latex-package_src_doinstall sh |
|
|
141 | ;; |
|
|
142 | "all") |
|
|
143 | latex-package_src_doinstall styles fonts bin doc |
|
|
144 | ;; |
|
|
145 | esac |
|
|
146 | shift |
| 90 | done |
147 | done |
| 91 | ;; |
|
|
| 92 | "tfm" | "vf" | "afm" | "pfb") |
|
|
| 93 | for i in `find . -maxdepth 1 -type f -name "*.${1}"` |
|
|
| 94 | do |
|
|
| 95 | insinto ${TEXMF}/fonts/${1}/${SUPPLIER}/${PN} |
|
|
| 96 | doins $i |
|
|
| 97 | done |
|
|
| 98 | ;; |
|
|
| 99 | "ttf") |
|
|
| 100 | for i in `find . -maxdepth 1 -type f -name "*.ttf"` |
|
|
| 101 | do |
|
|
| 102 | insinto ${TEXMF}/fonts/truetype/${SUPPLIER}/${PN} |
|
|
| 103 | doins $i |
|
|
| 104 | done |
|
|
| 105 | ;; |
|
|
| 106 | "styles") |
|
|
| 107 | latex-package_src_doinstall sty cls fd clo def |
|
|
| 108 | ;; |
|
|
| 109 | "doc") |
|
|
| 110 | latex-package_src_doinstall tex dtx dvi ps pdf |
|
|
| 111 | ;; |
|
|
| 112 | "fonts") |
|
|
| 113 | latex-package_src_doinstall tfm vg afm pfb ttf |
|
|
| 114 | ;; |
|
|
| 115 | "bin") |
|
|
| 116 | latex-package_src_doinstall sh |
|
|
| 117 | ;; |
|
|
| 118 | "all") |
|
|
| 119 | latex-package_src_doinstall styles fonts bin doc |
|
|
| 120 | ;; |
|
|
| 121 | esac |
|
|
| 122 | shift |
|
|
| 123 | done |
|
|
| 124 | } |
148 | } |
| 125 | |
149 | |
| 126 | latex-package_src_compile() { |
150 | latex-package_src_compile() { |
| 127 | debug-print function $FUNCNAME $* |
151 | debug-print function $FUNCNAME $* |
| 128 | cd ${S} |
|
|
| 129 | for i in `find \`pwd\` -maxdepth 1 -type f -name "*.ins"` |
152 | for i in `find \`pwd\` -maxdepth 1 -type f -name "*.ins"` |
| 130 | do |
153 | do |
| 131 | echo "Extracting from $i" |
154 | einfo "Extracting from $i" |
| 132 | latex --interaction=batchmode $i > /dev/null |
155 | latex --interaction=batchmode $i &> /dev/null |
| 133 | done |
156 | done |
| 134 | } |
157 | } |
| 135 | |
158 | |
| 136 | latex-package_src_install() { |
159 | latex-package_src_install() { |
| 137 | debug-print function $FUNCNAME $* |
160 | debug-print function $FUNCNAME $* |
| 138 | cd ${S} |
|
|
| 139 | latex-package_src_doinstall all |
161 | latex-package_src_doinstall all |
|
|
162 | if [ -n "${DOCS}" ] ; then |
|
|
163 | dodoc ${DOCS} |
|
|
164 | fi |
| 140 | } |
165 | } |
| 141 | |
166 | |
| 142 | latex-package_pkg_postinst() { |
167 | latex-package_pkg_postinst() { |
| 143 | debug-print function $FUNCNAME $* |
168 | debug-print function $FUNCNAME $* |
| 144 | latex-package_rehash |
169 | latex-package_rehash |
| 145 | } |
170 | } |
| 146 | |
171 | |
| 147 | latex-package_pkg_postrm() { |
172 | latex-package_pkg_postrm() { |
| 148 | debug-print function $FUNCNAME $* |
173 | debug-print function $FUNCNAME $* |
| 149 | latex-package_rehash |
174 | latex-package_rehash |
| 150 | } |
175 | } |
| 151 | |
176 | |
| 152 | latex-package_rehash() { |
177 | latex-package_rehash() { |
| 153 | debug-print function $FUNCNAME $* |
178 | debug-print function $FUNCNAME $* |
|
|
179 | if latex-package_has_tetex_3 ; then |
|
|
180 | texmf-update |
|
|
181 | else |
| 154 | texconfig rehash |
182 | texconfig rehash |
|
|
183 | fi |
| 155 | } |
184 | } |
| 156 | |
185 | |
| 157 | EXPORT_FUNCTIONS src_compile src_install pkg_postinst pkg_postrm |
186 | EXPORT_FUNCTIONS src_compile src_install pkg_postinst pkg_postrm |