3f2cb2ede6
* Noteworthy changes in release 2.3.2 (2021-07-19) [stable] ** Upgrade TR46 tables from Unicode 11 to Unicode 13. Now U+32FF works. Fixes <https://gitlab.com/libidn/libidn2/-/issues/77>. ** Fix build errors related to doc/idn2--help.texi. With older makeinfo, this would manifest itself by looking for idn2-help.texi instead. Further, some BSD grep implementations did not like the \+ regexp command, so we now rely on the (apparently) more portable * regexp command. Reported-By: David Gessel. See <https://gitlab.com/libidn/libidn2/-/issues/93>. ** doc: Improve GTK-DOC manual. ** doc: Don't ship HTML/PDF manual. Drop custom CSS stylesheet.
28 lines
903 B
Makefile
28 lines
903 B
Makefile
# $NetBSD: Makefile,v 1.10 2021/07/29 10:24:49 wiz Exp $
|
|
|
|
DISTNAME= libidn2-2.3.2
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_GNU:=libidn/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://www.gnu.org/software/libidn/
|
|
COMMENT= Convert internationalized domain names to/from ASCII Encoding
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
USE_LIBTOOL= yes
|
|
USE_TOOLS+= pkg-config
|
|
GNU_CONFIGURE= yes
|
|
PKGCONFIG_OVERRIDE+= libidn2.pc.in
|
|
INFO_FILES= yes
|
|
|
|
# XXX: Kludge to avoid uncoditionally pick up some gtkdoc-* tools if gtk-doc
|
|
# XXX: package is installed and then fails in the installation phase.
|
|
CONFIGURE_ENV+= ac_cv_prog_GTKDOC_CHECK= \
|
|
ac_cv_path_GTKDOC_CHECK_PATH= \
|
|
ac_cv_path_GTKDOC_REBASE= \
|
|
ac_cv_path_GTKDOC_MKPDF=
|
|
|
|
.include "../../converters/libiconv/buildlink3.mk"
|
|
.include "../../devel/gettext-lib/buildlink3.mk"
|
|
.include "../../textproc/libunistring/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|