diff options
author | drochner <drochner@pkgsrc.org> | 2006-10-23 19:36:09 +0000 |
---|---|---|
committer | drochner <drochner@pkgsrc.org> | 2006-10-23 19:36:09 +0000 |
commit | 5b19eebdc38caeabf1857b7f6b4e5f63241495f4 (patch) | |
tree | d52c8d79ff762ce693c6cc8cbd92127a93279837 /misc | |
parent | 2ba1d3bff85b12ea5ddd26971ef4196d45fa93b8 (diff) | |
download | pkgsrc-5b19eebdc38caeabf1857b7f6b4e5f63241495f4.tar.gz |
-update to 2.16.1
changes:
-bugfixes
-Prefer xulrunner over mozilla
-translation updates
-use a fallback for man: lookups if neither a "manpath" binary nor
a MANPATH env var are present, as a first fix for PR pkg/34881 by
David H. Gutteridge
(This can be done better, but for now I'd like just prevent the crash.)
Diffstat (limited to 'misc')
-rw-r--r-- | misc/yelp/Makefile | 5 | ||||
-rw-r--r-- | misc/yelp/PLIST | 3 | ||||
-rw-r--r-- | misc/yelp/distinfo | 9 | ||||
-rw-r--r-- | misc/yelp/patches/patch-aa | 14 |
4 files changed, 23 insertions, 8 deletions
diff --git a/misc/yelp/Makefile b/misc/yelp/Makefile index 208b215303c..525fc5a7906 100644 --- a/misc/yelp/Makefile +++ b/misc/yelp/Makefile @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.60 2006/09/24 16:25:51 salo Exp $ +# $NetBSD: Makefile,v 1.61 2006/10/23 19:36:09 drochner Exp $ # -DISTNAME= yelp-2.16.0 -PKGREVISION= 2 +DISTNAME= yelp-2.16.1 CATEGORIES= misc MASTER_SITES= ${MASTER_SITE_GNOME:=sources/yelp/2.16/} EXTRACT_SUFX= .tar.bz2 diff --git a/misc/yelp/PLIST b/misc/yelp/PLIST index 7402547c810..d7aba879a25 100644 --- a/misc/yelp/PLIST +++ b/misc/yelp/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.13 2006/09/15 15:20:16 jmmv Exp $ +@comment $NetBSD: PLIST,v 1.14 2006/10/23 19:36:09 drochner Exp $ bin/gnome-help bin/yelp share/applications/yelp.desktop @@ -49,6 +49,7 @@ share/locale/ky/LC_MESSAGES/yelp.mo share/locale/li/LC_MESSAGES/yelp.mo share/locale/lt/LC_MESSAGES/yelp.mo share/locale/lv/LC_MESSAGES/yelp.mo +share/locale/mg/LC_MESSAGES/yelp.mo share/locale/mk/LC_MESSAGES/yelp.mo share/locale/ml/LC_MESSAGES/yelp.mo share/locale/mn/LC_MESSAGES/yelp.mo diff --git a/misc/yelp/distinfo b/misc/yelp/distinfo index fe6c065bab4..66d6cbdac81 100644 --- a/misc/yelp/distinfo +++ b/misc/yelp/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.17 2006/09/15 15:20:16 jmmv Exp $ +$NetBSD: distinfo,v 1.18 2006/10/23 19:36:09 drochner Exp $ -SHA1 (yelp-2.16.0.tar.bz2) = ef0bd0f1c45c15fc4c31dd66ba770779d294c069 -RMD160 (yelp-2.16.0.tar.bz2) = 45c003d58b0c1f6464137d4b1d76ef0c7883df29 -Size (yelp-2.16.0.tar.bz2) = 846550 bytes +SHA1 (yelp-2.16.1.tar.bz2) = d98de641b60cb5930d753ad5e5a4170c814f18b7 +RMD160 (yelp-2.16.1.tar.bz2) = ea3ce433a91fe462dfbb1851b83ccf4f12d24448 +Size (yelp-2.16.1.tar.bz2) = 855685 bytes +SHA1 (patch-aa) = f9c03f0078c4c5cb46de16e1974898015e9cadd6 diff --git a/misc/yelp/patches/patch-aa b/misc/yelp/patches/patch-aa new file mode 100644 index 00000000000..b228cb09eaf --- /dev/null +++ b/misc/yelp/patches/patch-aa @@ -0,0 +1,14 @@ +$NetBSD: patch-aa,v 1.5 2006/10/23 19:36:09 drochner Exp $ + +--- ./src/yelp-utils.c.orig 2006-10-23 21:06:59.000000000 +0200 ++++ ./src/yelp-utils.c +@@ -789,6 +789,9 @@ convert_man_uri (gchar *uri, gboolean tr + if (!g_spawn_command_line_sync ("manpath", &manp, NULL, NULL, NULL)) + manp = g_strdup (g_getenv ("MANPATH")); + ++ if (!manp) ++ manp = g_strdup ("/usr/share/man"); ++ + g_strstrip (manp); + manpath = g_strsplit (manp, ":", -1); + |