blob: 171d0f81acc8399b07ca4efbfb6062dc12c6bcc3 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-tex/breqn/breqn-0.94.ebuild,v 1.1 2004/10/09 10:24:50 usata Exp $
inherit latex-package
MY_P=${P//[-.]/}
DESCRIPTION="LaTeX package for line breaking of equations."
HOMEPAGE="http://www.ams.org/"
SRC_URI="ftp://ftp.ams.org/pub/tex/${MY_P}.tgz"
LICENSE="as-is"
SLOT="0"
IUSE=""
KEYWORDS="~x86"
S=${WORKDIR}/${MY_P}
src_install() {
latex-package_src_install
insinto ${TEXMF}/tex/latex/${PN}
doins *.sym
dodoc *.txt
}
|