diff options
Diffstat (limited to 'textproc/bibutils/Makefile')
-rw-r--r-- | textproc/bibutils/Makefile | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/textproc/bibutils/Makefile b/textproc/bibutils/Makefile index 5758c4edfabf..2ebe1c9a1de0 100644 --- a/textproc/bibutils/Makefile +++ b/textproc/bibutils/Makefile @@ -1,14 +1,10 @@ -# New ports collection makefile for: bibutils -# Date created: May 14, 2010 -# Whom: Gabor Pali <pgj@FreeBSD.org> -# # $FreeBSD$ -# PORTNAME= bibutils -PORTVERSION= 4.12 +PORTVERSION= 5.0 CATEGORIES= textproc -MASTER_SITES= http://www.scripps.edu/~cdputnam/software/bibutils/ +MASTER_SITES= SF/${PORTNAME}/ + DISTNAME= ${PORTNAME}_${PORTVERSION}_src EXTRACT_SUFX= .tgz @@ -21,14 +17,18 @@ 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 +BINARIES= bib2xml biblatex2xml copac2xml ebi2xml end2xml endx2xml \ + isi2xml med2xml modsclean ris2xml wordbib2xml xml2ads \ + xml2bib xml2end xml2isi xml2ris xml2wordbib + +.for binary in ${BINARIES} +PLIST_FILES+= bin/${binary} +.endfor + .include <bsd.port.mk> |