Gentoo Archives: gentoo-commits

From: Michael Orlitzky <mjo@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: xfce-extra/xfce4-hdaps/
Date: Wed, 30 Oct 2019 12:43:54
Message-Id: 1572439400.67bcbb21f42e1184de333d54b67037d34225ef85.mjo@gentoo
1 commit: 67bcbb21f42e1184de333d54b67037d34225ef85
2 Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
3 AuthorDate: Wed Oct 30 12:41:01 2019 +0000
4 Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
5 CommitDate: Wed Oct 30 12:43:20 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67bcbb21
7
8 xfce-extra/xfce4-hdaps: new gtk+-3.x version.
9
10 New upstream version, new license, new dependencies, new EAPI, new
11 eclasses, etc. I'm no longer bothering to check for a "recent" 2.6
12 kernel. But overall, everything should work pretty much the same.
13
14 Closes: https://bugs.gentoo.org/698104
15 Package-Manager: Portage-2.3.76, Repoman-2.3.16
16 Signed-off-by: Michael Orlitzky <mjo <AT> gentoo.org>
17
18 xfce-extra/xfce4-hdaps/Manifest | 1 +
19 xfce-extra/xfce4-hdaps/xfce4-hdaps-1.0.0.ebuild | 39 +++++++++++++++++++++++++
20 2 files changed, 40 insertions(+)
21
22 diff --git a/xfce-extra/xfce4-hdaps/Manifest b/xfce-extra/xfce4-hdaps/Manifest
23 index 2796270a335..fc4f01072aa 100644
24 --- a/xfce-extra/xfce4-hdaps/Manifest
25 +++ b/xfce-extra/xfce4-hdaps/Manifest
26 @@ -1 +1,2 @@
27 DIST xfce4-hdaps-0.0.9.tar.bz2 304851 BLAKE2B 1f1318bb27628eb1ff72a1642737271ab37e722a18a6c3c6d40c7a05f56e36813bc7a570d5bc51d169dfcc89467cb6173d61c2f0cc2c90a90a795ba63ef1e07d SHA512 7ee963dacd3e1096fb205fa78c05202925977a4fc88aaa96ba779dc08e32937602fdc83a27457386b2b89847487c5dcc75385f2763201b1613f30eee8124e740
28 +DIST xfce4-hdaps-1.0.0.tar.xz 350888 BLAKE2B bc34321f42b0f51a10ef65429cdcf5e3d63f20914aa0c593c004c830932c8a63f194a25b602784527f5da0f74302142ccbcb3ecfc2a677b004b71e5bad4e5ee5 SHA512 0efdedbccfe578304e61cccb86936b4d62e9e3de6cb9c3cf7b288983b93bd8388e1b227565ebe354aadbd58fc493b67e5c3fea02bf9dbc1b37b5d2ec419a5d7b
29
30 diff --git a/xfce-extra/xfce4-hdaps/xfce4-hdaps-1.0.0.ebuild b/xfce-extra/xfce4-hdaps/xfce4-hdaps-1.0.0.ebuild
31 new file mode 100644
32 index 00000000000..a680a7fb669
33 --- /dev/null
34 +++ b/xfce-extra/xfce4-hdaps/xfce4-hdaps-1.0.0.ebuild
35 @@ -0,0 +1,39 @@
36 +# Copyright 1999-2019 Gentoo Authors
37 +# Distributed under the terms of the GNU General Public License v2
38 +
39 +EAPI=7
40 +inherit xdg-utils
41 +
42 +DESCRIPTION="Show the status of the IBM Hard Drive Active Protection System"
43 +HOMEPAGE="http://michael.orlitzky.com/code/xfce4-hdaps.xhtml"
44 +SRC_URI="http://michael.orlitzky.com/code/releases/${P}.tar.xz"
45 +
46 +LICENSE="AGPL-3+"
47 +SLOT="0"
48 +KEYWORDS="~amd64 ~x86"
49 +IUSE=""
50 +
51 +BDEPEND="dev-util/intltool
52 + sys-devel/gettext
53 + virtual/pkgconfig"
54 +DEPEND=">=x11-libs/gtk+-3.20:3
55 + x11-libs/libX11
56 + >=xfce-base/libxfce4ui-4.14
57 + >=xfce-base/libxfce4util-4.14
58 + >=xfce-base/xfce4-panel-4.14:="
59 +RDEPEND="${DEPEND}
60 + app-laptop/hdapsd
61 + app-laptop/tp_smapi"
62 +
63 +src_install() {
64 + default
65 + find "${D}" -name '*.la' -delete || die
66 +}
67 +
68 +pkg_postinst() {
69 + xdg_icon_cache_update
70 +}
71 +
72 +pkg_postrm() {
73 + xdg_icon_cache_update
74 +}