diff options
author | Matthew Kennedy <mkennedy@gentoo.org> | 2004-01-10 03:59:19 +0000 |
---|---|---|
committer | Matthew Kennedy <mkennedy@gentoo.org> | 2004-01-10 03:59:19 +0000 |
commit | cc84f563ac0e0b9a78bf1ce0fcd875673e22938d (patch) | |
tree | bd8b99c3eb066da025ee1762f2cb4678be175825 /dev-lisp/cl-xml | |
parent | *** empty log message *** (diff) | |
download | gentoo-2-cc84f563ac0e0b9a78bf1ce0fcd875673e22938d.tar.gz gentoo-2-cc84f563ac0e0b9a78bf1ce0fcd875673e22938d.tar.bz2 gentoo-2-cc84f563ac0e0b9a78bf1ce0fcd875673e22938d.zip |
*** empty log message ***
Diffstat (limited to 'dev-lisp/cl-xml')
-rw-r--r-- | dev-lisp/cl-xml/ChangeLog | 9 | ||||
-rw-r--r-- | dev-lisp/cl-xml/Manifest | 4 | ||||
-rw-r--r-- | dev-lisp/cl-xml/cl-xml-2.ebuild | 48 | ||||
-rw-r--r-- | dev-lisp/cl-xml/files/digest-cl-xml-2 | 1 | ||||
-rw-r--r-- | dev-lisp/cl-xml/metadata.xml | 5 |
5 files changed, 65 insertions, 2 deletions
diff --git a/dev-lisp/cl-xml/ChangeLog b/dev-lisp/cl-xml/ChangeLog new file mode 100644 index 000000000000..0359f2b1c5b5 --- /dev/null +++ b/dev-lisp/cl-xml/ChangeLog @@ -0,0 +1,9 @@ +# ChangeLog for dev-lisp/cl-xml +# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-lisp/cl-xml/ChangeLog,v 1.1 2004/01/10 03:59:12 mkennedy Exp $ + +*cl-xml-2 (09 Jan 2004) + + 09 Jan 2004; <mkennedy@gentoo.org> cl-xml-2.ebuild: + initial import. ebuild contributed by Matthew Kennedy <mkennedy@gentoo.org> + diff --git a/dev-lisp/cl-xml/Manifest b/dev-lisp/cl-xml/Manifest index a7f60999beba..6f33234b3516 100644 --- a/dev-lisp/cl-xml/Manifest +++ b/dev-lisp/cl-xml/Manifest @@ -1,4 +1,4 @@ -MD5 581c7c126a6ba1c3635c6e91005f10b1 cl-xml-2.ebuild 1019 +MD5 580a4e4ef592867185dc39545c11eda0 cl-xml-2.ebuild 1115 MD5 9b65b0341efc8f4b29498aad23315229 metadata.xml 164 -MD5 b933dd324ea45d16b935263460be3683 ChangeLog 283 +MD5 1439d4e2e8647a43921b5bdfe6a681ac ChangeLog 373 MD5 5a6875e194c79b7a368a25cda213fe4e files/digest-cl-xml-2 56 diff --git a/dev-lisp/cl-xml/cl-xml-2.ebuild b/dev-lisp/cl-xml/cl-xml-2.ebuild new file mode 100644 index 000000000000..68f7fab067e3 --- /dev/null +++ b/dev-lisp/cl-xml/cl-xml-2.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-lisp/cl-xml/cl-xml-2.ebuild,v 1.1 2004/01/10 03:59:12 mkennedy Exp $ + +inherit common-lisp + +DESCRIPTION=" A Simple XML Parser for Common Lisp" +HOMEPAGE="http://homepage.mac.com/svc/xml/readme.html" +SRC_URI="mirror://gentoo/xml-${PV}.tar.gz" +LICENSE="LLGPL-2.1" +SLOT="0" +KEYWORDS="~x86" +IUSE="" +DEPEND="dev-lisp/common-lisp-controller + virtual/commonlisp" + +S=${WORKDIR}/xml + +CLPACKAGE=xml + +src_install() { + common-lisp-install *.asd *.lisp + common-lisp-system-symlink + dohtml *.html + insinto /usr/share/common-lisp/source/${CLPACKAGE}/test + doins test/*.{lisp,xml} +} + + +pkg_preinst() { + rm -rf /usr/lib/common-lisp/*/${CLPACKAGE} || true +} + +pkg_postinst() { + while read line; do einfo ${line}; done <<EOF + +You can test ${PN} by issuing the following commands in your favourite +Common Lisp implementation: + + (require :xml) + (load "/usr/share/common-lisp/source/xml/test/all-tests.lisp") + +EOF +} + +pkg_postrm() { + rm -rf /usr/lib/common-lisp/*/${CLPACKAGE} || true +} diff --git a/dev-lisp/cl-xml/files/digest-cl-xml-2 b/dev-lisp/cl-xml/files/digest-cl-xml-2 new file mode 100644 index 000000000000..c7a172da95dc --- /dev/null +++ b/dev-lisp/cl-xml/files/digest-cl-xml-2 @@ -0,0 +1 @@ +MD5 698464bf8b05347999987285a2f1b655 xml-2.tar.gz 19604 diff --git a/dev-lisp/cl-xml/metadata.xml b/dev-lisp/cl-xml/metadata.xml new file mode 100644 index 000000000000..f418045b09c8 --- /dev/null +++ b/dev-lisp/cl-xml/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> |