blob: 5758c4edfabfddbbf48ebaa1cd6bf15c39953a4f (
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
24
25
26
27
28
29
30
31
32
33
34
|
# New ports collection makefile for: bibutils
# Date created: May 14, 2010
# Whom: Gabor Pali <pgj@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= bibutils
PORTVERSION= 4.12
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
LICENSE= GPLv2
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>
|