43d2718fad
4.13 (18 September 2008) * A reference card for Texinfo is now available, in doc/refcard. For convenience, preformatted PDF's for letter-size and A4 paper are included. * makeinfo: . new option --internal-links for HTML output, to write a tsv file mapping indexed/toc terms to links, for easy reference from external documents. . - as an input file name reads standard input. * info: . support for multibyte encodings such as UTF-8. . new option --show-malformed-multibytes, to display malformed multibyte sequences. . new environment variable INFO_MAN_COMMAND sets the name of man binary (use it if you a need to override PATH settings). * install-info: . bug fix: support names with embedded periods (e.g., config.status) again. * Distribution: . autoconf 2.63.
42 lines
1.1 KiB
Makefile
42 lines
1.1 KiB
Makefile
# $NetBSD: Makefile,v 1.74 2009/08/16 13:57:43 wiz Exp $
|
|
|
|
DISTNAME= texinfo-4.13
|
|
PKGNAME= g${DISTNAME}
|
|
CATEGORIES= devel sysutils
|
|
MASTER_SITES= ${MASTER_SITE_GNU:=texinfo/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www.gnu.org/software/texinfo/texinfo.html
|
|
COMMENT= GNU info documentation utilities
|
|
LICENSE= gnu-gpl-v3
|
|
|
|
PKG_INSTALLATION_TYPES= overwrite pkgviews
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
GNU_CONFIGURE= yes
|
|
INFO_FILES= yes
|
|
TEST_TARGET= check
|
|
PLIST_SRC= ${PKGDIR}/PLIST
|
|
|
|
PKGSRC_INFOPATH= ${PREFIX}/${PKGINFODIR}:${X11BASE}/${PKGINFODIR}:${LOCALBASE}/${PKGINFODIR}
|
|
MAKE_ENV+= PKGSRC_INFOPATH=${PKGSRC_INFOPATH:Q}
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
TEXINFO_LOCALE?= yes
|
|
BUILD_DEFS+= TEXINFO_LOCALE
|
|
MAKEFLAGS+= TEXINFO_LOCALE=${TEXINFO_LOCALE:Q}
|
|
.if !empty(TEXINFO_LOCALE:M[yY][eE][sS])
|
|
USE_PKGLOCALEDIR= yes
|
|
PLIST_SRC+= ${PKGDIR}/PLIST.locale
|
|
. include "../../devel/gettext-lib/buildlink3.mk"
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-nls
|
|
.endif
|
|
|
|
.include "../../mk/termcap.buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|
|
|
|
# This need to be defined here to override the setting in texinfo.mk
|
|
INSTALL_INFO= ${PREFIX}/bin/install-info
|