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