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

(-)devel/e4graph/Makefile (-4 / +4 lines)
Lines 7-17 Link Here
7
#
7
#
8
8
9
PORTNAME=	e4graph
9
PORTNAME=	e4graph
10
PORTVERSION=	1.0a6
10
PORTVERSION=	1.0a7
11
PORTREVISION=	2
12
CATEGORIES=	devel
11
CATEGORIES=	devel
13
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
12
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
14
MASTER_SITE_SUBDIR=	${PORTNAME}
13
MASTER_SITE_SUBDIR=	${PORTNAME}
14
EXTRACT_SUFX=	.src.tar.gz
15
15
16
MAINTAINER=	ports@FreeBSD.org
16
MAINTAINER=	ports@FreeBSD.org
17
COMMENT=	A C++ library that persistently stores graph like data
17
COMMENT=	A C++ library that persistently stores graph like data
Lines 25-33 Link Here
25
25
26
USE_LIBTOOL=	yes
26
USE_LIBTOOL=	yes
27
CONFIGURE_ARGS=	--with-metakit=${LOCALBASE} \
27
CONFIGURE_ARGS=	--with-metakit=${LOCALBASE} \
28
		--with-tcl=${LOCALBASE} --enable-tcl \
28
		--with-tcl=${LOCALBASE}/lib/tcl8.3 --enable-tcl \
29
		--with-expat=${LOCALBASE} --enable-xml
29
		--with-expat=${LOCALBASE} --enable-xml
30
CFLAGS+=	-fpermissive
30
CFLAGS+=	-fpermissive -I${LOCALBASE}/include/tcl8.3
31
MAKEFILE=	makefile
31
MAKEFILE=	makefile
32
INSTALLS_SHLIB=	yes
32
INSTALLS_SHLIB=	yes
33
33
(-)devel/e4graph/distinfo (-1 / +1 lines)
Line 1 Link Here
1
MD5 (e4graph-1.0a6.tar.gz) = 694eb8efc4259d07770c121f7a1c6347
1
MD5 (e4graph-1.0a7.src.tar.gz) = dba634f99c326b153751868af7cbe475
(-)devel/e4graph/files/patch-configure (-25 lines)
Lines 1-25 Link Here
1
--- configure.orig	Wed May  8 00:04:10 2002
2
+++ configure	Tue Jul 16 03:14:40 2002
3
@@ -731,9 +731,9 @@
4
     # pointing at a Tcl installation in a non-standard place.
5
 
6
     if test x"${with_tcl}" != x ; then
7
-	if test -f "${with_tcl}/include/tcl.h" ; then
8
+	if test -f "${with_tcl}/include/tcl8.3/tcl.h" ; then
9
 	     ac_cv_c_tcl=`(cd ${with_tcl}; pwd)`
10
-	     ac_cv_c_tcl_inc=${ac_cv_c_tcl}/include
11
+	     ac_cv_c_tcl_inc=${ac_cv_c_tcl}/include/tcl8.3
12
 	     ac_cv_c_tcl_lib=${ac_cv_c_tcl}/lib
13
 	else
14
 	     { echo "configure: error: ${with_tcl}/include doesn't contain tcl.h" 1>&2; exit 1; }
15
@@ -804,8 +804,8 @@
16
     if test x"${with_expat}" != x ; then
17
 	if test -f "${with_expat}/include/expat.h" ; then
18
 	    ac_cv_c_expat=`(cd ${with_expat}/include; pwd)`
19
-	    ac_cv_c_expat_inc=${ac_cv_c_expat}/include
20
-	    ac_cv_c_expat_lib=${ac_cv_c_expat}/lib
21
+	    ac_cv_c_expat_inc=${with_expat}/include
22
+	    ac_cv_c_expat_lib=${with_expat}/lib
23
 	else
24
 	    { echo "configure: error: ${with_expat}/include does not contain expat.h" 1>&2; exit 1; }
25
 	fi

Return to bug 51511