chiark / gitweb /
Initial checkin
authorespen <espen>
Wed, 27 Oct 2004 15:43:57 +0000 (15:43 +0000)
committerespen <espen>
Wed, 27 Oct 2004 15:43:57 +0000 (15:43 +0000)
pango/pango.asd [new file with mode: 0644]
tools/clg-tools.asd [new file with mode: 0644]

diff --git a/pango/pango.asd b/pango/pango.asd
new file mode 100644 (file)
index 0000000..fbb895b
--- /dev/null
@@ -0,0 +1,17 @@
+;;; -*- Mode: lisp -*-
+
+(defpackage #:pango-system
+  (:use #:common-lisp #:asdf #:pkg-config #:sharedlib))
+
+
+(in-package #:pango-system)
+
+(pkg-exists-p "pango" :atleast-version "1.4.0")
+
+(sharedlib:load-shared-library "libpango-1.0")
+
+(defsystem pango
+    :depends-on (glib)
+    :components ((:file "defpackage")
+                (:file "pango" :depends-on ("defpackage"))
+                (:file "export" :depends-on ("pango"))))
diff --git a/tools/clg-tools.asd b/tools/clg-tools.asd
new file mode 100644 (file)
index 0000000..1e3d01c
--- /dev/null
@@ -0,0 +1,17 @@
+;;; -*- Mode: lisp -*-
+
+(defpackage #:clg-tools
+  (:use #:common-lisp #:asdf)
+  )
+
+
+(in-package #:clg-tools)
+
+
+(defsystem clg-tools
+    :depends-on (uffi)
+    :components ((:file "autoexport")
+                (:file "config")
+                (:file "sharedlib")
+                (:file "asdf-extensions")))
+