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: Mon, 08 Feb 2021 01:00:40
Message-Id: 1612745538.dada4854eed27c1adb0aa6f8881e5814954c0f78.mjo@gentoo
1 commit: dada4854eed27c1adb0aa6f8881e5814954c0f78
2 Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 8 00:52:18 2021 +0000
4 Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 8 00:52:18 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dada4854
7
8 xfce-extra/xfce4-hdaps: new version to fix xfce-4.16 compatibility.
9
10 Package-Manager: Portage-3.0.13, Repoman-3.0.2
11 Signed-off-by: Michael Orlitzky <mjo <AT> gentoo.org>
12
13 xfce-extra/xfce4-hdaps/Manifest | 1 +
14 xfce-extra/xfce4-hdaps/xfce4-hdaps-1.0.1.ebuild | 39 +++++++++++++++++++++++++
15 2 files changed, 40 insertions(+)
16
17 diff --git a/xfce-extra/xfce4-hdaps/Manifest b/xfce-extra/xfce4-hdaps/Manifest
18 index 9c7215eb4d0..f4411ce4376 100644
19 --- a/xfce-extra/xfce4-hdaps/Manifest
20 +++ b/xfce-extra/xfce4-hdaps/Manifest
21 @@ -1 +1,2 @@
22 DIST xfce4-hdaps-1.0.0.tar.xz 350888 BLAKE2B bc34321f42b0f51a10ef65429cdcf5e3d63f20914aa0c593c004c830932c8a63f194a25b602784527f5da0f74302142ccbcb3ecfc2a677b004b71e5bad4e5ee5 SHA512 0efdedbccfe578304e61cccb86936b4d62e9e3de6cb9c3cf7b288983b93bd8388e1b227565ebe354aadbd58fc493b67e5c3fea02bf9dbc1b37b5d2ec419a5d7b
23 +DIST xfce4-hdaps-1.0.1.tar.xz 351780 BLAKE2B 466e83fa65281db0cdb75396f84714896b396c6ba08a037df7bc02099a5daeb9cbdc5b012954866a1873b637848a3fe8c1bbde56ea4559f7c60b34053b4451ac SHA512 187daae3422b06f001918f40990bc38ba4de41303390d80b605c2d73b418d6a44e92b5e9f812b090f9d17fd9684b7485be4713f10d9946567a310e71eda8277c
24
25 diff --git a/xfce-extra/xfce4-hdaps/xfce4-hdaps-1.0.1.ebuild b/xfce-extra/xfce4-hdaps/xfce4-hdaps-1.0.1.ebuild
26 new file mode 100644
27 index 00000000000..2c27674053e
28 --- /dev/null
29 +++ b/xfce-extra/xfce4-hdaps/xfce4-hdaps-1.0.1.ebuild
30 @@ -0,0 +1,39 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +inherit xdg-utils
36 +
37 +DESCRIPTION="Show the status of the IBM Hard Drive Active Protection System"
38 +HOMEPAGE="http://michael.orlitzky.com/code/xfce4-hdaps.xhtml"
39 +SRC_URI="http://michael.orlitzky.com/code/releases/${P}.tar.xz"
40 +
41 +LICENSE="AGPL-3+"
42 +SLOT="0"
43 +KEYWORDS="~amd64 ~x86"
44 +IUSE=""
45 +
46 +BDEPEND="dev-util/intltool
47 + sys-devel/gettext
48 + virtual/pkgconfig"
49 +DEPEND=">=x11-libs/gtk+-3.20:3
50 + x11-libs/libX11
51 + >=xfce-base/libxfce4ui-4.14
52 + >=xfce-base/libxfce4util-4.14
53 + >=xfce-base/xfce4-panel-4.14:="
54 +RDEPEND="${DEPEND}
55 + app-laptop/hdapsd
56 + app-laptop/tp_smapi"
57 +
58 +src_install() {
59 + default
60 + find "${D}" -name '*.la' -delete || die
61 +}
62 +
63 +pkg_postinst() {
64 + xdg_icon_cache_update
65 +}
66 +
67 +pkg_postrm() {
68 + xdg_icon_cache_update
69 +}