Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 13 Mar 2004 13:59:09 +0100 (CET)
From:      Stefan Walter <sw@gegenunendlich.de>
To:        FreeBSD-gnats-submit@FreeBSD.org
Cc:        gnome@FreeBSD.org
Subject:   ports/64210: [PATCH] x11-toolkits/py23-gtk: recognize thread libraries correctly
Message-ID:  <20040313125909.6C53F3FCF@kyuzo.dunkelkammer.void>
Resent-Message-ID: <200403131300.i2DD0act014065@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         64210
>Category:       ports
>Synopsis:       [PATCH] x11-toolkits/py23-gtk: recognize thread libraries correctly
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Sat Mar 13 05:00:36 PST 2004
>Closed-Date:
>Last-Modified:
>Originator:     Stefan Walter
>Release:        FreeBSD 5.2-CURRENT i386
>Organization:
Infinity Approximation Task Force
>Environment:
System: FreeBSD kyuzo.dunkelkammer.void 5.2-CURRENT FreeBSD 5.2-CURRENT #0: Sat Feb 14 20:59:15 CET 2004
>Description:
The version currently in the ports tree doesn't recognize threading
libraries; grep's basic regular expressions require a backslash in front
of a '|'. Patch attached.

Port maintainer (gnome@FreeBSD.org) is cc'd.

Generated with FreeBSD Port Tools 0.50
>How-To-Repeat:
>Fix:
--- py23-gtk-2.2.0_1.patch begins here ---
diff -ruN --exclude=CVS /usr/ports/x11-toolkits/py-gtk2.old/Makefile /usr/ports/x11-toolkits/py-gtk2/Makefile
--- /usr/ports/x11-toolkits/py-gtk2.old/Makefile	Sat Mar 13 13:42:18 2004
+++ /usr/ports/x11-toolkits/py-gtk2/Makefile	Sat Mar 13 13:50:04 2004
@@ -6,6 +6,7 @@
 
 PORTNAME=	gtk
 PORTVERSION=	2.2.0
+PORTREVISION=	1
 CATEGORIES=	x11-toolkits python
 MASTER_SITES=	${MASTER_SITE_GNOME}
 MASTER_SITE_SUBDIR=	sources/pygtk/2.2
@@ -33,7 +34,7 @@
 # Use the same way as the Python port to determine if we want
 # threading support.
 #
-LIBC_R!=	/sbin/ldconfig -r | grep "c_r|pthread" || true
+LIBC_R!=	/sbin/ldconfig -r | grep "c_r\|pthread" || true
 .if (${LIBC_R} != "") && !defined(WITHOUT_THREADS)
 CONFIGURE_ARGS+=	--enable-thread
 CFLAGS+=		${PTHREAD_CFLAGS}
--- py23-gtk-2.2.0_1.patch ends here ---

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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20040313125909.6C53F3FCF>