commit:     d93cb74559419dabaf46be08646c74a04160e3fb
Author:     Haelwenn (lanodan) Monnier <contact <AT> hacktivis <DOT> me>
AuthorDate: Sat Nov  8 19:49:37 2025 +0000
Commit:     Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Mon Nov 10 19:08:06 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d93cb745

net-libs/libtirpc: add --enable-rpcdb for getrpcbyname in musl

Closes: https://bugs.gentoo.org/964394
Signed-off-by: Haelwenn (lanodan) Monnier <contact <AT> hacktivis.me>
Part-of: https://github.com/gentoo/gentoo/pull/44540
Closes: https://github.com/gentoo/gentoo/pull/44540
Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>

 net-libs/libtirpc/libtirpc-1.3.7-r1.ebuild | 65 ++++++++++++++++++++++++++++++
 1 file changed, 65 insertions(+)

diff --git a/net-libs/libtirpc/libtirpc-1.3.7-r1.ebuild 
b/net-libs/libtirpc/libtirpc-1.3.7-r1.ebuild
new file mode 100644
index 000000000000..b726359aadc1
--- /dev/null
+++ b/net-libs/libtirpc/libtirpc-1.3.7-r1.ebuild
@@ -0,0 +1,65 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit flag-o-matic libtool multilib-minimal
+
+DESCRIPTION="Transport Independent RPC library (SunRPC replacement)"
+HOMEPAGE="https://sourceforge.net/projects/libtirpc/ 
https://git.linux-nfs.org/?p=steved/libtirpc.git";
+SRC_URI="
+       https://downloads.sourceforge.net/${PN}/${P}.tar.bz2
+       https://dev.gentoo.org/~sam/distfiles/${PN}-glibc-nfs.tar.xz
+"
+
+LICENSE="BSD BSD-2 BSD-4 LGPL-2.1+"
+SLOT="0/3" # subslot matches SONAME major
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
+IUSE="kerberos static-libs"
+
+RDEPEND="kerberos? ( >=virtual/krb5-0-r1[${MULTILIB_USEDEP}] )"
+DEPEND="
+       ${RDEPEND}
+       elibc_musl? ( sys-libs/queue-standalone )
+"
+BDEPEND="
+       app-arch/xz-utils
+       virtual/pkgconfig
+"
+
+src_prepare() {
+       cp -ra "${WORKDIR}"/tirpc "${S}"/ || die
+
+       default
+       elibtoolize
+}
+
+multilib_src_configure() {
+       # bug #911863
+       append-lfs-flags
+
+       local myeconfargs=(
+               $(use_enable kerberos gssapi)
+               $(use_enable static-libs static)
+               KRB5_CONFIG="${ESYSROOT}"/usr/bin/krb5-config
+               --enable-rpcdb # For getrpcbyname & al. bug #964394
+       )
+
+       ECONF_SOURCE="${S}" econf "${myeconfargs[@]}"
+}
+
+multilib_src_install_all() {
+       einstalldocs
+
+       insinto /etc
+       doins doc/netconfig
+
+       insinto /usr/include/tirpc
+       doins -r "${WORKDIR}"/tirpc/*
+
+       # makes sure that the linking order for nfs-utils is proper, as
+       # libtool would inject a libgssglue dependency in the list.
+       if ! use static-libs ; then
+               find "${ED}" -name "*.la" -delete || die
+       fi
+}

Reply via email to