diff options
author | Matthew Kennedy <mkennedy@gentoo.org> | 2004-12-28 21:43:05 +0000 |
---|---|---|
committer | Matthew Kennedy <mkennedy@gentoo.org> | 2004-12-28 21:43:05 +0000 |
commit | 70bab98c016cb4730f1880797feabca782e9f7c3 (patch) | |
tree | 5f73f6f599467e98630872620793b333ce1f40c1 /dev-lisp | |
parent | Moved dev-libs/libticalcs to sci-libs/libticalcs (diff) | |
download | historical-70bab98c016cb4730f1880797feabca782e9f7c3.tar.gz historical-70bab98c016cb4730f1880797feabca782e9f7c3.tar.bz2 historical-70bab98c016cb4730f1880797feabca782e9f7c3.zip |
*** empty log message ***
Diffstat (limited to 'dev-lisp')
-rw-r--r-- | dev-lisp/cl-rfc2388/ChangeLog | 10 | ||||
-rw-r--r-- | dev-lisp/cl-rfc2388/Manifest | 3 | ||||
-rw-r--r-- | dev-lisp/cl-rfc2388/cl-rfc2388-20041228.ebuild | 26 | ||||
-rw-r--r-- | dev-lisp/cl-rfc2388/files/digest-cl-rfc2388-20041228 | 1 | ||||
-rw-r--r-- | dev-lisp/cl-rfc2388/files/rfc2388.asd | 13 | ||||
-rw-r--r-- | dev-lisp/cl-rfc2388/metadata.xml | 5 |
6 files changed, 58 insertions, 0 deletions
diff --git a/dev-lisp/cl-rfc2388/ChangeLog b/dev-lisp/cl-rfc2388/ChangeLog new file mode 100644 index 000000000000..97f48d44f425 --- /dev/null +++ b/dev-lisp/cl-rfc2388/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for dev-lisp/cl-rfc2388 +# Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-lisp/cl-rfc2388/ChangeLog,v 1.1 2004/12/28 21:43:05 mkennedy Exp $ + +*cl-rfc2388-20041228 (28 Dec 2004) + + 28 Dec 2004; Matthew Kennedy <mkennedy@gentoo.org> +metadata.xml, + +cl-rfc2388-20041228.ebuild: + Initial port. Ebuild contributed by Matthew Kennedy <mkennedy@gentoo.org> + diff --git a/dev-lisp/cl-rfc2388/Manifest b/dev-lisp/cl-rfc2388/Manifest new file mode 100644 index 000000000000..b8fa646df180 --- /dev/null +++ b/dev-lisp/cl-rfc2388/Manifest @@ -0,0 +1,3 @@ +MD5 31939b539233773348b08d6462138c67 cl-rfc2388-20041228.ebuild 679 +MD5 9b65b0341efc8f4b29498aad23315229 metadata.xml 164 +MD5 424a4d98f94ad3ba4814d92e5f685029 files/digest-cl-rfc2388-20041228 70 diff --git a/dev-lisp/cl-rfc2388/cl-rfc2388-20041228.ebuild b/dev-lisp/cl-rfc2388/cl-rfc2388-20041228.ebuild new file mode 100644 index 000000000000..04cf10e969b3 --- /dev/null +++ b/dev-lisp/cl-rfc2388/cl-rfc2388-20041228.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-lisp/cl-rfc2388/cl-rfc2388-20041228.ebuild,v 1.1 2004/12/28 21:43:05 mkennedy Exp $ + +inherit common-lisp eutils + +DESCRIPTION="An implementation of RFC 2388 in Common Lisp" +HOMEPAGE="http://common-lisp.net/project/rfc2388/" +SRC_URI="mirror://gentoo/rfc2388-CVS-${PV}.tar.gz" +LICENSE="BSD" +SLOT="0" +KEYWORDS="x86" +IUSE="" + +DEPEND="virtual/commonlisp + dev-lisp/common-lisp-controller" + +S=${WORKDIR}/rfc2388 + +CLPACKAGE=rfc2388 + +src_install() { + common-lisp-install *.lisp ${FILESDIR}/rfc2388.asd + common-lisp-system-symlink + dodoc doc/rfc2388.txt +} diff --git a/dev-lisp/cl-rfc2388/files/digest-cl-rfc2388-20041228 b/dev-lisp/cl-rfc2388/files/digest-cl-rfc2388-20041228 new file mode 100644 index 000000000000..b2d73a818c91 --- /dev/null +++ b/dev-lisp/cl-rfc2388/files/digest-cl-rfc2388-20041228 @@ -0,0 +1 @@ +MD5 a139981740bd94dc941425e043dcfbcf rfc2388-CVS-20041228.tar.gz 9686 diff --git a/dev-lisp/cl-rfc2388/files/rfc2388.asd b/dev-lisp/cl-rfc2388/files/rfc2388.asd new file mode 100644 index 000000000000..5a436b40831c --- /dev/null +++ b/dev-lisp/cl-rfc2388/files/rfc2388.asd @@ -0,0 +1,13 @@ +;;;; ASDF for http://common-lisp.net/project/rfc2388/ by Matthew Kennedy +;;;; <mkennedy@gentoo.org> + +(in-package #:common-lisp) + +(defpackage #:rfc2388-system + (:use #:asdf + #:common-lisp)) + +(in-package #:rfc2388-system) + +(defsystem #:rfc2388 + :components ((:file "rfc2388"))) diff --git a/dev-lisp/cl-rfc2388/metadata.xml b/dev-lisp/cl-rfc2388/metadata.xml new file mode 100644 index 000000000000..f418045b09c8 --- /dev/null +++ b/dev-lisp/cl-rfc2388/metadata.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>common-lisp</herd> +</pkgmetadata> |