diff options
author | oliver <oliver@FreeBSD.org> | 2005-05-31 19:00:51 +0000 |
---|---|---|
committer | oliver <oliver@FreeBSD.org> | 2005-05-31 19:00:51 +0000 |
commit | 848c1941ffe35c420da63f227e934eab62f8e2e8 (patch) | |
tree | d8a75254cdcaa6af4ba36fac291c32daeb7fd903 /devel/t1lib | |
parent | 9c7ab7db710a8a1025835cedb86a9ce388a28ab6 (diff) | |
download | FreeBSD-ports-848c1941ffe35c420da63f227e934eab62f8e2e8.zip FreeBSD-ports-848c1941ffe35c420da63f227e934eab62f8e2e8.tar.gz |
change the libtool version to use from 1.3 to 1.5
Diffstat (limited to 'devel/t1lib')
-rw-r--r-- | devel/t1lib/Makefile | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/devel/t1lib/Makefile b/devel/t1lib/Makefile index 9d9cb4a..566a36f 100644 --- a/devel/t1lib/Makefile +++ b/devel/t1lib/Makefile @@ -20,7 +20,8 @@ MAINTAINER= ports@FreeBSD.org COMMENT= A Type 1 Rasterizer Library for UNIX/X11 USE_GMAKE= yes -USE_LIBTOOL_VER= 13 +USE_REINPLACE= yes +USE_INC_LIBTOOL_VER=15 ALL_TARGET= without_doc INSTALLS_SHLIB= yes @@ -33,6 +34,15 @@ CONFIGURE_ARGS+= --without-x PLIST_SUB+= X11="@comment " .endif +post-patch: + @${REINPLACE_CMD} -e 's|$${CONFIG_SHELL-/bin/sh} $$ac_aux_dir|$$ac_aux_dir|' \ + ${WRKSRC}/configure + @${REINPLACE_CMD} -e 's|^LIBTOOL[ ]*=.*|LIBTOOL=${LIBTOOL}|' \ + ${WRKSRC}/xglyph/Makefile.in ${WRKSRC}/lib/type1/Makefile.in \ + ${WRKSRC}/lib/t1lib/Makefile.in ${WRKSRC}/lib/Makefile.in \ + ${WRKSRC}/type1afm/Makefile.in ${WRKSRC}/examples/Makefile.in + + post-install: .if !defined(NOPORTDOCS) @${MKDIR} ${DOCSDIR} |