# Copyright 2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 inherit autotools DESCRIPTION="GNU implementation of MIX and associated tools" HOMEPAGE="https://www.gnu.org/software/mdk/" SRC_URI="mirror://gnu/mdk/v${PV}/${P}.tar.gz" LICENSE="GPL-3" SLOT="0" KEYWORDS="~amd64" IUSE="+readline glade guile" RDEPEND=" dev-libs/glib glade? ( gnome-base/libglade ) readline? ( sys-libs/readline ) guile? ( dev-scheme/guile ) " DEPEND="${RDEPEND} sys-devel/flex " src_configure() { econf \ $(use_enable glade gui) \ $(use_with guile) \ $(use_with readline) } src_install() { emake DESTDIR="${D}" install }