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 | 538b80461c296045825a8ed2e5fd519f66d1b750 (patch) | |
tree | 78ae4f0f5d44d10ad82f9667437d97f184fd5a78 /dev-lisp | |
parent | add compiling fix (diff) | |
download | gentoo-2-538b80461c296045825a8ed2e5fd519f66d1b750.tar.gz gentoo-2-538b80461c296045825a8ed2e5fd519f66d1b750.tar.bz2 gentoo-2-538b80461c296045825a8ed2e5fd519f66d1b750.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 + |