blob: c8c3e1cb3f4136d457158b380b25c88d0bc02f78 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-tex/eurosym/eurosym-1.2.ebuild,v 1.9 2004/06/14 17:44:12 aliz Exp $
inherit latex-package
S=${WORKDIR}/${PN}
DESCRIPTION="LaTeX package and fonts used to set the euro (currency) symbol."
SRC_URI="ftp://ftp.dante.de/tex-archive/fonts/eurosym.tar.gz"
HOMEPAGE="ftp://ftp.dante.de/tex-archive/help/Catalogue/entries/eurosym.html"
LICENSE="as-is"
IUSE=""
SLOT="0"
KEYWORDS="x86 ~ppc amd64 ~sparc"
SUPPLIER="public"
src_install() {
dodoc README Changes
cd ${S}/tfm
latex-package_src_doinstall all
cd ${S}/sty
latex-package_src_doinstall all
cd ${S}
insinto ${TEXMF}/fonts/type1/${SUPPLIER}/${PN}
doins contrib/type1/fonts/type1/eurosym/*
insinto ${TEXMF}/dvips/config/
doins contrib/type1/dvips/config/eurosym.map
insinto ${TEXMF}/fonts/source/${SUPPLIER}/${PN}
doins src/*.mf
cd ${S}/doc
dodoc *
}
|