sys-auth/nss-mdns: Bump to 0.11
authorMichał Górny <mgorny@gentoo.org>
Tue, 23 Jan 2018 08:27:28 +0000 (09:27 +0100)
committerMichał Górny <mgorny@gentoo.org>
Tue, 23 Jan 2018 08:28:08 +0000 (09:28 +0100)
Bump to the first release from the new upstream. Big thanks to Adam
Goode for merging our patches and working on the code!

Closes: https://bugs.gentoo.org/590968
Closes: https://bugs.gentoo.org/600282
Closes: https://bugs.gentoo.org/627770

sys-auth/nss-mdns/Manifest
sys-auth/nss-mdns/nss-mdns-0.11.ebuild [new file with mode: 0644]

index 4c1f92ba9f36fec4f5fc3b23a4695d8babbdab45..f487325f24f2f01c615193afcf7ebb5399026c4a 100644 (file)
@@ -1 +1,2 @@
 DIST nss-mdns-0.10.tar.gz 353130 BLAKE2B 88cc7cbc908f397bbf52f590946b3bc8bc4c71585c9a0a52648ae3dd23b3f5ca9fbd24f0fc7c34dff08d7a4c8d72fec94a51a65650bed41b07aec6c81220d517 SHA512 7c9f4150648dfab34bc6f8551e5b58b0b7065e4c1472efb8ce1b00b2bd75627e5928b2c199d9dae742abe839968a8774e39c7646f8ce855d342b4d90252efc0e
+DIST nss-mdns-0.11.tar.gz 382059 BLAKE2B 5523c76d6f7364efde54b9bf303dfdf34c11b96c9348bfd4a62d095215e7d6f32e0d44e22d21677d51700d458a10f9c36f7ccecb7b4add04fcba629ee19abc21 SHA512 9dceb0f244c4cd27b04ca2014637873a0d137464c26780dfdb228502b06b310991494b115e42e1057c45478361d0e441ec73099fbf56a13a5933618b72390af4
diff --git a/sys-auth/nss-mdns/nss-mdns-0.11.ebuild b/sys-auth/nss-mdns/nss-mdns-0.11.ebuild
new file mode 100644 (file)
index 0000000..d93a77b
--- /dev/null
@@ -0,0 +1,54 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit multilib-minimal
+
+DESCRIPTION="Name Service Switch module for Multicast DNS"
+HOMEPAGE="https://github.com/lathiat/nss-mdns"
+SRC_URI="https://github.com/lathiat/nss-mdns/releases/download/v${PV}/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~hppa ~mips ~ppc ~x86"
+IUSE=""
+
+RDEPEND=">=net-dns/avahi-0.6.31-r2[${MULTILIB_USEDEP}]"
+DEPEND="${RDEPEND}"
+
+multilib_src_configure() {
+       local myconf=(
+               # $(localstatedir)/run/... is used to locate avahi-daemon socket
+               --localstatedir=/var
+       )
+
+       ECONF_SOURCE=${S} \
+       econf "${myconf[@]}"
+}
+
+# the check target only compiles manual-use test programs
+src_test() { :; }
+
+multilib_src_install_all() {
+       dodoc *.md
+
+       insinto /etc
+       doins "${FILESDIR}"/mdns.allow
+}
+
+pkg_postinst() {
+       ewarn "You have to modify your name service switch look up file to enable"
+       ewarn "multicast DNS lookups.  If you wish to resolve only IPv6 addresses"
+       ewarn "use mdns6.  For IPv4 addresses only, use mdns4.  To resolve both"
+       ewarn "use mdns.  Keep in mind that mdns will be slower if there are no"
+       ewarn "IPv6 addresses published via mDNS on the network.  There are also"
+       ewarn "minimal (mdns?_minimal) libraries which only lookup .local hosts"
+       ewarn "and 169.254.x.x addresses."
+       ewarn
+       ewarn "Add the appropriate mdns into the hosts line in /etc/nsswitch.conf."
+       ewarn "An example line looks like:"
+       ewarn "hosts:   files mdns4_minimal [NOTFOUND=return] dns mdns4"
+       ewarn
+       ewarn "If you want to perform mDNS lookups for domains other than the ones"
+       ewarn "ending in .local, add them to /etc/mdns.allow."
+}