64ea2c29f9
- Remove workaround for bad tarball; consider fixed on 9.x
32 lines
780 B
Makefile
32 lines
780 B
Makefile
# Created by: Rong-En Fan <rafan@infor.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= bibtool
|
|
PORTVERSION= 2.61
|
|
CATEGORIES= textproc print
|
|
MASTER_SITES= TEX_CTAN/biblio/bibtex/utils/${PORTNAME}
|
|
DISTNAME= BibTool-${PORTVERSION}
|
|
|
|
MAINTAINER= johans@FreeBSD.org
|
|
COMMENT= Command line manipulation of BibTeX files
|
|
|
|
USE_TEX= latex:build
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --with-kpathsea
|
|
CONFIGURE_ENV= LOCALBASE=${LOCALBASE}
|
|
WRKSRC= ${WRKDIR}/BibTool
|
|
|
|
MAKEFILE= makefile
|
|
INSTALL_TARGET= install install.man
|
|
|
|
PORTDOCS= bibtool.pdf ref_card.pdf c_lib.pdf
|
|
|
|
post-build:
|
|
cd ${WRKSRC} && ${MAKE} doc && ${MAKE} doc
|
|
|
|
post-install:
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
cd ${WRKSRC}/doc && ${INSTALL_MAN} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME}
|
|
|
|
.include <bsd.port.mk>
|