blob: 63e7426ed425b88a3c27dcdf5c05430c544db5da (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-tex/vntex/vntex-20030303.ebuild,v 1.6 2005/08/19 09:14:09 pclouds Exp $
DESCRIPTION="Vietnamese support for TeX"
HOMEPAGE="http://www.vntex.org/"
SRC_URI="mirror://sourceforge/vntex/${P}.tar.gz"
LICENSE="freedist"
KEYWORDS="x86 ~sparc ~amd64"
SLOT="0"
IUSE=""
DEPEND="virtual/tetex"
S=${WORKDIR}
src_install () {
TT=`kpsewhich -expand-var '\$TEXMFMAIN'`
dodir ${TT}
cp -R ${S}/* ${D}/${TT}
}
pkg_postinst() {
[ -e /usr/bin/mktexlsr ] && /usr/bin/mktexlsr
}
pkg_postrm() {
[ -e /usr/bin/mktexlsr ] && /usr/bin/mktexlsr
}
|