diff options
Diffstat (limited to 'net-misc/midentd/midentd-2.3.1-r3.ebuild')
-rw-r--r-- | net-misc/midentd/midentd-2.3.1-r3.ebuild | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/net-misc/midentd/midentd-2.3.1-r3.ebuild b/net-misc/midentd/midentd-2.3.1-r3.ebuild new file mode 100644 index 000000000000..1abe32b1057f --- /dev/null +++ b/net-misc/midentd/midentd-2.3.1-r3.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="ident daemon with masquerading and fake replies support" +HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage" +SRC_URI="mirror://gentoo/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~sparc x86" + +RDEPEND="dev-lang/perl" + +src_prepare() { + default + + eapply -p0 "${FILESDIR}"/${PV}-pidfile.patch + sed -i \ + -e 's:/usr/local:/usr:' \ + -e 's:service ident:service auth:' \ + -e 's:disable = no:disable = yes:' \ + midentd.xinetd || die +} + +src_install() { + dosbin midentd midentd.logcycle + + insinto /etc/xinetd.d + newins midentd.xinetd midentd + newinitd "${FILESDIR}"/midentd.rc midentd + newconfd "${FILESDIR}"/midentd.conf.d midentd + + dodoc CHANGELOG README + + dodir /var/log + touch "${D}"/var/log/midentd.log + fowners nobody:nobody /var/log/midentd.log +} |