diff options
author | Michał Górny <mgorny@gentoo.org> | 2018-02-26 08:14:41 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2018-02-26 08:16:53 +0100 |
commit | f5712db00bb3cf22c1f101e73c003bd203f88aca (patch) | |
tree | 6955f1abbe6991a80115fb210d1db1682c5d3fb1 /x11-terms/xfce4-terminal | |
parent | dev-ruby/logue: fix slot warning and bin install (diff) | |
download | gentoo-f5712db00bb3cf22c1f101e73c003bd203f88aca.tar.gz gentoo-f5712db00bb3cf22c1f101e73c003bd203f88aca.tar.bz2 gentoo-f5712db00bb3cf22c1f101e73c003bd203f88aca.zip |
x11-terms/xfce4-terminal: Bump to 0.8.7.1 (bugfix)
Diffstat (limited to 'x11-terms/xfce4-terminal')
-rw-r--r-- | x11-terms/xfce4-terminal/Manifest | 1 | ||||
-rw-r--r-- | x11-terms/xfce4-terminal/xfce4-terminal-0.8.7.1.ebuild | 37 |
2 files changed, 38 insertions, 0 deletions
diff --git a/x11-terms/xfce4-terminal/Manifest b/x11-terms/xfce4-terminal/Manifest index b5970852c789..9bd6b6435e19 100644 --- a/x11-terms/xfce4-terminal/Manifest +++ b/x11-terms/xfce4-terminal/Manifest @@ -1,4 +1,5 @@ DIST xfce4-terminal-0.6.3.tar.bz2 815207 BLAKE2B 5c68d1efb14ef1a4fe0d9377909cceb39b92519eba73d89e08c004ef38b96cc14f6ecacfe41169839fec9573e21422074fdbf43f65db002aa1fbb8e606f3eb1f SHA512 805390b75178b3a2fbff4f8dfe972474e5575ad5a80aaf775f7b4086f975cf5b444a335b1ec1a9a39bc89642c71e1d0cb1bbc14d96b913980bd231d32a081c49 DIST xfce4-terminal-0.8.5.1.tar.bz2 942117 BLAKE2B b72f1f51837778a90b4f3299ed2d4d04ae7658f52399da9bf5d44b4e41a87a8382486172384604e8782dfa754f411f4436ae756ce4c1e966465c10c0ba2da22d SHA512 bf64877985d75c4d6b7a9da741c1f71486dacf2bf203de4555ceb6f45eee109938e29bdbb70487a67f40aa51a6a10fca7ee04b89d87e3e4f11a0a99cfbe1be9f DIST xfce4-terminal-0.8.6.tar.bz2 952859 BLAKE2B 7f6ed679eb53196d2665003cc2af7543c42c73679f91581ee241c4c1d3d4d34dfd8b78e2a8f3038514727d585b51a2ae11fe20a48a55e9d0b869c6baeb4ecf18 SHA512 96d9c3fab56ad9cd267bd7b33f4d8fb3831200b9507653a69e6872b673ca5e30adffc73ef2f73de6eb858a2817a98b781188a39a4c0d79298699711c49f8be97 +DIST xfce4-terminal-0.8.7.1.tar.bz2 889692 BLAKE2B 2e8fdda67ba631caabfc184e501fed014c10a2a9982ca57a4900030519d7acfb34289fc507bf0e62dbde1714b3b0e3f1cf7cf29c50dd0dc8d0562831e8f2854d SHA512 e34d0eaa32a7088c83091de321a95cccbd4d6122e9df562af3f1e15d64b224bc9c289302c73874ff88d72f74fe679a42623f078386b0affa962a930801f3bdd2 DIST xfce4-terminal-0.8.7.tar.bz2 889667 BLAKE2B 9b3864dab50f3fb6a5b0119053ad2fad52d2054d2356eda5e7b51abb3a5a8582c3da12eec43b08c538892d297752decdda7140b178b31948222bf913cf759986 SHA512 84c9876aedda5ab635447a332344756ae3a953c6f5267c2275c1f293e7ab34b874b15924abac5ad6e0bd874085138179f90032ffbc9d1cc622172ad757f33dc2 diff --git a/x11-terms/xfce4-terminal/xfce4-terminal-0.8.7.1.ebuild b/x11-terms/xfce4-terminal/xfce4-terminal-0.8.7.1.ebuild new file mode 100644 index 000000000000..4ed3b8ddca72 --- /dev/null +++ b/x11-terms/xfce4-terminal/xfce4-terminal-0.8.7.1.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit eapi7-ver + +DESCRIPTION="A terminal emulator for the Xfce desktop environment" +HOMEPAGE="https://docs.xfce.org/apps/terminal/start" +SRC_URI="mirror://xfce/src/apps/${PN}/$(ver_cut 1-2)/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x64-solaris" +IUSE="utempter" + +RDEPEND=">=dev-libs/glib-2.32:2= + >=x11-libs/gtk+-3.20.8:3= + x11-libs/libX11:= + >=x11-libs/vte-0.38:2.91= + >=xfce-base/libxfce4ui-4.10:=[gtk3(+)] + utempter? ( sys-libs/libutempter:= )" +DEPEND="${RDEPEND} + dev-libs/libxml2 + dev-util/intltool + sys-devel/gettext + virtual/pkgconfig" + +DOCS=( AUTHORS ChangeLog HACKING NEWS README THANKS ) + +src_configure() { + local myconf=( + $(use_with utempter) + ) + + econf "${myconf[@]}" +} |