1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-10 07:04:03 +00:00
freebsd-ports/arabic/arabtex/Makefile
Pav Lucistnik 3566b4e16d This LaTeX package extends the capabilities of TeX/LaTeX to generate
the arabic writing from an ASCII transliteration for texts in several
languages using the arabic script.
Several other common encodings are also supported.

PR:		ports/83515
Submitted by:	Nicola Vitale <nivit@email.it>
2005-07-19 20:35:18 +00:00

53 lines
1.1 KiB
Makefile

# New ports collection makefile for: arabtex
# Date created: 2005-07-15
# Whom: Nicola Vitale <nivit@email.it>
#
# $FreeBSD$
#
PORTNAME= arabtex
PORTVERSION= 3.11
CATEGORIES= arabic print
MASTER_SITES= ftp://ftp.informatik.uni-stuttgart.de/pub/${PORTNAME}/
DISTNAME= arab${PORTVERSION:S/.//}
EXTRACT_SUFX= .tgz
MAINTAINER= nivit@email.it
COMMENT= A TeX/LaTeX package to generate the arabic writing
BUILD_DEPENDS= mktexlsr:${PORTSDIR}/print/teTeX \
${TEXMFLOCAL_LSR}:${PORTSDIR}/print/tex-texmflocal
RUN_DEPENDS= ${BUILD_DEPENDS}
NO_WRKSUBDIR= yes
NO_BUILD= yes
PLIST_SUB= MKTEXLSR=${MKTEXLSR}
TEXMFLOCAL= ${LOCALBASE}/share/texmf-local
TEXMFLOCAL_LSR= ${TEXMFLOCAL}/ls-R
MKTEXLSR= ${LOCALBASE}/bin/mktexlsr
FIND_DIRS= -type d \! -empty
FIND_DATA= -type f
FIND_HERE= fonts tex
.if !defined(NOPORTDOCS)
FIND_HERE+= doc
.endif
do-install:
@cd ${WRKSRC}; \
DIRS=$$(${FIND} ${FIND_HERE} ${FIND_DIRS}); \
for DIR in $${DIRS}; do \
${MKDIR} ${TEXMFLOCAL}/$${DIR}; \
done; \
FILES=$$(${FIND} ${FIND_HERE} ${FIND_DATA} ); \
for FILE in $${FILES}; do \
${INSTALL_DATA} $${FILE} ${TEXMFLOCAL}/$${FILE}; \
done;
post-install:
@${MKTEXLSR}
.include <bsd.port.mk>