| 1 | # Copyright 1999-2003 Gentoo Technologies, Inc. |
1 | # Copyright 1999-2006 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.15 2003/09/09 01:06:09 usata Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/latex-package.eclass,v 1.31 2007/10/16 20:21:27 aballier Exp $ |
| 4 | # |
4 | # |
| 5 | # Author Matthew Turk <satai@gentoo.org> |
5 | # Author Matthew Turk <satai@gentoo.org> |
|
|
6 | # Martin Ehmsen <ehmsen@gentoo.org> |
|
|
7 | # Maintained by the text-markup team <text-markup@gentoo.org> |
| 6 | # |
8 | # |
| 7 | # This eClass is designed to be easy to use and implement. The vast majority of |
9 | # 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 |
10 | # LaTeX packages will only need to define SRC_URI (and sometimes S) for a |
| 9 | # successful installation. If fonts need to be installed, then the variable |
11 | # successful installation. If fonts need to be installed, then the variable |
| 10 | # SUPPLIER must also be defined. |
12 | # SUPPLIER must also be defined. |
| … | |
… | |
| 32 | # latex-package_src_install |
34 | # latex-package_src_install |
| 33 | # } |
35 | # } |
| 34 | # |
36 | # |
| 35 | # The eClass automatically takes care of rehashing TeX's cache (ls-lR) after |
37 | # The eClass automatically takes care of rehashing TeX's cache (ls-lR) after |
| 36 | # installation and after removal, as well as creating final documentation from |
38 | # installation and after removal, as well as creating final documentation from |
| 37 | # TeX files that come with the source. Note that we break TeX layout standards |
39 | # TeX files that come with the source. Note that we break TeX layout standards |
| 38 | # by placing documentation in /usr/share/doc/${PN} |
40 | # by placing documentation in /usr/share/doc/${PN} |
| 39 | # |
41 | # |
| 40 | # For examples of basic installations, check out dev-tex/aastex and |
42 | # For examples of basic installations, check out dev-tex/aastex and |
| 41 | # dev-tex/leaflet . |
43 | # dev-tex/leaflet . |
| 42 | # |
44 | # |
| … | |
… | |
| 44 | # signatures EVERY TIME. For this reason, if you are grabbing from the CTAN, |
46 | # signatures EVERY TIME. For this reason, if you are grabbing from the CTAN, |
| 45 | # you must either grab each file individually, or find a place to mirror an |
47 | # you must either grab each file individually, or find a place to mirror an |
| 46 | # archive of them. (iBiblio) |
48 | # archive of them. (iBiblio) |
| 47 | |
49 | |
| 48 | inherit base |
50 | inherit base |
| 49 | INHERITED="$INHERITED $ECLASS" |
|
|
| 50 | |
51 | |
| 51 | newdepend "virtual/tetex |
52 | DEPEND="virtual/latex-base |
| 52 | >=sys-apps/texinfo-4.2-r5" |
53 | >=sys-apps/texinfo-4.2-r5" |
| 53 | ECLASS=latex-package |
|
|
| 54 | HOMEPAGE="http://www.tug.org/" |
54 | HOMEPAGE="http://www.tug.org/" |
| 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' || has_version '>=app-text/texlive-core-2007' ; 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") |
| 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 | "pfb") |
|
|
112 | for i in `find . -maxdepth 1 -type f -name "*.pfb"` |
|
|
113 | do |
|
|
114 | insinto ${TEXMF}/fonts/type1/${SUPPLIER}/${PN} |
|
|
115 | doins $i || die "doins $i failed" |
|
|
116 | done |
|
|
117 | ;; |
|
|
118 | "ttf") |
| 104 | for i in `find . -maxdepth 1 -type f -name "*.ttf"` |
119 | for i in `find . -maxdepth 1 -type f -name "*.ttf"` |
| 105 | do |
120 | do |
| 106 | insinto ${TEXMF}/fonts/truetype/${SUPPLIER}/${PN} |
121 | insinto ${TEXMF}/fonts/truetype/${SUPPLIER}/${PN} |
| 107 | doins $i |
122 | doins $i || die "doins $i failed" |
| 108 | done |
123 | done |
| 109 | ;; |
124 | ;; |
| 110 | "styles") |
125 | "bst") |
|
|
126 | for i in `find . -maxdepth 1 -type f -name "*.bst"` |
|
|
127 | do |
|
|
128 | insinto ${TEXMF}/bibtex/bst/${PN} |
|
|
129 | doins $i || die "doins $i failed" |
|
|
130 | done |
|
|
131 | ;; |
|
|
132 | "styles") |
| 111 | latex-package_src_doinstall sty cls fd clo def |
133 | latex-package_src_doinstall sty cls fd clo def cfg bst |
| 112 | ;; |
134 | ;; |
| 113 | "doc") |
135 | "doc") |
| 114 | latex-package_src_doinstall tex dtx dvi ps pdf |
136 | latex-package_src_doinstall tex dtx dvi ps pdf |
| 115 | ;; |
137 | ;; |
| 116 | "fonts") |
138 | "fonts") |
| 117 | latex-package_src_doinstall tfm vg afm pfb ttf |
139 | latex-package_src_doinstall tfm vf afm pfb ttf |
| 118 | ;; |
140 | ;; |
| 119 | "bin") |
141 | "bin") |
| 120 | latex-package_src_doinstall sh |
142 | latex-package_src_doinstall sh |
| 121 | ;; |
143 | ;; |
| 122 | "all") |
144 | "all") |
| 123 | latex-package_src_doinstall styles fonts bin doc |
145 | latex-package_src_doinstall styles fonts bin doc |
| 124 | ;; |
146 | ;; |
| 125 | esac |
147 | esac |
| 126 | shift |
148 | shift |
| 127 | done |
149 | done |
| 128 | } |
150 | } |
| 129 | |
151 | |
| 130 | latex-package_src_compile() { |
152 | latex-package_src_compile() { |
| 131 | debug-print function $FUNCNAME $* |
153 | debug-print function $FUNCNAME $* |
| 132 | cd ${S} |
|
|
| 133 | for i in `find \`pwd\` -maxdepth 1 -type f -name "*.ins"` |
154 | for i in `find \`pwd\` -maxdepth 1 -type f -name "*.ins"` |
| 134 | do |
155 | do |
| 135 | einfo "Extracting from $i" |
156 | einfo "Extracting from $i" |
| 136 | latex --interaction=batchmode $i &> /dev/null |
157 | latex --interaction=batchmode $i &> /dev/null |
| 137 | done |
158 | done |
| 138 | } |
159 | } |
| 139 | |
160 | |
| 140 | latex-package_src_install() { |
161 | latex-package_src_install() { |
| 141 | debug-print function $FUNCNAME $* |
162 | debug-print function $FUNCNAME $* |
| 142 | cd ${S} |
|
|
| 143 | latex-package_src_doinstall all |
163 | latex-package_src_doinstall all |
|
|
164 | if [ -n "${DOCS}" ] ; then |
|
|
165 | dodoc ${DOCS} |
|
|
166 | fi |
| 144 | } |
167 | } |
| 145 | |
168 | |
| 146 | latex-package_pkg_postinst() { |
169 | latex-package_pkg_postinst() { |
| 147 | debug-print function $FUNCNAME $* |
170 | debug-print function $FUNCNAME $* |
| 148 | latex-package_rehash |
171 | latex-package_rehash |
| 149 | } |
172 | } |
| 150 | |
173 | |
| 151 | latex-package_pkg_postrm() { |
174 | latex-package_pkg_postrm() { |
| 152 | debug-print function $FUNCNAME $* |
175 | debug-print function $FUNCNAME $* |
| 153 | latex-package_rehash |
176 | latex-package_rehash |
| 154 | } |
177 | } |
| 155 | |
178 | |
| 156 | latex-package_rehash() { |
179 | latex-package_rehash() { |
| 157 | debug-print function $FUNCNAME $* |
180 | debug-print function $FUNCNAME $* |
|
|
181 | if latex-package_has_tetex_3 ; then |
|
|
182 | texmf-update |
|
|
183 | else |
| 158 | texconfig rehash |
184 | texconfig rehash |
|
|
185 | fi |
| 159 | } |
186 | } |
| 160 | |
187 | |
| 161 | EXPORT_FUNCTIONS src_compile src_install pkg_postinst pkg_postrm |
188 | EXPORT_FUNCTIONS src_compile src_install pkg_postinst pkg_postrm |