blob: 45bf6e2e2c67bdb51dd7cf7534ee5f405d552374 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/passivetex/passivetex-1.4.ebuild,v 1.12 2003/10/22 10:23:54 obz Exp $
S=${WORKDIR}
DESCRIPTION="A namespace-aware XML parser written in Tex"
SRC_URI="http://users.ox.ac.uk/~rahtz/passivetex/${PN}.zip"
HOMEPAGE="http://users.ox.ac.uk/~rahtz/passivetex/"
LICENSE="freedist"
KEYWORDS="x86 sparc "
SLOT="0"
IUSE=""
RDEPEND="virtual/tetex"
DEPEND="${RDEPEND}
app-arch/unzip"
src_unpack() {
unpack ${A}
rm -f Makefile
cp ${FILESDIR}/${P}-Makefile Makefile
}
src_install () {
make DESTDIR=${D} install || die
}
pkg_postinst() {
[ -e /usr/bin/mktexlsr ] && /usr/bin/mktexlsr
}
|