diff options
author | Joonas Niilola <juippis@gentoo.org> | 2022-01-07 08:39:45 +0200 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2022-01-07 09:37:02 +0200 |
commit | 70c1e6cbf767e69f4739408cf1ab31c4721f2180 (patch) | |
tree | 14633a668cb51f7fa43e4cdf2072d4cac978bef1 /app-editors/ecrire/ecrire-0.2.0-r1.ebuild | |
parent | dev-libs/efl: rework opengl-gles2 logic (diff) | |
download | gentoo-70c1e6cbf767e69f4739408cf1ab31c4721f2180.tar.gz gentoo-70c1e6cbf767e69f4739408cf1ab31c4721f2180.tar.bz2 gentoo-70c1e6cbf767e69f4739408cf1ab31c4721f2180.zip |
app-editors/ecrire: update efl's opengl-gles2 logic
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'app-editors/ecrire/ecrire-0.2.0-r1.ebuild')
-rw-r--r-- | app-editors/ecrire/ecrire-0.2.0-r1.ebuild | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/app-editors/ecrire/ecrire-0.2.0-r1.ebuild b/app-editors/ecrire/ecrire-0.2.0-r1.ebuild new file mode 100644 index 000000000000..3b8035560242 --- /dev/null +++ b/app-editors/ecrire/ecrire-0.2.0-r1.ebuild @@ -0,0 +1,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 +} |