The find-prefix infrastructure was required in a pkgviews world where packages installed from pkgsrc could have different installation prefixes, and this was a way for a dependency prefix to be determined. Now that pkgviews has been removed there is no longer any need for the overhead of this infrastructure. Instead we use BUILDLINK_PREFIX.pkg for dependencies pulled in via buildlink, or LOCALBASE/PREFIX where the dependency is coming from pkgsrc. Provides a reasonable performance win due to the reduction of `pkg_info -qp` calls, some of which were redundant anyway as they were duplicating the same information provided by BUILDLINK_PREFIX.pkg.
61 lines
1.8 KiB
Makefile
61 lines
1.8 KiB
Makefile
# $NetBSD: Makefile,v 1.14 2015/11/25 12:53:09 jperkin Exp $
|
|
|
|
DISTNAME= texlive-20150521-source
|
|
PKGNAME= dvipsk-5.995
|
|
CATEGORIES= print
|
|
MASTER_SITES= ftp://tug.org/historic/systems/texlive/2015/
|
|
EXTRACT_SUFX= .tar.xz
|
|
|
|
MAINTAINER= minskim@NetBSD.org
|
|
HOMEPAGE= http://www.radicaleye.com/dvips.html
|
|
COMMENT= DVI-to-PostScript translator
|
|
|
|
CONFLICTS+= teTeX-bin<3.0nb24
|
|
CONFLICTS+= teTeX-texmf<3.0nb9
|
|
BUILD_DEPENDS+= tex-texconfig-[0-9]*:../../print/tex-texconfig
|
|
DEPENDS+= tex-dvips>=2013:../../print/tex-dvips
|
|
|
|
EXTRACT_ELEMENTS= ${DISTNAME}/build-aux \
|
|
${DISTNAME}/texk/dvipsk
|
|
|
|
GNU_CONFIGURE= yes
|
|
INFO_FILES= yes
|
|
USE_LIBTOOL= yes
|
|
USE_TOOLS+= pkg-config
|
|
CONFIGURE_DIRS= texk/dvipsk
|
|
|
|
CONFIGURE_ARGS+= --with-system-kpathsea
|
|
|
|
PKG_SYSCONFSUBDIR= texmf
|
|
|
|
MAKE_DIRS+= ${PKG_SYSCONFDIR}/dvips/config
|
|
CONF_FILES= ${PREFIX}/share/examples/dvipsk/config.ps \
|
|
${PKG_SYSCONFDIR}/dvips/config/config.ps
|
|
|
|
BUILD_DEFS+= PAPERSIZE
|
|
LOWER_PAPERSIZE_cmd= ${ECHO} ${PAPERSIZE} | ${TR} '[A-Z]' '[a-z]'
|
|
LOWER_PAPERSIZE= ${LOWER_PAPERSIZE_cmd:sh}
|
|
|
|
INSTALLATION_DIRS+= share/examples/dvipsk
|
|
|
|
TEX_TEXMF_DIRS+= ${PKG_SYSCONFDIR}
|
|
TEX_TEXMF_DIRS+= ${PREFIX}/share/texmf-dist
|
|
|
|
BUILDLINK_API_DEPENDS.kpathsea+= kpathsea>=6.2.1
|
|
.include "../../print/kpathsea/buildlink3.mk"
|
|
.include "../../print/kpathsea/texmf.mk"
|
|
|
|
post-build:
|
|
${MKDIR} -p ${WRKSRC}/texk/dvipsk/texmf-dist/dvips/config
|
|
${CP} ${LOCALBASE}/share/texmf-dist/dvips/config/config.ps \
|
|
${WRKSRC}/texk/dvipsk/texmf-dist/dvips/config
|
|
env TEXMFCONFIG=${LOCALBASE}/share/texmf-dist \
|
|
TFC_TEXMFCONFIG=${WRKSRC}/texk/dvipsk/texmf \
|
|
configPsFile=${WRKSRC}/texk/dvipsk/texmf-dist/dvips/config/config.ps \
|
|
${LOCALBASE}/bin/texconfig dvips paper ${LOWER_PAPERSIZE}
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/texk/dvipsk/texmf-dist/dvips/config/config.ps \
|
|
${DESTDIR}${PREFIX}/share/examples/dvipsk
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|