diff options
author | Bruno Randolf <br1@subnet.at> | 2004-10-21 14:14:49 +0000 |
---|---|---|
committer | Bruno Randolf <br1@subnet.at> | 2004-10-21 14:14:49 +0000 |
commit | 2519a2005d638dbeec85f91b741122a0558b3f34 (patch) | |
tree | afe687506089db9cfd0369535401d65bb2ae08b0 | |
parent | 2ec38dd4878240557f44317498b0a743181677fc (diff) |
Merge bk://openembedded@openembedded.bkbits.net/packages
into null.(none):/data/mtx/oe/oe.write/packages
2004/10/21 16:12:55+02:00 (none)!br1
ddclient: new ip-up script, depend on necessary perl-modules
BKrev: 4177c459eJrdl7oN8Xs2vjoXUrHfCA
-rw-r--r-- | ddclient/ddclient_3.6.3.oe | 7 | ||||
-rw-r--r-- | ddclient/files/ip-up | 0 |
2 files changed, 4 insertions, 3 deletions
diff --git a/ddclient/ddclient_3.6.3.oe b/ddclient/ddclient_3.6.3.oe index d0eec48be9..3c5d27a441 100644 --- a/ddclient/ddclient_3.6.3.oe +++ b/ddclient/ddclient_3.6.3.oe @@ -2,15 +2,16 @@ SECTION = "console/network" DESCRIPTION = "Ddclient is a Perl client used to update dynamic DNS entries for accounts on Dynamic DNS Network Services" HOMEPAGE = "http://ddclient.sourceforge.net/" MAINTAINER = "Bruno Randolf <bruno.randolf@4g-systems.biz>" -SRC_URI = "${SOURCEFORGE_MIRROR}/ddclient/ddclient.tar.bz2" -RDEPENDS = "perl" +SRC_URI = "${SOURCEFORGE_MIRROR}/ddclient/ddclient.tar.bz2 \ + file://ip-up" +RDEPENDS = "perl perl-module-strict perl-module-getopt-long perl-module-vars perl-module-warnings-register perl-module-warnings perl-module-carp perl-module-exporter perl-module-constant perl-module-exporter-heavy perl-module-sys-hostname perl-module-xsloader perl-module-autoloader perl-module-io-socket perl-module-io-handle perl-module-symbol perl-module-selectsaver perl-module-io perl-module-socket perl-module-errno perl-module-config perl-module-io-socket-inet perl-module-io-socket-unix perl-module-integer" do_install() { install -d ${D}/${sbindir} ${D}/${sysconfdir} ${D}/${sysconfdir}/init.d install -d ${D}/${sysconfdir}/ppp/ip-up.d/ install -d ${D}/${docdir}/ddclient install -m 755 ${S}/ddclient ${D}/${sbindir} install ${S}/sample-etc_ddclient.conf ${D}/${sysconfdir}/ddclient.conf - install -m 755 ${S}/sample-etc_ppp_ip-up.local ${D}/${sysconfdir}/ppp/ip-up.d/ddclient + install -m 755 ${WORKDIR}/ip-up ${D}/${sysconfdir}/ppp/ip-up.d/ddclient install -m 755 ${S}/sample-etc_rc.d_init.d_ddclient ${D}/${sysconfdir}/init.d/ddclient install ${S}/README* ${D}/${docdir}/ddclient install ${S}/COPY* ${D}/${docdir}/ddclient diff --git a/ddclient/files/ip-up b/ddclient/files/ip-up new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/ddclient/files/ip-up |