diff options
author | oliver <oliver@FreeBSD.org> | 2005-06-02 20:28:41 +0000 |
---|---|---|
committer | oliver <oliver@FreeBSD.org> | 2005-06-02 20:28:41 +0000 |
commit | a3684634fbc1fc93b761df5033608c97a048c44d (patch) | |
tree | 649e6a5579ecafc235a1ace86bad7dd378f529b8 /math | |
parent | 89a85b8ead1edd160ba1dd0c7ff6190b87ef0f51 (diff) | |
download | FreeBSD-ports-a3684634fbc1fc93b761df5033608c97a048c44d.zip FreeBSD-ports-a3684634fbc1fc93b761df5033608c97a048c44d.tar.gz |
change the libtool version to use from 1.3 to 1.5
Diffstat (limited to 'math')
-rw-r--r-- | math/cln/Makefile | 2 | ||||
-rw-r--r-- | math/libneural/Makefile | 7 | ||||
-rw-r--r-- | math/qhull/Makefile | 2 | ||||
-rw-r--r-- | math/qhull5/Makefile | 2 | ||||
-rw-r--r-- | math/spar/Makefile | 9 |
5 files changed, 15 insertions, 7 deletions
diff --git a/math/cln/Makefile b/math/cln/Makefile index d44cb78..af6533d 100644 --- a/math/cln/Makefile +++ b/math/cln/Makefile @@ -20,7 +20,7 @@ USE_BZIP2= yes USE_GCC= 3.4 USE_GNOME= gnomehack gnometarget lthack pkgconfig USE_GMAKE= yes -USE_INC_LIBTOOL_VER= 13 +USE_LIBTOOL_VER=15 CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}" CONFIGURE_ARGS= --infodir=${PREFIX}/info --mandir=${MANPREFIX}/man \ --with-gmp diff --git a/math/libneural/Makefile b/math/libneural/Makefile index 13a688f..b908b9d 100644 --- a/math/libneural/Makefile +++ b/math/libneural/Makefile @@ -13,7 +13,12 @@ MASTER_SITES= http://ieee.uow.edu.au/documents/contrib/ MAINTAINER= ports@FreeBSD.org COMMENT= C++ implementation of the classic 3-layer perceptron in library form -USE_INC_LIBTOOL_VER=13 +USE_LIBTOOL_VER=15 INSTALLS_SHLIB= yes +USE_REINPLACE= yes + +post-patch: + @${REINPLACE_CMD} -e 's|$${CONFIG_SHELL-/bin/sh} $$ac_aux_dir|$$ac_aux_dir|' \ + ${WRKSRC}/configure .include <bsd.port.mk> diff --git a/math/qhull/Makefile b/math/qhull/Makefile index b369c95..412c218 100644 --- a/math/qhull/Makefile +++ b/math/qhull/Makefile @@ -16,7 +16,7 @@ COMMENT= Qhull computes convex hulls, Delaunay triangulations and halfspaces USE_REINPLACE= yes USE_GMAKE= yes INSTALLS_SHLIB= yes -USE_INC_LIBTOOL_VER= 13 +USE_LIBTOOL_VER=15 CONFIGURE_TARGET= --build=${ARCH}-portbld-freebsd${OSREL} .if !defined(NOPORTDOCS) diff --git a/math/qhull5/Makefile b/math/qhull5/Makefile index b369c95..412c218 100644 --- a/math/qhull5/Makefile +++ b/math/qhull5/Makefile @@ -16,7 +16,7 @@ COMMENT= Qhull computes convex hulls, Delaunay triangulations and halfspaces USE_REINPLACE= yes USE_GMAKE= yes INSTALLS_SHLIB= yes -USE_INC_LIBTOOL_VER= 13 +USE_LIBTOOL_VER=15 CONFIGURE_TARGET= --build=${ARCH}-portbld-freebsd${OSREL} .if !defined(NOPORTDOCS) diff --git a/math/spar/Makefile b/math/spar/Makefile index 84fd25e..2be020f 100644 --- a/math/spar/Makefile +++ b/math/spar/Makefile @@ -15,14 +15,17 @@ MASTER_SITE_SUBDIR= ${PORTNAME} MAINTAINER= ports@FreeBSD.org COMMENT= A modular math parser -USE_GETOPT_LONG= yes +USE_GETOPT_LONG=yes USE_REINPLACE= yes -USE_INC_LIBTOOL_VER=13 +USE_LIBTOOL_VER=15 INSTALLS_SHLIB= yes MAN1= spar.1 post-patch: - @${REINPLACE_CMD} -e "s,-ldl,,g" ${WRKSRC}/lib/Makefile.in + @${REINPLACE_CMD} -e 's|$${CONFIG_SHELL-/bin/sh} $$ac_aux_dir|$$ac_aux_dir|' \ + ${WRKSRC}/configure + @${REINPLACE_CMD} -e "s,-ldl,,g" \ + ${WRKSRC}/lib/Makefile.in ${WRKSRC}/lib/module/Makefile.in .include <bsd.port.mk> |