mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-06-09 14:44:11 +02:00
Signed-off-by: Filip Kobierski <fkobi@pm.me> Closes: https://github.com/gentoo/gentoo/pull/38505 Signed-off-by: Viorel Munteanu <ceamac@gentoo.org>
20 lines
510 B
Bash
20 lines
510 B
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DESCRIPTION="Key binding editor for Enlightenment DR16"
|
|
HOMEPAGE="https://www.enlightenment.org https://sourceforge.net/projects/enlightenment/"
|
|
SRC_URI="https://downloads.sourceforge.net/enlightenment/${P}.tar.xz"
|
|
|
|
LICENSE="MIT-with-advertising"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
BDEPEND="virtual/pkgconfig"
|
|
DEPEND="x11-libs/gtk+:3"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
src_configure() {
|
|
econf --with-gtk=gtk3
|
|
}
|