diff options
author | Conrad Kostecki <conikost@gentoo.org> | 2022-02-13 00:35:12 +0100 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2022-02-13 22:07:00 +0100 |
commit | 0ddbbc5af7c88f036303a521138c82bda4b79157 (patch) | |
tree | 9cd30522ef6c827863be7db7524c220de357c95e /dev-lisp | |
parent | dev-lisp/asdf: fix DeprecatedInsinto (diff) | |
download | gentoo-0ddbbc5af7c88f036303a521138c82bda4b79157.tar.gz gentoo-0ddbbc5af7c88f036303a521138c82bda4b79157.tar.bz2 gentoo-0ddbbc5af7c88f036303a521138c82bda4b79157.zip |
dev-lisp/cmucl: fix DeprecatedInsinto
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'dev-lisp')
-rw-r--r-- | dev-lisp/cmucl/cmucl-21c.ebuild | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/dev-lisp/cmucl/cmucl-21c.ebuild b/dev-lisp/cmucl/cmucl-21c.ebuild index d6672d17e4f9..7deba17cbd6b 100644 --- a/dev-lisp/cmucl/cmucl-21c.ebuild +++ b/dev-lisp/cmucl/cmucl-21c.ebuild @@ -9,8 +9,11 @@ MY_PV=${PV:0:3} DESCRIPTION="CMU Common Lisp is an implementation of ANSI Common Lisp" HOMEPAGE="http://www.cons.org/cmucl/" -SRC_URI="http://common-lisp.net/project/cmucl/downloads/release/${MY_PV}/cmucl-src-${MY_PV}.tar.bz2 - http://common-lisp.net/project/cmucl/downloads/release/${MY_PV}/cmucl-${MY_PV}-x86-linux.tar.bz2" +SRC_URI=" + http://common-lisp.net/project/cmucl/downloads/release/${MY_PV}/cmucl-src-${MY_PV}.tar.bz2 + http://common-lisp.net/project/cmucl/downloads/release/${MY_PV}/cmucl-${MY_PV}-x86-linux.tar.bz2 +" +S="${WORKDIR}" LICENSE="public-domain" SLOT="0" @@ -24,8 +27,6 @@ DEPEND="${CDEPEND} doc? ( virtual/latex-base )" RDEPEND="${CDEPEND}" -S="${WORKDIR}" - TARGET=linux-4 src_prepare() { @@ -103,7 +104,7 @@ src_install() { # Documentation dodoc doc/cmucl/README if use doc; then - insinto /usr/share/doc/${PF} - doins src/docs/cmu-user/cmu-user.pdf src/docs/internals/design.pdf + dodoc src/docs/cmu-user/cmu-user.pdf src/docs/internals/design.pdf + docompress -x /usr/share/doc/${PF}/{cmu-user,design}.pdf fi } |