sys-apps/bolt: 0.5 bump
authorMatthew Thode <prometheanfire@gentoo.org>
Mon, 1 Oct 2018 21:34:44 +0000 (16:34 -0500)
committerMatthew Thode <prometheanfire@gentoo.org>
Mon, 1 Oct 2018 21:35:01 +0000 (16:35 -0500)
no more hard dep on systemd :D

Signed-off-by: Matthew Thode <prometheanfire@gentoo.org>
Package-Manager: Portage-2.3.49, Repoman-2.3.11

sys-apps/bolt/Manifest
sys-apps/bolt/bolt-0.5.ebuild [new file with mode: 0644]

index 2a4033191773c218363a619ec9fa34f2e8733ce6..f33ef2b9eb6651f360eaef503ee78ecdbb457fee 100644 (file)
@@ -1 +1,2 @@
 DIST bolt-0.4.tar.gz 113525 BLAKE2B 4d6b25b60a35bbeee724e4549a49709ff19d99457c8a35c02c66026cdca999359220d09812f8e9f44586b5e3cf3dda2e3ff30f35a4f37ed6d815535e62af39f3 SHA512 3ea6b748768b5d9df60425274ecdb4ccd5ce6599e01f0648a24704643fbbadd7a114d4a1946ee3b7bd8866935758cbfe4494734c26c12ccc508c205a036d5317
+DIST bolt-0.5.tar.gz 149665 BLAKE2B ca7f937d4b7f4911cba93f8619e52af37f18a6542bc76aaee388a9122ea38d11ba0a21f4afb45bd6109e12ada4662783cb8f7aebec0d58751ace6c18c49ace88 SHA512 d36f2e39ac53b131fb9607055231a5a205c368547c0db2c3a7537b6e60b156c8b0663d1e5b09c825e1e1a63fbe21087746d0bafde1bd474eb90f1d0cff991246
diff --git a/sys-apps/bolt/bolt-0.5.ebuild b/sys-apps/bolt/bolt-0.5.ebuild
new file mode 100644 (file)
index 0000000..6c33d40
--- /dev/null
@@ -0,0 +1,41 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit meson systemd
+
+DESCRIPTION="Userspace system daemon to enable security levels for Thunderbolt 3."
+HOMEPAGE="https://gitlab.freedesktop.org/bolt/bolt"
+SRC_URI="https://gitlab.freedesktop.org/${PN}/${PN}/-/archive/${PV}/${P}.tar.gz"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="doc systemd"
+
+DEPEND="
+       >=dev-libs/glib-2.50.0:2
+       virtual/libudev
+       virtual/udev
+       dev-util/umockdev
+       sys-auth/polkit[introspection]
+       systemd? ( sys-apps/systemd:0= )
+       doc? ( app-text/asciidoc )"
+RDEPEND="${DEPEND}"
+
+src_configure() {
+       local emesonargs=(
+               -Dman=$(usex doc true false)
+               --sysconfdir=/etc
+               --localstatedir=/var
+               --sharedstatedir=/var/lib
+               -Dsystemd=$(usex systemd true false)
+       )
+       meson_src_configure
+}
+
+src_install() {
+       meson_src_install
+       keepdir /var/lib/boltd
+}