de3614663676914aa2030d1d6d02629c4596b4f1
[postoffice.git] / debian / postoffice.asd
1 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          postoffice.asd
6 ;;;; Purpose:       ASDF definition file for Postoffice
7 ;;;; Programmer:    Kevin M. Rosenberg
8 ;;;; Date Started:  Sep 2002
9 ;;;;
10 ;;;; $Id: postoffice.asd,v 1.3 2002/10/16 02:10:56 kevin Exp $
11 ;;;;
12 ;;;; This file, part of cl-postoffice, is Copyright (c) 2002 by Kevin M. Rosenberg
13 ;;;;
14 ;;;; cl-postoffice users are granted the rights to distribute and use this software
15 ;;;; as governed by the terms of the GNU Lesser General Public License 
16 ;;;; (http://www.gnu.org/licenses/lgpl.html)
17 ;;;; *************************************************************************
18
19 (in-package :asdf)
20
21 #+(or allegro lispworks cmu openmcl)
22 (defsystem :postoffice
23   :name "cl-postoffice"
24   :author "Franz, Inc"
25   :version "CVS.2002.10.09"
26   :maintainer "Kevin M. Rosenberg <kmr@debian.org>"
27   :licence "GNU Lesser General Public License"
28   :description "Franz's Post Office Package"
29   :long-description "Post Office provides an interface to the SMTP, POP, and IMAP servers. It uses the ACL-COMPAT library for use with non-Allegro CL implementations."
30   
31   :perform (load-op :after (op postoffice)
32             (pushnew :postoffice cl:*features*))
33   
34   :components
35   ((:file "package")
36    (:file "smtp" :depends-on ("package"))
37    (:file "imap" :depends-on ("package")))
38   #-allegro :depends-on #-allegro (:acl-compat)
39   )
40
41 #+(or allegro lispworks cmu openmcl)
42 (when (ignore-errors (find-class 'load-compiled-op))
43   (defmethod perform :after ((op load-compiled-op) (c (eql (find-system :postoffice))))
44     (pushnew :postoffice cl:*features*)))
45