diff options
author | drochner <drochner@pkgsrc.org> | 2006-11-29 22:00:49 +0000 |
---|---|---|
committer | drochner <drochner@pkgsrc.org> | 2006-11-29 22:00:49 +0000 |
commit | b44092c2a4de3e2e96034bbeac67249cc7e3b6a4 (patch) | |
tree | d99a63921b8dd556f1839caf372c7fca1f21c8f1 /misc | |
parent | 494f1478cdd7680e384ab5bb4139039b178dca34 (diff) | |
download | pkgsrc-b44092c2a4de3e2e96034bbeac67249cc7e3b6a4.tar.gz |
update to 2.16.2
changes:
-Don't crash when manpath is unavailable
(pkgsrc does fall back to /usr/share/man for now)
-more bugfixes
-translation updates
Diffstat (limited to 'misc')
-rw-r--r-- | misc/yelp/Makefile | 4 | ||||
-rw-r--r-- | misc/yelp/distinfo | 10 | ||||
-rw-r--r-- | misc/yelp/patches/patch-aa | 13 |
3 files changed, 13 insertions, 14 deletions
diff --git a/misc/yelp/Makefile b/misc/yelp/Makefile index 525fc5a7906..156fa3924d4 100644 --- a/misc/yelp/Makefile +++ b/misc/yelp/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.61 2006/10/23 19:36:09 drochner Exp $ +# $NetBSD: Makefile,v 1.62 2006/11/29 22:00:49 drochner Exp $ # -DISTNAME= yelp-2.16.1 +DISTNAME= yelp-2.16.2 CATEGORIES= misc MASTER_SITES= ${MASTER_SITE_GNOME:=sources/yelp/2.16/} EXTRACT_SUFX= .tar.bz2 diff --git a/misc/yelp/distinfo b/misc/yelp/distinfo index 66d6cbdac81..5fc90c9457a 100644 --- a/misc/yelp/distinfo +++ b/misc/yelp/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.18 2006/10/23 19:36:09 drochner Exp $ +$NetBSD: distinfo,v 1.19 2006/11/29 22:00:49 drochner Exp $ -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 +SHA1 (yelp-2.16.2.tar.bz2) = d165a6a31eed3f6f2c251b9217299cd5e04ac6e0 +RMD160 (yelp-2.16.2.tar.bz2) = 5c33700f40c6f533406d99f06731f2ffcb31d448 +Size (yelp-2.16.2.tar.bz2) = 858693 bytes +SHA1 (patch-aa) = 06d5f0a6d6e34db1cfff7d65c74cfd3b0d6fe51c diff --git a/misc/yelp/patches/patch-aa b/misc/yelp/patches/patch-aa index b228cb09eaf..5a58f51fcc7 100644 --- a/misc/yelp/patches/patch-aa +++ b/misc/yelp/patches/patch-aa @@ -1,14 +1,13 @@ -$NetBSD: patch-aa,v 1.5 2006/10/23 19:36:09 drochner Exp $ +$NetBSD: patch-aa,v 1.6 2006/11/29 22:00:49 drochner Exp $ ---- ./src/yelp-utils.c.orig 2006-10-23 21:06:59.000000000 +0200 +--- ./src/yelp-utils.c.orig 2006-11-20 23:23:16.000000000 +0100 +++ ./src/yelp-utils.c -@@ -789,6 +789,9 @@ convert_man_uri (gchar *uri, gboolean tr +@@ -789,7 +789,7 @@ 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) + if (!manp) { +- return NULL; + manp = g_strdup ("/usr/share/man"); -+ + } g_strstrip (manp); manpath = g_strsplit (manp, ":", -1); - |