diff options
author | wiz <wiz> | 2010-12-03 12:23:26 +0000 |
---|---|---|
committer | wiz <wiz> | 2010-12-03 12:23:26 +0000 |
commit | ebb842aa33548bf877d451005f1c97bfa4677d68 (patch) | |
tree | 975d1b7176e9ecfe5e3800600d1f98f035ecbc7d /textproc/texi2html/patches | |
parent | 73a7c696a15b20c7e4ad09b7139fb1f842707179 (diff) | |
download | pkgsrc-ebb842aa33548bf877d451005f1c97bfa4677d68.tar.gz |
Depend on p5-Locale-libintl instead of installing included version of it.
Fix texi2html script to actually run.
Bump PKGREVISION.
Diffstat (limited to 'textproc/texi2html/patches')
-rw-r--r-- | textproc/texi2html/patches/patch-ab | 21 | ||||
-rw-r--r-- | textproc/texi2html/patches/patch-ac | 15 |
2 files changed, 36 insertions, 0 deletions
diff --git a/textproc/texi2html/patches/patch-ab b/textproc/texi2html/patches/patch-ab new file mode 100644 index 00000000000..af2414e976b --- /dev/null +++ b/textproc/texi2html/patches/patch-ab @@ -0,0 +1,21 @@ +$NetBSD: patch-ab,v 1.1 2010/12/03 12:23:26 wiz Exp $ + +Don't install included libintl-perl, use pkgsrc one. + +--- Makefile.in.orig 2010-06-30 22:02:28.000000000 +0000 ++++ Makefile.in +@@ -1080,14 +1080,6 @@ distclean-local: + install-data-local: i18n + $(MKDIR_P) $(DESTDIR)$(pkgdatadir)/i18n + $(INSTALL_DATA) i18n/*.thl $(DESTDIR)$(pkgdatadir)/i18n +- $(MKDIR_P) $(DESTDIR)$(pkgdatadir)/lib/libintl-perl/lib/Locale/Recode \ +- $(DESTDIR)$(pkgdatadir)/lib/libintl-perl/lib/Locale/RecodeData +- $(INSTALL_DATA) $(srcdir)/lib/libintl-perl/lib/Locale/*.pm \ +- $(DESTDIR)$(pkgdatadir)/lib/libintl-perl/lib/Locale +- $(INSTALL_DATA) $(srcdir)/lib/libintl-perl/lib/Locale/Recode/*.pm \ +- $(DESTDIR)$(pkgdatadir)/lib/libintl-perl/lib/Locale/Recode +- $(INSTALL_DATA) $(srcdir)/lib/libintl-perl/lib/Locale/RecodeData/*.pm \ +- $(DESTDIR)$(pkgdatadir)/lib/libintl-perl/lib/Locale/RecodeData + $(MKDIR_P) $(DESTDIR)$(pkgdatadir)/lib/Unicode-EastAsianWidth/lib/Unicode + $(INSTALL_DATA) $(srcdir)/lib/Unicode-EastAsianWidth/lib/Unicode/EastAsianWidth.pm \ + $(DESTDIR)$(pkgdatadir)/lib/Unicode-EastAsianWidth/lib/Unicode diff --git a/textproc/texi2html/patches/patch-ac b/textproc/texi2html/patches/patch-ac new file mode 100644 index 00000000000..860bc8fb7f4 --- /dev/null +++ b/textproc/texi2html/patches/patch-ac @@ -0,0 +1,15 @@ +$NetBSD: patch-ac,v 1.1 2010/12/03 12:23:26 wiz Exp $ + +Make it find libintl-perl. + +--- texi2html.pl.orig 2010-06-30 22:01:27.000000000 +0000 ++++ texi2html.pl +@@ -48,6 +48,8 @@ use File::Basename; + use File::Spec; + # to determine the path separator and null file + use Config; ++# for libintl-perl ++use Locale::Messages; + + #use encoding::warnings; + # for translations |