diff options
author | Matthew Kennedy <mkennedy@gentoo.org> | 2004-05-09 07:10:12 +0000 |
---|---|---|
committer | Matthew Kennedy <mkennedy@gentoo.org> | 2004-05-09 07:10:12 +0000 |
commit | 09a83a7193361aee62e8098b13aed6cf81066159 (patch) | |
tree | 8a34629569bd5d845ecf97208226230f3a2a2867 /dev-lisp/cl-linedit/cl-linedit-0.15.9.ebuild | |
parent | (Manifest recommit) (diff) | |
download | gentoo-2-09a83a7193361aee62e8098b13aed6cf81066159.tar.gz gentoo-2-09a83a7193361aee62e8098b13aed6cf81066159.tar.bz2 gentoo-2-09a83a7193361aee62e8098b13aed6cf81066159.zip |
*** empty log message ***
Diffstat (limited to 'dev-lisp/cl-linedit/cl-linedit-0.15.9.ebuild')
-rw-r--r-- | dev-lisp/cl-linedit/cl-linedit-0.15.9.ebuild | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/dev-lisp/cl-linedit/cl-linedit-0.15.9.ebuild b/dev-lisp/cl-linedit/cl-linedit-0.15.9.ebuild new file mode 100644 index 000000000000..32676c0827b5 --- /dev/null +++ b/dev-lisp/cl-linedit/cl-linedit-0.15.9.ebuild @@ -0,0 +1,43 @@ +# 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-linedit/cl-linedit-0.15.9.ebuild,v 1.1 2004/05/09 07:10:12 mkennedy Exp $ + +inherit common-lisp eutils + +DESCRIPTION="Linedit is a readline-style library written in Common Lisp that provides customizable line-editing features." +HOMEPAGE="" +SRC_URI="http://common-lisp.net/project/linedit/files/linedit_${PV}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~x86" +IUSE="" + +DEPEND="dev-lisp/common-lisp-controller + virtual/commonlisp + dev-lisp/cl-terminfo + dev-lisp/cl-uffi + dev-lisp/cl-osicat" + +CLPACKAGE=linedit + +S=${WORKDIR}/linedit_${PV} + +src_unpack() { + unpack ${A} + # adds uffi-loader.lisp, removes building .so files + epatch ${FILESDIR}/${PV}-linedit.asd-uffi-glue-gentoo.patch + cp ${FILESDIR}/${PV}-Makefile ${S}/Makefile +} + +src_compile() { + make || die +} + +src_install() { + common-lisp-install *.lisp linedit.asd version.lisp-expr + common-lisp-system-symlink + dodoc LICENSE + exeinto /usr/lib/linedit + doexe *.so +} |