diff options
author | George Shapovalov <george@gentoo.org> | 2002-07-13 18:55:17 +0000 |
---|---|---|
committer | George Shapovalov <george@gentoo.org> | 2002-07-13 18:55:17 +0000 |
commit | b142256c26f4460ef345cb13178556311fa1c0fc (patch) | |
tree | e1e9567987a55a674de81fc61a5e48d86c685218 /dev-lisp | |
parent | add compiling fix (diff) | |
download | historical-b142256c26f4460ef345cb13178556311fa1c0fc.tar.gz historical-b142256c26f4460ef345cb13178556311fa1c0fc.tar.bz2 historical-b142256c26f4460ef345cb13178556311fa1c0fc.zip |
another configuration fix
Diffstat (limited to 'dev-lisp')
-rw-r--r-- | dev-lisp/cmucl-bin/cmucl-bin-18d.ebuild | 5 | ||||
-rw-r--r-- | dev-lisp/cmucl-bin/files/README.config | 10 |
2 files changed, 14 insertions, 1 deletions
diff --git a/dev-lisp/cmucl-bin/cmucl-bin-18d.ebuild b/dev-lisp/cmucl-bin/cmucl-bin-18d.ebuild index d17cc46ac126..43abd5762834 100644 --- a/dev-lisp/cmucl-bin/cmucl-bin-18d.ebuild +++ b/dev-lisp/cmucl-bin/cmucl-bin-18d.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lisp/cmucl-bin/cmucl-bin-18d.ebuild,v 1.2 2002/07/13 05:34:11 george Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lisp/cmucl-bin/cmucl-bin-18d.ebuild,v 1.3 2002/07/13 18:55:17 george Exp $ DESCRIPTION="CMUCL Lisp. This conforms to the ANSI Common Lisp Standard" HOMEPAGE="http://www.cons.org/cmucl/index.html" @@ -27,5 +27,8 @@ src_install () { #some tweaks to make it actually work; details in #4756 dosym /opt/cmucl/lib /opt/cmucl/lib/subsystems fperms 755 /opt/cmucl/lib/motifd + fperms 755 /opt/cmucl/lib/config + #add short README on necessary environment for config + dodoc ${FILESDIR}/README.config } diff --git a/dev-lisp/cmucl-bin/files/README.config b/dev-lisp/cmucl-bin/files/README.config new file mode 100644 index 000000000000..1d2284a1f8e5 --- /dev/null +++ b/dev-lisp/cmucl-bin/files/README.config @@ -0,0 +1,10 @@ +Please note, +while you do not need to do anything special while running cmucl itself +(it is a wrapper script than sets environment appropriately), +you will nee to set few vars before running config. + +The following is the simplest chain of commands launch cmucl config: + +cd /opt/cmucl/lib +CMUCLLIB=/opt/cmucl/lib && PATH=$PATH:/opt/cmucl/bin && ./config + |