diff options
author | Joonas Niilola <juippis@gmail.com> | 2018-08-20 13:47:49 +0300 |
---|---|---|
committer | Patrice Clement <monsieurp@gentoo.org> | 2018-08-21 23:55:33 +0200 |
commit | 9b472f3c7d970a73c3fe410b8c3d12a314f0c446 (patch) | |
tree | bc12ca074df02a21cbfc7b81ec18add8ec9ee2a3 /x11-terms | |
parent | media-sound/musescore: Drop 2.1.0 (r0) (diff) | |
download | gentoo-9b472f3c7d970a73c3fe410b8c3d12a314f0c446.tar.gz gentoo-9b472f3c7d970a73c3fe410b8c3d12a314f0c446.tar.bz2 gentoo-9b472f3c7d970a73c3fe410b8c3d12a314f0c446.zip |
x11-terms/terminology: version bump to 1.1.1.
Package-Manager: Portage[mgorny]-2.3.43.3
Closes: https://github.com/gentoo/gentoo/pull/9637
Diffstat (limited to 'x11-terms')
-rw-r--r-- | x11-terms/terminology/Manifest | 1 | ||||
-rw-r--r-- | x11-terms/terminology/terminology-1.1.1.ebuild | 28 |
2 files changed, 29 insertions, 0 deletions
diff --git a/x11-terms/terminology/Manifest b/x11-terms/terminology/Manifest index 90de0c1c9eb2..e641bb1dff0e 100644 --- a/x11-terms/terminology/Manifest +++ b/x11-terms/terminology/Manifest @@ -1,2 +1,3 @@ DIST terminology-1.1.0.tar.xz 4989512 BLAKE2B b2bcc22a63d25517aa4dd223b914a784d8c4c87ce9d971dff20b9f66b3ff0d2667babc053f3e1923d0bcaa5508902b824302420c0731173c96136d2071400f61 SHA512 ad4ecc6d51a6a124e90eb63d887d5f742500944747b469239366732587510717a227aa41a90089911cf1ac5b289228880619726ae95688de9a92972d554bf95d +DIST terminology-1.1.1.tar.xz 4989940 BLAKE2B 946476fbe7b0f6c5e15e3d2cd6b90e1f77ace4f25541d2c433ccf45f674a4b498b1b289ff17ae079a38a4cc959075087c99d3230c96df43aaf1c36f427bcc446 SHA512 034f061374462bc4c596ed2fbcbf16b77071459595a86cbacb6f4fd613e93b412ce0c61a77770b919f731a559632e897bc378a9bf6dbe2aaa41d1bca8c50215f DIST terminology-1.2.1.tar.xz 4858528 BLAKE2B 953917ed9dac9d17048d19394e6d8b38fd1673bc618cd1ecb596eee7b889f973b5622ef9d3424bc9f94928f44129062a7a4f88cdb2af519b87aeb141661902bc SHA512 8485d38a5426ac0f32b3cb049170bfa015a9f648134973462d72412b291b160f05b6ccfb3ba47115740946c8d87160401d55672a6853027d0cc216bdc7cc659b diff --git a/x11-terms/terminology/terminology-1.1.1.ebuild b/x11-terms/terminology/terminology-1.1.1.ebuild new file mode 100644 index 000000000000..e1f570eea6a3 --- /dev/null +++ b/x11-terms/terminology/terminology-1.1.1.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 ~ppc ~ppc64 ~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[@]}" +} |