| 1 | # Author Matthew Turk <m-turk@nwu.edu> |
1 | # Author Matthew Turk <satai@gentoo.org> |
| 2 | # |
2 | # |
| 3 | # This eClass is designed to be easy to use and implement. The vast majority of |
3 | # 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 |
4 | # 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 |
5 | # successful installation. If fonts need to be installed, then the variable |
| 6 | # SUPPLIER must also be defined. |
6 | # SUPPLIER must also be defined. |
| … | |
… | |
| 81 | done |
81 | done |
| 82 | ;; |
82 | ;; |
| 83 | "tex" | "dtx") |
83 | "tex" | "dtx") |
| 84 | for i in `find . -maxdepth 1 -type f -name "*.${1}"` |
84 | for i in `find . -maxdepth 1 -type f -name "*.${1}"` |
| 85 | do |
85 | do |
|
|
86 | echo "Making documentation: $i" |
| 86 | texi2dvi -q -c --language=latex $i |
87 | texi2dvi -q -c --language=latex $i |
| 87 | done |
88 | done |
| 88 | ;; |
89 | ;; |
| 89 | "tfm" | "vf" | "afm" | "pfb") |
90 | "tfm" | "vf" | "afm" | "pfb") |
| 90 | for i in `find . -maxdepth 1 -type f -name "*.${1}"` |
91 | for i in `find . -maxdepth 1 -type f -name "*.${1}"` |
| … | |
… | |
| 111 | ;; |
112 | ;; |
| 112 | "bin") |
113 | "bin") |
| 113 | latex-package_src_doinstall sh |
114 | latex-package_src_doinstall sh |
| 114 | ;; |
115 | ;; |
| 115 | "all") |
116 | "all") |
| 116 | latex-package_src_doinstall styles doc fonts bin |
117 | latex-package_src_doinstall styles fonts bin doc |
| 117 | ;; |
118 | ;; |
| 118 | esac |
119 | esac |
| 119 | shift |
120 | shift |
| 120 | done |
121 | done |
| 121 | } |
122 | } |