app-shells/atuin: add IUSE=daemon

Bug: https://bugs.gentoo.org/934563
Signed-off-by: Florian Schmaus <flow@gentoo.org>
This commit is contained in:
Florian Schmaus
2024-06-20 09:00:05 +02:00
parent ac8e6b7cf5
commit 093b4815b1
2 changed files with 3 additions and 1 deletions

View File

@@ -469,7 +469,7 @@ LICENSE="MIT"
LICENSE+=" Apache-2.0 BSD Boost-1.0 ISC MIT MPL-2.0 Unicode-DFS-2016 openssl"
SLOT="0"
KEYWORDS="~amd64 ~arm64"
IUSE="+client server test +sync"
IUSE="+client +daemon server test +sync"
RESTRICT="!test? ( test )"
REQUIRED_USE="
|| ( client server )
@@ -496,6 +496,7 @@ DOCS=(
src_configure() {
local myfeatures=(
$(usev client)
$(usev daemon)
$(usev server)
$(usev sync)
)

View File

@@ -15,6 +15,7 @@
</maintainer>
<use>
<flag name="client">Enable the autin client</flag>
<flag name="daemon">Enable the autin background daemon on the client</flag>
<flag name="server">Enable the autin server</flag>
<flag name="sync">Enable the server-sync feature in the autin client</flag>
</use>