makeinfo if no native makeinfo executable exists. Honor TEXINFO_REQD when determining whether the native makeinfo can be used. * Remove USE_MAKEINFO and replace it with USE_TOOLS+=makeinfo. * Get rid of all the "split" argument deduction for makeinfo since the PLIST module already handles varying numbers of split info files correctly. NOTE: Platforms that have "makeinfo" in the base system should check that the makeinfo entries of pkgsrc/mk/tools.${OPSYS}.mk are correct.
22 lines
481 B
Makefile
22 lines
481 B
Makefile
# $NetBSD: Makefile,v 1.15 2006/03/05 16:27:25 jlam Exp $
|
|
#
|
|
|
|
.include "../../devel/libtool/Makefile.common"
|
|
|
|
PKGNAME= ${DISTNAME:S/-/-info-/}
|
|
SVR4_PKGNAME= ltooi
|
|
|
|
COMMENT= Generic shared library support script - info pages
|
|
|
|
CONFLICTS+= libtool<1.3.5nb11
|
|
|
|
USE_TOOLS+= makeinfo
|
|
INFO_FILES= libtool.info
|
|
|
|
do-build:
|
|
cd ${WRKSRC}/doc ; ${SETENV} ${MAKE_ENV} ${MAKE_PROGRAM}
|
|
|
|
do-install:
|
|
cd ${WRKSRC}/doc ; ${SETENV} ${MAKE_ENV} ${MAKE_PROGRAM} install
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|