From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 14 14:50:08 2003 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CF76816A4BF for ; Sun, 14 Sep 2003 14:50:08 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 26A5143FD7 for ; Sun, 14 Sep 2003 14:50:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h8ELo5Up024166 for ; Sun, 14 Sep 2003 14:50:05 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h8ELo5ho024165; Sun, 14 Sep 2003 14:50:05 -0700 (PDT) Resent-Date: Sun, 14 Sep 2003 14:50:05 -0700 (PDT) Resent-Message-Id: <200309142150.h8ELo5ho024165@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Peter S. Housel" Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D189216A4BF for ; Sun, 14 Sep 2003 14:44:13 -0700 (PDT) Received: from fed1mtao04.cox.net (fed1mtao04.cox.net [68.6.19.241]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5A07C43FE0 for ; Sun, 14 Sep 2003 14:44:12 -0700 (PDT) (envelope-from housel@ip68-4-96-119.oc.oc.cox.net) Received: from ip68-4-96-119.oc.oc.cox.net ([68.4.96.119]) by fed1mtao04.cox.netESMTP <20030914214410.DFHZ1598.fed1mtao04.cox.net@ip68-4-96-119.oc.oc.cox.net> for ; Sun, 14 Sep 2003 17:44:10 -0400 Received: from ip68-4-96-119.oc.oc.cox.net (housel@localhost [127.0.0.1]) h8ELhvH1009451 for ; Sun, 14 Sep 2003 14:43:59 -0700 (PDT) (envelope-from housel@ip68-4-96-119.oc.oc.cox.net) Received: (from housel@localhost)h8ELhunr009450; Sun, 14 Sep 2003 14:43:56 -0700 (PDT) Message-Id: <200309142143.h8ELhunr009450@ip68-4-96-119.oc.oc.cox.net> Date: Sun, 14 Sep 2003 14:43:56 -0700 (PDT) From: "Peter S. Housel" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/56881: lang/dylan port maintainer update X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: "Peter S. Housel" List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 14 Sep 2003 21:50:09 -0000 >Number: 56881 >Category: ports >Synopsis: lang/dylan port maintainer update >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun Sep 14 14:50:05 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Peter S. Housel >Release: FreeBSD 5.1-CURRENT i386 >Organization: >Environment: System: FreeBSD ip68-4-96-119.oc.oc.cox.net 5.1-CURRENT FreeBSD 5.1-CURRENT #1: Tue Aug 19 21:20:46 PDT 2003 housel@ip68-4-96-119.oc.oc.cox.net:/usr/obj/usr/src/sys/HOUSEL i386 >Description: Unbreak lang/dylan port, and update for release 2.3.11. >How-To-Repeat: >Fix: --- /usr/ports/lang/dylan/Makefile Mon Aug 18 21:01:11 2003 +++ ./Makefile Tue Sep 2 16:08:27 2003 @@ -6,7 +6,7 @@ # PORTNAME= dylan -PORTVERSION= 2.3.10 +PORTVERSION= 2.3.11 CATEGORIES= lang MASTER_SITES= ftp://ftp.gwydiondylan.org/pub/gd/src/ \ ftp://ftp.gwydiondylan.org/pub/gd/FreeBSD/ \ @@ -27,16 +27,22 @@ MAINTAINER= housel@acm.org COMMENT= CMU Gwydion project interpreter and compiler for the Dylan language -BROKEN= Does not compile - LIB_DEPENDS= gc.1:${PORTSDIR}/devel/boehm-gc USE_PERL5= yes USE_GMAKE= yes -CONFIGURE_ARGS= --srcdir=$(WRKSRC) --enable-debug --with-gc-prefix=$(PREFIX) +CONFIGURE_ARGS= --srcdir=$(WRKSRC) --with-gc-prefix=$(PREFIX) CONFIGURE_ENV= D2C="$(WRKDIR)/d2c -p$(WRKSRC)/d2c/compiler/platforms.descr" -PLIST_SUB= DYLANVER="${PORTVERSION}" DYLANARCH="x86-freebsd-elf-gcc" +GCCVER!= gcc -dumpversion +PLIST_SUB= DYLANVER="${PORTVERSION}" +.if ${GCCVER:M3.3*}!="" +PLIST_SUB+= DYLANARCH="x86-freebsd-elf-gcc33" +.elif ${GCCVER:M3.2*}!="" +PLIST_SUB+= DYLANARCH="x86-freebsd-elf-gcc32" +.else +PLIST_SUB+= DYLANARCH="x86-freebsd-elf-gcc" +.endif ONLY_FOR_ARCHS= i386 @@ -59,6 +65,7 @@ .if ${HAVE_GNOME:Mgtk12}!="" USE_GNOME+= gtk12 PLIST_SUB+= GTK_ONLY="" +CONFIGURE_ARGS+=--enable-duim=gtk .else PLIST_SUB+= GTK_ONLY="@comment " CONFIGURE_ARGS+=--without-gtk @@ -71,8 +78,7 @@ pre-patch: @${REINPLACE_CMD} -e 's|gtk-config|${GTK_CONFIG}|' \ ${WRKSRC}/platform/gtk+/gtk+/gtk.lid - -patch-libtool: - @${DO_NADA} + ${REINPLACE_CMD} -e 's|libtool$$|${LIBTOOL_LIBEXECDIR}/libtool|' \ + ${WRKSRC}/d2c/compiler/platforms.descr .include diff -r -u /usr/ports/lang/dylan/distinfo ./distinfo --- /usr/ports/lang/dylan/distinfo Mon May 12 08:30:44 2003 +++ ./distinfo Tue Aug 26 09:39:25 2003 @@ -1,2 +1,2 @@ -MD5 (gwydion-dylan-2.3.10.tar.gz) = f3495c61764ac01045d53e5ec173f1da -MD5 (d2c-2.3.10-FreeBSD.gz) = 6eb11e755614e238ee4c704e53b20e3f +MD5 (gwydion-dylan-2.3.11.tar.gz) = 0be55ce757671efb415ec6616b6277c4 +MD5 (d2c-2.3.11-FreeBSD.gz) = edbb43719eda90efa7c77be3b6c77605 diff -r -u /usr/ports/lang/dylan/pkg-plist ./pkg-plist --- /usr/ports/lang/dylan/pkg-plist Mon May 12 08:30:44 2003 +++ ./pkg-plist Tue Aug 26 11:37:15 2003 @@ -138,17 +138,11 @@ lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libtime-dylan.so lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libtime-dylan.la lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libtime-dylan.a -lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/time-lib.dbc lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/threads.lib.du lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libthreads-dylan.so.0 lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libthreads-dylan.so lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libthreads-dylan.la lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libthreads-dylan.a -lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/common-extensions.lib.du -lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libcommon-extensions-dylan.so.0 -lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libcommon-extensions-dylan.so -lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libcommon-extensions-dylan.la -lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libcommon-extensions-dylan.a lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/common-dylan.lib.du lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libcommon-dylan-dylan.so.0 lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libcommon-dylan-dylan.so @@ -184,11 +178,6 @@ lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/liblocators-dylan.so lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/liblocators-dylan.la lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/liblocators-dylan.a -lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/network.lib.du -lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libnetwork-dylan.so.0 -lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libnetwork-dylan.so -lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libnetwork-dylan.la -lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libnetwork-dylan.a lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/parser-utilities.lib.du lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libparser-utilities-dylan.so.0 lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libparser-utilities-dylan.a @@ -208,7 +197,6 @@ lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libtestworks-dylan.so.0 lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libtestworks-dylan.so lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libtestworks-dylan.la -lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/glib.lib.du lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libtestworks-dylan.a lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/testworks-test-suite.lib.du lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libtestworks-test-suite-dylan.so.0 @@ -282,6 +270,7 @@ %%GTK_ONLY%%lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libduim-gadget-panes-dylan.so %%GTK_ONLY%%lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libduim-gadget-panes-dylan.la %%GTK_ONLY%%lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libduim-gadget-panes-dylan.a +%%GTK_ONLY%%lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/glib.lib.du %%GTK_ONLY%%lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libglib-dylan.so.0 %%GTK_ONLY%%lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libglib-dylan.so %%GTK_ONLY%%lib/dylan/%%DYLANVER%%/%%DYLANARCH%%/libglib-dylan.la >Release-Note: >Audit-Trail: >Unformatted: