d5c75d77b2
- Support CFLAGS properly PR: 160138 Submitted by: Ports Fury
41 lines
1.0 KiB
Makefile
41 lines
1.0 KiB
Makefile
# New ports collection makefile for: makeindex
|
|
# Date created: 12 October 1994
|
|
# Whom: jmz
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= makeindex
|
|
PORTVERSION= 3.0.8
|
|
PORTREVISION= 1
|
|
CATEGORIES= print
|
|
MASTER_SITES= http://ftp.linux.cz/pub/tex/local/indexing/makeindex3/ \
|
|
http://ftp.cstug.cz/pub/tex/local/indexing/makeindex3/
|
|
EXTRACT_SUFX= .tar.Z
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= A general purpose, formatter-independent index processor
|
|
|
|
CONFLICTS= teTeX-base-[0-9]*
|
|
|
|
WRKSRC= ${WRKDIR}/makeindex
|
|
MAN1= makeindex.1
|
|
|
|
post-patch:
|
|
@(cd ${WRKSRC}/doc; \
|
|
${SED} -e s:/usr/local/lib/tex/macros/:${PREFIX}/share/texmf/makeindx/: \
|
|
<makeindex.l >makeindex.1)
|
|
|
|
do-build:
|
|
@(cd ${WRKSRC}/src-3.0/regexp; ${MAKE} OPT="${CFLAGS}")
|
|
@(cd ${WRKSRC}/src-3.0; ${MAKE} OPT="${CFLAGS}")
|
|
|
|
do-install:
|
|
@${MKDIR} ${PREFIX}/share/texmf/makeindx
|
|
@(cd ${WRKSRC}/src-3.0/regexp; ${MAKE})
|
|
@(cd ${WRKSRC}/src-3.0; ${MAKE} install)
|
|
@(cd ${WRKSRC}/doc; \
|
|
${INSTALL_DATA} makeindex.1 ${MANPREFIX}/man/man1)
|
|
|
|
.include <bsd.port.mk>
|