1;; About the package
2(define *name* "Guile-GNOME: GObject")
3(define *description* "The GLib object system in Scheme")
4(define *version* "2.15.98")
5(define *updated* "24 April 2008")
6(define *authors*
7  '(("Andy Wingo" . "wingo at pobox.com")
8    ("Martin Baulig" . "baulig at suse.de")))
9
10;; Copying the documentation
11(define *copyright-holder* "Free Software Foundation")
12(define *years* '(2003 2004 2005 2006 2007 2008))
13(define *permissions*
14  "Permission is granted to copy, distribute and/or modify this document
15under the terms of the GNU General Public License, Version 2 or any
16later version published by the Free Software Foundation.")
17
18;; Texinfo info
19(define *texinfo-basename* "guile-gnome-gobject")
20(define *texinfo-category* "The Algorithmic Language Scheme")
21(define *extra-texinfo-menu-entries*
22  '(("Type Index")
23    ("Function Index")))
24(define *texinfo-epilogue*
25  `((node (% (name "Type Index")))
26    (unnumbered "Type Index")
27    (printindex (% (type "tp")))
28    (node (% (name "Function Index")))
29    (unnumbered "Function Index")
30    (printindex (% (type "fn")))))
31
32;; HTML foo
33(define *html-relative-root-path* "../../../")
34(define *extra-html-entry-files*
35  '()) ;("scripts.texi" "org-to-pdf-presentation"
36     ;"Make PDF presentations from Org Mode files")))
37
38;; The modules to document
39(define *modules*
40  '(((gnome-2)
41     "Guile-GNOME is stable and parallel-installable")
42    ((gnome gobject)
43     "One module to bind them")
44    ((gnome gobject gtype)
45     "The base of the GObject type system")
46    ((gnome gobject gvalue)
47     "Generic boxed values")
48    ((gnome gobject gparameter)
49     "Parameters with constraints and default values")
50    ((gnome gobject gclosure)
51     "Language-portable closures")
52    ((gnome gobject gsignal)
53     "Using closures as extension points")
54    ((gnome gobject gobject)
55     "GLib's main object implementation")
56    ((gnome gobject generics)
57     "Shorthand for many common GObject operations")
58    ((gnome gobject utils)
59     "Miscellaneous useful functions")
60    ((gnome gw generics)
61     "A home for generated generic functions")
62    ((gnome gw support gobject)
63     "Integration between G-Wrap and GObject types")
64    ((gnome gw support defs)
65     "Create G-Wrap wrapsets from ``defs'' files")
66    ((gnome gw support gtk-doc)
67     "Parse C documentation from gtk-doc into texinfo")
68    ((gnome gw support modules)
69     "Fondling Guile's module system")))
70
71(define *module-sources* '())
72