diff options
author | Michael Lauer <mickey@vanille-media.de> | 2008-02-16 12:54:10 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2008-02-16 12:54:10 +0000 |
commit | 13e4189a1ce3f4983fc4747de596bf3ae6c5969c (patch) | |
tree | 226450d1b043a6f757d1d7efbefcc775ce05c9fe /packages/ifplugd | |
parent | 5c75b7c96efd3f1b1293e274eaf6bacbc6956766 (diff) |
ifplugd 0.25 remove nylonisms and bashisms, remove 0.20, closes #1587
Diffstat (limited to 'packages/ifplugd')
-rw-r--r-- | packages/ifplugd/files/nobash.patch | 8 | ||||
-rw-r--r-- | packages/ifplugd/ifplugd_0.20.bb | 13 | ||||
-rw-r--r-- | packages/ifplugd/ifplugd_0.25.bb | 14 |
3 files changed, 16 insertions, 19 deletions
diff --git a/packages/ifplugd/files/nobash.patch b/packages/ifplugd/files/nobash.patch new file mode 100644 index 0000000000..8d0be50925 --- /dev/null +++ b/packages/ifplugd/files/nobash.patch @@ -0,0 +1,8 @@ +--- ifplugd-0.28/conf/ifplugd.init.in.orig 2007-05-24 19:00:03.000000000 +0000 ++++ ifplugd-0.28/conf/ifplugd.init.in 2007-05-24 19:00:09.000000000 +0000 +@@ -1,4 +1,4 @@ +-#!/bin/bash ++#!/bin/sh + # $Id: ifplugd.init.in 86 2004-01-26 15:34:24Z lennart $ + + # This file is part of ifplugd. diff --git a/packages/ifplugd/ifplugd_0.20.bb b/packages/ifplugd/ifplugd_0.20.bb deleted file mode 100644 index 18e9a66c94..0000000000 --- a/packages/ifplugd/ifplugd_0.20.bb +++ /dev/null @@ -1,13 +0,0 @@ -SECTION = "console/network" -DESCRIPTION = "ifplugd is a Linux daemon which will automatically configure your ethernet device when a cable is plugged in and automatically unconfigure it if the cable is pulled." -DEPENDS = "libdaemon" -LICENSE = "GPL" - -SRC_URI = "http://0pointer.de/lennart/projects/ifplugd/ifplugd-${PV}.tar.gz" - -inherit autotools update-rc.d - -EXTRA_OECONF = "--disable-lynx" - -INITSCRIPT_NAME = "ifplugd" -INITSCRIPT_PARAMS = "defaults"
\ No newline at end of file diff --git a/packages/ifplugd/ifplugd_0.25.bb b/packages/ifplugd/ifplugd_0.25.bb index 55c2be0ced..ca7f219165 100644 --- a/packages/ifplugd/ifplugd_0.25.bb +++ b/packages/ifplugd/ifplugd_0.25.bb @@ -1,12 +1,14 @@ -SECTION = "console/network" -DESCRIPTION = "ifplugd is a Linux daemon which will automatically configure your ethernet device when a cable is plugged in and automatically unconfigure it if the cable is pulled." +DESCRIPTION = "ifplugd is a Linux daemon which will automatically configure your ethernet device \ +when a cable is plugged in and automatically unconfigure it if the cable is pulled." HOMEPAGE = "http://0pointer.de/lennart/projects/ifplugd/" +SECTION = "network" DEPENDS = "libdaemon" LICENSE = "GPL" +PR = "r1" -SRC_URI = "http://0pointer.de/lennart/projects/ifplugd/ifplugd-${PV}.tar.gz" - -SRC_URI_append_nylon = " file://kernel-types.patch;patch=1" +SRC_URI = "http://0pointer.de/lennart/projects/ifplugd/ifplugd-${PV}.tar.gz \ + file://kernel-types.patch;patch=1 \ + file://nobash.patch;patch=1" inherit autotools update-rc.d pkgconfig @@ -15,4 +17,4 @@ EXTRA_OECONF = "--disable-lynx" INITSCRIPT_NAME = "ifplugd" INITSCRIPT_PARAMS = "defaults" -CONFFILES_${PN}_nylon = "${sysconfdir}/ifplugd/ifplugd.conf" +CONFFILES_${PN} = "${sysconfdir}/ifplugd/ifplugd.conf" |