| 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/latex-package.eclass,v 1.23 2005/04/09 04:42:10 usata Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/latex-package.eclass,v 1.24 2005/07/06 20:20:03 agriffis Exp $ |
| 4 | # |
4 | # |
| 5 | # Author Matthew Turk <satai@gentoo.org> |
5 | # Author Matthew Turk <satai@gentoo.org> |
| 6 | # |
6 | # |
| 7 | # This eClass is designed to be easy to use and implement. The vast majority of |
7 | # This eClass is designed to be easy to use and implement. The vast majority of |
| 8 | # LaTeX packages will only need to define SRC_URI (and sometimes S) for a |
8 | # LaTeX packages will only need to define SRC_URI (and sometimes S) for a |
| … | |
… | |
| 44 | # signatures EVERY TIME. For this reason, if you are grabbing from the CTAN, |
44 | # signatures EVERY TIME. For this reason, if you are grabbing from the CTAN, |
| 45 | # you must either grab each file individually, or find a place to mirror an |
45 | # you must either grab each file individually, or find a place to mirror an |
| 46 | # archive of them. (iBiblio) |
46 | # archive of them. (iBiblio) |
| 47 | |
47 | |
| 48 | inherit base |
48 | inherit base |
| 49 | INHERITED="$INHERITED $ECLASS" |
|
|
| 50 | |
49 | |
| 51 | DEPEND="virtual/tetex |
50 | DEPEND="virtual/tetex |
| 52 | >=sys-apps/texinfo-4.2-r5" |
51 | >=sys-apps/texinfo-4.2-r5" |
| 53 | ECLASS=latex-package |
|
|
| 54 | HOMEPAGE="http://www.tug.org/" |
52 | HOMEPAGE="http://www.tug.org/" |
| 55 | SRC_URI="ftp://tug.ctan.org/macros/latex/" |
53 | SRC_URI="ftp://tug.ctan.org/macros/latex/" |
| 56 | S=${WORKDIR}/${P} |
54 | S=${WORKDIR}/${P} |
| 57 | TEXMF="/usr/share/texmf" |
55 | TEXMF="/usr/share/texmf" |
| 58 | SUPPLIER="misc" # This refers to the font supplier; it should be overridden |
56 | SUPPLIER="misc" # This refers to the font supplier; it should be overridden |