This file is indexed.

/usr/share/guile/site/gnome-2.scm is in guile-gnome2-glib 2.16.2-1.1ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
;; guile-gnome        -*- scheme -*-
;; Copyright (C) 2003,2004,2008 Andy Wingo <wingo at pobox dot com>

;; This program is free software; you can redistribute it and/or    
;; modify it under the terms of the GNU General Public License as   
;; published by the Free Software Foundation; either version 2 of   
;; the License, or (at your option) any later version.              
;;                                                                  
;; This program is distributed in the hope that it will be useful,  
;; but WITHOUT ANY WARRANTY; without even the implied warranty of   
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the    
;; GNU General Public License for more details.                     
;;                                                                  
;; You should have received a copy of the GNU General Public License
;; along with this program; if not, contact:
;;
;; Free Software Foundation           Voice:  +1-617-542-5942
;; 59 Temple Place - Suite 330        Fax:    +1-617-542-2652
;; Boston, MA  02111-1307,  USA       gnu@gnu.org

;;; Commentary:
;;
;; Selects version 2 of the Guile-GNOME libraries. This
;; module is used for its side effects; it exports no procedures.
;;
;; @section Rationale
;;
;; Early in the development of guile-gnome, we realized that at some
;; point we might need to make incompatible changes. Of course, we would
;; not want to force a correctly-written program to break when
;; guile-gnome gets upgraded. For this reason, we decided to make
;; guile-gnome parallel-installable. A program is completely specified
;; when it indicates which version of guile-gnome it should use.
;;
;; Guile-gnome has the concept of an API version, which indicates a
;; stable API series. For example, a program written against API version
;; 2 of guile-gnome will continue to work against all future releases of
;; that API version. It is permitted to add interfaces within a stable
;; series, but never to remove or change them incompatibly.
;;
;; Changing the API version is expected to be a relatively infrequent
;; operation. The current API version is 2.
;;
;; There are two manners for a program to specify the guile-gnome
;; version:
;;
;; @enumerate
;; @item
;; Via importing the @code{(gnome-@var{version})} module.
;;
;; This special module alters guile's load path to include the path of
;; the specified API version of guile-gnome. For example:
;;
;; @lisp
;; (use-modules (gnome-2))
;; @end lisp
;;
;; @item
;; Via invoking guile as guile-gnome-@var{version}.
;;
;; This shell script is installed when building a particular version of
;; guile-gnome, and serves to automatically load the
;; @code{(gnome-@var{apiversion})} module. For example, to get a repl
;; ready for guile-gnome:
;;
;; @example
;; $ guile-gnome-2
;; @end example
;;
;; To load a script with a particular version of guile-gnome:
;;
;; @example
;; $ guile-gnome-2 -s @var{script} @var{args...}
;; @end example
;;
;; To specify the guile-gnome version in a script, you might begin the
;; file with:
;;
;; @example
;; #! /bin/sh
;; # -*- scheme -*-
;; exec guile-gnome-2 -s $0
;; !#
;; ;; scheme code here...
;; @end example
;; @end enumerate
;;
;; A program must select the guile-gnome version before importing any
;; guile-gnome modules. Indeed, one cannot even import @code{(gnome
;; gobject)} before doing so.
;;
;; For a further rationale on parallel installability, see
;; @uref{http://ometer.com/parallel.html}.
;;
;;; Code:

;; Although resolve-module would create (gnome) if it's not found, guile
;; 1.6 will still search for a lib named libgnome.so before giving up.
;; Avoid this problem by making sure (gnome) is defined.
(define-module (gnome))

(define-module (gnome-2))

(define (ld-library-path-prepend! path)
  (let ((ld-library-path (getenv "LD_LIBRARY_PATH")))
    (if ld-library-path
        (setenv "LD_LIBRARY_PATH" (format #f "~A:~A"
                                          path ld-library-path))
        (setenv "LD_LIBRARY_PATH" path))))

;; Add path to the load path, preserving any modification that the user
;; already made via environment variables. Necessary so that
;; GUILE_LOAD_PATH munging during build works even after (gnome-2)
;; munges the path itself.
(define (add-to-load-path! path)
  (let ((first-std-path (in-vicinity
                         (assq-ref %guile-build-info 'pkgdatadir)
                         "site")))
    (let lp ((tail %load-path) (head '()))
      (cond
       ((null? tail)
        (set! %load-path (cons path %load-path)))
       ((string=? (car tail) first-std-path)
        (set! %load-path (append (reverse head) (cons path tail))))
       (else
        (lp (cdr tail) (cons (car tail) head)))))))
                 
(define version "2")

(cond
 ((module-variable (resolve-module '(gnome)) 'gnome-version)
  =>
  (lambda (v)
    (if (not (string=? (variable-ref v) version))
        (error "Loading guile-gnome version ~A, but ~A was already loaded"
               (variable-ref v) version))))

 (#f ;; #t if we are uninstalled
  (module-define! (resolve-module '(gnome)) 'gnome-version version)
  #t) ;; we're building guile-gnome, let the build scripts do their hacks

 (else
  (module-define! (resolve-module '(gnome)) 'gnome-version version)

  (let ((guile-gnome-dir "/usr/share/guile-gnome-2")
        (guile-gnome-lib-dir "/usr/lib/guile-gnome-2")
        (libdir "/usr/lib"))

    (add-to-load-path! guile-gnome-dir)

    ;; Resolve (gnome gw ...) wrapper links to libguile-gnome-gobject.
    (if (not (member libdir '("/usr/lib" "/usr/local/lib")))
        (ld-library-path-prepend! libdir))
  
    ;; Resolve (gnome gw ...) wrappers.
    (ld-library-path-prepend! guile-gnome-lib-dir))))