View | Details | Raw Unified | Return to bug 93221
Collapse All | Expand All

(-)devel/cvsgraph/Makefile (-8 / +11 lines)
Lines 6-17 Link Here
6
#
6
#
7
7
8
PORTNAME=	cvsgraph
8
PORTNAME=	cvsgraph
9
PORTVERSION=	1.5.2
9
PORTVERSION=	1.6.0
10
PORTREVISION=	0
11
CATEGORIES=	devel graphics
10
CATEGORIES=	devel graphics
12
MASTER_SITES=	http://www.akhphd.au.dk/~bertho/cvsgraph/release/
11
MASTER_SITES=	http://www.akhphd.au.dk/~bertho/cvsgraph/release/
13
12
14
MAINTAINER=	ports@FreeBSD.org
13
MAINTAINER=	serge.gagnon@b2b2c.ca
15
COMMENT=	Graph the life story of a file under CVS or RCS
14
COMMENT=	Graph the life story of a file under CVS or RCS
16
15
17
LIB_DEPENDS=	gd.4:${PORTSDIR}/graphics/gd
16
LIB_DEPENDS=	gd.4:${PORTSDIR}/graphics/gd
Lines 27-44 Link Here
27
MORE_EXAMPLES=	README.Automatic_documentation checkoutlist commit_action.sh \
26
MORE_EXAMPLES=	README.Automatic_documentation checkoutlist commit_action.sh \
28
		commitinfo cvswrappers tag_action.sh taginfo
27
		commitinfo cvswrappers tag_action.sh taginfo
29
PLIST=		${WRKDIR}/pkg-plist
28
PLIST=		${WRKDIR}/pkg-plist
29
SUB_FILES=      pkg-message
30
GNU_CONFIGURE=	yes
30
GNU_CONFIGURE=	yes
31
CONFIGURE_ARGS=	--with-gd-inc=${LOCALBASE}/include \
31
CONFIGURE_ARGS=	--with-gd-inc=${LOCALBASE}/include \
32
		--with-gd-lib=${LOCALBASE}/lib
32
		--with-gd-lib=${LOCALBASE}/lib
33
REINPLACE_ARGS=	-i ""
33
34
34
pre-patch:
35
pre-patch:
35
	${MV} ${WRKSRC}/cvsgraph.conf ${WRKSRC}/cvsgraph.conf.orig
36
	@${REINPLACE_CMD} -e "s:/home/bertho/tmp/cvstest:/home/ncvs:g" ${WRKSRC}/cvsgraph.conf
36
	${SED} -e "s:/home/bertho/tmp/cvstest:/home/ncvs:g" \
37
		< ${WRKSRC}/cvsgraph.conf.orig > ${WRKSRC}/cvsgraph.conf
38
37
39
pre-install:
38
pre-install:
40
	${ECHO_CMD} bin/cvsgraph > ${PLIST}
39
	${ECHO_CMD} bin/cvsgraph > ${PLIST}
41
	${ECHO_CMD} etc/cvsgraph.conf >> ${PLIST}
40
	${ECHO_CMD} etc/cvsgraph.conf.sample >> ${PLIST}
42
.if !defined(NOPORTDOCS)
41
.if !defined(NOPORTDOCS)
43
.for i in ${DOCS}
42
.for i in ${DOCS}
44
	${ECHO_CMD} ${DOCDIR}/${i} >> ${PLIST}
43
	${ECHO_CMD} ${DOCDIR}/${i} >> ${PLIST}
Lines 56-62 Link Here
56
55
57
do-install:
56
do-install:
58
	${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
57
	${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
59
	${INSTALL_DATA} ${WRKSRC}/cvsgraph.conf ${PREFIX}/etc
58
	${INSTALL_DATA} ${WRKSRC}/cvsgraph.conf ${PREFIX}/etc/cvsgraph.conf.sample
60
	${INSTALL_MAN} ${WRKSRC}/cvsgraph.1 ${PREFIX}/man/man1
59
	${INSTALL_MAN} ${WRKSRC}/cvsgraph.1 ${PREFIX}/man/man1
61
	${INSTALL_MAN} ${WRKSRC}/cvsgraph.conf.5 ${PREFIX}/man/man5
60
	${INSTALL_MAN} ${WRKSRC}/cvsgraph.conf.5 ${PREFIX}/man/man5
62
.if !defined(NOPORTDOCS)
61
.if !defined(NOPORTDOCS)
Lines 73-77 Link Here
73
	${INSTALL_DATA} ${WRKSRC}/contrib/automatic_documentation/${i} ${PREFIX}/share/examples/${PORTNAME}/automatic_documentation
72
	${INSTALL_DATA} ${WRKSRC}/contrib/automatic_documentation/${i} ${PREFIX}/share/examples/${PORTNAME}/automatic_documentation
74
.endfor
73
.endfor
75
.endif
74
.endif
75
76
post-install:
77
	@${ECHO_CMD} " "
78
	@${CAT} ${PKGMESSAGE}
76
79
77
.include <bsd.port.mk>
80
.include <bsd.port.mk>
(-)devel/cvsgraph/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
MD5 (cvsgraph-1.5.2.tar.gz) = 095a779d7977ae0c12f456ed119af6f6
1
MD5 (cvsgraph-1.6.0.tar.gz) = d8919dc9617ab4cf8bf658b7fbd1df0e
2
SHA256 (cvsgraph-1.5.2.tar.gz) = c759970c9f2d3c01982bba94dcc37297c942aa4b469b55757cd349f4c5bfeff3
2
SHA256 (cvsgraph-1.6.0.tar.gz) = 43ee5d1358ee1b2b88ca1fbd1e8078f47fa8e90dd6b231b72c7f758a29acde6d
3
SIZE (cvsgraph-1.5.2.tar.gz) = 106382
3
SIZE (cvsgraph-1.6.0.tar.gz) = 114186
(-)devel/cvsgraph/files/pkg-message.in (+3 lines)
Line 0 Link Here
1
You must copy %%PREFIX%%/cvsgraph.conf.sample to
2
%%PREFIX%%/cvsgraph.conf in order to use cvsgraph.
3

Return to bug 93221