| 1 | # Author Matthew Turk <m-turk@nwu.edu> |
1 | # Author Matthew Turk <m-turk@nwu.edu> |
| 2 | # An ebuild calling this class can cd to the appropriate |
2 | # |
| 3 | # directory and call latex-package_src_doinstall all, or leave |
3 | # This eClass is designed to be easy to use and implement. The vast majority of |
| 4 | # the src_install function as-is if the system is single-directory. |
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 |
|
|
6 | # SUPPLIER must also be defined. |
|
|
7 | # |
|
|
8 | # However, those packages that contain subdirectories must process each |
|
|
9 | # subdirectory individually. For example, a package that contains directories |
|
|
10 | # DIR1 and DIR2 must call latex-package_src_compile() and |
|
|
11 | # latex-package_src_install() in each directory, as shown here: |
|
|
12 | # |
|
|
13 | # src_compile() { |
|
|
14 | # cd ${S} |
|
|
15 | # cd DIR1 |
|
|
16 | # latex-package_src_compile |
|
|
17 | # cd .. |
|
|
18 | # cd DIR2 |
|
|
19 | # latex-package_src_compile |
|
|
20 | # } |
|
|
21 | # |
|
|
22 | # src_install() { |
|
|
23 | # cd ${S} |
|
|
24 | # cd DIR1 |
|
|
25 | # latex-package_src_install |
|
|
26 | # cd .. |
|
|
27 | # cd DIR2 |
|
|
28 | # latex-package_src_install |
|
|
29 | # } |
|
|
30 | # |
|
|
31 | # 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 |
|
|
33 | # TeX files that come with the source. Note that we break TeX layout standards |
|
|
34 | # by placing documentation in /usr/share/doc/${PN} |
|
|
35 | # |
|
|
36 | # For examples of basic installations, check out app-text/latex-aastex and |
|
|
37 | # app-text/latex-leaflet. |
|
|
38 | # |
|
|
39 | # 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, |
|
|
41 | # you must either grab each file individually, or find a place to mirror an |
|
|
42 | # archive of them. (iBiblio) |
| 5 | |
43 | |
| 6 | inherit base |
44 | inherit base |
|
|
45 | INHERITED="$INHERITED $ECLASS" |
| 7 | |
46 | |
| 8 | newdepend ">=app-text/tetex-1.0.7" |
47 | newdepend ">=app-text/tetex-1.0.7 |
|
|
48 | >=sys-apps/texinfo-4.2-r5" |
| 9 | ECLASS=latex-package |
49 | ECLASS=latex-package |
| 10 | HOMEPAGE="http://www.tug.org/" |
50 | HOMEPAGE="http://www.tug.org/" |
| 11 | SRC_URI="ftp://tug.ctan.org/macros/latex/" |
51 | SRC_URI="ftp://tug.ctan.org/macros/latex/" |
| 12 | S=${WORKDIR}/${P} |
52 | S=${WORKDIR}/${P} |
| 13 | TEXMF="/usr/share/texmf" |
53 | TEXMF="/usr/share/texmf" |
| … | |
… | |
| 16 | latex-package_src_doinstall() { |
56 | latex-package_src_doinstall() { |
| 17 | debug-print function $FUNCNAME $* |
57 | debug-print function $FUNCNAME $* |
| 18 | # This actually follows the directions for a "single-user" system |
58 | # This actually follows the directions for a "single-user" system |
| 19 | # at http://www.ctan.org/installationadvice/ modified for gentoo. |
59 | # at http://www.ctan.org/installationadvice/ modified for gentoo. |
| 20 | [ -z "$1" ] && latex-package_src_install all |
60 | [ -z "$1" ] && latex-package_src_install all |
| 21 | |
61 | |
| 22 | while [ "$1" ]; do |
62 | while [ "$1" ]; do |
| 23 | case $1 in |
63 | case $1 in |
| 24 | "sh") |
64 | "sh") |
| 25 | for i in `find . -maxdepth 1 -name "*.${1}"` |
65 | for i in `find . -maxdepth 1 -type f -name "*.${1}"` |
| 26 | do |
66 | do |
| 27 | dobin $i |
67 | dobin $i |
| 28 | done |
68 | done |
| 29 | ;; |
69 | ;; |
| 30 | "sty" | "cls" | "fd") |
70 | "sty" | "cls" | "fd" | "clo" | "def") |
| 31 | for i in `find . -maxdepth 1 -name "*.${1}"` |
71 | for i in `find . -maxdepth 1 -type f -name "*.${1}"` |
| 32 | do |
72 | do |
| 33 | insinto ${TEXMF}/tex/latex/${PN} |
73 | insinto ${TEXMF}/tex/latex/${PN} |
| 34 | doins $i |
74 | doins $i |
| 35 | done |
75 | done |
| 36 | ;; |
76 | ;; |
| 37 | "dvi" | "ps" | "pdf" | "tex") |
77 | "dvi" | "ps" | "pdf") |
| 38 | for i in `find . -maxdepth 1 -name "*.${1}"` |
78 | for i in `find . -maxdepth 1 -type f -name "*.${1}"` |
| 39 | do |
79 | do |
| 40 | insinto ${TEXMF}/doc/latex/${PN} |
|
|
| 41 | doins $i |
80 | dodoc $i |
| 42 | done |
81 | done |
| 43 | ;; |
82 | ;; |
|
|
83 | "tex" | "dtx") |
|
|
84 | for i in `find . -maxdepth 1 -type f -name "*.${1}"` |
|
|
85 | do |
|
|
86 | texi2dvi -q -c --language=latex $i |
|
|
87 | done |
|
|
88 | ;; |
| 44 | "tfm" | "vf" | "afm" | "pfb") |
89 | "tfm" | "vf" | "afm" | "pfb") |
| 45 | for i in `find . -maxdepth 1 -name "*.${1}"` |
90 | for i in `find . -maxdepth 1 -type f -name "*.${1}"` |
| 46 | do |
91 | do |
| 47 | insinto ${TEXMF}/fonts/${1}/${SUPPLIER}/${PN} |
92 | insinto ${TEXMF}/fonts/${1}/${SUPPLIER}/${PN} |
| 48 | doins $i |
93 | doins $i |
| 49 | done |
94 | done |
| 50 | ;; |
95 | ;; |
| 51 | "ttf") |
96 | "ttf") |
| 52 | for i in `find . -maxdepth 1 -name "*.ttf"` |
97 | for i in `find . -maxdepth 1 -type f -name "*.ttf"` |
| 53 | do |
98 | do |
| 54 | insinto ${TEXMF}/fonts/truetype/${SUPPLIER}/${PN} |
99 | insinto ${TEXMF}/fonts/truetype/${SUPPLIER}/${PN} |
| 55 | doins $i |
100 | doins $i |
| 56 | done |
101 | done |
| 57 | ;; |
102 | ;; |
| 58 | "styles") |
103 | "styles") |
| 59 | latex-package_src_doinstall sty cls fd |
104 | latex-package_src_doinstall sty cls fd clo def |
| 60 | ;; |
105 | ;; |
| 61 | "doc") |
106 | "doc") |
| 62 | latex-package_src_doinstall dvi ps pdf tex |
107 | latex-package_src_doinstall tex dtx dvi ps pdf |
| 63 | ;; |
108 | ;; |
| 64 | "fonts") |
109 | "fonts") |
| 65 | latex-package_src_doinstall tfm vg afm pfb ttf |
110 | latex-package_src_doinstall tfm vg afm pfb ttf |
| 66 | ;; |
111 | ;; |
| 67 | "bin") |
112 | "bin") |
| … | |
… | |
| 76 | } |
121 | } |
| 77 | |
122 | |
| 78 | latex-package_src_compile() { |
123 | latex-package_src_compile() { |
| 79 | debug-print function $FUNCNAME $* |
124 | debug-print function $FUNCNAME $* |
| 80 | cd ${S} |
125 | cd ${S} |
| 81 | for i in `find \`pwd\` -maxdepth 1 -name "*.ins"` |
126 | for i in `find \`pwd\` -maxdepth 1 -type f -name "*.ins"` |
| 82 | do |
|
|
| 83 | echo "Extracting from $i" |
|
|
| 84 | latex --interaction=batchmode $i > /dev/null |
|
|
| 85 | done |
|
|
| 86 | for i in `find \`pwd\` -maxdepth 1 -name "*.dtx"` |
|
|
| 87 | do |
127 | do |
| 88 | echo "Extracting from $i" |
128 | echo "Extracting from $i" |
| 89 | latex --interaction=batchmode $i > /dev/null |
129 | latex --interaction=batchmode $i > /dev/null |
| 90 | done |
130 | done |
| 91 | } |
131 | } |
| … | |
… | |
| 97 | } |
137 | } |
| 98 | |
138 | |
| 99 | latex-package_pkg_postinst() { |
139 | latex-package_pkg_postinst() { |
| 100 | debug-print function $FUNCNAME $* |
140 | debug-print function $FUNCNAME $* |
| 101 | latex-package_rehash |
141 | latex-package_rehash |
| 102 | if [ ! -e ${TEXMF}/doc/latex/${PN} ] ; then return ; fi |
|
|
| 103 | cd ${TEXMF}/doc/latex/${PN} |
|
|
| 104 | latex-package_make_documentation |
|
|
| 105 | } |
142 | } |
| 106 | |
143 | |
| 107 | latex-package_pkg_postrm() { |
144 | latex-package_pkg_postrm() { |
| 108 | debug-print function $FUNCNAME $* |
145 | debug-print function $FUNCNAME $* |
| 109 | # This may be a bit harsh, so perhaps it should be overridden. |
|
|
| 110 | latex-package_rehash |
146 | latex-package_rehash |
| 111 | if [ ! -e ${TEXMF}/doc/latex/${PN} ] ; then return ; fi |
|
|
| 112 | echo "Removing stale documentation: ${TEXMF}/doc/latex/${PN}" |
|
|
| 113 | rm -rf ${TEXMF}/doc/latex/${PN} |
|
|
| 114 | } |
147 | } |
| 115 | |
148 | |
| 116 | latex-package_rehash() { |
149 | latex-package_rehash() { |
| 117 | debug-print function $FUNCNAME $* |
150 | debug-print function $FUNCNAME $* |
| 118 | texconfig rehash |
151 | texconfig rehash |
| 119 | } |
152 | } |
| 120 | |
153 | |
| 121 | latex-package_make_documentation() { |
|
|
| 122 | debug-print function $FUNCNAME $* |
|
|
| 123 | # This has to come after the installation of all our files. |
|
|
| 124 | # All errors will be discarded. |
|
|
| 125 | for i in `find \`pwd\` -maxdepth 1 -name "*.tex"` |
|
|
| 126 | do |
|
|
| 127 | # Note - we rerun twice to get references properly. |
|
|
| 128 | echo "Making Documentation: $i" |
|
|
| 129 | latex --interaction=batchmode $i > /dev/null |
|
|
| 130 | done |
|
|
| 131 | echo "Completed." |
|
|
| 132 | } |
|
|
| 133 | |
|
|
| 134 | EXPORT_FUNCTIONS src_compile src_install pkg_postinst pkg_postrm |
154 | EXPORT_FUNCTIONS src_compile src_install pkg_postinst pkg_postrm |