| 1 | # Copyright 1999-2004 Gentoo Foundation |
1 | # Copyright 1999-2004 Gentoo Foundation |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
| 3 | # $Header: /var/cvsroot/gentoo-x86/eclass/texlive-module.eclass,v 1.2 2007/10/17 14:34:09 aballier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/texlive-module.eclass,v 1.3 2007/10/20 12:51:25 aballier Exp $ |
| 4 | |
4 | |
| 5 | # |
5 | # |
| 6 | # Original Author: Alexis Ballier <aballier@gentoo.org> |
6 | # Original Author: Alexis Ballier <aballier@gentoo.org> |
| 7 | # Purpose: Provide generic install functions so that modular texlive's texmf ebuilds will |
7 | # Purpose: Provide generic install functions so that modular texlive's texmf ebuilds will |
| 8 | # only have to inherit this eclass. |
8 | # only have to inherit this eclass. |
| … | |
… | |
| 79 | |
79 | |
| 80 | # src_install, exported function: |
80 | # src_install, exported function: |
| 81 | # Install texmf and config files to the system |
81 | # Install texmf and config files to the system |
| 82 | |
82 | |
| 83 | texlive-module_src_install() { |
83 | texlive-module_src_install() { |
|
|
84 | for i in texmf/fmtutil/format*.cnf; do |
|
|
85 | [ -f "${i}" ] && etexlinks "${i}" |
|
|
86 | done |
|
|
87 | |
| 84 | insinto /usr/share |
88 | insinto /usr/share |
| 85 | [ -d texmf ] && doins -r texmf |
89 | [ -d texmf ] && doins -r texmf |
| 86 | [ -d texmf-dist ] && doins -r texmf-dist |
90 | [ -d texmf-dist ] && doins -r texmf-dist |
| 87 | use doc && [ -d texmf-doc ] && doins -r texmf-doc |
91 | use doc && [ -d texmf-doc ] && doins -r texmf-doc |
| 88 | |
92 | |