diff options
author | joerg <joerg@pkgsrc.org> | 2009-12-15 17:35:36 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2009-12-15 17:35:36 +0000 |
commit | 93a084216f32069a4ca62f8111615c2506e8aae6 (patch) | |
tree | 52e09274223d3f08d8727d1e2bee952a45812e37 /devel/libtool-info/Makefile | |
parent | 0092718c4f9259f0d0ee1524ae09031a0a0a9419 (diff) | |
download | pkgsrc-93a084216f32069a4ca62f8111615c2506e8aae6.tar.gz |
Update to libtool-2.2.6b. This switches libtool to the new main branch.
Changes are many, important for pkgsrc:
- much higher speed (up to 30% faster for the overall build of libX11)
- less magic for detection of the tag
The pkgsrc integration of f2c has been changed to be more sane.
libtool itself now depends on the f2c frontend to use proper
auto-configuration and only fakes up the library. This part is
encapsulated in mk/compiler/f2c.mk.
Diffstat (limited to 'devel/libtool-info/Makefile')
-rw-r--r-- | devel/libtool-info/Makefile | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/devel/libtool-info/Makefile b/devel/libtool-info/Makefile index 65f8d4e5414..83163cc4f19 100644 --- a/devel/libtool-info/Makefile +++ b/devel/libtool-info/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.17 2006/11/01 08:59:03 joerg Exp $ +# $NetBSD: Makefile,v 1.18 2009/12/15 17:35:37 joerg Exp $ # .include "../../devel/libtool/Makefile.common" @@ -13,6 +13,14 @@ CONFLICTS+= libtool<1.3.5nb11 USE_TOOLS+= makeinfo INFO_FILES= # PLIST -BUILD_DIRS= doc +NO_CONFIGURE= yes + +INSTALLATION_DIRS= ${PKGINFODIR} + +do-build: + cd ${WRKSRC}/doc && ${MAKEINFO} --no-split libtool.texi + +do-install: + ${INSTALL_DATA} ${WRKSRC}/doc/libtool.info ${DESTDIR}${PREFIX}/${PKGINFODIR} .include "../../mk/bsd.pkg.mk" |