Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: xfce-extra/xfce4-smartbookmark-plugin/
Date: Sat, 30 Jul 2016 19:53:45
Message-Id: 1469908186.e976b508cc3477e6a9be310dd2996b4bb9919804.mgorny@gentoo
1 commit: e976b508cc3477e6a9be310dd2996b4bb9919804
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jul 30 19:41:26 2016 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Jul 30 19:49:46 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e976b508
7
8 xfce-extra/xfce4-smartbookmark-plugin: Bump to 0.4.99, the GTK+3 pre-release
9
10 xfce-extra/xfce4-smartbookmark-plugin/Manifest | 1 +
11 .../xfce4-smartbookmark-plugin-0.4.99.ebuild | 35 ++++++++++++++++++++++
12 2 files changed, 36 insertions(+)
13
14 diff --git a/xfce-extra/xfce4-smartbookmark-plugin/Manifest b/xfce-extra/xfce4-smartbookmark-plugin/Manifest
15 index e276510..102ce41 100644
16 --- a/xfce-extra/xfce4-smartbookmark-plugin/Manifest
17 +++ b/xfce-extra/xfce4-smartbookmark-plugin/Manifest
18 @@ -1 +1,2 @@
19 DIST xfce4-smartbookmark-plugin-0.4.6.tar.bz2 280664 SHA256 3bed2b322cd39ce5845d6da07938c702260f3f1a9700b690ef377fba752ba24f SHA512 1d08b26761189d5e3b9d6a3e7f8a6bad8b73cc48ecf6d41c675bb13cc1074f48aca94e953b8d6cc97259c64c4f9f0aca9f0b0680fc4c6a9f01b13898175a5645 WHIRLPOOL 35adc639db061cb3158ad274cdfecfa0a8ad47399c8ee308086b12f4f6c4e6818522154e06217e75f56ee1e52abfb132c837aeba40b91f19aa4d49c5392eb69b
20 +DIST xfce4-smartbookmark-plugin-0.4.99.tar.bz2 293553 SHA256 5b833140aae4a0b7539b2446b535ad7fbbdaf4ba1cfcd8623956aa9c49047bea SHA512 a7dd7284ed9a3c80033dc6ad6ec971f9ab24aec6fbecfc9c55f8727e5d2bbe6859b0577ea3120d35f5c4cf88957e485fe61bd2af7c18ae2619e998638a94dc36 WHIRLPOOL d751f8838a766c12f2a47d3b83be3ecf0a236d70ee7249ed0fcc03480d68ab51f8e9c20dea785d9d38d4d1d4c93e78c97870ff1a46b59cdef4d578a75e3baf39
21
22 diff --git a/xfce-extra/xfce4-smartbookmark-plugin/xfce4-smartbookmark-plugin-0.4.99.ebuild b/xfce-extra/xfce4-smartbookmark-plugin/xfce4-smartbookmark-plugin-0.4.99.ebuild
23 new file mode 100644
24 index 0000000..aaa0366
25 --- /dev/null
26 +++ b/xfce-extra/xfce4-smartbookmark-plugin/xfce4-smartbookmark-plugin-0.4.99.ebuild
27 @@ -0,0 +1,35 @@
28 +# Copyright 1999-2016 Gentoo Foundation
29 +# Distributed under the terms of the GNU General Public License v2
30 +# $Id$
31 +
32 +EAPI=5
33 +inherit xfconf
34 +
35 +DESCRIPTION="Smart bookmark plug-in for the Xfce desktop environment"
36 +HOMEPAGE="http://goodies.xfce.org/projects/panel-plugins/xfce4-smartbookmark-plugin"
37 +SRC_URI="mirror://xfce/src/panel-plugins/${PN}/${PV%.*}/${P}.tar.bz2"
38 +
39 +LICENSE="GPL-2"
40 +SLOT="0"
41 +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux"
42 +IUSE="debug"
43 +
44 +COMMON_DEPEND=">=xfce-base/libxfce4ui-4.12:=[gtk3(+)]
45 + >=xfce-base/xfce4-panel-4.12:="
46 +DEPEND="${COMMON_DEPEND}
47 + dev-util/intltool
48 + sys-devel/gettext
49 + virtual/pkgconfig"
50 +
51 +pkg_setup() {
52 + XFCONF=(
53 + $(xfconf_use_debug)
54 + )
55 +
56 + DOCS=( AUTHORS ChangeLog NEWS README )
57 +}
58 +src_prepare() {
59 + # substitute default bugtracker
60 + sed -i -e '/bugs/s:bugs\.debian:bugs.gentoo:' src/smartbookmark.c || die
61 + xfconf_src_prepare
62 +}