EAPI=6 DESCRIPTION="Shell initialization files" HOMEPAGE="https://git.cynerd.cz/shellrc/" SRC_URI="https://git.cynerd.cz/shellrc/snapshot/${P}.tar.gz -> ${P}.tar.gz" LICENSE="GPL-3.0+" SLOT="0" KEYWORDS="amd64 x86" IUSE="desktop xorg +zsh +bash" DEPEND=" zsh? ( app-shells/zsh ) bash? ( app-shells/bash ) desktop? ( sys-fs/inotify-tools net-misc/vde ) xorg? ( x11-misc/xclip media-gfx/imagemagick ) " RDEPEND="${DEPEND}" src_install() { local args="" use bash && args="$args --bash" || true use zsh && args="$args --zsh" || true use desktop && args="$args --desktop" || true # TODO xorg "${S}/install" --prefix "${D}" $args }