# Copyright 1999-2024 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

EAPI=8

EGIT_REPO_URI="https://github.com/slime/${PN}.git"

inherit common-lisp-3 git-r3

DESCRIPTION="The Superior Lisp Interaction Mode for Emacs"
HOMEPAGE="https://github.com/slime/slime"

LICENSE="public-domain GPL-2+ GPL-3+ LLGPL-2.1 ZLIB xref? ( xref.lisp )"
SLOT="0"
IUSE="xref"

BDEPEND="dev-lisp/asdf
	sys-apps/texinfo"

DOCS=( ) # collision with app-emacs/slime

src_prepare() {
	default

	# Remove xref.lisp (which is non-free) unless USE flag is set
	use xref || rm xref.lisp || die
}

src_test() {
	emake check
}