From owner-freebsd-ports Mon Jul 15 13:50:49 2002 Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B3CBC37B405 for ; Mon, 15 Jul 2002 13:50:04 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D91F343E64 for ; Mon, 15 Jul 2002 13:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.4/8.12.4) with ESMTP id g6FKo1JU012473 for ; Mon, 15 Jul 2002 13:50:01 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.4/8.12.4/Submit) id g6FKo1AP012472; Mon, 15 Jul 2002 13:50:01 -0700 (PDT) Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DF55D37B400 for ; Mon, 15 Jul 2002 13:49:52 -0700 (PDT) Received: from www.freebsd.org (www.FreeBSD.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 924E243E65 for ; Mon, 15 Jul 2002 13:49:52 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.12.4/8.12.4) with ESMTP id g6FKnqOT081862 for ; Mon, 15 Jul 2002 13:49:52 -0700 (PDT) (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.12.4/8.12.4/Submit) id g6FKnquT081861; Mon, 15 Jul 2002 13:49:52 -0700 (PDT) Message-Id: <200207152049.g6FKnquT081861@www.freebsd.org> Date: Mon, 15 Jul 2002 13:49:52 -0700 (PDT) From: KATO Tsuguru To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/40620: Update port: audio/gnump3d to 0.9.9.9.2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 40620 >Category: ports >Synopsis: Update port: audio/gnump3d to 0.9.9.9.2 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Jul 15 13:50:01 PDT 2002 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.6-RELEASE i386 >Organization: >Environment: >Description: - Update to version 0.9.9.9.2 New file: files/patch-config::ltmain.sh files/patch-src::threads.cc >How-To-Repeat: >Fix: diff -urN /usr/ports/audio/gnump3d/Makefile audio/gnump3d/Makefile --- /usr/ports/audio/gnump3d/Makefile Mon Jul 1 20:26:29 2002 +++ audio/gnump3d/Makefile Tue Jul 16 03:27:44 2002 @@ -7,21 +7,25 @@ # PORTNAME= gnump3d -PORTVERSION= 0.9.9.9.1 +PORTVERSION= 0.9.9.9.2 CATEGORIES= audio MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} MAINTAINER= ports@FreeBSD.org +BUILD_DEPENDS= autoconf:${PORTSDIR}/devel/autoconf + USE_BZIP2= yes USE_PERL5= yes USE_REINPLACE= yes USE_GMAKE= yes GNU_CONFIGURE= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include ${PTHREAD_CFLAGS}" \ - LIBS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}" CONFIGURE_TARGET= --build=${ARCH}-portbld-freebsd${OSREL} +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + LDFLAGS="-L${LOCALBASE}/lib" +CONFIGURE_ARGS= --libdir=${PREFIX}/lib/gnump3d +INSTALLS_SHLIB= yes MAN1= gnump3d.1 gnump3d.conf.1 gnump3d-config.1 gnump3d-top.1 @@ -38,13 +42,14 @@ .endif post-patch: - @${REINPLACE_CMD} -e \ - 's|=aclocal|=${TRUE}|g ; \ - s|=autoconf|=${TRUE}|g ; \ - s|=automake|=${TRUE}|g ; \ - s|=autoheader|=${TRUE}|g ; \ - s|-pthread|${PTHREAD_LIBS}|g' ${WRKSRC}/configure + @${REINPLACE_CMD} -e 's|-D_THREAD_SAFE|${PTHREAD_CFLAGS}|g ; \ + s|-pthread|${PTHREAD_LIBS}|g' ${WRKSRC}/aclocal.m4 @${REINPLACE_CMD} -e \ 's|#undef socklen_t||g' ${WRKSRC}/src/config.h.in + +pre-configure: +.for dir in . mplib libltdl + @cd ${WRKSRC}/${dir} && ${LOCALBASE}/bin/autoconf +.endfor .include diff -urN /usr/ports/audio/gnump3d/distinfo audio/gnump3d/distinfo --- /usr/ports/audio/gnump3d/distinfo Mon Jul 1 20:26:29 2002 +++ audio/gnump3d/distinfo Mon Jul 15 20:14:53 2002 @@ -1 +1 @@ -MD5 (gnump3d-0.9.9.9.1.tar.bz2) = 10048c53ec1a1382fe8092dd181dbe00 +MD5 (gnump3d-0.9.9.9.2.tar.bz2) = 1e8c72e5dec7ab9c98f2d9e5795cfca3 diff -urN /usr/ports/audio/gnump3d/files/patch-config::ltmain.sh audio/gnump3d/files/patch-config::ltmain.sh --- /usr/ports/audio/gnump3d/files/patch-config::ltmain.sh Thu Jan 1 09:00:00 1970 +++ audio/gnump3d/files/patch-config::ltmain.sh Tue Jul 16 00:39:11 2002 @@ -0,0 +1,10 @@ +--- config/ltmain.sh.orig Sun Jul 14 08:53:50 2002 ++++ config/ltmain.sh Tue Jul 16 00:38:55 2002 +@@ -967,6 +967,7 @@ + ;; + + -avoid-version) ++ build_old_libs=no + avoid_version=yes + continue + ;; diff -urN /usr/ports/audio/gnump3d/files/patch-src::threads.cc audio/gnump3d/files/patch-src::threads.cc --- /usr/ports/audio/gnump3d/files/patch-src::threads.cc Thu Jan 1 09:00:00 1970 +++ audio/gnump3d/files/patch-src::threads.cc Tue Jul 16 00:29:14 2002 @@ -0,0 +1,10 @@ +--- src/threads.cc.orig Sun Jul 14 08:53:50 2002 ++++ src/threads.cc Tue Jul 16 00:01:18 2002 +@@ -39,6 +39,7 @@ + #include + #include + #include /* Portability fix: used to be */ ++#include + #include + #include + #include diff -urN /usr/ports/audio/gnump3d/pkg-plist audio/gnump3d/pkg-plist --- /usr/ports/audio/gnump3d/pkg-plist Mon Jul 1 20:26:30 2002 +++ audio/gnump3d/pkg-plist Tue Jul 16 03:29:28 2002 @@ -1,31 +1,43 @@ bin/gnump3d +bin/gnump3d-config bin/gnump3d-top -etc/gnump3d/gnump3d.conf etc/gnump3d/default/error.html etc/gnump3d/default/index.html +etc/gnump3d/default/plugin.html etc/gnump3d/default/results.html etc/gnump3d/default/search.html etc/gnump3d/default/stats.html etc/gnump3d/default/style.css +etc/gnump3d/gnump3d.conf etc/gnump3d/nausicaa/error.html etc/gnump3d/nausicaa/index.html +etc/gnump3d/nausicaa/plugin.html etc/gnump3d/nausicaa/results.html etc/gnump3d/nausicaa/search.html etc/gnump3d/nausicaa/stats.html +etc/gnump3d/nausicaa/style.css etc/gnump3d/simple/config.ini etc/gnump3d/simple/error.html etc/gnump3d/simple/index.html +etc/gnump3d/simple/plugin.html etc/gnump3d/simple/results.html etc/gnump3d/simple/search.html etc/gnump3d/simple/stats.html etc/gnump3d/split/config.ini etc/gnump3d/split/error.html etc/gnump3d/split/index.html +etc/gnump3d/split/plugin.html etc/gnump3d/split/results.html etc/gnump3d/split/search.html etc/gnump3d/split/stats.html -@dirrm etc/gnump3d/split -@dirrm etc/gnump3d/simple -@dirrm etc/gnump3d/nausicaa -@dirrm etc/gnump3d/default -@dirrm etc/gnump3d +lib/gnump3d/last20.la +lib/gnump3d/last20.so +lib/gnump3d/search.la +lib/gnump3d/search.so +lib/gnump3d/stats.la +lib/gnump3d/stats.so +lib/gnump3d/theme.la +lib/gnump3d/theme.so +lib/gnump3d/version.la +lib/gnump3d/version.so +@dirrm lib/gnump3d >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message