gentoo/gnome-extra/gnome-user-share/gnome-user-share-47.2.ebuild
Lukas Schmelting ff0baad1ba
gnome-extra/gnome-user-share: add 48.2
- Added dependencies on rust, clang, libselinux
- removed FIXME reference to libnotify

See-also: Upstream commit 3f7b29e120 (libnotify dependency addition)
See-also: Upstream commit dbde779bb8 (autotools build-system removal)
See-also: Upstream commit 2acc42792b (Remove ObexPush support, which used inotify)
Signed-off-by: Lukas Schmelting <lschmelting@posteo.com>
Part-of: https://github.com/gentoo/gentoo/pull/44731
Signed-off-by: Pacho Ramos <pacho@gentoo.org>
2025-11-30 10:36:08 +01:00

51 lines
1.2 KiB
Bash

# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit gnome.org gnome2-utils meson systemd xdg
DESCRIPTION="Personal file sharing for the GNOME desktop"
HOMEPAGE="https://gitlab.gnome.org/GNOME/gnome-user-share"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 arm64 ~loong ~riscv x86"
RDEPEND="
>=dev-libs/glib-2.74.0:2
>=www-apache/mod_dnssd-0.6
>=www-servers/apache-2.4[apache2_modules_dav,apache2_modules_dav_fs,apache2_modules_authn_file,apache2_modules_auth_digest,apache2_modules_authz_groupfile]
"
DEPEND="${RDEPEND}"
BDEPEND="
>=sys-devel/gettext-0.19.8
virtual/pkgconfig
"
PATCHES=(
# Upstream forces to use prefork because of Fedora defaults, but
# that is problematic for us (bug #551012)
# https://bugzilla.gnome.org/show_bug.cgi?id=750525#c2
"${FILESDIR}"/${PN}-3.18.1-no-prefork.patch
)
src_configure() {
local emesonargs=(
-Dsystemduserunitdir="$(systemd_get_userunitdir)"
-Dhttpd=apache2
-Dmodules_path=/usr/$(get_libdir)/apache2/modules/
)
meson_src_configure
}
pkg_postinst() {
xdg_pkg_postinst
gnome2_schemas_update
}
pkg_postrm() {
xdg_pkg_postrm
gnome2_schemas_update
}