blob: 0f86caaaa5711e2a7c7db59d5de71bdc05612ccd (
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
40
41
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-tex/prosper/prosper-1.00.4.ebuild,v 1.5 2003/12/08 04:51:21 usata Exp $
inherit latex-package
DESCRIPTION="Prosper is a LaTeX class for writing transparencies"
HOMEPAGE="http://prosper.sf.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz
mirror://sourceforge/${PN}/PPRblends.sty.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ppc sparc"
DEPEND=""
S=${WORKDIR}/${PN}
src_unpack(){
unpack ${A}
unpack PPRblends.sty.gz
mv PPRblends.sty ${S}/contrib/
}
src_install(){
cd ${S}
latex-package_src_doinstall styles
insinto ${TEXMF}/tex/latex/${PN}/img/
doins img/*.ps img/*.gif
for i in `find ./contrib/ -maxdepth 1 -type f -name "*.sty"`
do
insinto ${TEXMF}/tex/latex/${PN}/contrib/
doins $i
done
insinto ${TEXMF}/tex/latex/${PN}/contrib/img/
doins ./contrib/img/*.ps
dodoc README TODO TROUBLESHOOTINGS INSTALL NEWS FAQ AUTHORS ChangeLog
dodoc doc/*.eps doc/*.fig doc/*.pdf doc/*.tex doc/*.ps
docinto doc-examples/
dodoc doc/doc-examples/*.ps doc/doc-examples/*.tex
docinto contrib/
dodoc contrib/*.ps contrib/*.tex
}
|