From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jul 27 02:50:29 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 0E23737B401 for ; Sun, 27 Jul 2003 02:50:29 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 110A643FDF for ; Sun, 27 Jul 2003 02:50:19 -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 h6R9oIUp073016 for ; Sun, 27 Jul 2003 02:50:18 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h6R9oIqW073015; Sun, 27 Jul 2003 02:50:18 -0700 (PDT) Resent-Date: Sun, 27 Jul 2003 02:50:18 -0700 (PDT) Resent-Message-Id: <200307270950.h6R9oIqW073015@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 8602137B401 for ; Sun, 27 Jul 2003 02:40:49 -0700 (PDT) Received: from hfep03.dion.ne.jp (hfep03.dion.ne.jp [203.181.105.69]) by mx1.FreeBSD.org (Postfix) with ESMTP id 64AC443F3F for ; Sun, 27 Jul 2003 02:40:48 -0700 (PDT) (envelope-from tkato@prontomail.com) Received: from localhost ([61.204.120.225]) by hfep03.dion.ne.jp with SMTP id <20030727094045157.SMHI@hfep03.dion.ne.jp> for ; Sun, 27 Jul 2003 18:40:45 +0900 Message-Id: <20030727183849.3fc25285.tkato@prontomail.com> Date: Sun, 27 Jul 2003 18:38:49 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/54902: Update port: math/fftw 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: Sun, 27 Jul 2003 09:50:29 -0000 >Number: 54902 >Category: ports >Synopsis: Update port: math/fftw >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: Sun Jul 27 02:50:18 PDT 2003 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 4.8-RELEASE i386 >Organization: >Environment: >Description: - Do not install useless .la files - Fix handling info files New file: files/patch-configure files/patch-doc::fftw.texi >How-To-Repeat: >Fix: diff -urN /usr/ports/math/fftw/Makefile math/fftw/Makefile --- /usr/ports/math/fftw/Makefile Sat Apr 12 22:57:05 2003 +++ math/fftw/Makefile Fri Jul 25 11:11:12 2003 @@ -7,6 +7,7 @@ PORTNAME= fftw PORTVERSION= 2.1.5 +PORTREVISION= 1 CATEGORIES= math MASTER_SITES= ftp://ftp.fftw.org/pub/fftw/ \ ftp://ftp.fftw.org/pub/fftw/old/ \ @@ -16,23 +17,26 @@ MAINTAINER= Lars.Koeller@Uni-Bielefeld.DE COMMENT= Fast C routines to compute the Discrete Fourier Transform -.include - -USE_LIBTOOL= yes -GNU_CONFIGURE= yes USE_GMAKE= yes +USE_LIBTOOL= yes +CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} +CONFIGURE_ENV= MAKEINFO="makeinfo --no-split" +CONFIGURE_ARGS= --enable-shared INSTALLS_SHLIB= yes +.include + .if ${ARCH} == "i386" -CONFIGURE_ARGS= --enable-i386-hacks +CONFIGURE_ARGS+= --enable-i386-hacks .endif -CONFIGURE_ARGS+=--enable-shared + +post-extract: + @${RM} ${WRKSRC}/doc/fftw.info* post-install: .if !defined(NOPORTDOCS) - ${MKDIR} ${PREFIX}/share/doc/fftw - ${CP} ${WRKSRC}/doc/fftw.ps ${PREFIX}/share/doc/fftw - install-info ${PREFIX}/info/fftw.info ${PREFIX}/info/dir + @${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/doc/fftw.ps ${DOCSDIR} .endif .include diff -urN /usr/ports/math/fftw/files/patch-configure math/fftw/files/patch-configure --- /usr/ports/math/fftw/files/patch-configure Thu Jan 1 09:00:00 1970 +++ math/fftw/files/patch-configure Fri Jul 25 10:52:16 2003 @@ -0,0 +1,10 @@ +--- configure.orig Mon Mar 24 16:09:56 2003 ++++ configure Fri Jul 25 10:52:07 2003 +@@ -8217,6 +8217,7 @@ + + # This can be used to rebuild libtool when needed + LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh" ++$ac_aux_dir/ltconfig $LIBTOOL_DEPS + + # Always use our own libtool. + LIBTOOL='$(SHELL) $(top_builddir)/libtool' diff -urN /usr/ports/math/fftw/files/patch-doc::fftw.texi math/fftw/files/patch-doc::fftw.texi --- /usr/ports/math/fftw/files/patch-doc::fftw.texi Thu Jan 1 09:00:00 1970 +++ math/fftw/files/patch-doc::fftw.texi Fri Jul 25 11:27:09 2003 @@ -0,0 +1,13 @@ +--- doc/fftw.texi.orig Mon Mar 17 08:43:18 2003 ++++ doc/fftw.texi Fri Jul 25 11:26:48 2003 +@@ -3,6 +3,10 @@ + @c %**start of header + @setfilename fftw.info + @settitle FFTW ++@dircategory Libraries ++@direntry ++* FFTW: (fftw). Fast fourier transform library ++@end direntry + @c %**end of header + + @include version.texi diff -urN /usr/ports/math/fftw/pkg-plist math/fftw/pkg-plist --- /usr/ports/math/fftw/pkg-plist Fri Jun 16 19:37:37 2000 +++ math/fftw/pkg-plist Fri Jul 25 11:28:06 2003 @@ -2,19 +2,12 @@ include/rfftw.h @unexec install-info --delete %D/info/fftw.info %D/info/dir info/fftw.info -info/fftw.info-1 -info/fftw.info-2 -info/fftw.info-3 -info/fftw.info-4 -info/fftw.info-5 @exec install-info %D/info/fftw.info %D/info/dir lib/libfftw.a -lib/libfftw.la lib/libfftw.so lib/libfftw.so.2 lib/librfftw.a -lib/librfftw.la lib/librfftw.so lib/librfftw.so.2 -share/doc/fftw/fftw.ps -@dirrm share/doc/fftw +%%PORTDOCS%%%%DOCSDIR%%/fftw.ps +%%PORTDOCS%%@dirrm %%DOCSDIR%% >Release-Note: >Audit-Trail: >Unformatted: