FreeBSD Bugzilla – Attachment 13605 Details for
Bug 25808
update: devel/cvsgraph/ to 1.1.1
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
file.diff
file.diff (text/plain), 3.88 KB, created by
Michael Lyngbol
on 2001-03-14 19:50:00 UTC
(
hide
)
Description:
file.diff
Filename:
MIME Type:
Creator:
Michael Lyngbol
Created:
2001-03-14 19:50:00 UTC
Size:
3.88 KB
patch
obsolete
>diff -urN cvsgraph-1.0.1/Makefile cvsgraph/Makefile >--- cvsgraph-1.0.1/Makefile Wed Mar 14 19:27:39 2001 >+++ cvsgraph/Makefile Wed Mar 14 20:31:00 2001 >@@ -6,9 +6,9 @@ > # > > PORTNAME= cvsgraph >-PORTVERSION= 1.0.1 >+PORTVERSION= 1.1.1 > CATEGORIES= devel graphics >-MASTER_SITES= http://www.akhphd.au.dk/~bertho/cvsgraph/ >+MASTER_SITES= http://www.akhphd.au.dk/~bertho/cvsgraph/release/ > > MAINTAINER= trevor@FreeBSD.org > >@@ -17,6 +17,11 @@ > jpeg.9:${PORTSDIR}/graphics/jpeg \ > png.4:${PORTSDIR}/graphics/png > >+WRKSRC= ${WRKDIR}/${PORTNAME} >+ >+MAN1= cvsgraph.1 >+MAN5= cvsgraph.conf.5 >+ > ALL_TARGET= cvsgraph > DOCDIR= share/doc/${PORTNAME} > DOCS= ChangeLog LICENCE README >@@ -46,6 +51,8 @@ > do-install: > ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin > ${INSTALL_DATA} ${WRKSRC}/cvsgraph.conf ${PREFIX}/etc >+ ${INSTALL_MAN} ${WRKSRC}/cvsgraph.1 ${PREFIX}/man/man1 >+ ${INSTALL_MAN} ${WRKSRC}/cvsgraph.conf.5 ${PREFIX}/man/man5 > .if !defined(NOPORTDOCS) > ${MKDIR} ${PREFIX}/${DOCDIR} > .for i in ${DOCS} >diff -urN cvsgraph-1.0.1/distinfo cvsgraph/distinfo >--- cvsgraph-1.0.1/distinfo Wed Mar 14 19:27:39 2001 >+++ cvsgraph/distinfo Wed Mar 14 19:44:32 2001 >@@ -1 +1 @@ >-MD5 (cvsgraph-1.0.1.tar.gz) = 6e531971d73a8f9a9956079a315c8ebe >+MD5 (cvsgraph-1.1.1.tar.gz) = 616ca7209f3aebdb93ff3cac0b36574b >diff -urN cvsgraph-1.0.1/files/patch-configure.in cvsgraph/files/patch-configure.in >--- cvsgraph-1.0.1/files/patch-configure.in Wed Mar 14 19:27:39 2001 >+++ cvsgraph/files/patch-configure.in Wed Mar 14 19:53:38 2001 >@@ -1,31 +1,37 @@ >---- configure.in.orig Fri Feb 23 14:53:13 2001 >-+++ configure.in Sat Feb 24 18:58:31 2001 >-@@ -11,18 +11,18 @@ >+--- configure.in.orig Wed Mar 14 19:49:32 2001 >++++ configure.in Wed Mar 14 19:52:52 2001 >+@@ -14,24 +14,24 @@ > > dnl Extra libraries 'with'-options >- AC_ARG_WITH(gd,[ --with-gd=DIR location of the gd lib/inc], >-- [LDFLAGS="${LDFLAGS} -L${withval}" >-- CFLAGS="${CFLAGS} -I${withval}" >-+ [LDFLAGS="${LDFLAGS} -L${withval}/lib" >-+ CFLAGS="${CFLAGS} -I${withval}/include/gd" >+ AC_ARG_WITH(gd,[ --with-gd-inc=DIR location of the gd includes], >+- [CFLAGS="${CFLAGS} -I${withval}" >++ [CFLAGS="${CFLAGS} -I${withval}/include/gd" > ]) > >- AC_ARG_WITH(z,[ --with-z=DIR location of zlib lib/inc], >+ AC_ARG_WITH(gd,[ --with-gd-lib=DIR location of the gd library], > - [LDFLAGS="${LDFLAGS} -L${withval}" >-- CFLAGS="${CFLAGS} -I${withval}" > + [LDFLAGS="${LDFLAGS} -L${withval}/lib" >-+ CFLAGS="${CFLAGS} -I${withval}/include" >+ ]) >+ >+ AC_ARG_WITH(z,[ --with-z-inc=DIR location of zlib includes], >+- [CFLAGS="${CFLAGS} -I${withval}" >++ [CFLAGS="${CFLAGS} -I${withval}/includes" >+ ]) >+ >+ AC_ARG_WITH(z,[ --with-z-lib=DIR location of zlib library], >+- [LDFLAGS="${LDFLAGS} -L${withval} -lz" >++ [LDFLAGS="${LDFLAGS} -L${withval}/lib -lz" > ]) > > AC_ARG_WITH(png,[ --with-png=DIR location of png lib/inc], >-- [LDFLAGS="${LDFLAGS} -L${withval}" >+- [LDFLAGS="${LDFLAGS} -L${withval} -lpng" > - CFLAGS="${CFLAGS} -I${withval}" >-+ [LDFLAGS="${LDFLAGS} -L${withval}/lib" >++ [LDFLAGS="${LDFLAGS} -L${withval}/lib -lpng" > + CFLAGS="${CFLAGS} -I${withval}/include" > ]) > >- LDFLAGS="${LDFLAGS} -lgd" >-@@ -73,7 +73,7 @@ >+ AC_ARG_ENABLE(speed,[ --disable-speed Turn off lex table optimization reducing speed and size of executable], >+@@ -90,7 +90,7 @@ > dnl Make sure the header is here > AC_CHECK_HEADER( gd.h,[ have_gd_h="yes" ],[ have_gd_h="no" ]) > >diff -urN cvsgraph-1.0.1/files/patch-cvsgraph.c cvsgraph/files/patch-cvsgraph.c >--- cvsgraph-1.0.1/files/patch-cvsgraph.c Thu Jan 1 01:00:00 1970 >+++ cvsgraph/files/patch-cvsgraph.c Wed Mar 14 20:14:32 2001 >@@ -0,0 +1,11 @@ >+--- cvsgraph.c.orig Wed Mar 14 20:12:02 2001 >++++ cvsgraph.c Wed Mar 14 20:11:38 2001 >+@@ -30,7 +30,7 @@ >+ #include <fcntl.h> >+ #include <regex.h> >+ #include <errno.h> >+-#include <getopt.h> >++//#include <getopt.h> >+ #include <ctype.h> >+ #include <time.h> >+
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 25808
: 13605