diff options
author | mezz <mezz@FreeBSD.org> | 2009-08-07 20:05:34 +0800 |
---|---|---|
committer | mezz <mezz@FreeBSD.org> | 2009-08-07 20:05:34 +0800 |
commit | 3f22d32f24f1e400b5295d8326e69fef3bd05abc (patch) | |
tree | 0b92d808bffd7c15445739aa1639b15cd3f4f879 /textproc | |
parent | 835ee0c497c421b91467d4f9e741d0293ea8291a (diff) | |
download | freebsd-ports-gnome-3f22d32f24f1e400b5295d8326e69fef3bd05abc.tar.gz freebsd-ports-gnome-3f22d32f24f1e400b5295d8326e69fef3bd05abc.tar.zst freebsd-ports-gnome-3f22d32f24f1e400b5295d8326e69fef3bd05abc.zip |
Fix the build w/ libtool22.
Reported by: erwin (pointyhat i386 6)
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/iiimf-server/Makefile | 4 | ||||
-rw-r--r-- | textproc/iiimf-x-lib/Makefile | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/textproc/iiimf-server/Makefile b/textproc/iiimf-server/Makefile index aa08cf286ae6..a7de387298d6 100644 --- a/textproc/iiimf-server/Makefile +++ b/textproc/iiimf-server/Makefile @@ -54,9 +54,13 @@ post-patch: do-configure: @cd ${WRKSRC} && ${SETENV} ${AUTOTOOLS_ENV} ${GMAKE} reconfig + @${REINPLACE_CMD} -e "/^ltmain=/!s^\$$ac_aux_dir/ltmain.sh^${LIBTOOLFLAGS} ${LTMAIN}^g" \ + -e '/^LIBTOOL=/s^\$$(top_builddir)/libtool^${LIBTOOL}^g' \ + ${BUILDDIR}/configure @cd ${WRKSRC} && ${SETENV} ${CONFIGURE_ENV} ${GMAKE} config post-install: + ${MKDIR} ${PREFIX}/etc/iiim ${INSTALL_DATA} ${BUILDDIR}/src/le.xml.conf.sample ${PREFIX}/etc/iiim/ .include <bsd.port.post.mk> diff --git a/textproc/iiimf-x-lib/Makefile b/textproc/iiimf-x-lib/Makefile index d9b1da2a0325..5d1163183ccd 100644 --- a/textproc/iiimf-x-lib/Makefile +++ b/textproc/iiimf-x-lib/Makefile @@ -48,6 +48,9 @@ post-patch: pre-configure: @cd ${WRKSRC} && ${SETENV} ${AUTOTOOLS_ENV} ${GMAKE} reconfig + @${REINPLACE_CMD} -e "/^ltmain=/!s^\$$ac_aux_dir/ltmain.sh^${LIBTOOLFLAGS} ${LTMAIN}^g" \ + -e '/^LIBTOOL=/s^\$$(top_builddir)/libtool^${LIBTOOL}^g' \ + ${BUILDDIR}/configure @cd ${WRKSRC} && ${SETENV} ${CONFIGURE_ENV} ${GMAKE} config .include <bsd.port.post.mk> |