Сравнение nss-mdns-0.15.1 с nss-mdns-9999
| /usr/portage/sys-auth/nss-mdns/nss-mdns-9999.ebuild 2026-02-19 11:18:08.271302825 +0300 | ||
|---|---|---|
| 5 | 5 | |
| 6 | 6 |
inherit autotools multilib-minimal |
| 7 | 7 | |
| 8 |
if [[ ${PV} == *9999* ]]; then
|
|
| 9 |
EGIT_REPO_URI="https://github.com/lathiat/nss-mdns" |
|
| 10 |
inherit git-r3 |
|
| 11 |
else |
|
| 12 |
SRC_URI="https://github.com/lathiat/nss-mdns/releases/download/v${PV}/${P}.tar.gz"
|
|
| 13 |
KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~x86" |
|
| 14 |
fi |
|
| 15 | ||
| 8 | 16 |
DESCRIPTION="Name Service Switch module for Multicast DNS" |
| 9 | 17 |
HOMEPAGE="https://github.com/lathiat/nss-mdns" |
| 10 |
SRC_URI="https://github.com/lathiat/nss-mdns/releases/download/v${PV}/${P}.tar.gz"
|
|
| 11 | 18 | |
| 12 | 19 |
LICENSE="GPL-2+" |
| 13 | 20 |
SLOT="0" |
| 14 |
KEYWORDS="amd64 ~arm arm64 ~hppa ~mips ppc ~ppc64 x86" |
|
| 15 | 21 |
IUSE="test" |
| 16 | 22 |
RESTRICT="!test? ( test )" |
| 17 | 23 | |
| ... | ... | |
| 19 | 25 |
DEPEND="${RDEPEND}
|
| 20 | 26 |
test? ( >=dev-libs/check-0.11[${MULTILIB_USEDEP}] )"
|
| 21 | 27 | |
| 22 |
PATCHES=( |
|
| 23 |
"${FILESDIR}"/lld-17-undefined-versioned-symbols.patch
|
|
| 24 |
) |
|
| 25 | ||
| 26 | 28 |
src_prepare() {
|
| 27 | 29 |
default |
| 28 |
# Only needed for LLD 17 patch |
|
| 29 | 30 |
eautoreconf |
| 30 | 31 |
} |
| 31 | 32 | |