Updated for gtk 2.0
[clg] / clg.system
CommitLineData
0d07716f 1;;; -*- Mode: lisp -*-
2
ccd3f1eb 3(defpackage "CLG-SYSTEM"
4 (:use "COMMON-LISP" "EXTENSIONS" "ALIEN")
5 (:export "*GTK-LIBRARY-PATH*"))
6
7(in-package "CLG-SYSTEM")
8
9;; We used to do this, but I think it's better if everybody puts such
10;; definitions in his/her own Lisp startup files so that clg.system
11;; can be used without local modifications.
12;(setf
13; (logical-pathname-translations "clg")
14; '(("**;*.*.*" "/home/espen/src/clg/**/*.*.*")))
096f4d91 15
16;; Uncomment and edit the next line if pkg-config needs to search for
17;; .pc files in directories other than the default (/usr/lib/pkgconfig)
ccd3f1eb 18;(push '(:PKG_CONFIG_PATH . "/opt/gnome/lib/pkgconfig") ext:*environment-list*)
0d07716f 19
20(load "clg:tools;config")
21(load "clg:tools;sharedlib")
22
ccd3f1eb 23(defvar *gtk-library-path* (pkg-variable "gtk+-2.0" "libdir"))
24(defvar *cmucl-include-path* (ext:unix-namestring "target:lisp"))
096f4d91 25
ccd3f1eb 26;; Without this, MAKE uses "CLG:glib;.err" as a namestring, which fails.
27;; TODO: Find and fix the bug, then remove this.
096f4d91 28(setq mk::*cmu-errors-to-file* nil)
edb133d2 29
0d07716f 30(eval
31 `(mk:defsystem clg
096f4d91 32 :initially-do
33 (progn
bb4e8c32 34 (pkg-exists-p "glib-2.0" :atleast-version "2.0.0")
35 (pkg-exists-p "pango" :atleast-version "1.0.0")
36 (pkg-exists-p "atk" :atleast-version "1.0.0")
37 (pkg-exists-p "gtk+-2.0" :atleast-version "2.0.0"))
0d07716f 38 :source-pathname "clg:"
39 :binary-pathname "clg:"
40 :components
41 ((:module tools
42 :components ("autoexport"))
45eacdd2 43 (:file "pcl" :source-pathname "glib;" :binary-pathname "glib;")
0d07716f 44 (:module glib
45 :initially-do
46 (progn
bb4e8c32 47 (load-shared-library "libglib-2.0.so")
48 (load-shared-library "libgobject-2.0.so" :init "g_type_init"))
0d07716f 49 :components
552f98a1 50 ((:file "callback"
51 :language :c
096f4d91 52 :source-extension "c"
53 :binary-extension "o"
552f98a1 54 :compiler-options
5ea59051 55 (:cflags ,(pkg-cflags "glib-2.0")
552f98a1 56 :optimize 2
57 :definitions (#+cmu CMUCL)
ccd3f1eb 58 :include-paths (,*cmucl-include-path*)))
552f98a1 59 (:file "glib-package")
0d07716f 60 (:file "gutils" :depends-on ("glib-package"))
61 (:file "gforeign" :depends-on ("gutils"))
62 (:file "glib" :depends-on ("gforeign"))
5ea59051 63 (:file "proxy" :depends-on ("glib"))
64 (:file "gtype" :depends-on ("proxy"))
65 (:file "gboxed" :depends-on ("gtype"))
5ea59051 66 (:file "genums" :depends-on ("gtype"))
67 (:file "gparam" :depends-on ("genums"))
ec553e5f 68 (:file "ginterface" :depends-on ("gtype"))
5ea59051 69 (:file "gobject" :depends-on ("gparam"))
edb133d2 70 (:file "gcallback" :depends-on ("gtype" "gparam" "gobject" "callback"))
552f98a1 71 (:file "glib-export"
5ea59051 72 :depends-on
73 ("gutils" "glib" "proxy" "gboxed" "gtype" "gparam" "gcallback"
74 "genums" "gobject")))
45eacdd2 75 :depends-on (tools "pcl"))
0d07716f 76 (:file "gdkglue"
77 :source-pathname "gdk;"
78 :binary-pathname "gdk;"
79 :initially-do
80 (progn
bb4e8c32 81 (load-shared-library "libgdk_pixbuf-2.0.so")
82 (load-shared-library "libgdk-x11-2.0.so"
5ea59051 83 :init "gdk_init"
0d07716f 84 :prototype '(function
245b8777 85 c-call:void
86 system-area-pointer
87 system-area-pointer)
88 :initargs (list (system:int-sap 0) (system:int-sap 0))))
0d07716f 89 :language :c
096f4d91 90 :source-extension "c"
91 :binary-extension "o"
5ea59051 92 :compiler-options (:cflags ,(pkg-cflags "gtk+-2.0")
93 :optimize 2))
0d07716f 94 (:module gdk
5ea59051 95 :components
96 ((:file "gdk-package")
97 (:file "gdk-export" :depends-on ("gdkevents" "gdktypes" "gdk"))
98 (:file "gdktypes" :depends-on ("gdk-package"))
99 (:file "gdkevents" :depends-on ("gdktypes"))
100 (:file "gdk" :depends-on ("gdkevents")))
101 :depends-on (glib "gdkglue"))
45eacdd2 102 (:module pango
bb4e8c32 103 :initially-do (load-shared-library "libpango-1.0.so")
45eacdd2 104 :components
105 ((:file "pango-package")
106 (:file "pango" :depends-on ("pango-package"))
107 (:file "pango-export" :depends-on ("pango")))
108 :depends-on (glib))
ec553e5f 109 (:module atk
bb4e8c32 110 :initially-do (load-shared-library "libatk-1.0.so")
ec553e5f 111 :components
112 ((:file "atk-package")
113 (:file "atk" :depends-on ("atk-package"))
114 (:file "atk-export" :depends-on ("atk")))
115 :depends-on (glib))
0d07716f 116 (:file "gtkglue"
117 :source-pathname "gtk;"
118 :binary-pathname "gtk;"
5ea59051 119 :initially-do
120 (progn
121 (load-shared-library
bb4e8c32 122 "libgtk-x11-2.0.so"
5ea59051 123 :init "gtk_init"
124 :prototype '(function
125 c-call:void
ccd3f1eb 126 system-area-pointer
127 system-area-pointer)
5ea59051 128 :initargs (list (system:int-sap 0) (system:int-sap 0))))
0d07716f 129 :language :c
096f4d91 130 :source-extension "c"
131 :binary-extension "o"
5ea59051 132 :compiler-options (:cflags ,(pkg-cflags "gtk+-2.0")
0d07716f 133 :optimize 2
134 :definitions (#+cmu CMUCL)
ccd3f1eb 135 :include-paths (,*cmucl-include-path*)))
0d07716f 136 (:module gtk
137 :components
138 ((:file "gtk-package")
57398331 139 (:file "gtk-export" :depends-on ("gtktypes" "gtk"))
45eacdd2 140 (:file "gtkobject" :depends-on ("gtk-package"))
141 (:file "gtktypes" :depends-on ("gtkobject"))
142 (:file "gtkwidget" :depends-on ("gtktypes"))
143 (:file "gtkcontainer" :depends-on ("gtktypes"))
57398331 144 (:file "gtk" :depends-on ("gtktypes"))
145 (:file "gtkutils" :depends-on ("gtk")))
ec553e5f 146 :depends-on (glib gdk pango atk "gtkglue")))))