r7061: initial property settings
[postoffice.git] / 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$
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 #:cl-user)
20 (defpackage #:postoffice-system (:use #:asdf #:cl))
21 (in-package #:postoffice-system)
22
23 #+(or allegro lispworks cmu openmcl sbcl)
24 (defsystem postoffice
25   :name "cl-postoffice"
26   :author "Franz, Inc"
27   :version "CVS.2002.10.09"
28   :maintainer "Kevin M. Rosenberg <kmr@debian.org>"
29   :licence "GNU Lesser General Public License"
30   :description "Franz's Post Office Package"
31   :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."
32   
33   :components
34   ((:file "package")
35    (:file "smtp" :depends-on ("package"))
36    (:file "imap" :depends-on ("package")))
37   #-allegro :depends-on #-allegro (:acl-compat)
38   )