diff options
author | Joonas Niilola <juippis@gmail.com> | 2018-06-12 15:31:30 +0300 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2018-06-13 14:15:29 +0200 |
commit | add0479c72115113c1e3769134093f5c34e1df3f (patch) | |
tree | c7af4c05d7384b62c2667d8617ce52ef3461d4be | |
parent | app-arch/innoextract: Bump to version 1.7 (diff) | |
download | gentoo-add0479c72115113c1e3769134093f5c34e1df3f.tar.gz gentoo-add0479c72115113c1e3769134093f5c34e1df3f.tar.bz2 gentoo-add0479c72115113c1e3769134093f5c34e1df3f.zip |
x11-terms/terminology: bump to 1.1.0
Package-Manager: Portage[mgorny]-2.3.36.1
Closes: https://github.com/gentoo/gentoo/pull/8812
-rw-r--r-- | x11-terms/terminology/Manifest | 1 | ||||
-rw-r--r-- | x11-terms/terminology/terminology-1.1.0.ebuild | 28 |
2 files changed, 29 insertions, 0 deletions
diff --git a/x11-terms/terminology/Manifest b/x11-terms/terminology/Manifest index 4941e768d029..59a2b4e4b008 100644 --- a/x11-terms/terminology/Manifest +++ b/x11-terms/terminology/Manifest @@ -1,3 +1,4 @@ DIST terminology-0.9.1.tar.xz 4961876 BLAKE2B 03aab7c5c0740bede4c06b90721d96c121500009b6dd939387e8bd3dae160b4c705cf95a724dd8cc404badc9b9d5f22a5321312f229dd488331e4c4c1e2b0844 SHA512 c6db9fa62f3f168be635da1e3ed7a13deba13cbfa5bed75e3f97ee6e13837ca9cb5facab48c44f200baed34b8f32f852eadd9844de648795733602602fae32fd DIST terminology-1.0.0.tar.xz 4979420 BLAKE2B cbc78b751a2e6812ab31c69a62ea4abe2bb53f12b647cea7adae03e54fe0a238c56c5c029c43057c3a1326c7c8af0412574a85a404896554a142ed068ab581ab SHA512 5c99e1e1eea0de24d67779059d3ba65a8fbd1fdf63d9f22099e38defc11fdc8923fbe50a7276bc483ce5ee7527f665e3f2c48358d85c3a06f33e551bd8ef2320 +DIST terminology-1.1.0.tar.xz 4989512 BLAKE2B b2bcc22a63d25517aa4dd223b914a784d8c4c87ce9d971dff20b9f66b3ff0d2667babc053f3e1923d0bcaa5508902b824302420c0731173c96136d2071400f61 SHA512 ad4ecc6d51a6a124e90eb63d887d5f742500944747b469239366732587510717a227aa41a90089911cf1ac5b289228880619726ae95688de9a92972d554bf95d DIST terminology-1.2.1.tar.xz 4858528 BLAKE2B 953917ed9dac9d17048d19394e6d8b38fd1673bc618cd1ecb596eee7b889f973b5622ef9d3424bc9f94928f44129062a7a4f88cdb2af519b87aeb141661902bc SHA512 8485d38a5426ac0f32b3cb049170bfa015a9f648134973462d72412b291b160f05b6ccfb3ba47115740946c8d87160401d55672a6853027d0cc216bdc7cc659b diff --git a/x11-terms/terminology/terminology-1.1.0.ebuild b/x11-terms/terminology/terminology-1.1.0.ebuild new file mode 100644 index 000000000000..ddf20a904f22 --- /dev/null +++ b/x11-terms/terminology/terminology-1.1.0.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Feature rich terminal emulator using the Enlightenment Foundation Libraries" +HOMEPAGE="https://www.enlightenment.org/about-terminology" +SRC_URI="https://download.enlightenment.org/rel/apps/${PN}/${P}.tar.xz" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="nls" + +RDEPEND=">=dev-libs/efl-1.18.0[eet,X]" +DEPEND=" + ${RDEPEND} + virtual/pkgconfig + nls? ( sys-devel/gettext ) +" + +src_configure() { + local myconf=( + $(use_enable nls) + ) + + econf "${myconf[@]}" +} |