openbsd-ports/print/texlive/base/Makefile

121 lines
3.4 KiB
Makefile
Raw Normal View History

2010-11-20 04:48:38 -05:00
# $OpenBSD: Makefile,v 1.43 2010/11/20 09:48:40 espie Exp $
COMMENT = base binaries for TeXLive typesetting distribution
DISTNAME = texlive-${DIST_V}-source
2010-07-17 12:37:33 -04:00
PKGNAME = texlive_base-${V}
REVISION = 9
SHARED_LIBS = kpathsea 2.0
WANTLIB = m X11 ICE freetype Xt c Xext fontconfig Xpm SM Xmu gd \
ncurses openjpeg Xaw Xau Xdmcp expat iconv jpeg lcms \
png.>=3 poppler pthread pthread-stubs stdc++ t1.>=4 \
ttf xcb xml2 z
2010-11-20 04:48:38 -05:00
RUN_DEPENDS = print/ghostscript/gnu \
print/detex \
print/dvi2tty \
print/ps2eps \
print/psutils \
print/t1utils \
texlive_texmf-minimal-${V}:print/texlive/texmf,-main
2010-11-20 04:48:38 -05:00
LIB_DEPENDS = devel/t1lib \
graphics/png \
graphics/gd \
print/freetype \
print/poppler
# Never set SEPARATE_BUILD
CONFIGURE_STYLE = gnu
# Don't put ${PREFIX}/include in CPPFLAGS or system icu .h's are picked up
CONFIGURE_ENV += TL_MAKE=${GMAKE} \
CPPFLAGS=-I${LOCALBASE}/include/poppler
WRKBUILD = ${WRKSRC}/Work # Can't build in same dir
CONFIGURE_SCRIPT = ../configure
MAKE_ENV = ${CONFIGURE_ENV}
NO_REGRESS = Yes # not worth the effort.
USE_GMAKE = Yes
USE_LIBTOOL = Yes
2010-10-18 17:25:07 -04:00
USE_GROFF = Yes
.if ${MACHINE_ARCH} == "sparc64"
CFLAGS += -fPIC
.endif
# clisp limits which arches we can use xindy on
.if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "amd64"
2010-11-20 04:48:38 -05:00
BUILD_DEPENDS += lang/clisp
LIB_DEPENDS += devel/libsigsegv \
devel/ffcall
2010-07-17 12:37:33 -04:00
WANTLIB += sigsegv avcall callback
CONFIGURE_ARGS += --enable-xindy
PKG_ARGS += -Dxindy=1
WANTLIB += readline
MODULES += devel/gettext
.else
PKG_ARGS += -Dxindy=0
.endif
# Do not link with system icu. TeXLive ICU is not vanilla (Yet)!
CONFIGURE_ARGS += --x-includes=${X11BASE}/include \
--x-libraries=${X11BASE}/lib \
--with-system-freetype2 \
--with-system-freetype \
--with-freetype-includes=${LOCALBASE}/include/freetype1/freetype \
--with-freetype-libdir=${LOCALBASE}/lib \
--with-system-gd \
--with-gd-libdir=${LOCALBASE}/lib \
--with-system-libpng \
--with-libpng-includes=${LOCALBASE}/include/libpng \
--with-libpng-libdir=${LOCALBASE}/lib \
--with-system-ncurses \
--with-system-pnglib \
--with-pnglib-libdir=${LOCALBASE}/lib \
--with-pnglib-include=${LOCALBASE}/include/libpng \
--with-system-zlib \
--with-system-t1lib \
--with-t1lib-libdir=${LOCALBASE}/lib \
--with-t1lib-includes=${LOCALBASE}/include \
--with-xpdf-includes=${LOCALBASE}/include/poppler \
--with-xpdf-libdir=${LOCALBASE}/lib \
--enable-texinfo=no \
--with-xdvi-x-toolkit=xaw \
--enable-texi2html=no \
--enable-detex=no \
--enable-dvi2tty=no \
--enable-ps2eps=no \
--enable-psutils=no \
--enable-t1utils=no \
--disable-threads \
--with-old-mac-fonts \
--with-tex-banner=PuffTeX-2009 \
--disable-multiplatform \
--disable-native-texlive-build \
--with-system-xpdf # link poppler, yay :)
SUBST_VARS += TRUEPREFIX LOCALBASE
# clear upstreams .orig files, so update-patches is not confused
post-extract:
find ${WRKDIST} -name '*.orig' | xargs rm
post-patch:
${SUBST_CMD} ${WRKSRC}/utils/xindy/rte/ordrules/Makefile.in
# just to silence error - never used
pre-install:
mkdir ${WRKSRC}/inst
post-install:
${INSTALL_SCRIPT} ${FILESDIR}/tl-link-config ${PREFIX}/bin
${SUBST_CMD} ${PREFIX}/bin/tl-link-config
${INSTALL_DATA_DIR} ${PREFIX}/share/texmf/web2c
${INSTALL_DATA} -c ${FILESDIR}/fmtutil.cnf-minimal \
${PREFIX}/share/texmf/web2c
.include <bsd.port.mk>