blob: 1ff9136d084c39dcfaa72e58d9812ab7e26b2977 (
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
42
|
# 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.7 2004/06/19 03:41:14 kloeri Exp $
inherit latex-package
DESCRIPTION="Prosper is a LaTeX class for writing transparencies"
HOMEPAGE="http://prosper.sf.net/"
SRC_URI="mirror://sourceforge/prosper/${P}.tar.gz
mirror://sourceforge/prosper/PPRblends.sty.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ppc sparc"
DEPEND=""
S=${WORKDIR}/${PN}
IUSE=""
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
}
|