Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-dicts/gnome-dictionary/
Date: Sat, 30 Jan 2016 12:24:05
Message-Id: 1454156599.762828df7a830e6157a2b730163a5a276c76b534.pacho@gentoo
1 commit: 762828df7a830e6157a2b730163a5a276c76b534
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jan 30 11:10:19 2016 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 30 12:23:19 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=762828df
7
8 app-dicts/gnome-dictionary: Version bump
9
10 Package-Manager: portage-2.2.27
11
12 app-dicts/gnome-dictionary/Manifest | 1 +
13 .../gnome-dictionary-3.18.1.ebuild | 42 ++++++++++++++++++++++
14 2 files changed, 43 insertions(+)
15
16 diff --git a/app-dicts/gnome-dictionary/Manifest b/app-dicts/gnome-dictionary/Manifest
17 index 4786512..00b9f1e 100644
18 --- a/app-dicts/gnome-dictionary/Manifest
19 +++ b/app-dicts/gnome-dictionary/Manifest
20 @@ -1,2 +1,3 @@
21 DIST gnome-dictionary-3.16.2.tar.xz 847024 SHA256 a2981a76ecf57a5e5f1ebc88697f228a40e550c3371535aa15cc959fe51badd5 SHA512 f6c50a8d10e360320ac2ed34a56723f9e7eb72f81f27d40bc69a63eab23cad31e7ff45fb6712ff14b84b3ec2f82ae35bfab0ddde7980766b77d1416be67f384a WHIRLPOOL 6fe96815b79e1d217377ca61d74e2a61ab67a89057e3131cbbbb24b6c43fc908298cab4b34d3ab1c0700859deb18b7ed45d4870261fd0009118f168535157365
22 DIST gnome-dictionary-3.18.0.tar.xz 852072 SHA256 5338962124f6d784920ed4968d98734a7589513b36e4f4a6ff00d1ed5afb4ead SHA512 ea276880329422e08923cc9346821bfd7c9bc1b71c09c6521a28f01a6bee34ec4be3b7f503ed8d37916a9b6351074ffd6d4333fed46d7c820198ebf0e62f5eb4 WHIRLPOOL 1c70faa84b96ddebafc2297ed6ea08ea3cec62a76340d5dc0800c2176603dec187b33f1a406538b832907196356f4015cf3c029868447998ef8e22f6f7cb0aef
23 +DIST gnome-dictionary-3.18.1.tar.xz 864460 SHA256 92cf2d519335b125018468c22405499fdb320e4446201c7b0f55f1a441bf05cc SHA512 efe4d1f8810bf218bae4d393be1d26938ed3a814ed22fb96c0bded5f874c32229b215351b08462eef1c92b756640a3d4e1c0f5ea1ee49f67e519bcf0d53aba74 WHIRLPOOL c20c73504e8ce0745170ec21296191d14770f252c80b208e4ac08659f80d2ece79cd2d408b4e3bdee992475a67be2ec77f4c16e501e8bbbebe8c0a95c3911e7b
24
25 diff --git a/app-dicts/gnome-dictionary/gnome-dictionary-3.18.1.ebuild b/app-dicts/gnome-dictionary/gnome-dictionary-3.18.1.ebuild
26 new file mode 100644
27 index 0000000..148b843
28 --- /dev/null
29 +++ b/app-dicts/gnome-dictionary/gnome-dictionary-3.18.1.ebuild
30 @@ -0,0 +1,42 @@
31 +# Copyright 1999-2015 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +# $Id$
34 +
35 +EAPI="5"
36 +GCONF_DEBUG="yes"
37 +
38 +inherit gnome2
39 +
40 +DESCRIPTION="Dictionary utility for GNOME"
41 +HOMEPAGE="https://wiki.gnome.org/Apps/Dictionary"
42 +
43 +LICENSE="GPL-2+ LGPL-2.1+ FDL-1.1+"
44 +SLOT="0/9" # subslot = suffix of libgdict-1.0.so
45 +IUSE="+introspection ipv6"
46 +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux"
47 +
48 +COMMON_DEPEND="
49 + >=dev-libs/glib-2.39:2[dbus]
50 + x11-libs/cairo:=
51 + >=x11-libs/gtk+-3.14:3
52 + x11-libs/pango
53 + introspection? ( >=dev-libs/gobject-introspection-1.42:= )
54 +"
55 +RDEPEND="${COMMON_DEPEND}
56 + gnome-base/gsettings-desktop-schemas
57 + !<gnome-extra/gnome-utils-3.4
58 +"
59 +# ${PN} was part of gnome-utils before 3.4
60 +DEPEND="${COMMON_DEPEND}
61 + >=dev-util/gtk-doc-am-1.15
62 + >=dev-util/intltool-0.40
63 + dev-util/itstool
64 + >=sys-devel/gettext-0.17
65 + virtual/pkgconfig
66 +"
67 +
68 +src_configure() {
69 + gnome2_src_configure \
70 + $(use_enable introspection) \
71 + $(use_enable ipv6)
72 +}