From: espen Date: Wed, 27 Oct 2004 15:43:57 +0000 (+0000) Subject: Initial checkin X-Git-Url: https://git.distorted.org.uk/~mdw/clg/commitdiff_plain/0adab0e960fd376370618c696489ba9f73ef2c35 Initial checkin --- diff --git a/pango/pango.asd b/pango/pango.asd new file mode 100644 index 0000000..fbb895b --- /dev/null +++ b/pango/pango.asd @@ -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 index 0000000..1e3d01c --- /dev/null +++ b/tools/clg-tools.asd @@ -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"))) +