445ef20117
Package changes: fix PKGLOCALEDIR botch reported by various people. Many thanks to Lubomir Sedlacik <salo at Xtrmntr dot org> for the patches in PR 18616! Changes in version 4.3: 4.3 (14 November 2002) * Language: . new command @tie{} to do a real tie (unbreakable interword space). * makeinfo: . html output for @defun and friends now has font changes. . html output has some class attributes. * texinfo.tex: . new Italian translations, txi-it.tex. . pdf bookmarks for unnumbered sections work. . type name for @defun and friends no longer extends into margin. * info: . automatic-footnotes now off by default, for emacs compatibility. . crash when MALLOC_CHECK_=2 fixed. * install-info: . new option --infodir synonym for --info-dir, for compatibility with the Debian install-info. . support for bzip2-compressed files. * texindex: . omit initial if the entire index is under one characters. * Distribution: . development sources now available under CVS, see http://savannah.gnu.org/projects/texinfo/ . Turkish message translation. . gettext 0.11.5, autoconf 2.54, automake 1.7.1.
34 lines
1 KiB
Makefile
34 lines
1 KiB
Makefile
# $NetBSD: Makefile,v 1.30 2002/11/17 01:17:30 seb Exp $
|
|
#
|
|
|
|
DISTNAME= texinfo-4.3
|
|
PKGNAME= g${DISTNAME}
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_GNU:=texinfo/}
|
|
|
|
MAINTAINER= packages@netbsd.org
|
|
HOMEPAGE= http://www.gnu.org/software/texinfo/texinfo.html
|
|
COMMENT= GNU info file manipulation utilities
|
|
|
|
USE_BUILDLINK2= yes
|
|
USE_GNU_GETTEXT= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --with-libiconv-prefix=${BUILDLINK_PREFIX.iconv}
|
|
CONFIGURE_ARGS+= --with-libintl-prefix=${BUILDLINK_PREFIX.gettext}
|
|
MAKE_ENV+= PKGLOCALEDIR="${PKGLOCALEDIR}"
|
|
AUTOMAKE_PATTERNS+= configure.ac
|
|
AUTOMAKE_PATTERNS+= config.in
|
|
|
|
INSTALL_INFO= ${PREFIX}/bin/install-info
|
|
|
|
post-patch:
|
|
${MV} -f ${WRKSRC}/info/filesys.h ${WRKSRC}/info/filesys.h.orig
|
|
${SED} -e 's|@PREFIX@|${PREFIX}|g' \
|
|
-e 's|@X11BASE@|${X11BASE}|g' \
|
|
-e 's|@LOCALBASE@|${LOCALBASE}|g' \
|
|
< ${WRKSRC}/info/filesys.h.orig \
|
|
> ${WRKSRC}/info/filesys.h
|
|
|
|
.include "../../devel/gettext-lib/buildlink2.mk"
|
|
.include "../../converters/libiconv/buildlink2.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|