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