Gentoo Archives: gentoo-commits

From: Denis Dupeyron <calchan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/xfbib/
Date: Wed, 29 Nov 2017 20:55:18
Message-Id: 1511988903.15e4908feef67381f6163b66eb0347bd118195ca.calchan@gentoo
1 commit: 15e4908feef67381f6163b66eb0347bd118195ca
2 Author: Denis Dupeyron <calchan <AT> gentoo <DOT> org>
3 AuthorDate: Wed Nov 29 20:45:54 2017 +0000
4 Commit: Denis Dupeyron <calchan <AT> gentoo <DOT> org>
5 CommitDate: Wed Nov 29 20:55:03 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15e4908f
7
8 app-text/xfbib: fix deps and patching, remove obsolete xfconf.eclass, migrate to EAPI6
9
10 Package-Manager: Portage-2.3.16, Repoman-2.3.6
11
12 app-text/xfbib/Manifest | 2 +-
13 app-text/xfbib/xfbib-0.0.2-r2.ebuild | 42 ++++++++++++++++++++++++++++++++++++
14 2 files changed, 43 insertions(+), 1 deletion(-)
15
16 diff --git a/app-text/xfbib/Manifest b/app-text/xfbib/Manifest
17 index 3d97305934b..62f018ed762 100644
18 --- a/app-text/xfbib/Manifest
19 +++ b/app-text/xfbib/Manifest
20 @@ -1 +1 @@
21 -DIST xfbib-0.0.2.tar.bz2 340703 SHA256 eeb668b5cedbc9a9b4d8e54767fb7262f173dd9e440031b94580ca108b95f920 SHA512 7f6f812bfdb6b95574f66b63e51fb1a70ce20fd795b6070b055cdc8e753656a266237be92a7e60865d9f1e5fa750be0af3404ecf219a8a5d89dde505c759aebc WHIRLPOOL b45d18574479c42b3fe473d38b217fa603ff0d69a8f678ea328e7af72d8bb92121dfc450e33f46b747e3a8c25e02aa689d16ba61c988bdb28815ffac52bc0807
22 +DIST xfbib-0.0.2.tar.bz2 340703 BLAKE2B 4f15fb39fc55e06b5cde8961db27661f3f2f2e954e52e809105fb7f3326f54c63e63acb6fa21585da8a5aa340eafd4bc33df73822fe9f6ac7a04e67d95db6e0a SHA512 7f6f812bfdb6b95574f66b63e51fb1a70ce20fd795b6070b055cdc8e753656a266237be92a7e60865d9f1e5fa750be0af3404ecf219a8a5d89dde505c759aebc
23
24 diff --git a/app-text/xfbib/xfbib-0.0.2-r2.ebuild b/app-text/xfbib/xfbib-0.0.2-r2.ebuild
25 new file mode 100644
26 index 00000000000..48361d024ae
27 --- /dev/null
28 +++ b/app-text/xfbib/xfbib-0.0.2-r2.ebuild
29 @@ -0,0 +1,42 @@
30 +# Copyright 1999-2017 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +
35 +inherit gnome2-utils xdg-utils
36 +
37 +DESCRIPTION="a lightweight BibTeX editor"
38 +HOMEPAGE="https://goodies.xfce.org/projects/applications/xfbib"
39 +SRC_URI="https://goodies.xfce.org/releases/${PN}/${P}.tar.bz2"
40 +
41 +LICENSE="GPL-2"
42 +SLOT="0"
43 +KEYWORDS="~amd64 ~x86"
44 +IUSE=""
45 +
46 +RDEPEND=">=dev-libs/glib-2.12
47 + >=x11-libs/gtk+-2.10:2
48 + >=xfce-base/libxfcegui4-4.2
49 + >=xfce-base/libxfce4ui-4.8
50 + >=xfce-base/libxfce4util-4.8"
51 +DEPEND="${RDEPEND}
52 + dev-util/intltool
53 + sys-devel/gettext
54 + virtual/pkgconfig"
55 +
56 +DOCS=( AUTHORS ChangeLog NEWS README TODO )
57 +
58 +src_prepare() {
59 + eapply -p0 "${FILESDIR}"/${P}-validate.patch
60 + default
61 +}
62 +
63 +pkg_postinst() {
64 + gnome2_icon_cache_update
65 + xdg_desktop_database_update
66 +}
67 +
68 +pkg_postrm() {
69 + gnome2_icon_cache_update
70 + xdg_desktop_database_update
71 +}