ports/65858: [MAINTAINER] lang/pike75: update to 7.5.25

Xavier Beaudouin kiwi at oav.net
Wed Apr 21 18:50:27 UTC 2004


>Number:         65858
>Category:       ports
>Synopsis:       [MAINTAINER] lang/pike75: update to 7.5.25
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          maintainer-update
>Submitter-Id:   current-users
>Arrival-Date:   Wed Apr 21 11:50:24 PDT 2004
>Closed-Date:
>Last-Modified:
>Originator:     Xavier Beaudouin
>Release:        FreeBSD 5.2.1-RELEASE-p4 i386
>Organization:
The Caudium Group / Association Kazar
>Environment:
System: FreeBSD yoko.home.oav.net 5.2.1-RELEASE-p4 FreeBSD 5.2.1-RELEASE-p4 #0: Sat Apr  3 22:50:52 CEST
>Description:
- Update to 7.5.25
- Changed WITH_POSTGRES to WITH_POSTGRESQL
- Removed autoconfiguration of OPTIONS

Generated with FreeBSD Port Tools 0.50
>How-To-Repeat:
>Fix:

--- pike75-7.5.25.patch begins here ---
diff -ruN --exclude=CVS /usr/ports/lang/pike75.old/Makefile /usr/ports/lang/pike75/Makefile
--- /usr/ports/lang/pike75.old/Makefile	Wed Apr 21 20:15:09 2004
+++ /usr/ports/lang/pike75/Makefile	Wed Apr 21 20:44:37 2004
@@ -6,13 +6,12 @@
 #
 
 PORTNAME=	pike75
-PORTVERSION=	7.5.21
+PORTVERSION=	7.5.25
 CATEGORIES=	lang
 MASTER_SITES=	ftp://pike.ida.liu.se/pub/pike/all/${PORTVERSION}/ \
-		ftp://ftp.oav.net/pike/7.5/export/ \
-		http://grendel.firewall.com/caudium-pkg/ \
+		ftp://ftp.oav.net/pike/7.5/ \
 		ftp://ftp.caudium.net/pike/official_releases/${PORTVERSION}/
-DISTNAME=	Pike-v${PORTVERSION}
+DISTNAME=	pike-${PORTVERSION}
 
 MAINTAINER=	kiwi at oav.net
 COMMENT=	A dynamic programming language with a syntax similar to C++
@@ -28,11 +27,19 @@
 OPTIONS=	TTF "Add FreeType 1 support" on \
 		FREETYPE "Add FreeType 2 support" on \
 		OPT_CFLAGS "Enable additional compiliation optimizations" on \
-		MYSQL "Add MySQL support" on
+		MYSQL "Add MySQL support" on \
+		POSTGRESQL "Add Postgres SQL support" off \
+		UNIXODBC "Add UnixODBC support (incompatible with IODBC)" off \
+		IODBC "Add iODBC support (incompatible with UnixODBC)" off \
+		TDS "Add FreeTDS (Sybase and MSSQL) support" off \
+		FFMPEG "Add FFmpeg support" off \
+		SANE "Add SANE support" off \
+		PDF "Add PDF support" on \
+		SVG2 "Add SVG2 support" off
 
 MAN1=		pike.1
 
-WRKSRC=		${WRKDIR}/Pike-v${PORTVERSION}/src/
+WRKSRC=		${WRKDIR}/${DISTNAME}/src/
 
 WANT_MESA=	yes
 
@@ -91,74 +98,10 @@
 CONFIGURE_ARGS+=	--without-perl
 .endif
 
