summaryrefslogtreecommitdiff
path: root/print/makeindex/Makefile
blob: 6d649c24b4145e0b9ace107a2de62b768d7420d0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
DISTFILES=	makeindex-3.0.8.tar.Z
DISTNAME=	makeindex

MASTER_SITES=	ftp://achilles.doc.ic.ac.uk/tex/contrib/Schrod/

build: configure pre-build
	@echo "===>  Building for ${DISTNAME}"
	@(cd ${WRKSRC}/src-3.0/regexp; make)
	@(cd ${WRKSRC}/src-3.0; make)

install:
	@echo "===>  Installing for ${DISTNAME}"
	@mkdir -p ${PREFIX}/lib/texmf/makeindx
	@mkdir -p ${PREFIX}/bin
	@mkdir -p ${PREFIX}/man/man1
	@(cd ${WRKSRC}/src-3.0/regexp; make)
	@(cd ${WRKSRC}/src-3.0; make install)
	@(cd ${WRKSRC}/doc; \
	  sed -e s:/usr/local/lib/tex/macros/:${PREFIX}/lib/texmf/makeindx/: \
	      <makeindex.l >makeindex.1; \
	  install -c -m 644 makeindex.1 ${PREFIX}/man/man1/)

.include <bsd.port.mk>