From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Mar 13 06:10:30 2004 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 BADB016A4CE for ; Sat, 13 Mar 2004 06:10:30 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9AD1E43D31 for ; Sat, 13 Mar 2004 06:10:30 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i2DEAUbv056280 for ; Sat, 13 Mar 2004 06:10:30 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id i2DEAUcc056279; Sat, 13 Mar 2004 06:10:30 -0800 (PST) (envelope-from gnats) Resent-Date: Sat, 13 Mar 2004 06:10:30 -0800 (PST) Resent-Message-Id: <200403131410.i2DEAUcc056279@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, KATO Tsuguru Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 63C5216A4CE for ; Sat, 13 Mar 2004 06:02:22 -0800 (PST) Received: from hfep05.dion.ne.jp (hfep05.dion.ne.jp [203.181.105.71]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8678E43D41 for ; Sat, 13 Mar 2004 06:02:21 -0800 (PST) (envelope-from tkato@prontomail.com) Received: from localhost ([61.198.217.119]) by hfep05.dion.ne.jp with SMTP id <20040313140217945.QUPH@hfep05.dion.ne.jp> for ; Sat, 13 Mar 2004 23:02:17 +0900 Message-Id: <20040313230036.410d478c.tkato@prontomail.com> Date: Sat, 13 Mar 2004 23:00:36 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/64220: Update port: x11-fm/fsv X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Mar 2004 14:10:30 -0000 >Number: 64220 >Category: ports >Synopsis: Update port: x11-fm/fsv >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 06:10:30 PST 2004 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 4.9-RELEASE-p3 i386 >Organization: >Environment: >Description: - Fix build on non-i386 arch - Utilize USE_GETOPT_LONG New file: files/patch-lib::Makefile.in >How-To-Repeat: >Fix: diff -urN /usr/ports/x11-fm/fsv/Makefile x11-fm/fsv/Makefile --- /usr/ports/x11-fm/fsv/Makefile Sat Mar 13 20:41:28 2004 +++ x11-fm/fsv/Makefile Sat Mar 13 21:09:05 2004 @@ -10,7 +10,7 @@ PORTREVISION= 1 CATEGORIES= x11-fm MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= fsv +MASTER_SITE_SUBDIR= ${PORTNAME} MAINTAINER= ports@FreeBSD.org COMMENT= 3D filesystem visualizer @@ -20,15 +20,15 @@ USE_X_PREFIX= yes USE_GL= yes USE_GNOME= gtk12 +USE_GETOPT_LONG= yes GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-GL-prefix=${X11BASE}/lib -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include ${PTHREAD_CFLAGS}" \ - LIBS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}" +CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}" -.include +CPPFLAGS= -I${LOCALBASE}/include ${PTHREAD_CFLAGS} +LDFLAGS= -L${LOCALBASE}/lib ${PTHREAD_LIBS} -.if ${ARCH} == "ia64" || ${ARCH} == "amd64" -BROKEN= "Does not compile on amd64 or ia64" -.endif +post-extract: + -@${RM} ${WRKSRC}/lib/getopt* -.include +.include diff -urN /usr/ports/x11-fm/fsv/files/patch-aa x11-fm/fsv/files/patch-aa --- /usr/ports/x11-fm/fsv/files/patch-aa Tue Aug 8 11:51:51 2000 +++ x11-fm/fsv/files/patch-aa Sat Mar 13 21:24:24 2004 @@ -26,7 +26,7 @@ gtk_main( ); +#ifdef __FreeBSD__ -+#ifndef __alpha__ ++#ifdef __i386__ + fpresetsticky(FP_X_DZ|FP_X_INV); +#endif + fpsetmask(FP_X_DZ|FP_X_INV); diff -urN /usr/ports/x11-fm/fsv/files/patch-lib::Makefile.in x11-fm/fsv/files/patch-lib::Makefile.in --- /usr/ports/x11-fm/fsv/files/patch-lib::Makefile.in Thu Jan 1 09:00:00 1970 +++ x11-fm/fsv/files/patch-lib::Makefile.in Sat Mar 13 21:08:36 2004 @@ -0,0 +1,24 @@ +--- lib/Makefile.in.orig Sun Jan 16 09:44:24 2000 ++++ lib/Makefile.in Sat Mar 13 21:08:23 2004 +@@ -99,10 +99,10 @@ + + INCLUDES = @GTK_CFLAGS@ + +-noinst_HEADERS = gnome-i18nP.h gnome-color-picker.h gnome-dateedit.h getopt.h nvstore.h ++noinst_HEADERS = gnome-i18nP.h gnome-color-picker.h gnome-dateedit.h nvstore.h + + libgnomeui_a_SOURCES = gnome-color-picker.c gnome-dateedit.c +-libmisc_a_SOURCES = getopt.c getopt1.c nvstore.c ++libmisc_a_SOURCES = nvstore.c + libmisc_a_LIBADD = @LIBOBJS@ + + EXTRA_DIST = README.gnome +@@ -119,7 +119,7 @@ + libgnomeui_a_LIBADD = + libgnomeui_a_OBJECTS = gnome-color-picker.o gnome-dateedit.o + libmisc_a_DEPENDENCIES = @LIBOBJS@ +-libmisc_a_OBJECTS = getopt.o getopt1.o nvstore.o ++libmisc_a_OBJECTS = nvstore.o + AR = ar + CFLAGS = @CFLAGS@ + COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) >Release-Note: >Audit-Trail: >Unformatted: