Gentoo Archives: gentoo-commits

From: Ben Kohler <bkohler@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/
Date: Thu, 19 May 2022 17:23:42
Message-Id: 1652981007.087ced48f64bcc4a34a60cb09fc2db9360fad564.bkohler@gentoo
1 commit: 087ced48f64bcc4a34a60cb09fc2db9360fad564
2 Author: Ben Kohler <bkohler <AT> gentoo <DOT> org>
3 AuthorDate: Thu May 19 17:22:11 2022 +0000
4 Commit: Ben Kohler <bkohler <AT> gentoo <DOT> org>
5 CommitDate: Thu May 19 17:23:27 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=087ced48
7
8 net-misc/netifrc: depend on a dhcp client by default
9
10 Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>
11
12 net-misc/netifrc/metadata.xml | 3 ++
13 net-misc/netifrc/netifrc-0.7.3-r1.ebuild | 71 ++++++++++++++++++++++++++++++++
14 2 files changed, 74 insertions(+)
15
16 diff --git a/net-misc/netifrc/metadata.xml b/net-misc/netifrc/metadata.xml
17 index 19c1e2b9b47a..4f718879b413 100644
18 --- a/net-misc/netifrc/metadata.xml
19 +++ b/net-misc/netifrc/metadata.xml
20 @@ -8,4 +8,7 @@
21 This package contains the Gentoo network interface management
22 scripts, which were separated from OpenRC.
23 </longdescription>
24 + <use>
25 + <flag name="dhcp">Allow interfaces to configure via DHCP</flag>
26 + </use>
27 </pkgmetadata>
28
29 diff --git a/net-misc/netifrc/netifrc-0.7.3-r1.ebuild b/net-misc/netifrc/netifrc-0.7.3-r1.ebuild
30 new file mode 100644
31 index 000000000000..64bea176c13c
32 --- /dev/null
33 +++ b/net-misc/netifrc/netifrc-0.7.3-r1.ebuild
34 @@ -0,0 +1,71 @@
35 +# Copyright 1999-2022 Gentoo Authors
36 +# Distributed under the terms of the GNU General Public License v2
37 +
38 +EAPI=7
39 +
40 +inherit systemd udev
41 +
42 +DESCRIPTION="Gentoo Network Interface Management Scripts"
43 +HOMEPAGE="https://www.gentoo.org/proj/en/base/openrc/"
44 +
45 +if [[ ${PV} == "9999" ]]; then
46 + EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/netifrc.git"
47 + #EGIT_REPO_URI="https://github.com/gentoo/${PN}" # Alternate
48 + inherit git-r3
49 +else
50 + SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.gz"
51 + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
52 +fi
53 +
54 +LICENSE="BSD-2"
55 +SLOT="0"
56 +IUSE="+dhcp"
57 +
58 +DEPEND="!<sys-fs/udev-172"
59 +RDEPEND="sys-apps/gentoo-functions
60 + >=sys-apps/openrc-0.15
61 + !<sys-fs/udev-init-scripts-27
62 + dhcp? ( || ( net-misc/dhcpcd net-misc/dhcp[client] ) )"
63 +BDEPEND="kernel_linux? ( virtual/pkgconfig )"
64 +
65 +src_prepare() {
66 + if [[ ${PV} == "9999" ]] ; then
67 + local ver="git-${EGIT_VERSION:0:6}"
68 + sed -i "/^GITVER[[:space:]]*=/s:=.*:=${ver}:" mk/git.mk || die
69 + einfo "Producing ChangeLog from Git history"
70 + GIT_DIR="${S}/.git" git log >"${S}"/ChangeLog
71 + fi
72 +
73 + default
74 +}
75 +
76 +src_compile() {
77 + MAKE_ARGS="${MAKE_ARGS}
78 + UDEVDIR=${EPREFIX}$(get_udevdir)
79 + LIBEXECDIR=${EPREFIX}/lib/${PN} PF=${PF}"
80 +
81 + use prefix && MAKE_ARGS+=" MKPREFIX=yes PREFIX=${EPREFIX}"
82 +
83 + emake ${MAKE_ARGS} all
84 +}
85 +
86 +src_install() {
87 + emake ${MAKE_ARGS} DESTDIR="${D}" install
88 + dodoc README CREDITS FEATURE-REMOVAL-SCHEDULE STYLE TODO
89 +
90 + # Install the service file
91 + LIBEXECDIR="${EPREFIX}/lib/${PN}"
92 + UNIT_DIR="$(systemd_get_systemunitdir)"
93 + sed "s:@LIBEXECDIR@:${LIBEXECDIR}:" "${S}/systemd/net_at.service.in" > "${T}/net_at.service" || die
94 + systemd_newunit "${T}/net_at.service" 'net@.service'
95 + dosym "${UNIT_DIR#${EPREFIX}}/net@.service" "${UNIT_DIR#${EPREFIX}}/net@××.service"
96 +}
97 +
98 +pkg_postinst() {
99 + if [[ ! -e "${EROOT}"/etc/conf.d/net && -z ${REPLACING_VERSIONS} ]]; then
100 + elog "The network configuration scripts will use dhcp by"
101 + elog "default to set up your interfaces."
102 + elog "If you need to set up something more complete, see"
103 + elog "${EROOT}/usr/share/doc/${P}/README"
104 + fi
105 +}