dev-lisp/clx: Bumps version to 0.7.5

Closes: https://bugs.gentoo.org/646534
Package-Manager: Portage-2.3.19, Repoman-2.3.6
This commit is contained in:
Chema Alonso Josa
2018-02-04 11:19:32 +01:00
parent 1b2289888f
commit 18aefe8743
2 changed files with 37 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST clx-0.7.4.tgz 444490 BLAKE2B 19ac6976353f254c11639a443f1b5821deae952dfae51bd168642c6a55be9401e38fce388f2d7feac618b00dd1606bc11869531f6c380acf2e4b1d65e187e9d1 SHA512 07f93735bee25c8a6d8cccaa0755efa0b750954cbeab70d9db69bf51f1cf4eb7918c0225b9ae2834b11ebb261a857eea0f60b70e4044ccbe96ecb32c3ac31278
DIST clx-0.7.5.tar.gz 468904 BLAKE2B 30ce4de52fdbbc935bf5653f54a588537670b7d55dc038f32b4527e5f3d7b2dfe6afde3d28debf7ab5a08994155ec390f1e70dfbe45e8831fe7a977d245c9d7a SHA512 9228c37a99dcaee637c64c58183220c1ed3745e683c877f843c7de5b052d7355a3ddd50687371e8388c05bcedda062008299476b82dc8a3d26b605dde1dfa997

View File

@@ -0,0 +1,36 @@
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit common-lisp-3 eutils
DESCRIPTION="CLX is the Common Lisp interface to the X11 protocol primarily for SBCL."
HOMEPAGE="http://www.cliki.net/CLX"
SRC_URI="https://github.com/sharplispers/clx/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE="doc"
DEPEND="sys-apps/texinfo
doc? ( virtual/texi2dvi )"
RDEPEND="!dev-lisp/cl-${PN}"
src_compile() {
cd manual || die
makeinfo ${PN}.texinfo -o ${PN}.info || die
if use doc ; then
VARTEXFONTS="${T}"/fonts \
texi2pdf ${PN}.texinfo -o ${PN}.pdf || die
fi
}
src_install() {
common-lisp-install-sources *.lisp debug demo extensions tests
common-lisp-install-asdf
dodoc NEWS CHANGES README*
doinfo manual/${PN}.info
use doc && dodoc manual/${PN}.pdf
}