commit:     83bb2157af004578ce0e2d8d4e3aa086b4fc53c9
Author:     Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Fri May 29 07:10:48 2020 +0000
Commit:     Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Fri May 29 07:16:01 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=83bb2157

sys-power/sispmctl: Version 4.1

- EAPI=7
- Remove obsolete USE=gemplug (bug #632476)
- Add USE=static-libs (bug #725974) and drop .la file
- Do not install empty NEWS
- Use udev.eclass to install rules file
- Install systemd thingamy

Package-Manager: Portage-2.3.100, Repoman-2.3.22
Closes: https://bugs.gentoo.org/632476
Closes: https://bugs.gentoo.org/725974
Signed-off-by: Jeroen Roovers <jer <AT> gentoo.org>

 sys-power/sispmctl/Manifest            |  1 +
 sys-power/sispmctl/sispmctl-4.1.ebuild | 46 ++++++++++++++++++++++++++++++++++
 2 files changed, 47 insertions(+)

diff --git a/sys-power/sispmctl/Manifest b/sys-power/sispmctl/Manifest
index 75f9d417b36..24b85c8bd47 100644
--- a/sys-power/sispmctl/Manifest
+++ b/sys-power/sispmctl/Manifest
@@ -1 +1,2 @@
 DIST sispmctl-4.0.tar.gz 517985 BLAKE2B 
61e709031f6c5bec5ef011cb33b03661f004cce2ec57986f887daf346dda4cd86e280a7350e118baf2a7b6b2f0ecf22aebd9b28661828b9edfb7b8ddea3f88b5
 SHA512 
0fc643b627ccfa10f085b37702933fe9b7c2ef448bcbb32c22cacda57f7f710437c413bd02f510a3acb085f99a513a891e815981ee4ffbe7fed691492a335e96
+DIST sispmctl-4.1.tar.gz 429477 BLAKE2B 
fe9231a5a0b22456d81166ae5dbaf98c86a636e79ff09112438c769daa503996128d31609bd90f66a5414459c9fce66956b1ee001ac3d57f8f472a09b34aee20
 SHA512 
52cf6e7d4df76c1d28d196a81a06dec59047f2d43571bc72ff08a22359c3e5d7a36fd446118036fe35f9c26e59a07563ac15d9e05285e7b09214b68aab5ef488

diff --git a/sys-power/sispmctl/sispmctl-4.1.ebuild 
b/sys-power/sispmctl/sispmctl-4.1.ebuild
new file mode 100644
index 00000000000..693002dbfb7
--- /dev/null
+++ b/sys-power/sispmctl/sispmctl-4.1.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit bash-completion-r1 systemd udev user
+
+DESCRIPTION="GEMBIRD SiS-PM control utility"
+HOMEPAGE="http://sispmctl.sourceforge.net/";
+SRC_URI="mirror://sourceforge/sispmctl/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE="static-libs"
+
+RDEPEND="
+       virtual/libusb:0
+"
+DEPEND="
+       ${RDEPEND}
+"
+DOCS="AUTHORS README ChangeLog"
+
+pkg_setup() {
+       enewgroup ${PN}
+}
+
+src_configure() {
+       econf \
+               $(use_enable static-libs static) \
+               --enable-webless
+}
+
+src_install() {
+       default
+
+       find "${ED}" -name '*.la' -delete || die
+
+       ## install udev rules which make the device files writable
+       ## by the members of the group sispmctl
+       udev_dorules examples/60-sispmctl.rules
+
+       systemd_dounit examples/${PN}.service
+
+       einfo "Add users who may run ${PN} to the group '${PN}'"
+}

Reply via email to