freebsd-ports/textproc/bibutils/Makefile
Gabor Pali 09f4731167 The bibutils program set interconverts between various bibliography
formats using a common MODS-format XML intermediate. For example, one
can convert RIS-format files to Bibtex by doing two transformations:
RIS->MODS->Bibtex. By using a common intermediate for N formats, only 2N
programs are required and not N^2-N. These programs operate on the
command line and are styled after standard UNIX-like filters.

WWW: http://www.scripps.edu/~cdputnam/software/bibutils/
2010-05-15 15:24:06 +00:00

32 lines
707 B
Makefile

# New ports collection makefile for: bibutils
# Date created: May 14, 2010
# Whom: Gabor Pali <pgj@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= bibutils
PORTVERSION= 4.9
CATEGORIES= textproc
MASTER_SITES= http://www.scripps.edu/~cdputnam/software/bibutils/
DISTNAME= ${PORTNAME}_${PORTVERSION}_src
EXTRACT_SUFX= .tgz
MAINTAINER= pgj@FreeBSD.org
COMMENT= Program set interconverts between various bibliography formats
USE_GMAKE= yes
WRKSRC= ${WRKDIR}/${PORTNAME}_${PORTVERSION}
post-patch:
@${REINPLACE_CMD} 's|make |gmake |g' \
${WRKSRC}/Makefile_start
do-configure:
@cd ${WRKSRC} && ./configure --install-dir ${PREFIX}/bin
test: all
cd ${WRKSRC}/test && ${GMAKE} all test
.include <bsd.port.mk>