X-Git-Url: http://git.kpe.io/?p=postoffice.git;a=blobdiff_plain;f=debian%2Fpostoffice.asd;fp=debian%2Fpostoffice.asd;h=0000000000000000000000000000000000000000;hp=438c679723c11e539f82a5b62ab63532e331f773;hb=3910bbaf61a496366d2ed6933fb5e4d44abf8f99;hpb=b24e910e767b2398f1b2b4ee3d83eaed63835f9e diff --git a/debian/postoffice.asd b/debian/postoffice.asd deleted file mode 100644 index 438c679..0000000 --- a/debian/postoffice.asd +++ /dev/null @@ -1,39 +0,0 @@ -;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*- -;;;; ************************************************************************* -;;;; FILE IDENTIFICATION -;;;; -;;;; Name: postoffice.asd -;;;; Purpose: ASDF definition file for Postoffice -;;;; Programmer: Kevin M. Rosenberg -;;;; Date Started: Sep 2002 -;;;; -;;;; $Id: postoffice.asd,v 1.4 2002/11/08 16:51:40 kevin Exp $ -;;;; -;;;; This file, part of cl-postoffice, is Copyright (c) 2002 by Kevin M. Rosenberg -;;;; -;;;; cl-postoffice users are granted the rights to distribute and use this software -;;;; as governed by the terms of the GNU Lesser General Public License -;;;; (http://www.gnu.org/licenses/lgpl.html) -;;;; ************************************************************************* - -(in-package :asdf) - -#+(or allegro lispworks cmu openmcl) -(defsystem :postoffice - :name "cl-postoffice" - :author "Franz, Inc" - :version "CVS.2002.10.09" - :maintainer "Kevin M. Rosenberg " - :licence "GNU Lesser General Public License" - :description "Franz's Post Office Package" - :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." - - :perform (load-op :after (op postoffice) - (pushnew :postoffice cl:*features*)) - - :components - ((:file "package") - (:file "smtp" :depends-on ("package")) - (:file "imap" :depends-on ("package"))) - #-allegro :depends-on #-allegro (:acl-compat) - )