942aad2e6a
"INFO_FILES should be set to YES or yes." "Packages that install info files should set INFO_FILES." Makefile and PLIST warning, respectively.
26 lines
538 B
Makefile
26 lines
538 B
Makefile
# $NetBSD: Makefile,v 1.19 2013/04/06 20:27:18 rodent 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= yes
|
|
|
|
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"
|