diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-03-13 13:05:59 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-03-13 23:18:48 +0000 |
commit | 29d054a9d78fb5aa299d2224e61d2ad1c3eb07be (patch) | |
tree | 1eb6c40b46f19c21a69203a619aecf97bc573c44 /meta/recipes-connectivity/ppp | |
parent | 0d9c60f4972fb2f23fbf7e36ddfb50713011c5c4 (diff) | |
download | poky-29d054a9d78fb5aa299d2224e61d2ad1c3eb07be.tar.gz |
ppp: Clean up PACKAGES vs. variable mismatch and drop unused RDEPENDS
The RPDEPENDS format is wrong and couldn't have been doing anything useful. The
mismatch between PACKAGES and the DESCRIPTION_* and FILES_* variable names could
confuse the system under certain conditions so this is a good cleanup to make.
(From OE-Core rev: 24f7351f6ac0408a1682893faf56b9145d698c1b)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-connectivity/ppp')
-rw-r--r-- | meta/recipes-connectivity/ppp/ppp_2.4.5.bb | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/meta/recipes-connectivity/ppp/ppp_2.4.5.bb b/meta/recipes-connectivity/ppp/ppp_2.4.5.bb index 13216e3fdc..9232e6fdce 100644 --- a/meta/recipes-connectivity/ppp/ppp_2.4.5.bb +++ b/meta/recipes-connectivity/ppp/ppp_2.4.5.bb | |||
@@ -52,7 +52,7 @@ do_install_append () { | |||
52 | } | 52 | } |
53 | 53 | ||
54 | CONFFILES_${PN} = "${sysconfdir}/ppp/pap-secrets ${sysconfdir}/ppp/chap-secrets ${sysconfdir}/ppp/options" | 54 | CONFFILES_${PN} = "${sysconfdir}/ppp/pap-secrets ${sysconfdir}/ppp/chap-secrets ${sysconfdir}/ppp/options" |
55 | PACKAGES =+ "ppp-oa ppp-oe ppp-radius ppp-winbind ppp-minconn ppp-password ppp-l2tp ppp-tools" | 55 | PACKAGES =+ "${PN}-oa ${PN}-oe ${PN}-radius ${PN}-winbind ${PN}-minconn ${PN}-password ${PN}-l2tp ${PN}-tools" |
56 | FILES_${PN} = "${sysconfdir} ${bindir} ${sbindir}/chat ${sbindir}/pppd" | 56 | FILES_${PN} = "${sysconfdir} ${bindir} ${sbindir}/chat ${sbindir}/pppd" |
57 | FILES_${PN}_nylon = "${sysconfdir} ${bindir} ${sbindir}/chat ${sbindir}/pppd ${sbindir}/tdbread" | 57 | FILES_${PN}_nylon = "${sysconfdir} ${bindir} ${sbindir}/chat ${sbindir}/pppd ${sbindir}/tdbread" |
58 | FILES_${PN}-dbg += "${libdir}/pppd/${PV}/.debug" | 58 | FILES_${PN}-dbg += "${libdir}/pppd/${PV}/.debug" |
@@ -64,15 +64,14 @@ FILES_${PN}-minconn = "${libdir}/pppd/${PV}/minconn.so" | |||
64 | FILES_${PN}-password = "${libdir}/pppd/${PV}/pass*.so" | 64 | FILES_${PN}-password = "${libdir}/pppd/${PV}/pass*.so" |
65 | FILES_${PN}-l2tp = "${libdir}/pppd/${PV}/*l2tp.so" | 65 | FILES_${PN}-l2tp = "${libdir}/pppd/${PV}/*l2tp.so" |
66 | FILES_${PN}-tools = "${sbindir}/pppstats ${sbindir}/pppdump" | 66 | FILES_${PN}-tools = "${sbindir}/pppstats ${sbindir}/pppdump" |
67 | DESCRIPTION_ppp-oa = "Plugin for PPP needed for PPP-over-ATM" | 67 | DESCRIPTION_${PN}-oa = "Plugin for PPP needed for PPP-over-ATM" |
68 | DESCRIPTION_ppp-oe = "Plugin for PPP needed for PPP-over-Ethernet" | 68 | DESCRIPTION_${PN}-oe = "Plugin for PPP needed for PPP-over-Ethernet" |
69 | DESCRIPTION_ppp-radius = "Plugin for PPP that are related to RADIUS" | 69 | DESCRIPTION_${PN}-radius = "Plugin for PPP that are related to RADIUS" |
70 | DESCRIPTION_ppp-winbind = "Plugin for PPP to authenticate against Samba or Windows" | 70 | DESCRIPTION_${PN}-winbind = "Plugin for PPP to authenticate against Samba or Windows" |
71 | DESCRIPTION_ppp-minconn = "Plugin for PPP to specify a minimum connect time before the idle timeout applies" | 71 | DESCRIPTION_${PN}-minconn = "Plugin for PPP to specify a minimum connect time before the idle timeout applies" |
72 | DESCRIPTION_ppp-password = "Plugin for PPP to get passwords via a pipe" | 72 | DESCRIPTION_${PN}-password = "Plugin for PPP to get passwords via a pipe" |
73 | DESCRIPTION_ppp-l2tp = "Plugin for PPP for l2tp support" | 73 | DESCRIPTION_${PN}-l2tp = "Plugin for PPP for l2tp support" |
74 | DESCRIPTION_ppp-tools = "The pppdump and pppstats utitilities" | 74 | DESCRIPTION_${PN}-tools = "The pppdump and pppstats utitilities" |
75 | RDEPENDS_ppp_minconn += "libpcap0.8" | ||
76 | 75 | ||
77 | pkg_postinst_${PN}() { | 76 | pkg_postinst_${PN}() { |
78 | if test "x$D" != "x"; then | 77 | if test "x$D" != "x"; then |