diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2021-07-29 17:04:53 +0200 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2021-08-03 10:21:25 -0700 |
commit | c61dc077bbd81260e4f167fa2251643ba0ba6974 (patch) | |
tree | 66c3243f8f64ae60f66f70a16e8128c247254a65 /meta-networking/recipes-daemons/ippool | |
parent | c5f7cfb8db54cfa4257797db5bd87828dea43296 (diff) | |
download | meta-openembedded-c61dc077bbd81260e4f167fa2251643ba0ba6974.tar.gz |
Convert to new override syntax
This is the result of automated script (0.9.1) conversion:
oe-core/scripts/contrib/convert-overrides.py .
converting the metadata to use ":" as the override character instead of "_".
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-networking/recipes-daemons/ippool')
-rw-r--r-- | meta-networking/recipes-daemons/ippool/ippool_1.3.bb | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/meta-networking/recipes-daemons/ippool/ippool_1.3.bb b/meta-networking/recipes-daemons/ippool/ippool_1.3.bb index 3554e688a..19fbd0fa2 100644 --- a/meta-networking/recipes-daemons/ippool/ippool_1.3.bb +++ b/meta-networking/recipes-daemons/ippool/ippool_1.3.bb | |||
@@ -36,7 +36,7 @@ SRC_URI[sha256sum] = "d3eab7d6cad5da8ccc9d1e31d5303e27a39622c07bdb8fa3618eea3144 | |||
36 | inherit systemd | 36 | inherit systemd |
37 | 37 | ||
38 | DEPENDS = "readline ppp ncurses gzip-native rpcsvc-proto-native libtirpc" | 38 | DEPENDS = "readline ppp ncurses gzip-native rpcsvc-proto-native libtirpc" |
39 | RDEPENDS_${PN} = "rpcbind" | 39 | RDEPENDS:${PN} = "rpcbind" |
40 | 40 | ||
41 | EXTRA_OEMAKE = "CC='${CC}' AS='${AS}' LD='${LD}' AR='${AR}' NM='${NM}' STRIP='${STRIP}'" | 41 | EXTRA_OEMAKE = "CC='${CC}' AS='${AS}' LD='${LD}' AR='${AR}' NM='${NM}' STRIP='${STRIP}'" |
42 | EXTRA_OEMAKE += "PPPD_VERSION=${PPPD_VERSION} SYS_LIBDIR=${libdir}" | 42 | EXTRA_OEMAKE += "PPPD_VERSION=${PPPD_VERSION} SYS_LIBDIR=${libdir}" |
@@ -45,11 +45,11 @@ EXTRA_OEMAKE += "IPPOOL_TEST=y" | |||
45 | 45 | ||
46 | CPPFLAGS += "${SELECTED_OPTIMIZATION} -I${STAGING_INCDIR}/tirpc" | 46 | CPPFLAGS += "${SELECTED_OPTIMIZATION} -I${STAGING_INCDIR}/tirpc" |
47 | 47 | ||
48 | SYSTEMD_SERVICE_${PN} = "ippool.service" | 48 | SYSTEMD_SERVICE:${PN} = "ippool.service" |
49 | SYSTEMD_AUTO_ENABLE = "disable" | 49 | SYSTEMD_AUTO_ENABLE = "disable" |
50 | 50 | ||
51 | 51 | ||
52 | do_compile_prepend() { | 52 | do_compile:prepend() { |
53 | # fix the CFLAGS= and CPPFLAGS= in main Makefile, to have the extra CFLAGS in env | 53 | # fix the CFLAGS= and CPPFLAGS= in main Makefile, to have the extra CFLAGS in env |
54 | sed -i -e "s/^CFLAGS=/CFLAGS+=/" ${S}/Makefile | 54 | sed -i -e "s/^CFLAGS=/CFLAGS+=/" ${S}/Makefile |
55 | sed -i -e "s/^CPPFLAGS=/CPPFLAGS+=/" ${S}/Makefile | 55 | sed -i -e "s/^CPPFLAGS=/CPPFLAGS+=/" ${S}/Makefile |
@@ -79,12 +79,12 @@ do_install() { | |||
79 | 79 | ||
80 | PACKAGES =+ "${PN}-test" | 80 | PACKAGES =+ "${PN}-test" |
81 | 81 | ||
82 | FILES_${PN} += "${libdir}/pppd/${PPPD_VERSION}/ippool.so" | 82 | FILES:${PN} += "${libdir}/pppd/${PPPD_VERSION}/ippool.so" |
83 | FILES_${PN}-dbg += "${libdir}/pppd/${PPPD_VERSION}/.debug/ippool.so" | 83 | FILES:${PN}-dbg += "${libdir}/pppd/${PPPD_VERSION}/.debug/ippool.so" |
84 | FILES_${PN}-test = "/opt/${BPN}" | 84 | FILES:${PN}-test = "/opt/${BPN}" |
85 | 85 | ||
86 | # needs tcl to run tests | 86 | # needs tcl to run tests |
87 | RDEPENDS_${PN}-test += "tcl ${BPN}" | 87 | RDEPENDS:${PN}-test += "tcl ${BPN}" |
88 | 88 | ||
89 | PPPD_VERSION="${@get_ppp_version(d)}" | 89 | PPPD_VERSION="${@get_ppp_version(d)}" |
90 | 90 | ||