diff options
author | Matthew Kennedy <mkennedy@gentoo.org> | 2003-10-17 00:08:09 +0000 |
---|---|---|
committer | Matthew Kennedy <mkennedy@gentoo.org> | 2003-10-17 00:08:09 +0000 |
commit | 0f214bb179af38e7a33caae53cb7412db145f7db (patch) | |
tree | 94beb0138e2a02b31ceec201b3e36c9bdeefc116 /dev-lisp/cl-asdf/cl-asdf-1.78.ebuild | |
parent | *** empty log message *** (diff) | |
download | gentoo-2-0f214bb179af38e7a33caae53cb7412db145f7db.tar.gz gentoo-2-0f214bb179af38e7a33caae53cb7412db145f7db.tar.bz2 gentoo-2-0f214bb179af38e7a33caae53cb7412db145f7db.zip |
*** empty log message ***
Diffstat (limited to 'dev-lisp/cl-asdf/cl-asdf-1.78.ebuild')
-rw-r--r-- | dev-lisp/cl-asdf/cl-asdf-1.78.ebuild | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/dev-lisp/cl-asdf/cl-asdf-1.78.ebuild b/dev-lisp/cl-asdf/cl-asdf-1.78.ebuild new file mode 100644 index 000000000000..533029e227b6 --- /dev/null +++ b/dev-lisp/cl-asdf/cl-asdf-1.78.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-lisp/cl-asdf/cl-asdf-1.78.ebuild,v 1.1 2003/10/17 00:08:05 mkennedy Exp $ + +DEB_PV=1 + +inherit common-lisp-common + +DESCRIPTION="Another System Definition Facility for Common Lisp" +HOMEPAGE="http://packages.debian.org/unstable/devel/cl-asdf.html" +SRC_URI="http://ftp.debian.org/debian/pool/main/c/cl-asdf/${PN}_${PV}.orig.tar.gz + http://ftp.debian.org/debian/pool/main/c/cl-asdf/cl-asdf_${PV}-${DEB_PV}.diff.gz" +LICENSE="MIT" +SLOT="0" +KEYWORDS="x86 ~sparc" +IUSE="" +DEPEND="" + +S=${WORKDIR}/${P} + +src_unpack() { + unpack ${A} + epatch cl-asdf_${PV}-${DEB_PV}.diff +} + +src_install() { + insinto /usr/share/common-lisp/source/asdf + doins asdf.lisp wild-modules.lisp + dodoc LICENSE README + insinto /usr/share/doc/${P}/examples + doins test/* + do-debian-credits +} + +pkg_postinst() { + if [ -x /usr/sbin/clc-reregister-all-impl ]; then + /usr/sbin/clc-reregister-all-impl + fi +} |