diff --git a/devel/cvsgraph/Makefile b/devel/cvsgraph/Makefile index 3fda17491eae..0f338af99d10 100644 --- a/devel/cvsgraph/Makefile +++ b/devel/cvsgraph/Makefile @@ -1,57 +1,56 @@ PORTNAME= cvsgraph -PORTVERSION= 1.7.0 -PORTREVISION= 8 +DISTVERSION= 1.7.2 CATEGORIES= devel graphics -MASTER_SITES= http://www.akhphd.au.dk/~bertho/cvsgraph/release/ +MASTER_SITES= https://www.vagrearg.org/cvsgraph/release/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= terry-freebsd@glaver.org COMMENT= Graph the life story of a file under CVS or RCS -WWW= https://web.archive.org/web/20181111235708/http://www.akhphd.au.dk/~bertho/cvsgraph/ +WWW= https://www.vagrearg.org/content/cvsgraph LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libgd.so:graphics/gd \ libpng16.so:graphics/png \ libtiff.so:graphics/tiff \ libwebp.so:graphics/webp \ libfreetype.so:print/freetype2 \ libfontconfig.so:x11-fonts/fontconfig -USES= localbase:ldflags jpeg +USES= localbase:ldflags jpeg pkgconfig SUB_FILES= pkg-message GNU_CONFIGURE= yes LDFLAGS+= -lm CONFIGURE_ARGS= --with-gd-inc=${LOCALBASE}/include \ --with-gd-lib=${LOCALBASE}/lib DOCS= ChangeLog README EXAMPLES= cvsgraphwrapper.php mkimage.php MORE_EXAMPLES= README.Automatic_documentation checkoutlist commit_action.sh \ commitinfo cvswrappers tag_action.sh taginfo OPTIONS_DEFINE= DOCS EXAMPLES do-install: ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin ${INSTALL_DATA} ${WRKSRC}/cvsgraph.conf ${STAGEDIR}${PREFIX}/etc/cvsgraph.conf.sample ${INSTALL_MAN} ${WRKSRC}/cvsgraph.1 ${STAGEDIR}${MAN1PREFIX}/man/man1 ${INSTALL_MAN} ${WRKSRC}/cvsgraph.conf.5 ${STAGEDIR}${MAN5PREFIX}/man/man5 do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} .for i in ${DOCS} ${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${DOCSDIR} .endfor do-install-EXAMPLES-on: @${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/automatic_documentation .for i in ${EXAMPLES} ${INSTALL_DATA} ${WRKSRC}/contrib/${i} ${STAGEDIR}${EXAMPLESDIR} .endfor .for i in ${MORE_EXAMPLES} ${INSTALL_DATA} ${WRKSRC}/contrib/automatic_documentation/${i} \ ${STAGEDIR}${EXAMPLESDIR}/automatic_documentation .endfor .include diff --git a/devel/cvsgraph/distinfo b/devel/cvsgraph/distinfo index c3102b43c272..41c0dde41582 100644 --- a/devel/cvsgraph/distinfo +++ b/devel/cvsgraph/distinfo @@ -1,2 +1,3 @@ -SHA256 (cvsgraph-1.7.0.tar.gz) = 74438faaefd325c7a8ed289ea5d1657befe1d1859d55f8fbbcc7452f4efd435f -SIZE (cvsgraph-1.7.0.tar.gz) = 202678 +TIMESTAMP = 1684288884 +SHA256 (cvsgraph-1.7.2.tar.gz) = 8f25beaa586ee374a8effc9c1693e4457ae4e227a719f192858d6ae242bb007f +SIZE (cvsgraph-1.7.2.tar.gz) = 229325 diff --git a/devel/cvsgraph/files/patch-cvsgraph.c b/devel/cvsgraph/files/patch-cvsgraph.c deleted file mode 100644 index ccaa43544037..000000000000 --- a/devel/cvsgraph/files/patch-cvsgraph.c +++ /dev/null @@ -1,13 +0,0 @@ ---- cvsgraph.c.orig 2008-05-21 12:21:32 UTC -+++ cvsgraph.c -@@ -190,8 +190,8 @@ static void dump_dtext(char *p, dtext_t - { - printf("%sdtext.rev : ", p); - dump_rev("", d->rev); -- printf("%sdtext.log : %d bytes\n", p, d->log ? strlen(d->log) : -1); -- printf("%sdtext.text : %d bytes\n", p, d->text ? strlen(d->text) : -1); -+ printf("%sdtext.log : %ld bytes\n", p, d->log ? (long) strlen(d->log) : -1); -+ printf("%sdtext.text : %ld bytes\n", p, d->text ? (long) strlen(d->text) : -1); - printf("\n"); - } -