net-dns/ddclient: fix systemd unit
authorConrad Kostecki <conrad@kostecki.com>
Mon, 3 Sep 2018 12:06:45 +0000 (14:06 +0200)
committerAaron W. Swenson <titanofold@gentoo.org>
Tue, 4 Sep 2018 09:42:44 +0000 (05:42 -0400)
Closes: https://bugs.gentoo.org/665150
Package-Manager: Portage-2.3.48, Repoman-2.3.10
Closes: https://github.com/gentoo/gentoo/pull/9773

net-dns/ddclient/ddclient-3.9.0-r1.ebuild [new file with mode: 0644]
net-dns/ddclient/files/ddclient.service-r1
net-dns/ddclient/files/ddclient.tmpfiles [new file with mode: 0644]

diff --git a/net-dns/ddclient/ddclient-3.9.0-r1.ebuild b/net-dns/ddclient/ddclient-3.9.0-r1.ebuild
new file mode 100644 (file)
index 0000000..5e18aac
--- /dev/null
@@ -0,0 +1,63 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit systemd user
+
+DESCRIPTION="Perl client used to update dynamic DNS entries"
+HOMEPAGE="https://sourceforge.net/projects/ddclient/"
+SRC_URI="mirror://sourceforge/ddclient/${P}.tar.gz"
+
+KEYWORDS="~amd64 ~mips ~x86 ~x86-fbsd"
+LICENSE="GPL-2+"
+SLOT="0"
+IUSE="examples iproute2"
+
+RDEPEND="dev-lang/perl
+       dev-perl/Data-Validate-IP
+       dev-perl/Digest-SHA1
+       dev-perl/IO-Socket-INET6
+       dev-perl/IO-Socket-SSL
+       virtual/perl-Digest-SHA
+       virtual/perl-JSON-PP
+       iproute2? ( sys-apps/iproute2 )"
+
+pkg_setup() {
+       enewgroup ddclient
+       enewuser ddclient -1 -1 -1 ddclient
+}
+
+src_prepare() {
+       # Remove PID setting, to reliably setup the environment for the init script
+       sed -e '/^pid/d' -i sample-etc_ddclient.conf || die
+
+       # Remove windows executable
+       if use examples; then
+               rm sample-etc_dhcpc_dhcpcd-eth0.exe || die
+       fi
+
+       # Use sys-apps/iproute2 instead of sys-apps/net-tools
+       use iproute2 && eapply "${FILESDIR}"/${P}-use_iproute2.patch
+
+       default
+}
+
+src_install() {
+       dobin ddclient
+
+       insinto /etc/ddclient
+       insopts -m 0600 -o ddclient -g ddclient
+       newins sample-etc_ddclient.conf ddclient.conf
+
+       newinitd "${FILESDIR}"/ddclient.initd-r5 ddclient
+       systemd_newunit "${FILESDIR}"/ddclient.service-r1 ddclient.service
+       systemd_newtmpfilesd "${FILESDIR}"/ddclient.tmpfiles ddclient.conf
+
+       dodoc Change* README* RELEASENOTE TODO UPGRADE
+
+       if use examples; then
+               docinto examples
+               dodoc sample-*
+       fi
+}
index 77cc3f7aa5e1cbcc902ad4cff02b864331ebbc63..d183b4f2a6c7b4164d8f209e1df618e07463f522 100644 (file)
@@ -4,7 +4,7 @@ ConditionPathExists=/etc/ddclient/ddclient.conf
 Description=DDclient
 
 [Service]
-ExecStart=/usr/sbin/ddclient --foreground
+ExecStart=/usr/bin/ddclient --foreground
 Group=ddclient
 Type=simple
 User=ddclient
diff --git a/net-dns/ddclient/files/ddclient.tmpfiles b/net-dns/ddclient/files/ddclient.tmpfiles
new file mode 100644 (file)
index 0000000..4c6cc19
--- /dev/null
@@ -0,0 +1,3 @@
+z /etc/ddclient/ddclient.conf 0600 ddclient ddclient - -
+d /run/ddclient 0700 ddclient ddclient - -
+d /var/cache/ddclient 0700 ddclient ddclient - -