inadyn: bump to version 2.0

Signed-off-by: Ryan Coe <bluemrp9@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
Ryan Coe 2016-10-17 13:14:30 -07:00 committed by Thomas Petazzoni
parent 1b974425d1
commit eb34bf9f6e
4 changed files with 21 additions and 12 deletions

View File

@ -2,6 +2,8 @@ config BR2_PACKAGE_INADYN
bool "inadyn" bool "inadyn"
depends on BR2_USE_MMU # Uses fork() depends on BR2_USE_MMU # Uses fork()
depends on !BR2_STATIC_LIBS # dlopen() depends on !BR2_STATIC_LIBS # dlopen()
select BR2_PACKAGE_LIBCONFUSE
select BR2_PACKAGE_LIBITE
help help
INADYN is a free DynDNS client. It gives the possibility INADYN is a free DynDNS client. It gives the possibility
to have your own fixed hostname registered on the internet, to have your own fixed hostname registered on the internet,

View File

@ -1,11 +1,11 @@
# Basic configuration file for inadyn # Basic configuration file for inadyn
# #
# /etc/inadyn.conf # /etc/inadyn.conf
pidfile /var/run/inadyn.pid iface = eth0
update_period_sec 600 # Check for a new IP every 600 seconds period = 300
username test # replace 'test' with your username
password test # replace 'test' with your password
dyndns_system default@dyndns.org # replace w/ your provider
alias test.homeip.net provider default@dyndns.org {
# replace 'test.homeip.net' with yourdomainname for actual (non-test) use username = test
password = test
hostname = test
}

View File

@ -1,2 +1,2 @@
# From https://github.com/troglobit/inadyn/releases/download/1.99.12/inadyn-1.99.12.tar.xz.md5 # Locally computed
md5 a620c9eab9cd31c8923e7264b08376f3 inadyn-1.99.12.tar.xz sha256 763c53eb3856decfe8b921cab8a54b428b079a62264fbcf6c89690713d63529a inadyn-v2.0.tar.gz

View File

@ -4,11 +4,18 @@
# #
################################################################################ ################################################################################
INADYN_VERSION = 1.99.12 INADYN_VERSION = v2.0
INADYN_SITE = https://github.com/troglobit/inadyn/releases/download/$(INADYN_VERSION) INADYN_SITE = $(call github,troglobit,inadyn,$(INADYN_VERSION))
INADYN_SOURCE = inadyn-$(INADYN_VERSION).tar.xz
INADYN_LICENSE = GPLv2+ INADYN_LICENSE = GPLv2+
INADYN_LICENSE_FILES = COPYING INADYN_LICENSE_FILES = COPYING
INADYN_AUTORECONF = YES
INADYN_DEPENDENCIES = host-pkgconf libconfuse libite
# Needed for autoreconf to work properly, see ./autogen.sh
define INADYN_FIXUP_M4_DIR
mkdir $(@D)/m4
endef
INADYN_POST_EXTRACT_HOOKS += INADYN_FIXUP_M4_DIR
ifeq ($(BR2_PACKAGE_OPENSSL),y) ifeq ($(BR2_PACKAGE_OPENSSL),y)
INADYN_CONF_OPTS += --enable-openssl INADYN_CONF_OPTS += --enable-openssl