aboutsummaryrefslogtreecommitdiffstats
path: root/print/tex-luatex/Makefile
blob: 0ac93168d18be3c5e6bbcba59506fc6997a8496b (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
# $FreeBSD$

PORTNAME=   luatex
PORTVERSION=    0.80.0
CATEGORIES= print
MASTER_SITES=   ftp://tug.org/historic/systems/texlive/2015/
PKGNAMEPREFIX=  tex-
DISTNAME=   texlive-${DISTVERSION_TEXLIVE_SOURCE}-source
DISTFILES=  ${DISTNAME}${EXTRACT_SUFX} \
        ${DISTNAME_TEXMF}${EXTRACT_SUFX}
DIST_SUBDIR=    TeX
EXTRACT_ONLY=   ${DISTNAME}${EXTRACT_SUFX}

MAINTAINER= hrs@FreeBSD.org
COMMENT=    Extended version of pdfTeX using Lua

LIB_DEPENDS=    libfreetype.so:${PORTSDIR}/print/freetype2 \
        libgraphite.so:${PORTSDIR}/graphics/silgraphite \
        libicuio.so:${PORTSDIR}/devel/icu \
        libpng.so:${PORTSDIR}/graphics/png \
        libpoppler.so:${PORTSDIR}/graphics/poppler \
        libTECkit.so:${PORTSDIR}/textproc/teckit \
        libzzip.so:${PORTSDIR}/devel/zziplib

USE_TEX=    kpathsea web2c texmf formats texlua texluajit fmtutil
USE_XORG=   pixman
USE_GONME=  cairo
USE_LDCONFIG=   yes
USES=       pkgconfig tar:xz gmake libtool
TEXHASHDIRS=    ${TEXMFDISTDIR} ${TEXMFVARDIR}
EXTRACT_AFTER_ARGS= ${EXTRACT_FILES:S,^,${DISTNAME}/,}
EXTRACT_FILES=  build-aux \
        libs/xpdf \
        libs/lua52 \
        libs/luajit \
        texk/web2c
EXTRACT_AFTER_ARGS_TEXMF=| ${TAR} -xf - -C ${STAGEDIR}${PREFIX}/share \
        --strip-components 1 --no-same-permission --no-same-owner \
        ${EXTRACT_FILES_TEXMF:S,^,${DISTNAME_TEXMF}/,}
DISTVERSION_TEXLIVE_SOURCE= 20150521
DISTVERSION_TEXLIVE_TEXMF=  20150523
DISTNAME_TEXMF= texlive-${DISTVERSION_TEXLIVE_TEXMF}-texmf
EXTRACT_FILES_TEXMF= \
    texmf-dist/doc/lualatex \
    texmf-dist/doc/luatex \
    texmf-dist/scripts/context/lua \
    texmf-dist/source/luatex \
    texmf-dist/source/lualatex \
    texmf-dist/fonts/map/luatex \
    texmf-dist/tex/plain/config/dviluatex.ini \
    texmf-dist/tex/luatex \
    texmf-dist/tex/plain/config/luatex.ini \
    texmf-dist/tex/generic/config/luatex-unicode-letters.tex \
    texmf-dist/tex/generic/config/luatexiniconfig.tex \
    texmf-dist/tex/generic/context/luatex \
    texmf-dist/tex/latex/latexconfig/dvilualatex.ini \
    texmf-dist/tex/latex/latexconfig/lualatex-reset-codes.tex \
    texmf-dist/tex/latex/latexconfig/lualatexquotejobname.tex \
    texmf-dist/tex/latex/latexconfig/lualatex-patch-kernel.tex \
    texmf-dist/tex/latex/latexconfig/lualatexiniconfig.tex \
    texmf-dist/tex/latex/latexconfig/lualatex.ini \
    texmf-dist/tex/lualatex
WRKSRC=     ${WRKDIR}/${DISTNAME}/texk/web2c
GNU_CONFIGURE=  yes
EXCLUDE_ENGINES=aleph etex pdftex mf mf-nowin mp ptex eptex uptex euptex \
        xetex tex synctex
CONFIGURE_ARGS= ${EXCLUDE_ENGINES:S/^/--disable-/} \
        --enable-luatex \
        --enable-luajittex \
        --enable-web2c \
        --disable-web-progs \
        --with-system-freetype2 \
        --with-freetype2-includes=${LOCALBASE}/include/freetype2 \
        --with-freetype2-libdir=${LOCALBASE}/lib \
        --with-system-gd \
        --with-system-poppler \
        --with-system-t1lib \
        --with-system-teckit \
        --with-teckit-includes=${LOCALBASE}/include/teckit \
        --with-teckit-libdir=${LOCALBASE}/lib \
        --with-system-zziplib \
        --with-system-zlib
.for L in cairo gmp kpathsea libpng mpfr pixman ptexenc icu
CONFIGURE_ARGS+=--with-system-$L \
        --with-$L-include=${LOCALBASE}/include \
        --with-$L-libdir=${LOCALBASE}/lib
.endfor
CPPFLAGS+=  -I${LOCALBASE}/include
MAKE_JOBS_UNSAFE=   yes
TEX_FORMATS=    luatex

# buildenv and dumpenv in Makefile uses hard-coded TEXMFCNF.
post-extract:
    cd ${WRKSRC}/.. && \
        ${LN} -s -f ${LOCALBASE}/${TEXMFDISTDIR}/web2c kpathsea

pre-configure:
    for D in libs/xpdf; do \
        cd ${WRKDIR}/${DISTNAME}/$$D && \
        ${SETENV} ${CONFIGURE_ENV} ${SH} ${CONFIGURE_SCRIPT} ${CONFIGURE_ARGS}; \
    done

pre-install:
    ${CAT} ${DISTDIR}/${DIST_SUBDIR}/texlive-${DISTVERSION_TEXLIVE_TEXMF}-texmf${EXTRACT_SUFX} \
        ${EXTRACT_AFTER_ARGS_TEXMF}

.include <bsd.port.mk>