head 1.3; access; symbols pkgsrc-2013Q2:1.3.0.30 pkgsrc-2013Q2-base:1.3 pkgsrc-2012Q4:1.3.0.28 pkgsrc-2012Q4-base:1.3 pkgsrc-2011Q4:1.3.0.26 pkgsrc-2011Q4-base:1.3 pkgsrc-2011Q2:1.3.0.24 pkgsrc-2011Q2-base:1.3 pkgsrc-2009Q4:1.3.0.22 pkgsrc-2009Q4-base:1.3 pkgsrc-2008Q4:1.3.0.20 pkgsrc-2008Q4-base:1.3 pkgsrc-2008Q3:1.3.0.18 pkgsrc-2008Q3-base:1.3 cube-native-xorg:1.3.0.16 cube-native-xorg-base:1.3 pkgsrc-2008Q2:1.3.0.14 pkgsrc-2008Q2-base:1.3 pkgsrc-2008Q1:1.3.0.12 pkgsrc-2008Q1-base:1.3 pkgsrc-2007Q4:1.3.0.10 pkgsrc-2007Q4-base:1.3 pkgsrc-2007Q3:1.3.0.8 pkgsrc-2007Q3-base:1.3 pkgsrc-2007Q2:1.3.0.6 pkgsrc-2007Q2-base:1.3 pkgsrc-2007Q1:1.3.0.4 pkgsrc-2007Q1-base:1.3 pkgsrc-2006Q4:1.3.0.2 pkgsrc-2006Q4-base:1.3 pkgsrc-2006Q3:1.2.0.2 pkgsrc-2006Q3-base:1.2 pkgsrc-2006Q2:1.1.1.1.0.22 pkgsrc-2006Q2-base:1.1.1.1 pkgsrc-2006Q1:1.1.1.1.0.20 pkgsrc-2006Q1-base:1.1.1.1 pkgsrc-2005Q4:1.1.1.1.0.18 pkgsrc-2005Q4-base:1.1.1.1 pkgsrc-2005Q3:1.1.1.1.0.16 pkgsrc-2005Q3-base:1.1.1.1 pkgsrc-2005Q2:1.1.1.1.0.14 pkgsrc-2005Q2-base:1.1.1.1 pkgsrc-2005Q1:1.1.1.1.0.12 pkgsrc-2005Q1-base:1.1.1.1 pkgsrc-2004Q4:1.1.1.1.0.10 pkgsrc-2004Q4-base:1.1.1.1 pkgsrc-2004Q3:1.1.1.1.0.8 pkgsrc-2004Q3-base:1.1.1.1 pkgsrc-2004Q2:1.1.1.1.0.6 pkgsrc-2004Q2-base:1.1.1.1 pkgsrc-2004Q1:1.1.1.1.0.4 pkgsrc-2004Q1-base:1.1.1.1 pkgsrc-2003Q4:1.1.1.1.0.2 pkgsrc-2003Q4-base:1.1.1.1 pkgsrc-base:1.1.1.1 TNF:1.1.1; locks; strict; comment @# @; 1.3 date 2006.11.13.21.23.31; author drochner; state dead; branches; next 1.2; 1.2 date 2006.08.10.14.07.55; author drochner; state Exp; branches; next 1.1; 1.1 date 2003.09.25.16.04.07; author xtraeme; state Exp; branches 1.1.1.1; next ; 1.1.1.1 date 2003.09.25.16.04.07; author xtraeme; state Exp; branches; next ; desc @@ 1.3 log @now that devhelp documentation is back to its default place for ~everything of interest, discard a local patch to look at share/doc/html, bump PKGREVISION @ text @$NetBSD: patch-aa,v 1.2 2006/08/10 14:07:55 drochner Exp $ --- src/dh-base.c.orig 2006-08-10 14:47:22.000000000 +0200 +++ src/dh-base.c @@@@ -233,6 +233,10 @@@@ base_add_books_in_data_dir(DhBase *base, dir = g_build_filename(data_dir, "devhelp", "books", NULL); base_add_books(base, dir); g_free(dir); + + dir = g_build_filename(data_dir, "doc", NULL); + base_add_books(base, dir); + g_free(dir); } static void @ 1.2 log @update to 0.12 too many changes to list here, see the NEWS file in the distribution most notably: uses gecko (firefox or mozilla) to render HTML pkgsrc change: The search path for gtk-doc books has changed. Now we support the gtk-doc standard share/gtk-doc/html/* (which was patched out previously), and in addition share/doc/* (which is used by most pkgsrc installed books). The latter was share/doc/html/* previously which rendered the whole thing almost useless because only few pkgs used it. This is in response to PR pkg/34159 by "khorben@@syn.localhost". @ text @d1 1 a1 1 $NetBSD$ @ 1.1 log @Initial revision @ text @d3 1 a3 1 --- src/dh-base.c.orig 2003-06-28 23:16:34.000000000 +0200 d5 11 a15 16 @@@@ -221,9 +221,12 @@@@ base_init_books (DhBase *base) } /* Insert the books from default gtk-doc install path. */ - base_add_books (base, DATADIR "/gtk-doc/html"); - base_add_books (base, "/usr/share/gtk-doc/html"); - base_add_books (base, DATADIR "/devhelp/books"); + dir = g_build_filename (DATADIR, "doc", "html", NULL); + base_add_books (base, dir); + g_free (dir); + dir = g_build_filename (g_get_home_dir (), ".devhelp2", "books", NULL); + base_add_books (base, dir); + g_free (dir); dir = g_build_filename (g_get_home_dir (), ".devhelp", "books", NULL); base_add_books (base, dir); g_free (dir); @ 1.1.1.1 log @Initial import of devhelp 0.7. Package provided by Benedikt Meurer via pkgsrc-wip. DevHelp is an application to view books created in a conjunction with XML and HTML. This application is commonly used for viewing books about reference libraries, articles or tutorials. It provides the following features: - Full indexing of books in XML - HTML viewer (GtkHTML2) - Search by function, struct, macro or whatever - Auto completion - Commandline search - Emacs and Vim integration @ text @@