blob: 667f6f3db53f91e818ba69fb2c7e0889c06acfa9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
MY_PN="nginx-dav-ext-module"
NGINX_MOD_S="${WORKDIR}/${MY_PN}-${PV}"
inherit nginx-module
DESCRIPTION="NGINX module providing support for WebDAV PROPFIND,OPTIONS,LOCK,UNLOCK"
HOMEPAGE="https://github.com/arut/nginx-dav-ext-module"
SRC_URI="
https://github.com/arut/nginx-dav-ext-module/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz
"
LICENSE="BSD-2"
SLOT="0"
KEYWORDS="amd64 arm64"
# Relies on upstream NGINX test framework (https://github.com/nginx/nginx-tests),
# not packaged by Gentoo.
RESTRICT="test"
DEPEND="
dev-libs/libxml2
dev-libs/libxslt
"
RDEPEND="${DEPEND}"
|