blob: 27eea07e2d6178ae2b63c0bf2818bda1fc8a662a (
plain) (
blame)
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
|
# ex:ts=8
# Ports collection makefile for: vntex
# Date created: Tue Feb 06, 2001
# Whom: David O'Brien (obrien@NUXI.com)
#
# $FreeBSD$
#
PORTNAME= vntex
PORTVERSION= 1.0
PORTREVISION= 2
CATEGORIES= vietnamese print
MASTER_SITES= http://www.fi.muni.cz/~thanh/download/
DISTNAME= vntex
MAINTAINER= obrien@FreeBSD.org
COMMENT= teTeX Vietnamese language + font support
# actually just need to make sure ${PREFIX}/share/texmf/tex/ exists
RUN_DEPENDS= ${LOCALBASE}/share/texmf/tex/plain:${PORTSDIR}/print/teTeX
USE_ZIP= yes
NO_BUILD= yes
do-install:
@cd ${WRKDIR}/tex ; tar cf - . \
| (cd ${PREFIX}/share/texmf/tex ; tar --unlink -xpBf -)
@cd ${WRKDIR}/fonts ; tar cf - . \
| (cd ${PREFIX}/share/texmf/fonts ; tar --unlink -xpBf -)
@${PREFIX}/bin/texconfig rehash
.if !defined(NOPORTDOCS)
@# ${MKDIR} ${PREFIX}/share/doc/vntex
@# ${INSTALL_MAN} ${WRKSRC}/foo.ps ${PREFIX}/share/doc/vntex
.endif
.include <bsd.port.mk>
|