summaryrefslogtreecommitdiff
blob: b32f2534ad6b197a3275b2cd16e6cce9dd1d93e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Copyright 2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

inherit meson xdg

DESCRIPTION="A simple Notepad-like text editor using EFL"
HOMEPAGE="https://www.enlightenment.org"
SRC_URI="https://download.enlightenment.org/rel/apps/ecrire/${P}.tar.xz"

LICENSE="GPL-3"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="nls"

DEPEND="|| ( dev-libs/efl[X] dev-libs/efl[wayland] )
	>=dev-libs/efl-1.26.1"
RDEPEND="${DEPEND}"
BDEPEND="nls? ( sys-devel/gettext )"

src_configure() {
	local emesonargs=( $(meson_use nls) )
	meson_src_configure
}