Gentoo Archives: gentoo-commits

From: Lars Wendler <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/dhcpcd/
Date: Tue, 05 Nov 2019 16:20:57
Message-Id: 1572970834.58069aed3d880fa85d01390fb828745052d18c06.polynomial-c@gentoo
1 commit: 58069aed3d880fa85d01390fb828745052d18c06
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Tue Nov 5 16:20:34 2019 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Tue Nov 5 16:20:34 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58069aed
7
8 net-misc/dhcpcd: Added "debug" USE flag
9
10 Fixed EGIT_REPO_URI
11
12 Package-Manager: Portage-2.3.78, Repoman-2.3.17
13 Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
14
15 net-misc/dhcpcd/dhcpcd-9999.ebuild | 5 +++--
16 1 file changed, 3 insertions(+), 2 deletions(-)
17
18 diff --git a/net-misc/dhcpcd/dhcpcd-9999.ebuild b/net-misc/dhcpcd/dhcpcd-9999.ebuild
19 index 97babad6cfa..8b3e6da7b2f 100644
20 --- a/net-misc/dhcpcd/dhcpcd-9999.ebuild
21 +++ b/net-misc/dhcpcd/dhcpcd-9999.ebuild
22 @@ -7,7 +7,7 @@ inherit systemd toolchain-funcs
23
24 if [[ ${PV} == "9999" ]]; then
25 inherit git-r3
26 - EGIT_REPO_URI="https://roy.marples.name/git/dhcpcd.git"
27 + EGIT_REPO_URI="https://roy.marples.name/cgit/dhcpcd.git"
28 else
29 MY_P="${P/_alpha/-alpha}"
30 MY_P="${MY_P/_beta/-beta}"
31 @@ -21,7 +21,7 @@ DESCRIPTION="A fully featured, yet light weight RFC2131 compliant DHCP client"
32 HOMEPAGE="https://roy.marples.name/projects/dhcpcd"
33 LICENSE="BSD-2"
34 SLOT="0"
35 -IUSE="elibc_glibc +embedded ipv6 kernel_linux +udev"
36 +IUSE="debug elibc_glibc +embedded ipv6 kernel_linux +udev"
37
38 COMMON_DEPEND="udev? ( virtual/udev )"
39 DEPEND="${COMMON_DEPEND}"
40 @@ -36,6 +36,7 @@ src_configure() {
41 --with-hook=ntp.conf
42 $(use_enable embedded)
43 $(use_enable ipv6)
44 + $(usex debug --debug '')
45 $(usex elibc_glibc '--with-hook=yp.conf' '')
46 $(usex kernel_linux '--rundir=${EPREFIX}/run' '')
47 $(usex udev '' '--without-dev --without-udev')