diff options
author | Matthew Kennedy <mkennedy@gentoo.org> | 2003-06-10 04:54:06 +0000 |
---|---|---|
committer | Matthew Kennedy <mkennedy@gentoo.org> | 2003-06-10 04:54:06 +0000 |
commit | f0499138e7aa5e43bdb88278d6bef3650c46e229 (patch) | |
tree | b29a74bee14985fc7da4a51785f23c0829b3b5d5 /dev-lisp/cl-pg/files | |
parent | initial common lisp import (diff) | |
download | gentoo-2-f0499138e7aa5e43bdb88278d6bef3650c46e229.tar.gz gentoo-2-f0499138e7aa5e43bdb88278d6bef3650c46e229.tar.bz2 gentoo-2-f0499138e7aa5e43bdb88278d6bef3650c46e229.zip |
initial common lisp import
Diffstat (limited to 'dev-lisp/cl-pg/files')
-rw-r--r-- | dev-lisp/cl-pg/files/digest-cl-pg-0.18 | 1 | ||||
-rw-r--r-- | dev-lisp/cl-pg/files/pg.asd | 16 |
2 files changed, 17 insertions, 0 deletions
diff --git a/dev-lisp/cl-pg/files/digest-cl-pg-0.18 b/dev-lisp/cl-pg/files/digest-cl-pg-0.18 new file mode 100644 index 000000000000..3ee1a11ba7b2 --- /dev/null +++ b/dev-lisp/cl-pg/files/digest-cl-pg-0.18 @@ -0,0 +1 @@ +MD5 cd1f5b9da209e97f52abd53cf44b1788 cl-pg_0.18.orig.tar.gz 15900 diff --git a/dev-lisp/cl-pg/files/pg.asd b/dev-lisp/cl-pg/files/pg.asd new file mode 100644 index 000000000000..c9ba7daff8c6 --- /dev/null +++ b/dev-lisp/cl-pg/files/pg.asd @@ -0,0 +1,16 @@ +;;; -*- Mode: lisp -*- + +(in-package :asdf) + +(defclass pg-component (cl-source-file) + ()) + +(defmethod perform :before ((o load-op) (c pg-component)) + (ext:load-foreign "/usr/lib/libcrypt.a")) + +;; only tested with cmu +#+:cmu +(defsystem :pg + :components ((:pg-component "pg"))) + + |