blob: 4f7932dae259cffe037f4398173075638db15f9e (
plain)
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
|
# $NetBSD: Makefile,v 1.36 2020/09/27 02:01:25 mef Exp $
DISTNAME= lgrind
PKGNAME= lgrind-3.5
PKGREVISION= 9
CATEGORIES= print
MASTER_SITES= ${MASTER_SITE_LOCAL}
EXTRACT_SUFX= .tar.bz2
MAINTAINER= pkgsrc-users@NetBSD.org
COMMENT= Source pretty printer for LaTeX
BUILD_DEPENDS+= tex-tools-[0-9]*:../../print/tex-tools
# I can't find file `tcrm1000'.
BUILD_DEPENDS+= tex-ec-[0-9]*:../../fonts/tex-ec
DEPENDS+= tex-latex-bin-[0-9]*:../../print/tex-latex-bin
WRKSRC= ${WRKDIR}/lgrind
NO_SRC_ON_FTP= Already in MASTER_SITE_LOCAL
NO_CONFIGURE= yes
MAKE_ENV+= PKG_LOCALTEXMFPREFIX=${PKG_LOCALTEXMFPREFIX:Q}
.include "../../print/kpathsea/texmf.mk"
INSTALLATION_DIRS= bin man/man1 man/man5 \
share/texmf-dist/doc/latex/lgrind \
share/texmf-dist/tex/latex/lgrind
pre-patch:
${MV} ${WRKSRC}/source/Makefile ${WRKSRC}/source/Makefile-prepatch
${SED} -e '/Id/s|\$$||g' ${WRKSRC}/source/Makefile-prepatch > \
${WRKSRC}/source/Makefile
pre-build:
(cd ${WRKSRC} && ${LOCALBASE}/bin/latex lgrind.ins)
(cd ${WRKSRC} && ${LOCALBASE}/bin/pdflatex lgrind.dtx)
${MV} ${WRKSRC}/source/lgrind.1 ${WRKSRC}/source/lgrind.1.bak
${MV} ${WRKSRC}/source/lgrindef.5 ${WRKSRC}/source/lgrindef.5.bak
${SED} -e 's,@PREFIX@,${PREFIX},g' \
< ${WRKSRC}/source/lgrind.1.bak > ${WRKSRC}/source/lgrind.1
${SED} -e 's,@PREFIX@,${PREFIX},g' \
< ${WRKSRC}/source/lgrindef.5.bak > ${WRKSRC}/source/lgrindef.5
do-build:
${RUN} cd ${WRKSRC}/source && \
${SETENV} ${MAKE_ENV} \
${MAKE_PROGRAM} ${MAKE_FLAGS} -f ${MAKE_FILE} ${BUILD_TARGET}
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/source/lgrind ${DESTDIR}${PREFIX}/bin/
${INSTALL_MAN} ${WRKSRC}/source/lgrind.1 \
${DESTDIR}${PREFIX}/${PKGMANDIR}/man1/
${INSTALL_MAN} ${WRKSRC}/source/lgrindef.5 \
${DESTDIR}${PREFIX}/${PKGMANDIR}/man5/
${INSTALL_DATA} ${WRKSRC}/lgrind.pdf \
${DESTDIR}${PREFIX}/share/texmf-dist/doc/latex/lgrind/
${INSTALL_DATA} ${WRKSRC}/lgrindef \
${DESTDIR}${PREFIX}/share/texmf-dist/tex/latex/lgrind/
${INSTALL_DATA} ${WRKSRC}/lgrind.sty \
${DESTDIR}${PREFIX}/share/texmf-dist/tex/latex/lgrind/
.include "../../mk/bsd.pkg.mk"
|