-.if exists(${LOCALBASE}/lib/libavcodec.so.0)
-WITH_FFMPEG=	yes
-OPTIONS+=	FFMPEG "Add FFmpeg support" on
-.else
-OPTIONS+=	FFMPEG "Add FFmpeg support" off
-.endif
-
-.if exists(${LOCALBASE}/lib/libttf.so.4)
-WITH_TTF=	yes
-.endif
-
-.if exists(${LOCALBASE}/lib/libfreetype.so.9)
-WITH_FREETYPE=	yes
-.endif
-
-.if exists(${LOCALBASE}/lib/libpq.so.3)
-WITH_POSTGRES=	yes
-OPTIONS+=	POSTGRES "Add Postgres SQL support" on
-.else
-OPTIONS+=	POSTGRES "Add Postgres SQL support" off
-.endif
-
-.if exists(${LOCALBASE}/lib/libodbc.so.1)
-WITH_UNIXODBC=	yes
-OPTIONS+=	UNIXODBC "Add UnixODBC support (incompatible with IODBC)" on
-.else
-OPTIONS+=	UNIXODBC "Add UnixODBC support (incompatible with IODBC)" off
-.endif
-
-.if exists(${LOCALBASE}/lib/libiodbc.so.2)
-WITH_IODBC=	yes
-OPTIONS+=	IODBC "Add iODBC support (incompatible with UnixODBC)" on
-.else
-OPTIONS+=	IODBC "Add iODBC support (incompatible with UnixODBC)" off
-.endif
-
-.if exists(${LOCALBASE}/lib/libsane.so.1)
-WITH_SANE=	yes
-OPTIONS+=	SANE "Add SANE support" on
-.else
-OPTIONS+=	SANE "Add SANE support" off
-.endif
-
 .if exists(${LOCALBASE}/lib/libgtkgl.so.5)
 WITH_MESA=	yes
 .endif
 
-.if exists(${LOCALBASE}/lib/libpdf.so.6) || exists(${LOCALBASE}/lib/libpanda.so.0)
-WITH_PDF=	yes
-OPTIONS+=	PDF "Add PDF support" on
-.else
-OPTIONS+=	PDF "Add PDF support" off
-.endif
-
-.if exists(${LOCALBASE}/lib/librsvg-2.so.2)
-WITH_SVG2=	yes
-OPTIONS+=	SVG2 "Add SVG2 support" on
-.else
-OPTIONS+=	SVG2 "Add SVG2 support" off
-.endif
-
-.if exists(${LOCALBASE}/lib/libct.so.1)
-WITH_TDS=	yes
-OPTIONS+=	TDS "Add FreeTDS (Sybase and MSSQL) support" on
-.else
-OPTIONS+=	TDS "Add FreeTDS (Sybase and MSSQL) support" off
-.endif
-
 .if defined(WITHOUT_RELOCATABLE_DUMPED_MODULES)
 CONFIGURE_ARGS+=	--without-relocatable-dumped-modules
 .else
@@ -212,7 +155,7 @@
 CONFIGURE_ARGS+=	--without-mysql
 .endif
 
-.if defined(WITH_POSTGRES)
+.if defined(WITH_POSTGRESQL)
 LIB_DEPENDS+=	pq.3:${PORTSDIR}/databases/postgresql7
 CONFIGURE_ARGS+=	--with-pgsql=${PREFIX}
 .else
diff -ruN --exclude=CVS /usr/ports/lang/pike75.old/distinfo /usr/ports/lang/pike75/distinfo
--- /usr/ports/lang/pike75.old/distinfo	Wed Apr 21 20:15:09 2004
+++ /usr/ports/lang/pike75/distinfo	Wed Apr 21 20:26:07 2004
@@ -1,2 +1,2 @@
-MD5 (Pike-v7.5.21.tar.gz) = 877ba7a831656bb98b0b4369e94d2603
-SIZE (Pike-v7.5.21.tar.gz) = 10141665
+MD5 (pike-7.5.25.tar.gz) = f343250bd4b90f3ccdcf920ab1f15cc3
+SIZE (pike-7.5.25.tar.gz) = 10236236
diff -ruN --exclude=CVS /usr/ports/lang/pike75.old/pkg-plist /usr/ports/lang/pike75/pkg-plist
--- /usr/ports/lang/pike75.old/pkg-plist	Wed Apr 21 20:15:09 2004
+++ /usr/ports/lang/pike75/pkg-plist	Wed Apr 21 20:40:29 2004
@@ -398,7 +398,6 @@
 pike/%%PORTVERSION%%/include/pike/program.h
 pike/%%PORTVERSION%%/include/pike/program_id.h
 pike/%%PORTVERSION%%/include/pike/queue.h
-pike/%%PORTVERSION%%/include/pike/security.h
 pike/%%PORTVERSION%%/include/pike/time_stuff.h
 pike/%%PORTVERSION%%/include/pike/stralloc.h
 pike/%%PORTVERSION%%/include/pike/stuff.h
--- pike75-7.5.25.patch ends here ---

>Release-Note:
>Audit-Trail:
>Unformatted:



More information about the freebsd-ports-bugs mailing list