- devel/tex-kpathsea: Update version 6.3.5=>6.4.0 - devel/tex-libtexlua: Update distinfo - devel/tex-synctex: Update distinfo - devel/tex-web2c: Update version 20230313=>20240312 - japanese/tex-ptex: Update distinfo - print/tex-basic-engines: Update version 20230313=>20240312 - print/tex-dvipdfmx: Update version 20230313=>20240312 - print/tex-dvipsk: Update version 20230313=>20240312 - print/tex-jadetex: Update version 20230313=>20240312 - print/tex-luatex: Update version 20230313=>20240312 - print/tex-ptexenc: Update version 1.4.3=>1.4.6 - print/tex-xdvik: Bump REVISION - print/tex-xetex: Update verison 0.99993=>20240312 - print/tex-xmltex: Update verison 1.9=>20240312 - print/texlive-base: Update version 20230313=>20240312 - print/texlive-docs: Update version 20230313=>20240312 - print/texlive-texmf-source: Update version 20230313=>20240312 - print/texlive-texmf: Update version 20230313=>20240312 - print/texlive-tlmgr: Update version 20230313=>20240312 - print/xpdfopen: Update version 0.86=>20240312 Sponsored by: Nepustil
61 lines
1.5 KiB
Makefile
61 lines
1.5 KiB
Makefile
PORTNAME= basic-engines
|
|
DISTVERSION= ${TEXLIVE_VERSION}
|
|
CATEGORIES= print
|
|
MASTER_SITES= TEX_CTAN/systems/texlive/${TEXLIVE_YEAR}
|
|
PKGNAMEPREFIX= tex-
|
|
DISTNAME= texlive-${PORTVERSION}-source
|
|
DIST_SUBDIR= TeX
|
|
|
|
MAINTAINER= tex@FreeBSD.org
|
|
COMMENT= Basic TeX Engines
|
|
WWW= https://tug.org/texlive/
|
|
|
|
LIB_DEPENDS= libpng.so:graphics/png
|
|
|
|
USES= libtool localbase pkgconfig tar:xz tex
|
|
USE_TEX= kpathsea web2c
|
|
|
|
GNU_CONFIGURE= yes
|
|
GNU_CONFIGURE_MANPREFIX=${PREFIX}/share
|
|
CONFIGURE_ARGS= ${EXCLUDE_ENGINES:S/^/--disable-/} \
|
|
--disable-missing \
|
|
--with-system-kpathsea \
|
|
--with-system-zlib \
|
|
--with-x=no \
|
|
--without-mf-x-toolkit
|
|
.for L in libpng
|
|
CONFIGURE_ARGS+= --with-$L-include=${LOCALBASE}/include \
|
|
--with-$L-libdir=${LOCALBASE}/lib \
|
|
--with-system-$L
|
|
.endfor
|
|
|
|
INSTALL_TARGET= install-strip
|
|
|
|
EXTRACT_AFTER_ARGS= ${EXTRACT_FILES:S,^,${DISTNAME}/,}
|
|
EXTRACT_FILES= build-aux libs/xpdf texk/web2c
|
|
|
|
WRKSRC= ${WRKDIR}/${DISTNAME}/texk/web2c
|
|
|
|
EXCLUDE_ENGINES= aleph luatex luajittex mf mf-nowin ptex eptex uptex \
|
|
euptex xetex otangle mp pmp upmp web2c web-progs \
|
|
synctex hitex \
|
|
luahbtex \
|
|
luajithbtex \
|
|
mflua \
|
|
mfluajit \
|
|
latex
|
|
|
|
post-extract:
|
|
@${FIND} ${WRKSRC} -name '*.orig' -delete
|
|
|
|
post-configure:
|
|
cd ${WRKDIR}/${DISTNAME}/libs/xpdf && \
|
|
${SETENV} CC="${CC}" CPP="${CPP}" CXX="${CXX}" \
|
|
CFLAGS="${CFLAGS}" CPPFLAGS="${CPPFLAGS}" \
|
|
CXXFLAGS="${CXXFLAGS}" LDFLAGS="${LDFLAGS}" \
|
|
LIBS="${LIBS}" \
|
|
${CONFIGURE_ENV} ${SH} ${CONFIGURE_SCRIPT} \
|
|
${CONFIGURE_ARGS}
|
|
|
|
.include <bsd.port.mk>
|