chiark / gitweb /
Bindings for window and window-group completed
[clg] / README
diff --git a/README b/README
index 64e05642ee4d97dddd1b11898113b8398c961303..f58ce3124afac091b40f18e134d7b7522ec7deb7 100644 (file)
--- a/README
+++ b/README
@@ -1,12 +1,12 @@
 This package contains Common Lisp bindings to GTK+ v2.0. It currently
-works with only CMUCL, but ports to other CL implementations may be
-added later.
+only works with CMUCL 19a, but ports to other CL implementations may
+be added later.
 
 
 New versions
 ------------
 
-The most recent version of this package can be found at:
+The most recent version of this package can be found: in CVS 
 
 
 
@@ -14,12 +14,48 @@ Build instructions
 ------------------
 
 1. When building for CMUCL, first obtain a matching binary and source
-   tree (the only source file you will actually need is lisp.h, which
-   have to be copied or linked to your CMUCL_LIB directory).  On ELF
-   systems you may also have to rebuild lisp with -rdynamic added to
-   OS_LINK_FLAGS.
+   tree (the only source file you will actually need is lisp.h and a
+   couple of other header files). On ELF systems you may also have to
+   rebuild lisp with -rdynamic added to OS_LINK_FLAGS.
+
+
+2. Set up paths to reflect your system:
+
+   - Add a logical-pathname-translation to clg in ~/.cmucl-init.lisp
+     or some other startup file. Example:
+
+       (setf
+         (logical-pathname-translations "clg")
+         '(("**;*.*.*" "/home/espen/src/clg/**/")))
+
+   - Set the correct pkg-config search path if your gtk+ installation
+     is in an unusual place, by adding it to the PKG_CONFIG_PATH
+     environment variable before starting lisp.
+
+   - Set *cmucl-include-path* to point to the directory where the
+     lisp.h file resides, if it is not in the default place.  Try "locate 
+     'lisp/lisp.h'" if you don't know the location.
+
+
+3. Compile and load the system:
+   
+     (asdf:oos 'asdf:load-op :gtk)
+
+   Currently it will fail with:
+
+   Error in function KERNEL::%REDEFINE-DEFSTRUCT:
+     Redefining class PCL::SLOT-INFO incompatibly with the current definition.
+
+   Just accept the redefinition (restart 1) to continue building or loading.
+
+
+4. If everything worked, try (load "hello-world") to see a small
+   window pop up, and then run testgtk.lisp in the example directory.
+
+
+Send comments and patches to clg-devel@lists.sourceforge.net or
+espen@users.sourceforge.net.
 
-2.