ddclient: dropped unmaintained port

This commit is contained in:
Tim Biermann 2023-05-28 11:25:53 +02:00
parent 4f1e2f04ee
commit f20760d33e
Signed by: tb
GPG Key ID: 42F8B4E30B673606
4 changed files with 0 additions and 60 deletions

View File

@ -1,8 +0,0 @@
drwxr-xr-x root/root etc/
-rw-r--r-- root/root etc/ddclient.conf
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/ddclient
drwxr-xr-x root/root usr/var/
drwxr-xr-x root/root usr/var/cache/
drwxr-xr-x root/root usr/var/cache/ddclient/

View File

@ -1,6 +0,0 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF35OkMd00mMOc8sL5c9Xiae1XtdH51YW220yJzf/3dJwkwjFegVPl8u7pSlci4L0vbBZAKzhlDnFWF4xu6xr92w0=
SHA256 (Pkgfile) = 50adbe49cdb97ec9a3344f2a4f6db562f8745d54ebc095733b1aa8c79f631ac7
SHA256 (.footprint) = da7de60e955a37799bcf63606740705251d29b138952f10c6eac1f9e07be5a0e
SHA256 (ddclient-v3.10.0.tar.gz) = 34b6d9a946290af0927e27460a965ad018a7c525625063b0f380cbddffc01c1b
SHA256 (ddclient.rc) = c80b3ede788eb0b45f0f27441271351486136b397d78d380e4e3eb91bb3b8aba

View File

@ -1,19 +0,0 @@
# Description: Utility for maintaining your dynamic DNS entries.
# URL: https://github.com/ddclient/ddclient
# Maintainer: unmaintained
# Depends on: p5-io-socket-ssl p5-io-socket-inet6 p5-digest-sha1 p5-data-validate-ip
name=ddclient
version=3.10.0
release=1
source=(https://github.com/ddclient/ddclient/archive/v$version/$name-v$version.tar.gz
ddclient.rc)
build() {
cd $name-$version
autoreconf -vfi
./configure --prefix=/usr \
--sysconfdir=/etc
make
make DESTDIR=$PKG install
}

View File

@ -1,27 +0,0 @@
#!/usr/bin/env sh
#
# /etc/rc.d/ddclient Start or stop dynamic DNS service
#
export COLUMNS=9999
case "$1" in
start)
/usr/sbin/ddclient -syslog
;;
stop)
killall -q ddclient
;;
restart)
$0 stop
$0 start
;;
*)
echo "Usage: ddclient start|stop|restart"
exit 1
;;
esac
exit 0
#End of file