diff options
author | krion <krion@FreeBSD.org> | 2003-07-27 23:30:23 +0800 |
---|---|---|
committer | krion <krion@FreeBSD.org> | 2003-07-27 23:30:23 +0800 |
commit | 812b6545e991711d794b2541bdd43bd3c87173a3 (patch) | |
tree | 923fbd8e38a54e833ce22c17577c5c9bad3e411d /math/fftw | |
parent | f03a01843671b0e64d21d1c136ccf5a66166c0e3 (diff) | |
download | freebsd-ports-gnome-812b6545e991711d794b2541bdd43bd3c87173a3.tar.gz freebsd-ports-gnome-812b6545e991711d794b2541bdd43bd3c87173a3.tar.zst freebsd-ports-gnome-812b6545e991711d794b2541bdd43bd3c87173a3.zip |
- Do not install useless .la files
- Fix handling info files
PR: 54902
Submitted by: KATO Tsuguru <tkato@prontomail.com>
Approved by: fjoe (mentor) (implicit)
Diffstat (limited to 'math/fftw')
-rw-r--r-- | math/fftw/Makefile | 22 | ||||
-rw-r--r-- | math/fftw/files/patch-configure | 10 | ||||
-rw-r--r-- | math/fftw/files/patch-doc::fftw.texi | 13 | ||||
-rw-r--r-- | math/fftw/pkg-plist | 11 |
4 files changed, 38 insertions, 18 deletions
diff --git a/math/fftw/Makefile b/math/fftw/Makefile index 82c07059ada6..8c270d55b451 100644 --- a/math/fftw/Makefile +++ b/math/fftw/Makefile @@ -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 @@ MASTER_SITES= ftp://ftp.fftw.org/pub/fftw/ \ MAINTAINER= Lars.Koeller@Uni-Bielefeld.DE COMMENT= Fast C routines to compute the Discrete Fourier Transform -.include <bsd.port.pre.mk> - -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 <bsd.port.pre.mk> + .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 <bsd.port.post.mk> diff --git a/math/fftw/files/patch-configure b/math/fftw/files/patch-configure new file mode 100644 index 000000000000..18bde56854e2 --- /dev/null +++ b/math/fftw/files/patch-configure @@ -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 --git a/math/fftw/files/patch-doc::fftw.texi b/math/fftw/files/patch-doc::fftw.texi new file mode 100644 index 000000000000..dcf37f7ea431 --- /dev/null +++ b/math/fftw/files/patch-doc::fftw.texi @@ -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 --git a/math/fftw/pkg-plist b/math/fftw/pkg-plist index 0ea1930b799c..d019bd7f4cc0 100644 --- a/math/fftw/pkg-plist +++ b/math/fftw/pkg-plist @@ -2,19 +2,12 @@ include/fftw.h 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%% |