Update to 1.0a7.

PR:		51511
Submitted by:	Ports Fury
This commit is contained in:
Pete Fritchman 2003-05-18 20:56:50 +00:00
parent c803b55e80
commit 2ae36084d0
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=81279
3 changed files with 5 additions and 30 deletions

View file

@ -7,11 +7,11 @@
#
PORTNAME= e4graph
PORTVERSION= 1.0a6
PORTREVISION= 2
PORTVERSION= 1.0a7
CATEGORIES= devel
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
EXTRACT_SUFX= .src.tar.gz
MAINTAINER= ports@FreeBSD.org
COMMENT= A C++ library that persistently stores graph like data
@ -25,9 +25,9 @@ WRKSRC= ${WRKDIR}/${DISTNAME}/all
USE_LIBTOOL= yes
CONFIGURE_ARGS= --with-metakit=${LOCALBASE} \
--with-tcl=${LOCALBASE} --enable-tcl \
--with-tcl=${LOCALBASE}/lib/tcl8.3 --enable-tcl \
--with-expat=${LOCALBASE} --enable-xml
CFLAGS+= -fpermissive
CFLAGS+= -fpermissive -I${LOCALBASE}/include/tcl8.3
MAKEFILE= makefile
INSTALLS_SHLIB= yes

View file

@ -1 +1 @@
MD5 (e4graph-1.0a6.tar.gz) = 694eb8efc4259d07770c121f7a1c6347
MD5 (e4graph-1.0a7.src.tar.gz) = dba634f99c326b153751868af7cbe475

View file

@ -1,25 +0,0 @@
--- configure.orig Wed May 8 00:04:10 2002
+++ configure Tue Jul 16 03:14:40 2002
@@ -731,9 +731,9 @@
# pointing at a Tcl installation in a non-standard place.
if test x"${with_tcl}" != x ; then
- if test -f "${with_tcl}/include/tcl.h" ; then
+ if test -f "${with_tcl}/include/tcl8.3/tcl.h" ; then
ac_cv_c_tcl=`(cd ${with_tcl}; pwd)`
- ac_cv_c_tcl_inc=${ac_cv_c_tcl}/include
+ ac_cv_c_tcl_inc=${ac_cv_c_tcl}/include/tcl8.3
ac_cv_c_tcl_lib=${ac_cv_c_tcl}/lib
else
{ echo "configure: error: ${with_tcl}/include doesn't contain tcl.h" 1>&2; exit 1; }
@@ -804,8 +804,8 @@
if test x"${with_expat}" != x ; then
if test -f "${with_expat}/include/expat.h" ; then
ac_cv_c_expat=`(cd ${with_expat}/include; pwd)`
- ac_cv_c_expat_inc=${ac_cv_c_expat}/include
- ac_cv_c_expat_lib=${ac_cv_c_expat}/lib
+ ac_cv_c_expat_inc=${with_expat}/include
+ ac_cv_c_expat_lib=${with_expat}/lib
else
{ echo "configure: error: ${with_expat}/include does not contain expat.h" 1>&2; exit 1; }
fi