| 1 |
# Author Matthew Turk <satai@gentoo.org> |
| 2 |
# |
| 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 |
| 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) |
| 43 |
|
| 44 |
inherit base |
| 45 |
INHERITED="$INHERITED $ECLASS" |
| 46 |
|
| 47 |
newdepend ">=app-text/tetex-1.0.7 |
| 48 |
>=sys-apps/texinfo-4.2-r5" |
| 49 |
ECLASS=latex-package |
| 50 |
HOMEPAGE="http://www.tug.org/" |
| 51 |
SRC_URI="ftp://tug.ctan.org/macros/latex/" |
| 52 |
S=${WORKDIR}/${P} |
| 53 |
TEXMF="/usr/share/texmf" |
| 54 |
SUPPLIER="misc" # This refers to the font supplier; it should be overridden |
| 55 |
|
| 56 |
latex-package_src_doinstall() { |
| 57 |
debug-print function $FUNCNAME $* |
| 58 |
# This actually follows the directions for a "single-user" system |
| 59 |
# at http://www.ctan.org/installationadvice/ modified for gentoo. |
| 60 |
[ -z "$1" ] && latex-package_src_install all |
| 61 |
|
| 62 |
while [ "$1" ]; do |
| 63 |
case $1 in |
| 64 |
"sh") |
| 65 |
for i in `find . -maxdepth 1 -type f -name "*.${1}"` |
| 66 |
do |
| 67 |
dobin $i |
| 68 |
done |
| 69 |
;; |
| 70 |
"sty" | "cls" | "fd" | "clo" | "def") |
| 71 |
for i in `find . -maxdepth 1 -type f -name "*.${1}"` |
| 72 |
do |
| 73 |
insinto ${TEXMF}/tex/latex/${PN} |
| 74 |
doins $i |
| 75 |
done |
| 76 |
;; |
| 77 |
"dvi" | "ps" | "pdf") |
| 78 |
for i in `find . -maxdepth 1 -type f -name "*.${1}"` |
| 79 |
do |
| 80 |
insinto /usr/share/doc/${P} |
| 81 |
doins $i |
| 82 |
#dodoc -u $i |
| 83 |
done |
| 84 |
;; |
| 85 |
"tex" | "dtx") |
| 86 |
for i in `find . -maxdepth 1 -type f -name "*.${1}"` |
| 87 |
do |
| 88 |
echo "Making documentation: $i" |
| 89 |
texi2dvi -q -c --language=latex $i |
| 90 |
done |
| 91 |
;; |
| 92 |
"tfm" | "vf" | "afm" | "pfb") |
| 93 |
for i in `find . -maxdepth 1 -type f -name "*.${1}"` |
| 94 |
do |
| 95 |
insinto ${TEXMF}/fonts/${1}/${SUPPLIER}/${PN} |
| 96 |
doins $i |
| 97 |
done |
| 98 |
;; |
| 99 |
"ttf") |
| 100 |
for i in `find . -maxdepth 1 -type f -name "*.ttf"` |
| 101 |
do |
| 102 |
insinto ${TEXMF}/fonts/truetype/${SUPPLIER}/${PN} |
| 103 |
doins $i |
| 104 |
done |
| 105 |
;; |
| 106 |
"styles") |
| 107 |
latex-package_src_doinstall sty cls fd clo def |
| 108 |
;; |
| 109 |
"doc") |
| 110 |
latex-package_src_doinstall tex dtx dvi ps pdf |
| 111 |
;; |
| 112 |
"fonts") |
| 113 |
latex-package_src_doinstall tfm vg afm pfb ttf |
| 114 |
;; |
| 115 |
"bin") |
| 116 |
latex-package_src_doinstall sh |
| 117 |
;; |
| 118 |
"all") |
| 119 |
latex-package_src_doinstall styles fonts bin doc |
| 120 |
;; |
| 121 |
esac |
| 122 |
shift |
| 123 |
done |
| 124 |
} |
| 125 |
|
| 126 |
latex-package_src_compile() { |
| 127 |
debug-print function $FUNCNAME $* |
| 128 |
cd ${S} |
| 129 |
for i in `find \`pwd\` -maxdepth 1 -type f -name "*.ins"` |
| 130 |
do |
| 131 |
echo "Extracting from $i" |
| 132 |
latex --interaction=batchmode $i > /dev/null |
| 133 |
done |
| 134 |
} |
| 135 |
|
| 136 |
latex-package_src_install() { |
| 137 |
debug-print function $FUNCNAME $* |
| 138 |
cd ${S} |
| 139 |
latex-package_src_doinstall all |
| 140 |
} |
| 141 |
|
| 142 |
latex-package_pkg_postinst() { |
| 143 |
debug-print function $FUNCNAME $* |
| 144 |
latex-package_rehash |
| 145 |
} |
| 146 |
|
| 147 |
latex-package_pkg_postrm() { |
| 148 |
debug-print function $FUNCNAME $* |
| 149 |
latex-package_rehash |
| 150 |
} |
| 151 |
|
| 152 |
latex-package_rehash() { |
| 153 |
debug-print function $FUNCNAME $* |
| 154 |
texconfig rehash |
| 155 |
} |
| 156 |
|
| 157 |
EXPORT_FUNCTIONS src_compile src_install pkg_postinst pkg_postrm |