pkgsrc/mk/tex.buildlink3.mk

134 lines
3.4 KiB
Makefile
Raw Normal View History

# $NetBSD: tex.buildlink3.mk,v 1.14 2006/04/19 13:14:57 tonio Exp $
#
# A Makefile fragment for TeX and LaTeX packages
#
# * Determine the version of teTeX to be used.
# Modify TEX_DEFAULT to change the default version (default to teTeX3)
#
# * tex files are installed...
# teTeX[2]
# -> ${PREFIX}/share/texmf
2006-02-27 13:14:50 +01:00
# teTeX3
# -> ${PREFIX}/share/texmf-local
# The variables PKG_TEXMFPREFIX and PKG_LOCALTEXMFPREFIX defines the main
# texmf tree, where teTeX should install his own texmf tree, and the local
# texmf tree, which is the place where other packages should install their
# latex files, like additional styles.
# NOTE: before all TeX-related packages are converted to use these
# variables, we will keep
# PKG_TEXMFPREFIX=PKG_LOCALTEXMFPREFIX=${PREFIX}/share/texmf
#
# * Assume each package supports teTeX{2,3} by default.
# To change the supported TeX versions, define TEX_ACCEPTED
2005-11-15 18:22:40 +01:00
# explicitly before including mk/tex.buildlink3.mk. Note that the
# order is important.
#
# * Optionally set TEX_DEPMETHOD to "build" to only add a build-time
# dependency on TeX. That may be useful for creating documentation
#
# Variables for users:
#
# TEX_DEFAULT
# Description:
# The user's favorite TeX implementation
# Possible values:
# teTeX2, teTeX3
# Default value:
# teTeX3
#
# Variables tex packages can provide:
#
# TEX_DEPMETHOD
# Description:
# Set tex as DEPENDS or BUILD_DEPENDS
# Possible values:
# run, build
# Default value:
# run
#
# TEX_ACCEPTED
# Description:
# Versions the package accepts (supports).
# Possible values:
# teTeX2, teTeX3
# Default value:
# teTeX2, teTeX3
#
# Variables provided for tex packages:
#
# PKG_TEXMFPREFIX
# Description:
# Path to the directory the standard tex files can be found
# Possible values:
# ${PREFIX}/share/texmf
# ${PREFIX}/share/texmf-dist
#
# PKG_LOCALTEXMFPREFIX
# Description:
# Path to the directory the tex for extentions should be installed into
# Possible values:
# ${PREFIX}/share/texmf
# ${PREFIX}/share/texmf-local
#
# TEX_TYPE
# Description:
# The type of the used TeX package
# Possible values:
# teTeX2, teTeX3
.if !defined(TEX_BUILDLINK3_MK)
TEX_BUILDLINK3_MK= # defined
.include "../../mk/bsd.prefs.mk"
TEX_DEPMETHOD?= run
# Assume only teTeX {2-3} are supported by default.
TEX_ACCEPTED?= teTeX2 teTeX3
# set up variables for buildlink or depends
#
BUILDLINK_API_DEPENDS.teTeX2= teTeX-bin-2.[0-9]*
BUILDLINK_PKGSRCDIR.teTeX2= ../../print/teTeX-bin
BUILDLINK_API_DEPENDS.teTeX3= teTeX-bin-3.[0-9]*
BUILDLINK_PKGSRCDIR.teTeX3= ../../print/teTeX3-bin
# Determine the TeX version to be used.
#
.if !defined(_TEX_TYPE)
_TEX_TYPE= ${TEX_DEFAULT}
.endif
.if !empty(TEX_ACCEPTED:M${_TEX_TYPE})
TEX_TYPE= ${_TEX_TYPE}
.else
TEX_TYPE= none
.endif
# Set version specifics.
#
.if ${TEX_TYPE} == "teTeX3"
_TEX_DEPENDENCY= ${BUILDLINK_API_DEPENDS.teTeX3}
_TEX_PKGSRCDIR= ${BUILDLINK_PKGSRCDIR.teTeX3}
.elif ${TEX_TYPE} == "teTeX2"
_TEX_DEPENDENCY= ${BUILDLINK_API_DEPENDS.teTeX2}
_TEX_PKGSRCDIR= ${BUILDLINK_PKGSRCDIR.teTeX2}
.endif
.endif # TEX_BUILDLINK3_MK
.if ${TEX_TYPE} == "none"
PKG_FAIL_REASON= \
"${_TEX_TYPE} is not an acceptable (${TEX_ACCEPTED})\
TeX version for ${PKGNAME}."
.else
PLIST_SUBST+= TEX_TYPE=${TEX_TYPE:Q}
.if (${TEX_DEPMETHOD} == "build")
BUILD_DEPENDS+= ${_TEX_DEPENDENCY}:${_TEX_PKGSRCDIR}
.else
TEX_DEPMETHOD:= run
. include "${_TEX_PKGSRCDIR}/buildlink3.mk"
.endif
.endif