diff options
author | Khem Raj <raj.khem@gmail.com> | 2024-05-13 14:16:55 -0700 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2024-05-23 08:44:44 -0700 |
commit | ffc64e9c6fee0af7eea3466135416d011172a5e6 (patch) | |
tree | b9effa069d9af3c63d6f3a41caff6b887450522c | |
parent | a90f89dbc7eff2ae83bab6a6676f4737c0b48a8d (diff) | |
download | meta-openembedded-ffc64e9c6fee0af7eea3466135416d011172a5e6.tar.gz |
recipes: Start WORKDIR -> UNPACKDIR transition
Replace references of WORKDIR with UNPACKDIR where it makes sense to do
so in preparation for changing the default value of UNPACKDIR.
Signed-off-by: Khem Raj <raj.khem@gmail.com>
198 files changed, 433 insertions, 432 deletions
diff --git a/meta-filesystems/recipes-filesystems/owfs/owfs_3.2p3.bb b/meta-filesystems/recipes-filesystems/owfs/owfs_3.2p3.bb index b641e4c24..7768a734d 100644 --- a/meta-filesystems/recipes-filesystems/owfs/owfs_3.2p3.bb +++ b/meta-filesystems/recipes-filesystems/owfs/owfs_3.2p3.bb | |||
@@ -37,8 +37,8 @@ EXTRA_OECONF = " \ | |||
37 | do_install:prepend() { | 37 | do_install:prepend() { |
38 | install -d ${D}${sysconfdir}/default/ | 38 | install -d ${D}${sysconfdir}/default/ |
39 | install -d ${D}${sysconfdir}/init.d/ | 39 | install -d ${D}${sysconfdir}/init.d/ |
40 | install -m 0755 ${WORKDIR}/owhttpd ${D}${sysconfdir}/init.d/owhttpd | 40 | install -m 0755 ${UNPACKDIR}/owhttpd ${D}${sysconfdir}/init.d/owhttpd |
41 | install -m 0755 ${WORKDIR}/owserver ${D}${sysconfdir}/init.d/owserver | 41 | install -m 0755 ${UNPACKDIR}/owserver ${D}${sysconfdir}/init.d/owserver |
42 | } | 42 | } |
43 | 43 | ||
44 | PACKAGES =+ "owftpd owhttpd owserver owshell libowcapi libow libownet owmon owtap" | 44 | PACKAGES =+ "owftpd owhttpd owserver owshell libowcapi libow libownet owmon owtap" |
diff --git a/meta-filesystems/recipes-support/fuse/fuse_2.9.9.bb b/meta-filesystems/recipes-support/fuse/fuse_2.9.9.bb index cee4879ee..6f613e9cd 100644 --- a/meta-filesystems/recipes-support/fuse/fuse_2.9.9.bb +++ b/meta-filesystems/recipes-support/fuse/fuse_2.9.9.bb | |||
@@ -68,7 +68,7 @@ do_install:append() { | |||
68 | # Install systemd related configuration file | 68 | # Install systemd related configuration file |
69 | if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then | 69 | if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then |
70 | install -d ${D}${sysconfdir}/modules-load.d | 70 | install -d ${D}${sysconfdir}/modules-load.d |
71 | install -m 0644 ${WORKDIR}/fuse.conf ${D}${sysconfdir}/modules-load.d | 71 | install -m 0644 ${UNPACKDIR}/fuse.conf ${D}${sysconfdir}/modules-load.d |
72 | fi | 72 | fi |
73 | } | 73 | } |
74 | 74 | ||
diff --git a/meta-filesystems/recipes-utils/aufs-util/aufs-util_git.bb b/meta-filesystems/recipes-utils/aufs-util/aufs-util_git.bb index ad846af47..4d2b90980 100644 --- a/meta-filesystems/recipes-utils/aufs-util/aufs-util_git.bb +++ b/meta-filesystems/recipes-utils/aufs-util/aufs-util_git.bb | |||
@@ -33,7 +33,7 @@ do_configure:prepend() { | |||
33 | 33 | ||
34 | do_configure:append () { | 34 | do_configure:append () { |
35 | install -d ${S}/include/linux/ | 35 | install -d ${S}/include/linux/ |
36 | cp ${WORKDIR}/aufs_type.h ${S}/include/linux/ | 36 | cp ${UNPACKDIR}/aufs_type.h ${S}/include/linux/ |
37 | sed -i -e 's;__user;;' ${S}/include/linux/aufs_type.h | 37 | sed -i -e 's;__user;;' ${S}/include/linux/aufs_type.h |
38 | } | 38 | } |
39 | 39 | ||
diff --git a/meta-filesystems/recipes-utils/xfstests/xfstests_2024.03.03.bb b/meta-filesystems/recipes-utils/xfstests/xfstests_2024.03.03.bb index c8a80523d..9e82b0f74 100644 --- a/meta-filesystems/recipes-utils/xfstests/xfstests_2024.03.03.bb +++ b/meta-filesystems/recipes-utils/xfstests/xfstests_2024.03.03.bb | |||
@@ -58,10 +58,10 @@ do_install() { | |||
58 | 58 | ||
59 | unionmount_target_dir=${D}${prefix}/xfstests/unionmount-testsuite | 59 | unionmount_target_dir=${D}${prefix}/xfstests/unionmount-testsuite |
60 | install -d $unionmount_target_dir/tests | 60 | install -d $unionmount_target_dir/tests |
61 | install ${WORKDIR}/unionmount-testsuite/tests/* -t $unionmount_target_dir/tests | 61 | install ${UNPACKDIR}/unionmount-testsuite/tests/* -t $unionmount_target_dir/tests |
62 | install ${WORKDIR}/unionmount-testsuite/*.py -t $unionmount_target_dir | 62 | install ${UNPACKDIR}/unionmount-testsuite/*.py -t $unionmount_target_dir |
63 | install ${WORKDIR}/unionmount-testsuite/run -t $unionmount_target_dir | 63 | install ${UNPACKDIR}/unionmount-testsuite/run -t $unionmount_target_dir |
64 | install ${WORKDIR}/unionmount-testsuite/README -t $unionmount_target_dir | 64 | install ${UNPACKDIR}/unionmount-testsuite/README -t $unionmount_target_dir |
65 | } | 65 | } |
66 | 66 | ||
67 | FILES:${PN} += "${prefix}/xfstests" | 67 | FILES:${PN} += "${prefix}/xfstests" |
diff --git a/meta-gnome/recipes-extended/polkit-gnome/polkit-gnome_0.105.bb b/meta-gnome/recipes-extended/polkit-gnome/polkit-gnome_0.105.bb index e0e4a59d2..af1a7d867 100644 --- a/meta-gnome/recipes-extended/polkit-gnome/polkit-gnome_0.105.bb +++ b/meta-gnome/recipes-extended/polkit-gnome/polkit-gnome_0.105.bb | |||
@@ -24,6 +24,6 @@ S = "${WORKDIR}/git" | |||
24 | 24 | ||
25 | do_install:append() { | 25 | do_install:append() { |
26 | install -d ${D}${datadir}/applications | 26 | install -d ${D}${datadir}/applications |
27 | install -m644 ${WORKDIR}/polkit-gnome-authentication-agent-1.desktop \ | 27 | install -m644 ${UNPACKDIR}/polkit-gnome-authentication-agent-1.desktop \ |
28 | ${D}${datadir}/applications | 28 | ${D}${datadir}/applications |
29 | } | 29 | } |
diff --git a/meta-gnome/recipes-gnome/devilspie/devilspie2_0.44.bb b/meta-gnome/recipes-gnome/devilspie/devilspie2_0.44.bb index 90c12efad..9e641daa5 100644 --- a/meta-gnome/recipes-gnome/devilspie/devilspie2_0.44.bb +++ b/meta-gnome/recipes-gnome/devilspie/devilspie2_0.44.bb | |||
@@ -29,7 +29,7 @@ do_compile() { | |||
29 | do_install() { | 29 | do_install() { |
30 | oe_runmake DESTDIR="${D}" PREFIX="${prefix}" install | 30 | oe_runmake DESTDIR="${D}" PREFIX="${prefix}" install |
31 | install -d ${D}/${sysconfdir}/devilspie2 | 31 | install -d ${D}/${sysconfdir}/devilspie2 |
32 | install -m 644 ${WORKDIR}/default.lua ${D}/${sysconfdir}/devilspie2 | 32 | install -m 644 ${UNPACKDIR}/default.lua ${D}/${sysconfdir}/devilspie2 |
33 | install -d ${D}/${sysconfdir}/xdg/autostart | 33 | install -d ${D}/${sysconfdir}/xdg/autostart |
34 | install -m 644 ${WORKDIR}/devilspie2.desktop ${D}/${sysconfdir}/xdg/autostart | 34 | install -m 644 ${UNPACKDIR}/devilspie2.desktop ${D}/${sysconfdir}/xdg/autostart |
35 | } | 35 | } |
diff --git a/meta-gnome/recipes-gnome/evolution-data-server/evolution-data-server.bb b/meta-gnome/recipes-gnome/evolution-data-server/evolution-data-server.bb index 103bad1b6..fc1925314 100644 --- a/meta-gnome/recipes-gnome/evolution-data-server/evolution-data-server.bb +++ b/meta-gnome/recipes-gnome/evolution-data-server/evolution-data-server.bb | |||
@@ -58,7 +58,7 @@ LDFLAGS += "-lpthread -lgmodule-2.0 -lgthread-2.0" | |||
58 | GI_DATA_ENABLED:libc-musl="False" | 58 | GI_DATA_ENABLED:libc-musl="False" |
59 | 59 | ||
60 | do_configure:append () { | 60 | do_configure:append () { |
61 | cp ${WORKDIR}/iconv-detect.h ${S}/src | 61 | cp ${UNPACKDIR}/iconv-detect.h ${S}/src |
62 | # avoid writing perl-native path into csv2vcard shebang | 62 | # avoid writing perl-native path into csv2vcard shebang |
63 | sed -i "s|@PERL@|${bindir}/perl|" ${S}/src/tools/addressbook-export/csv2vcard.in | 63 | sed -i "s|@PERL@|${bindir}/perl|" ${S}/src/tools/addressbook-export/csv2vcard.in |
64 | } | 64 | } |
diff --git a/meta-multimedia/recipes-dvb/oscam/oscam_svn.bb b/meta-multimedia/recipes-dvb/oscam/oscam_svn.bb index 8fbf9ab2c..0a9a7499a 100644 --- a/meta-multimedia/recipes-dvb/oscam/oscam_svn.bb +++ b/meta-multimedia/recipes-dvb/oscam/oscam_svn.bb | |||
@@ -11,7 +11,7 @@ SRC_URI = "svn://www.streamboard.tv/svn/oscam;module=trunk;protocol=http \ | |||
11 | SRCREV = "11718" | 11 | SRCREV = "11718" |
12 | PV = "1.10+" | 12 | PV = "1.10+" |
13 | 13 | ||
14 | S = "${WORKDIR}/trunk" | 14 | S = "${UNPACKDIR}/trunk" |
15 | 15 | ||
16 | inherit cmake | 16 | inherit cmake |
17 | 17 | ||
diff --git a/meta-multimedia/recipes-multimedia/dvb-apps/dvb-apps_1.1.1.20140321.bb b/meta-multimedia/recipes-multimedia/dvb-apps/dvb-apps_1.1.1.20140321.bb index 542ad3487..f9115d819 100644 --- a/meta-multimedia/recipes-multimedia/dvb-apps/dvb-apps_1.1.1.20140321.bb +++ b/meta-multimedia/recipes-multimedia/dvb-apps/dvb-apps_1.1.1.20140321.bb | |||
@@ -33,7 +33,7 @@ do_install() { | |||
33 | chmod a+rx ${D}/${libdir}/*.so* | 33 | chmod a+rx ${D}/${libdir}/*.so* |
34 | cp -R --no-dereference --preserve=mode,links ${S}/util/szap/channels-conf* ${D}/${docdir}/dvb-apps/szap/ | 34 | cp -R --no-dereference --preserve=mode,links ${S}/util/szap/channels-conf* ${D}/${docdir}/dvb-apps/szap/ |
35 | cp -R --no-dereference --preserve=mode,links ${S}/util/szap/README ${D}/${docdir}/dvb-apps/szap/ | 35 | cp -R --no-dereference --preserve=mode,links ${S}/util/szap/README ${D}/${docdir}/dvb-apps/szap/ |
36 | cp -R --no-dereference --preserve=mode,links ${WORKDIR}/dvb-scan-table/* ${D}/usr/share/dvb | 36 | cp -R --no-dereference --preserve=mode,links ${UNPACKDIR}/dvb-scan-table/* ${D}/usr/share/dvb |
37 | } | 37 | } |
38 | 38 | ||
39 | PACKAGES =+ "dvb-evtest dvb-evtest-dbg \ | 39 | PACKAGES =+ "dvb-evtest dvb-evtest-dbg \ |
diff --git a/meta-multimedia/recipes-multimedia/libdvbcsa/libdvbcsa_1.1.0.bb b/meta-multimedia/recipes-multimedia/libdvbcsa/libdvbcsa_1.1.0.bb index 5de717c28..1e5381bb2 100644 --- a/meta-multimedia/recipes-multimedia/libdvbcsa/libdvbcsa_1.1.0.bb +++ b/meta-multimedia/recipes-multimedia/libdvbcsa/libdvbcsa_1.1.0.bb | |||
@@ -15,5 +15,5 @@ inherit autotools lib_package pkgconfig | |||
15 | 15 | ||
16 | do_install:append() { | 16 | do_install:append() { |
17 | install -D -m 0644 ${S}/src/dvbcsa/dvbcsa.h ${D}${includedir}/dvbcsa/dvbcsa.h | 17 | install -D -m 0644 ${S}/src/dvbcsa/dvbcsa.h ${D}${includedir}/dvbcsa/dvbcsa.h |
18 | install -D -m 0644 ${WORKDIR}/libdvbcsa.pc ${D}${libdir}/pkgconfig/libdvbcsa.pc | 18 | install -D -m 0644 ${UNPACKDIR}/libdvbcsa.pc ${D}${libdir}/pkgconfig/libdvbcsa.pc |
19 | } | 19 | } |
diff --git a/meta-multimedia/recipes-multimedia/minidlna/minidlna.inc b/meta-multimedia/recipes-multimedia/minidlna/minidlna.inc index 4959a3c8d..aabf81dce 100644 --- a/meta-multimedia/recipes-multimedia/minidlna/minidlna.inc +++ b/meta-multimedia/recipes-multimedia/minidlna/minidlna.inc | |||
@@ -28,11 +28,11 @@ do_install:append(){ | |||
28 | 28 | ||
29 | # Systemd script | 29 | # Systemd script |
30 | install -d ${D}${nonarch_base_libdir}/systemd/system | 30 | install -d ${D}${nonarch_base_libdir}/systemd/system |
31 | install -m 0755 ${WORKDIR}/minidlna.service ${D}${nonarch_base_libdir}/systemd/system | 31 | install -m 0755 ${UNPACKDIR}/minidlna.service ${D}${nonarch_base_libdir}/systemd/system |
32 | 32 | ||
33 | # Sysvinit script | 33 | # Sysvinit script |
34 | install -d ${D}${sysconfdir}/init.d | 34 | install -d ${D}${sysconfdir}/init.d |
35 | install -m 0755 ${WORKDIR}/minidlna-daemon.init.d ${D}${sysconfdir}/init.d/minidlna | 35 | install -m 0755 ${UNPACKDIR}/minidlna-daemon.init.d ${D}${sysconfdir}/init.d/minidlna |
36 | 36 | ||
37 | } | 37 | } |
38 | 38 | ||
diff --git a/meta-multimedia/recipes-multimedia/musicpd/mpd_0.23.14.bb b/meta-multimedia/recipes-multimedia/musicpd/mpd_0.23.14.bb index f30fffebe..33155da7d 100644 --- a/meta-multimedia/recipes-multimedia/musicpd/mpd_0.23.14.bb +++ b/meta-multimedia/recipes-multimedia/musicpd/mpd_0.23.14.bb | |||
@@ -76,7 +76,7 @@ do_install:append() { | |||
76 | ${D}/${localstatedir}/lib/mpd/music | 76 | ${D}/${localstatedir}/lib/mpd/music |
77 | 77 | ||
78 | install -d ${D}/${sysconfdir} | 78 | install -d ${D}/${sysconfdir} |
79 | install -m 644 ${WORKDIR}/mpd.conf.in ${D}/${sysconfdir}/mpd.conf | 79 | install -m 644 ${UNPACKDIR}/mpd.conf.in ${D}/${sysconfdir}/mpd.conf |
80 | sed -i \ | 80 | sed -i \ |
81 | -e 's|%music_directory%|${localstatedir}/lib/mpd/music|' \ | 81 | -e 's|%music_directory%|${localstatedir}/lib/mpd/music|' \ |
82 | -e 's|%playlist_directory%|${localstatedir}/lib/mpd/playlists|' \ | 82 | -e 's|%playlist_directory%|${localstatedir}/lib/mpd/playlists|' \ |
diff --git a/meta-multimedia/recipes-multimedia/mycroft/mycroft_19.8.1.bb b/meta-multimedia/recipes-multimedia/mycroft/mycroft_19.8.1.bb index 444bc1cf3..8bedc693b 100644 --- a/meta-multimedia/recipes-multimedia/mycroft/mycroft_19.8.1.bb +++ b/meta-multimedia/recipes-multimedia/mycroft/mycroft_19.8.1.bb | |||
@@ -33,17 +33,17 @@ do_install() { | |||
33 | rm -r ${D}${libdir}/mycroft/.git | 33 | rm -r ${D}${libdir}/mycroft/.git |
34 | 34 | ||
35 | # Install the dev opts so it doesn't ask us on initial setup. | 35 | # Install the dev opts so it doesn't ask us on initial setup. |
36 | install -m 644 ${WORKDIR}/dev_opts.json ${D}${libdir}/mycroft/.dev_opts.json | 36 | install -m 644 ${UNPACKDIR}/dev_opts.json ${D}${libdir}/mycroft/.dev_opts.json |
37 | 37 | ||
38 | if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then | 38 | if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then |
39 | install -d ${D}${systemd_unitdir}/system | 39 | install -d ${D}${systemd_unitdir}/system |
40 | install -m 644 ${WORKDIR}/mycroft-setup.service ${D}${systemd_unitdir}/system | 40 | install -m 644 ${UNPACKDIR}/mycroft-setup.service ${D}${systemd_unitdir}/system |
41 | sed -i -e 's,@LIBDIR@,${libdir},g' ${D}${systemd_unitdir}/system/mycroft-setup.service | 41 | sed -i -e 's,@LIBDIR@,${libdir},g' ${D}${systemd_unitdir}/system/mycroft-setup.service |
42 | fi | 42 | fi |
43 | 43 | ||
44 | if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then | 44 | if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then |
45 | install -d ${D}${systemd_unitdir}/system | 45 | install -d ${D}${systemd_unitdir}/system |
46 | install -m 644 ${WORKDIR}/mycroft.service ${D}${systemd_unitdir}/system | 46 | install -m 644 ${UNPACKDIR}/mycroft.service ${D}${systemd_unitdir}/system |
47 | sed -i -e 's,@LIBDIR@,${libdir},g' ${D}${systemd_unitdir}/system/mycroft.service | 47 | sed -i -e 's,@LIBDIR@,${libdir},g' ${D}${systemd_unitdir}/system/mycroft.service |
48 | fi | 48 | fi |
49 | } | 49 | } |
diff --git a/meta-multimedia/recipes-multimedia/sample-content/bigbuckbunny-1080p.bb b/meta-multimedia/recipes-multimedia/sample-content/bigbuckbunny-1080p.bb index cb919d79e..e5a8f085b 100644 --- a/meta-multimedia/recipes-multimedia/sample-content/bigbuckbunny-1080p.bb +++ b/meta-multimedia/recipes-multimedia/sample-content/bigbuckbunny-1080p.bb | |||
@@ -11,7 +11,7 @@ inherit allarch | |||
11 | 11 | ||
12 | do_install() { | 12 | do_install() { |
13 | install -d ${D}${datadir}/movies | 13 | install -d ${D}${datadir}/movies |
14 | install -m 0644 ${WORKDIR}/big_buck_bunny_1080p_surround.avi ${D}${datadir}/movies/ | 14 | install -m 0644 ${UNPACKDIR}/big_buck_bunny_1080p_surround.avi ${D}${datadir}/movies/ |
15 | } | 15 | } |
16 | 16 | ||
17 | FILES:${PN} += "${datadir}/movies" | 17 | FILES:${PN} += "${datadir}/movies" |
diff --git a/meta-multimedia/recipes-multimedia/sample-content/bigbuckbunny-480p.bb b/meta-multimedia/recipes-multimedia/sample-content/bigbuckbunny-480p.bb index 40dc2aacb..37e519790 100644 --- a/meta-multimedia/recipes-multimedia/sample-content/bigbuckbunny-480p.bb +++ b/meta-multimedia/recipes-multimedia/sample-content/bigbuckbunny-480p.bb | |||
@@ -11,7 +11,7 @@ inherit allarch | |||
11 | 11 | ||
12 | do_install() { | 12 | do_install() { |
13 | install -d ${D}${datadir}/movies | 13 | install -d ${D}${datadir}/movies |
14 | install -m 0644 ${WORKDIR}/big_buck_bunny_480p_surround-fix.avi ${D}${datadir}/movies/ | 14 | install -m 0644 ${UNPACKDIR}/big_buck_bunny_480p_surround-fix.avi ${D}${datadir}/movies/ |
15 | } | 15 | } |
16 | 16 | ||
17 | FILES:${PN} += "${datadir}/movies" | 17 | FILES:${PN} += "${datadir}/movies" |
diff --git a/meta-multimedia/recipes-multimedia/sample-content/bigbuckbunny-720p.bb b/meta-multimedia/recipes-multimedia/sample-content/bigbuckbunny-720p.bb index ed1d027b4..2b233d3e1 100644 --- a/meta-multimedia/recipes-multimedia/sample-content/bigbuckbunny-720p.bb +++ b/meta-multimedia/recipes-multimedia/sample-content/bigbuckbunny-720p.bb | |||
@@ -11,7 +11,7 @@ inherit allarch | |||
11 | 11 | ||
12 | do_install() { | 12 | do_install() { |
13 | install -d ${D}${datadir}/movies | 13 | install -d ${D}${datadir}/movies |
14 | install -m 0644 ${WORKDIR}/big_buck_bunny_720p_surround.avi ${D}${datadir}/movies/ | 14 | install -m 0644 ${UNPACKDIR}/big_buck_bunny_720p_surround.avi ${D}${datadir}/movies/ |
15 | } | 15 | } |
16 | 16 | ||
17 | FILES:${PN} += "${datadir}/movies" | 17 | FILES:${PN} += "${datadir}/movies" |
diff --git a/meta-multimedia/recipes-multimedia/sample-content/tearsofsteel-1080p.bb b/meta-multimedia/recipes-multimedia/sample-content/tearsofsteel-1080p.bb index 78f15f143..34753fdb1 100644 --- a/meta-multimedia/recipes-multimedia/sample-content/tearsofsteel-1080p.bb +++ b/meta-multimedia/recipes-multimedia/sample-content/tearsofsteel-1080p.bb | |||
@@ -10,7 +10,7 @@ inherit allarch | |||
10 | 10 | ||
11 | do_install() { | 11 | do_install() { |
12 | install -d ${D}${datadir}/movies | 12 | install -d ${D}${datadir}/movies |
13 | install -m 0644 ${WORKDIR}/ToS-4k-1920.mov ${D}${datadir}/movies/ | 13 | install -m 0644 ${UNPACKDIR}/ToS-4k-1920.mov ${D}${datadir}/movies/ |
14 | } | 14 | } |
15 | 15 | ||
16 | FILES:${PN} += "${datadir}/movies" | 16 | FILES:${PN} += "${datadir}/movies" |
diff --git a/meta-multimedia/recipes-multimedia/wireplumber/wireplumber_0.5.2.bb b/meta-multimedia/recipes-multimedia/wireplumber/wireplumber_0.5.2.bb index c6f46eb55..6ab48285c 100644 --- a/meta-multimedia/recipes-multimedia/wireplumber/wireplumber_0.5.2.bb +++ b/meta-multimedia/recipes-multimedia/wireplumber/wireplumber_0.5.2.bb | |||
@@ -54,7 +54,7 @@ WP_MODULE_SUBDIR = "wireplumber-0.5" | |||
54 | 54 | ||
55 | do_install:append() { | 55 | do_install:append() { |
56 | if ${@bb.utils.contains('PACKAGECONFIG', 'dbus', 'false', 'true', d)}; then | 56 | if ${@bb.utils.contains('PACKAGECONFIG', 'dbus', 'false', 'true', d)}; then |
57 | install -m 0644 ${WORKDIR}/90-OE-disable-session-dbus-dependent-features.lua ${D}${datadir}/wireplumber/main.lua.d | 57 | install -m 0644 ${UNPACKDIR}/90-OE-disable-session-dbus-dependent-features.lua ${D}${datadir}/wireplumber/main.lua.d |
58 | fi | 58 | fi |
59 | } | 59 | } |
60 | 60 | ||
diff --git a/meta-networking/dynamic-layers/meta-python/recipes-connectivity/firewalld/firewalld_1.3.2.bb b/meta-networking/dynamic-layers/meta-python/recipes-connectivity/firewalld/firewalld_1.3.2.bb index 52157cf9a..12cc6645b 100644 --- a/meta-networking/dynamic-layers/meta-python/recipes-connectivity/firewalld/firewalld_1.3.2.bb +++ b/meta-networking/dynamic-layers/meta-python/recipes-connectivity/firewalld/firewalld_1.3.2.bb | |||
@@ -146,7 +146,7 @@ do_install:append() { | |||
146 | # firewalld ships an init script but it contains Red Hat-isms, replace it with our own | 146 | # firewalld ships an init script but it contains Red Hat-isms, replace it with our own |
147 | rm -rf ${D}${sysconfdir}/rc.d/ | 147 | rm -rf ${D}${sysconfdir}/rc.d/ |
148 | install -d ${D}${sysconfdir}/init.d | 148 | install -d ${D}${sysconfdir}/init.d |
149 | install -m0755 ${WORKDIR}/firewalld.init ${D}${sysconfdir}/init.d/firewalld | 149 | install -m0755 ${UNPACKDIR}/firewalld.init ${D}${sysconfdir}/init.d/firewalld |
150 | fi | 150 | fi |
151 | 151 | ||
152 | if ${@bb.utils.contains('DISTRO_FEATURES', 'polkit', 'false', 'true', d)}; then | 152 | if ${@bb.utils.contains('DISTRO_FEATURES', 'polkit', 'false', 'true', d)}; then |
diff --git a/meta-networking/recipes-connectivity/dhcp/dhcp-relay_4.4.3p1.bb b/meta-networking/recipes-connectivity/dhcp/dhcp-relay_4.4.3p1.bb index e5f7e0334..e458321e6 100644 --- a/meta-networking/recipes-connectivity/dhcp/dhcp-relay_4.4.3p1.bb +++ b/meta-networking/recipes-connectivity/dhcp/dhcp-relay_4.4.3p1.bb | |||
@@ -53,16 +53,16 @@ do_configure:prepend () { | |||
53 | } | 53 | } |
54 | 54 | ||
55 | do_install:append () { | 55 | do_install:append () { |
56 | install -Dm 0644 ${WORKDIR}/default-relay ${D}${sysconfdir}/default/dhcp-relay | 56 | install -Dm 0644 ${UNPACKDIR}/default-relay ${D}${sysconfdir}/default/dhcp-relay |
57 | 57 | ||
58 | if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then | 58 | if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then |
59 | install -d ${D}${systemd_unitdir}/system | 59 | install -d ${D}${systemd_unitdir}/system |
60 | install -m 0644 ${WORKDIR}/dhcrelay.service ${D}${systemd_unitdir}/system | 60 | install -m 0644 ${UNPACKDIR}/dhcrelay.service ${D}${systemd_unitdir}/system |
61 | sed -i -e 's,@SBINDIR@,${sbindir},g' ${D}${systemd_unitdir}/system/dhcrelay.service | 61 | sed -i -e 's,@SBINDIR@,${sbindir},g' ${D}${systemd_unitdir}/system/dhcrelay.service |
62 | sed -i -e 's,@SYSCONFDIR@,${sysconfdir},g' ${D}${systemd_unitdir}/system/dhcrelay.service | 62 | sed -i -e 's,@SYSCONFDIR@,${sysconfdir},g' ${D}${systemd_unitdir}/system/dhcrelay.service |
63 | else | 63 | else |
64 | install -d ${D}${sysconfdir}/init.d | 64 | install -d ${D}${sysconfdir}/init.d |
65 | install -m 0755 ${WORKDIR}/init-relay ${D}${sysconfdir}/init.d/dhcp-relay | 65 | install -m 0755 ${UNPACKDIR}/init-relay ${D}${sysconfdir}/init.d/dhcp-relay |
66 | fi | 66 | fi |
67 | } | 67 | } |
68 | 68 | ||
diff --git a/meta-networking/recipes-connectivity/freeradius/freeradius_3.2.3.bb b/meta-networking/recipes-connectivity/freeradius/freeradius_3.2.3.bb index 7ea63a65d..8397380c1 100644 --- a/meta-networking/recipes-connectivity/freeradius/freeradius_3.2.3.bb +++ b/meta-networking/recipes-connectivity/freeradius/freeradius_3.2.3.bb | |||
@@ -169,14 +169,14 @@ do_install() { | |||
169 | if ${@bb.utils.contains('DISTRO_FEATURES', 'sysvinit', 'true', 'false', d)}; then | 169 | if ${@bb.utils.contains('DISTRO_FEATURES', 'sysvinit', 'true', 'false', d)}; then |
170 | install -d ${D}${sysconfdir}/init.d | 170 | install -d ${D}${sysconfdir}/init.d |
171 | install -d ${D}${sysconfdir}/default/volatiles | 171 | install -d ${D}${sysconfdir}/default/volatiles |
172 | install -m 0755 ${WORKDIR}/freeradius ${D}/etc/init.d/radiusd | 172 | install -m 0755 ${UNPACKDIR}/freeradius ${D}/etc/init.d/radiusd |
173 | install -m 0644 ${WORKDIR}/volatiles.58_radiusd ${D}${sysconfdir}/default/volatiles/58_radiusd | 173 | install -m 0644 ${UNPACKDIR}/volatiles.58_radiusd ${D}${sysconfdir}/default/volatiles/58_radiusd |
174 | fi | 174 | fi |
175 | 175 | ||
176 | # For systemd | 176 | # For systemd |
177 | if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then | 177 | if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then |
178 | install -d ${D}${systemd_unitdir}/system | 178 | install -d ${D}${systemd_unitdir}/system |
179 | install -m 0644 ${WORKDIR}/radiusd.service ${D}${systemd_unitdir}/system | 179 | install -m 0644 ${UNPACKDIR}/radiusd.service ${D}${systemd_unitdir}/system |
180 | sed -i -e 's,@BASE_BINDIR@,${base_bindir},g' \ | 180 | sed -i -e 's,@BASE_BINDIR@,${base_bindir},g' \ |
181 | -e 's,@SBINDIR@,${sbindir},g' \ | 181 | -e 's,@SBINDIR@,${sbindir},g' \ |
182 | -e 's,@STATEDIR@,${localstatedir},g' \ | 182 | -e 's,@STATEDIR@,${localstatedir},g' \ |
@@ -184,7 +184,7 @@ do_install() { | |||
184 | ${D}${systemd_unitdir}/system/radiusd.service | 184 | ${D}${systemd_unitdir}/system/radiusd.service |
185 | 185 | ||
186 | install -d ${D}${sysconfdir}/tmpfiles.d/ | 186 | install -d ${D}${sysconfdir}/tmpfiles.d/ |
187 | install -m 0644 ${WORKDIR}/radiusd-volatiles.conf ${D}${sysconfdir}/tmpfiles.d/radiusd.conf | 187 | install -m 0644 ${UNPACKDIR}/radiusd-volatiles.conf ${D}${sysconfdir}/tmpfiles.d/radiusd.conf |
188 | fi | 188 | fi |
189 | 189 | ||
190 | oe_multilib_header freeradius/autoconf.h | 190 | oe_multilib_header freeradius/autoconf.h |
diff --git a/meta-networking/recipes-connectivity/miniupnpd/miniupnpd_2.1.20191006.bb b/meta-networking/recipes-connectivity/miniupnpd/miniupnpd_2.1.20191006.bb index 468569eef..1c2f030f8 100644 --- a/meta-networking/recipes-connectivity/miniupnpd/miniupnpd_2.1.20191006.bb +++ b/meta-networking/recipes-connectivity/miniupnpd/miniupnpd_2.1.20191006.bb | |||
@@ -44,7 +44,7 @@ do_install() { | |||
44 | install ${S}/linux/miniupnpd.init.d.script ${D}/${sysconfdir}/init.d/miniupnpd | 44 | install ${S}/linux/miniupnpd.init.d.script ${D}/${sysconfdir}/init.d/miniupnpd |
45 | 45 | ||
46 | install -d ${D}${systemd_unitdir}/system | 46 | install -d ${D}${systemd_unitdir}/system |
47 | install -m 0644 ${WORKDIR}/miniupnpd.service ${D}${systemd_unitdir}/system/ | 47 | install -m 0644 ${UNPACKDIR}/miniupnpd.service ${D}${systemd_unitdir}/system/ |
48 | } | 48 | } |
49 | 49 | ||
50 | SYSTEMD_SERVICE:${PN} = "miniupnpd.service" | 50 | SYSTEMD_SERVICE:${PN} = "miniupnpd.service" |
diff --git a/meta-networking/recipes-connectivity/mosquitto/mosquitto_2.0.18.bb b/meta-networking/recipes-connectivity/mosquitto/mosquitto_2.0.18.bb index ea9eb4857..4ef065410 100644 --- a/meta-networking/recipes-connectivity/mosquitto/mosquitto_2.0.18.bb +++ b/meta-networking/recipes-connectivity/mosquitto/mosquitto_2.0.18.bb | |||
@@ -46,7 +46,7 @@ do_install:append() { | |||
46 | install -m 0644 ${S}/service/systemd/mosquitto.service.notify ${D}${systemd_unitdir}/system/mosquitto.service | 46 | install -m 0644 ${S}/service/systemd/mosquitto.service.notify ${D}${systemd_unitdir}/system/mosquitto.service |
47 | 47 | ||
48 | install -d ${D}${sysconfdir}/init.d/ | 48 | install -d ${D}${sysconfdir}/init.d/ |
49 | install -m 0755 ${WORKDIR}/mosquitto.init ${D}${sysconfdir}/init.d/mosquitto | 49 | install -m 0755 ${UNPACKDIR}/mosquitto.init ${D}${sysconfdir}/init.d/mosquitto |
50 | sed -i -e 's,@SBINDIR@,${sbindir},g' \ | 50 | sed -i -e 's,@SBINDIR@,${sbindir},g' \ |
51 | -e 's,@BASE_SBINDIR@,${base_sbindir},g' \ | 51 | -e 's,@BASE_SBINDIR@,${base_sbindir},g' \ |
52 | -e 's,@LOCALSTATEDIR@,${localstatedir},g' \ | 52 | -e 's,@LOCALSTATEDIR@,${localstatedir},g' \ |
diff --git a/meta-networking/recipes-connectivity/networkmanager/networkmanager_1.46.0.bb b/meta-networking/recipes-connectivity/networkmanager/networkmanager_1.46.0.bb index 3c9570d92..487ef0847 100644 --- a/meta-networking/recipes-connectivity/networkmanager/networkmanager_1.46.0.bb +++ b/meta-networking/recipes-connectivity/networkmanager/networkmanager_1.46.0.bb | |||
@@ -301,7 +301,7 @@ RRECOMMENDS:${PN} += "\ | |||
301 | " | 301 | " |
302 | 302 | ||
303 | do_install:append() { | 303 | do_install:append() { |
304 | install -Dm 0755 ${WORKDIR}/${BPN}.initd ${D}${sysconfdir}/init.d/network-manager | 304 | install -Dm 0755 ${UNPACKDIR}/${BPN}.initd ${D}${sysconfdir}/init.d/network-manager |
305 | 305 | ||
306 | rm -rf ${D}/run ${D}${localstatedir}/run | 306 | rm -rf ${D}/run ${D}${localstatedir}/run |
307 | 307 | ||
@@ -315,11 +315,11 @@ do_install:append() { | |||
315 | 315 | ||
316 | # Enable iwd if compiled | 316 | # Enable iwd if compiled |
317 | if ${@bb.utils.contains('PACKAGECONFIG','iwd','true','false',d)}; then | 317 | if ${@bb.utils.contains('PACKAGECONFIG','iwd','true','false',d)}; then |
318 | install -Dm 0644 ${WORKDIR}/enable-iwd.conf ${D}${nonarch_libdir}/NetworkManager/conf.d/enable-iwd.conf | 318 | install -Dm 0644 ${UNPACKDIR}/enable-iwd.conf ${D}${nonarch_libdir}/NetworkManager/conf.d/enable-iwd.conf |
319 | fi | 319 | fi |
320 | 320 | ||
321 | # Enable dhcpd if compiled | 321 | # Enable dhcpd if compiled |
322 | if ${@bb.utils.contains('PACKAGECONFIG','dhcpcd','true','false',d)}; then | 322 | if ${@bb.utils.contains('PACKAGECONFIG','dhcpcd','true','false',d)}; then |
323 | install -Dm 0644 ${WORKDIR}/enable-dhcpcd.conf ${D}${nonarch_libdir}/NetworkManager/conf.d/enable-dhcpcd.conf | 323 | install -Dm 0644 ${UNPACKDIR}/enable-dhcpcd.conf ${D}${nonarch_libdir}/NetworkManager/conf.d/enable-dhcpcd.conf |
324 | fi | 324 | fi |
325 | } | 325 | } |
diff --git a/meta-networking/recipes-connectivity/samba/samba_4.19.6.bb b/meta-networking/recipes-connectivity/samba/samba_4.19.6.bb index bd0309934..7bdcfd35c 100644 --- a/meta-networking/recipes-connectivity/samba/samba_4.19.6.bb +++ b/meta-networking/recipes-connectivity/samba/samba_4.19.6.bb | |||
@@ -173,8 +173,8 @@ do_install:append() { | |||
173 | 173 | ||
174 | install -d ${D}${sysconfdir}/samba | 174 | install -d ${D}${sysconfdir}/samba |
175 | echo "127.0.0.1 localhost" > ${D}${sysconfdir}/samba/lmhosts | 175 | echo "127.0.0.1 localhost" > ${D}${sysconfdir}/samba/lmhosts |
176 | install -m644 ${WORKDIR}/smb.conf ${D}${sysconfdir}/samba/smb.conf | 176 | install -m644 ${UNPACKDIR}/smb.conf ${D}${sysconfdir}/samba/smb.conf |
177 | install -D -m 644 ${WORKDIR}/volatiles.03_samba ${D}${sysconfdir}/default/volatiles/03_samba | 177 | install -D -m 644 ${UNPACKDIR}/volatiles.03_samba ${D}${sysconfdir}/default/volatiles/03_samba |
178 | 178 | ||
179 | install -d ${D}${sysconfdir}/default | 179 | install -d ${D}${sysconfdir}/default |
180 | install -m644 packaging/systemd/samba.sysconfig ${D}${sysconfdir}/default/samba | 180 | install -m644 packaging/systemd/samba.sysconfig ${D}${sysconfdir}/default/samba |
diff --git a/meta-networking/recipes-connectivity/snort/snort_2.9.20.bb b/meta-networking/recipes-connectivity/snort/snort_2.9.20.bb index 8b9092b41..9bc14fc56 100644 --- a/meta-networking/recipes-connectivity/snort/snort_2.9.20.bb +++ b/meta-networking/recipes-connectivity/snort/snort_2.9.20.bb | |||
@@ -76,18 +76,18 @@ do_install:append() { | |||
76 | 76 | ||
77 | cp ${S}/preproc_rules/*.rules ${D}${sysconfdir}/snort/preproc_rules/ | 77 | cp ${S}/preproc_rules/*.rules ${D}${sysconfdir}/snort/preproc_rules/ |
78 | if ${@bb.utils.contains('DISTRO_FEATURES', 'sysvinit', 'true', 'false', d)}; then | 78 | if ${@bb.utils.contains('DISTRO_FEATURES', 'sysvinit', 'true', 'false', d)}; then |
79 | install -m 755 ${WORKDIR}/snort.init ${D}${sysconfdir}/init.d/snort | 79 | install -m 755 ${UNPACKDIR}/snort.init ${D}${sysconfdir}/init.d/snort |
80 | fi | 80 | fi |
81 | 81 | ||
82 | if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then | 82 | if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then |
83 | install -d ${D}/${systemd_system_unitdir} | 83 | install -d ${D}/${systemd_system_unitdir} |
84 | install -m 644 ${WORKDIR}/snort.service ${D}/${systemd_system_unitdir} | 84 | install -m 644 ${UNPACKDIR}/snort.service ${D}/${systemd_system_unitdir} |
85 | # Install default environment file | 85 | # Install default environment file |
86 | install -d ${D}/${sysconfdir}/default | 86 | install -d ${D}/${sysconfdir}/default |
87 | install -m 0644 ${WORKDIR}/snort.default ${D}${sysconfdir}/default/snort | 87 | install -m 0644 ${UNPACKDIR}/snort.default ${D}${sysconfdir}/default/snort |
88 | fi | 88 | fi |
89 | install -d ${D}${sysconfdir}/default/volatiles | 89 | install -d ${D}${sysconfdir}/default/volatiles |
90 | install -m 0644 ${WORKDIR}/volatiles.99_snort ${D}${sysconfdir}/default/volatiles/99_snort | 90 | install -m 0644 ${UNPACKDIR}/volatiles.99_snort ${D}${sysconfdir}/default/volatiles/99_snort |
91 | 91 | ||
92 | sed -i -e 's|-ffile-prefix-map[^ ]*||g; s|-fdebug-prefix-map[^ ]*||g; s|-fmacro-prefix-map[^ ]*||g; s|${STAGING_DIR_TARGET}||g' ${D}${libdir}/pkgconfig/*.pc | 92 | sed -i -e 's|-ffile-prefix-map[^ ]*||g; s|-fdebug-prefix-map[^ ]*||g; s|-fmacro-prefix-map[^ ]*||g; s|${STAGING_DIR_TARGET}||g' ${D}${libdir}/pkgconfig/*.pc |
93 | } | 93 | } |
diff --git a/meta-networking/recipes-connectivity/tayga/tayga_0.9.2.bb b/meta-networking/recipes-connectivity/tayga/tayga_0.9.2.bb index 36d35e6de..f6b58559d 100644 --- a/meta-networking/recipes-connectivity/tayga/tayga_0.9.2.bb +++ b/meta-networking/recipes-connectivity/tayga/tayga_0.9.2.bb | |||
@@ -13,9 +13,9 @@ SYSTEMD_PACKAGES = "${PN}" | |||
13 | SYSTEMD_SERVICE:${PN} = "tayga.service" | 13 | SYSTEMD_SERVICE:${PN} = "tayga.service" |
14 | 14 | ||
15 | do_install:append() { | 15 | do_install:append() { |
16 | install -m 0644 ${WORKDIR}/tayga.conf ${D}${sysconfdir}/tayga.conf | 16 | install -m 0644 ${UNPACKDIR}/tayga.conf ${D}${sysconfdir}/tayga.conf |
17 | install -d ${D}${systemd_unitdir}/system/ | 17 | install -d ${D}${systemd_unitdir}/system/ |
18 | install -m 0644 ${WORKDIR}/tayga.service ${D}${systemd_unitdir}/system/ | 18 | install -m 0644 ${UNPACKDIR}/tayga.service ${D}${systemd_unitdir}/system/ |
19 | } | 19 | } |
20 | 20 | ||
21 | inherit autotools systemd | 21 | inherit autotools systemd |
diff --git a/meta-networking/recipes-connectivity/vpnc/vpnc_0.5.3.bb b/meta-networking/recipes-connectivity/vpnc/vpnc_0.5.3.bb index fe9c038f5..5876b5827 100644 --- a/meta-networking/recipes-connectivity/vpnc/vpnc_0.5.3.bb +++ b/meta-networking/recipes-connectivity/vpnc/vpnc_0.5.3.bb | |||
@@ -38,14 +38,14 @@ inherit perlnative pkgconfig | |||
38 | do_configure:append () { | 38 | do_configure:append () { |
39 | # Make sure we use our nativeperl wrapper | 39 | # Make sure we use our nativeperl wrapper |
40 | sed -i "1s:#!.*:#!/usr/bin/env nativeperl:" ${S}/*.pl | 40 | sed -i "1s:#!.*:#!/usr/bin/env nativeperl:" ${S}/*.pl |
41 | cp ${WORKDIR}/long-help ${S} | 41 | cp ${UNPACKDIR}/long-help ${S} |
42 | } | 42 | } |
43 | 43 | ||
44 | do_install () { | 44 | do_install () { |
45 | sed -i s:m600:m\ 600:g Makefile | 45 | sed -i s:m600:m\ 600:g Makefile |
46 | oe_runmake 'DESTDIR=${D}' 'PREFIX=/usr' install | 46 | oe_runmake 'DESTDIR=${D}' 'PREFIX=/usr' install |
47 | rm -f ${D}${sysconfdir}/vpnc/vpnc.conf #This file is useless | 47 | rm -f ${D}${sysconfdir}/vpnc/vpnc.conf #This file is useless |
48 | install ${WORKDIR}/default.conf ${D}${sysconfdir}/vpnc/default.conf | 48 | install ${UNPACKDIR}/default.conf ${D}${sysconfdir}/vpnc/default.conf |
49 | } | 49 | } |
50 | 50 | ||
51 | SYSROOT_PREPROCESS_FUNCS += "vpnc_sysroot_preprocess" | 51 | SYSROOT_PREPROCESS_FUNCS += "vpnc_sysroot_preprocess" |
diff --git a/meta-networking/recipes-daemons/atftp/atftp_0.8.0.bb b/meta-networking/recipes-daemons/atftp/atftp_0.8.0.bb index 507621795..41b7cf087 100644 --- a/meta-networking/recipes-daemons/atftp/atftp_0.8.0.bb +++ b/meta-networking/recipes-daemons/atftp/atftp_0.8.0.bb | |||
@@ -29,14 +29,14 @@ EXTRA_OEMAKE = "CFLAGS='${CFLAGS} -std=gnu89'" | |||
29 | 29 | ||
30 | do_install:append() { | 30 | do_install:append() { |
31 | install -d ${D}${sysconfdir}/init.d | 31 | install -d ${D}${sysconfdir}/init.d |
32 | install -m 0755 ${WORKDIR}/atftpd.init ${D}${sysconfdir}/init.d/atftpd | 32 | install -m 0755 ${UNPACKDIR}/atftpd.init ${D}${sysconfdir}/init.d/atftpd |
33 | 33 | ||
34 | install -d ${D}/srv/tftp | 34 | install -d ${D}/srv/tftp |
35 | 35 | ||
36 | rm ${D}${sbindir}/in.tftpd | 36 | rm ${D}${sbindir}/in.tftpd |
37 | 37 | ||
38 | install -d ${D}${systemd_unitdir}/system | 38 | install -d ${D}${systemd_unitdir}/system |
39 | install -m 0644 ${WORKDIR}/atftpd.service ${D}${systemd_unitdir}/system | 39 | install -m 0644 ${UNPACKDIR}/atftpd.service ${D}${systemd_unitdir}/system |
40 | } | 40 | } |
41 | 41 | ||
42 | PACKAGES =+ "${PN}d" | 42 | PACKAGES =+ "${PN}d" |
diff --git a/meta-networking/recipes-daemons/ippool/ippool_1.3.bb b/meta-networking/recipes-daemons/ippool/ippool_1.3.bb index 36ea28994..7947ffe45 100644 --- a/meta-networking/recipes-daemons/ippool/ippool_1.3.bb +++ b/meta-networking/recipes-daemons/ippool/ippool_1.3.bb | |||
@@ -65,14 +65,14 @@ do_install() { | |||
65 | oe_runmake DESTDIR=${D} install | 65 | oe_runmake DESTDIR=${D} install |
66 | 66 | ||
67 | install -D -m 0755 ${S}/debian/init.d ${D}${sysconfdir}/init.d/ippoold | 67 | install -D -m 0755 ${S}/debian/init.d ${D}${sysconfdir}/init.d/ippoold |
68 | install -D -m 0644 ${WORKDIR}/ippool.service ${D}${systemd_system_unitdir}/ippool.service | 68 | install -D -m 0644 ${UNPACKDIR}/ippool.service ${D}${systemd_system_unitdir}/ippool.service |
69 | sed -i -e 's:@SBINDIR@:${sbindir}:g' ${D}${systemd_system_unitdir}/ippool.service | 69 | sed -i -e 's:@SBINDIR@:${sbindir}:g' ${D}${systemd_system_unitdir}/ippool.service |
70 | 70 | ||
71 | # install self test | 71 | # install self test |
72 | install -d ${D}/opt/${BPN} | 72 | install -d ${D}/opt/${BPN} |
73 | install ${S}/test/all.tcl ${S}/test/ippool.test \ | 73 | install ${S}/test/all.tcl ${S}/test/ippool.test \ |
74 | ${S}/test/test_procs.tcl ${D}/opt/${BPN} | 74 | ${S}/test/test_procs.tcl ${D}/opt/${BPN} |
75 | install ${WORKDIR}/runtest.sh ${D}/opt/${BPN} | 75 | install ${UNPACKDIR}/runtest.sh ${D}/opt/${BPN} |
76 | # fix the ../ippoolconfig in test_procs.tcl | 76 | # fix the ../ippoolconfig in test_procs.tcl |
77 | sed -i -e "s:../ippoolconfig:ippoolconfig:" \ | 77 | sed -i -e "s:../ippoolconfig:ippoolconfig:" \ |
78 | ${D}/opt/${BPN}/test_procs.tcl | 78 | ${D}/opt/${BPN}/test_procs.tcl |
diff --git a/meta-networking/recipes-daemons/iscsi-initiator-utils/iscsi-initiator-utils_2.1.8.bb b/meta-networking/recipes-daemons/iscsi-initiator-utils/iscsi-initiator-utils_2.1.8.bb index 2caddbb54..0f9f34f1f 100644 --- a/meta-networking/recipes-daemons/iscsi-initiator-utils/iscsi-initiator-utils_2.1.8.bb +++ b/meta-networking/recipes-daemons/iscsi-initiator-utils/iscsi-initiator-utils_2.1.8.bb | |||
@@ -78,7 +78,7 @@ do_install () { | |||
78 | cp -dR ${S}/libopeniscsiusr/libopeniscsiusr.so* ${D}${libdir} | 78 | cp -dR ${S}/libopeniscsiusr/libopeniscsiusr.so* ${D}${libdir} |
79 | install -p -m 644 ${S}/doc/iscsiadm.8 ${S}/doc/iscsid.8 ${D}/${mandir}/man8 | 79 | install -p -m 644 ${S}/doc/iscsiadm.8 ${S}/doc/iscsid.8 ${D}/${mandir}/man8 |
80 | install -p -m 644 ${S}/etc/iscsid.conf ${D}${sysconfdir}/iscsi | 80 | install -p -m 644 ${S}/etc/iscsid.conf ${D}${sysconfdir}/iscsi |
81 | install -p -m 755 ${WORKDIR}/initd.debian ${D}${sysconfdir}/init.d/iscsid | 81 | install -p -m 755 ${UNPACKDIR}/initd.debian ${D}${sysconfdir}/init.d/iscsid |
82 | 82 | ||
83 | sed -i -e "s:= /sbin/iscsid:= ${sbindir}/iscsid:" ${D}${sysconfdir}/iscsi/iscsid.conf | 83 | sed -i -e "s:= /sbin/iscsid:= ${sbindir}/iscsid:" ${D}${sysconfdir}/iscsi/iscsid.conf |
84 | 84 | ||
@@ -87,17 +87,17 @@ do_install () { | |||
87 | echo "d /run/${BPN}/lock - - - -" \ | 87 | echo "d /run/${BPN}/lock - - - -" \ |
88 | > ${D}${sysconfdir}/tmpfiles.d/iscsi.conf | 88 | > ${D}${sysconfdir}/tmpfiles.d/iscsi.conf |
89 | install -d ${D}/etc/default/ | 89 | install -d ${D}/etc/default/ |
90 | install -p -m 755 ${WORKDIR}/iscsi-initiator ${D}${sysconfdir}/default/ | 90 | install -p -m 755 ${UNPACKDIR}/iscsi-initiator ${D}${sysconfdir}/default/ |
91 | 91 | ||
92 | install -d ${D}${systemd_unitdir}/system/ | 92 | install -d ${D}${systemd_unitdir}/system/ |
93 | install -m 0644 ${WORKDIR}/iscsi-initiator.service \ | 93 | install -m 0644 ${UNPACKDIR}/iscsi-initiator.service \ |
94 | ${WORKDIR}/iscsi-initiator-targets.service \ | 94 | ${UNPACKDIR}/iscsi-initiator-targets.service \ |
95 | ${D}${systemd_unitdir}/system/ | 95 | ${D}${systemd_unitdir}/system/ |
96 | install -d ${D}${nonarch_libdir}/iscsi | 96 | install -d ${D}${nonarch_libdir}/iscsi |
97 | install -m 0755 ${WORKDIR}/set_initiatorname ${D}${nonarch_libdir}/iscsi | 97 | install -m 0755 ${UNPACKDIR}/set_initiatorname ${D}${nonarch_libdir}/iscsi |
98 | else | 98 | else |
99 | install -d ${D}/etc/default/volatiles | 99 | install -d ${D}/etc/default/volatiles |
100 | install -m 0644 ${WORKDIR}/99_iscsi-initiator-utils ${D}/etc/default/volatiles | 100 | install -m 0644 ${UNPACKDIR}/99_iscsi-initiator-utils ${D}/etc/default/volatiles |
101 | fi | 101 | fi |
102 | } | 102 | } |
103 | 103 | ||
diff --git a/meta-networking/recipes-daemons/lldpd/lldpd_1.0.18.bb b/meta-networking/recipes-daemons/lldpd/lldpd_1.0.18.bb index 370465e14..4deab153c 100644 --- a/meta-networking/recipes-daemons/lldpd/lldpd_1.0.18.bb +++ b/meta-networking/recipes-daemons/lldpd/lldpd_1.0.18.bb | |||
@@ -48,8 +48,8 @@ INITSCRIPT_PARAMS = "defaults" | |||
48 | SYSTEMD_SERVICE:${PN} = "lldpd.service" | 48 | SYSTEMD_SERVICE:${PN} = "lldpd.service" |
49 | 49 | ||
50 | do_install:append() { | 50 | do_install:append() { |
51 | install -Dm 0755 ${WORKDIR}/lldpd.init.d ${D}${sysconfdir}/init.d/lldpd | 51 | install -Dm 0755 ${UNPACKDIR}/lldpd.init.d ${D}${sysconfdir}/init.d/lldpd |
52 | install -Dm 0644 ${WORKDIR}/lldpd.default ${D}${sysconfdir}/default/lldpd | 52 | install -Dm 0644 ${UNPACKDIR}/lldpd.default ${D}${sysconfdir}/default/lldpd |
53 | # Make an empty configuration file | 53 | # Make an empty configuration file |
54 | touch ${D}${sysconfdir}/lldpd.conf | 54 | touch ${D}${sysconfdir}/lldpd.conf |
55 | } | 55 | } |
diff --git a/meta-networking/recipes-daemons/openhpi/openhpi_3.8.0.bb b/meta-networking/recipes-daemons/openhpi/openhpi_3.8.0.bb index 32c4783cf..ac13d7a19 100644 --- a/meta-networking/recipes-daemons/openhpi/openhpi_3.8.0.bb +++ b/meta-networking/recipes-daemons/openhpi/openhpi_3.8.0.bb | |||
@@ -75,10 +75,10 @@ do_install:append () { | |||
75 | install -m 0600 ${S}/openhpi.conf.example ${D}${sysconfdir}/${BPN}/openhpi.conf | 75 | install -m 0600 ${S}/openhpi.conf.example ${D}${sysconfdir}/${BPN}/openhpi.conf |
76 | install -m 0644 ${S}/simulation.data.example ${D}${sysconfdir}/${BPN}/simulation.data | 76 | install -m 0644 ${S}/simulation.data.example ${D}${sysconfdir}/${BPN}/simulation.data |
77 | install -m 0644 ${S}/test_agent.data.example ${D}${sysconfdir}/${BPN}/test_agent.data | 77 | install -m 0644 ${S}/test_agent.data.example ${D}${sysconfdir}/${BPN}/test_agent.data |
78 | install -m 0755 ${WORKDIR}/openhpi.init ${D}${sysconfdir}/init.d/openhpid | 78 | install -m 0755 ${UNPACKDIR}/openhpi.init ${D}${sysconfdir}/init.d/openhpid |
79 | 79 | ||
80 | install -d ${D}${systemd_unitdir}/system | 80 | install -d ${D}${systemd_unitdir}/system |
81 | install -m 0644 ${WORKDIR}/openhpid.service ${D}${systemd_unitdir}/system | 81 | install -m 0644 ${UNPACKDIR}/openhpid.service ${D}${systemd_unitdir}/system |
82 | sed -i -e "s,@SBINDIR@,${sbindir},g" -e "s,@SYSCONFDIR@,${sysconfdir},g" \ | 82 | sed -i -e "s,@SBINDIR@,${sbindir},g" -e "s,@SYSCONFDIR@,${sysconfdir},g" \ |
83 | ${D}${systemd_unitdir}/system/openhpid.service | 83 | ${D}${systemd_unitdir}/system/openhpid.service |
84 | } | 84 | } |
diff --git a/meta-networking/recipes-daemons/postfix/postfix_3.8.6.bb b/meta-networking/recipes-daemons/postfix/postfix_3.8.6.bb index 3ec7f22ad..d48e9145f 100644 --- a/meta-networking/recipes-daemons/postfix/postfix_3.8.6.bb +++ b/meta-networking/recipes-daemons/postfix/postfix_3.8.6.bb | |||
@@ -136,21 +136,21 @@ do_install () { | |||
136 | mv ${D}${sysconfdir}/postfix/main.cf ${D}${sysconfdir}/postfix/${MLPREFIX}sample-main.cf | 136 | mv ${D}${sysconfdir}/postfix/main.cf ${D}${sysconfdir}/postfix/${MLPREFIX}sample-main.cf |
137 | install -m 755 ${S}/bin/smtp-sink ${D}/${sbindir}/ | 137 | install -m 755 ${S}/bin/smtp-sink ${D}/${sbindir}/ |
138 | install -d ${D}${sysconfdir}/init.d | 138 | install -d ${D}${sysconfdir}/init.d |
139 | install -m 644 ${WORKDIR}/main.cf ${D}${sysconfdir}/postfix/main.cf | 139 | install -m 644 ${UNPACKDIR}/main.cf ${D}${sysconfdir}/postfix/main.cf |
140 | sed -i 's#@LIBEXECDIR@#${libexecdir}#' ${D}${sysconfdir}/postfix/main.cf | 140 | sed -i 's#@LIBEXECDIR@#${libexecdir}#' ${D}${sysconfdir}/postfix/main.cf |
141 | 141 | ||
142 | install -m 755 ${WORKDIR}/check_hostname.sh ${D}${sbindir}/ | 142 | install -m 755 ${UNPACKDIR}/check_hostname.sh ${D}${sbindir}/ |
143 | 143 | ||
144 | install -m 755 ${WORKDIR}/postfix ${D}${sysconfdir}/init.d/postfix | 144 | install -m 755 ${UNPACKDIR}/postfix ${D}${sysconfdir}/init.d/postfix |
145 | install -m 644 ${WORKDIR}/internal_recipient ${D}${sysconfdir}/postfix/internal_recipient | 145 | install -m 644 ${UNPACKDIR}/internal_recipient ${D}${sysconfdir}/postfix/internal_recipient |
146 | 146 | ||
147 | install -d ${D}${systemd_unitdir}/system | 147 | install -d ${D}${systemd_unitdir}/system |
148 | install -m 0644 ${WORKDIR}/postfix.service ${D}${systemd_unitdir}/system | 148 | install -m 0644 ${UNPACKDIR}/postfix.service ${D}${systemd_unitdir}/system |
149 | sed -i -e 's#@LIBEXECDIR@#${libexecdir}#g' ${D}${systemd_unitdir}/system/postfix.service | 149 | sed -i -e 's#@LIBEXECDIR@#${libexecdir}#g' ${D}${systemd_unitdir}/system/postfix.service |
150 | sed -i -e 's#@LOCALSTATEDIR@#${localstatedir}#g' ${D}${systemd_unitdir}/system/postfix.service | 150 | sed -i -e 's#@LOCALSTATEDIR@#${localstatedir}#g' ${D}${systemd_unitdir}/system/postfix.service |
151 | sed -i -e 's#@SBINDIR@#${sbindir}#g' ${D}${systemd_unitdir}/system/postfix.service | 151 | sed -i -e 's#@SBINDIR@#${sbindir}#g' ${D}${systemd_unitdir}/system/postfix.service |
152 | 152 | ||
153 | install -m 0755 ${WORKDIR}/aliasesdb ${D}${libexecdir}/postfix | 153 | install -m 0755 ${UNPACKDIR}/aliasesdb ${D}${libexecdir}/postfix |
154 | 154 | ||
155 | install -m 770 -d ${D}${localstatedir}/spool/postfix | 155 | install -m 770 -d ${D}${localstatedir}/spool/postfix |
156 | chown postfix:postfix ${D}${localstatedir}/spool/postfix | 156 | chown postfix:postfix ${D}${localstatedir}/spool/postfix |
diff --git a/meta-networking/recipes-daemons/proftpd/proftpd_1.3.7c.bb b/meta-networking/recipes-daemons/proftpd/proftpd_1.3.7c.bb index ecd277724..aa8d5fabd 100644 --- a/meta-networking/recipes-daemons/proftpd/proftpd_1.3.7c.bb +++ b/meta-networking/recipes-daemons/proftpd/proftpd_1.3.7c.bb | |||
@@ -82,14 +82,14 @@ do_install () { | |||
82 | sed -i '/ *User[ \t]*/s/ftp/${FTPUSER}/' ${D}${sysconfdir}/proftpd.conf | 82 | sed -i '/ *User[ \t]*/s/ftp/${FTPUSER}/' ${D}${sysconfdir}/proftpd.conf |
83 | sed -i '/ *Group[ \t]*/s/ftp/${FTPGROUP}/' ${D}${sysconfdir}/proftpd.conf | 83 | sed -i '/ *Group[ \t]*/s/ftp/${FTPGROUP}/' ${D}${sysconfdir}/proftpd.conf |
84 | install -d ${D}${sysconfdir}/init.d | 84 | install -d ${D}${sysconfdir}/init.d |
85 | install -m 0755 ${WORKDIR}/proftpd-basic.init ${D}${sysconfdir}/init.d/proftpd | 85 | install -m 0755 ${UNPACKDIR}/proftpd-basic.init ${D}${sysconfdir}/init.d/proftpd |
86 | sed -i 's!/usr/sbin/!${sbindir}/!g' ${D}${sysconfdir}/init.d/proftpd | 86 | sed -i 's!/usr/sbin/!${sbindir}/!g' ${D}${sysconfdir}/init.d/proftpd |
87 | sed -i 's!/etc/!${sysconfdir}/!g' ${D}${sysconfdir}/init.d/proftpd | 87 | sed -i 's!/etc/!${sysconfdir}/!g' ${D}${sysconfdir}/init.d/proftpd |
88 | sed -i 's!/var/!${localstatedir}/!g' ${D}${sysconfdir}/init.d/proftpd | 88 | sed -i 's!/var/!${localstatedir}/!g' ${D}${sysconfdir}/init.d/proftpd |
89 | sed -i 's!^PATH=.*!PATH=${base_sbindir}:${base_bindir}:${sbindir}:${bindir}!' ${D}${sysconfdir}/init.d/proftpd | 89 | sed -i 's!^PATH=.*!PATH=${base_sbindir}:${base_bindir}:${sbindir}:${bindir}!' ${D}${sysconfdir}/init.d/proftpd |
90 | 90 | ||
91 | install -d ${D}${sysconfdir}/default | 91 | install -d ${D}${sysconfdir}/default |
92 | install -m 0755 ${WORKDIR}/default ${D}${sysconfdir}/default/proftpd | 92 | install -m 0755 ${UNPACKDIR}/default ${D}${sysconfdir}/default/proftpd |
93 | 93 | ||
94 | # create the pub directory | 94 | # create the pub directory |
95 | mkdir -p ${D}/home/${FTPUSER}/pub/ | 95 | mkdir -p ${D}/home/${FTPUSER}/pub/ |
@@ -105,7 +105,7 @@ do_install () { | |||
105 | fi | 105 | fi |
106 | 106 | ||
107 | install -d ${D}/${systemd_unitdir}/system | 107 | install -d ${D}/${systemd_unitdir}/system |
108 | install -m 644 ${WORKDIR}/proftpd.service ${D}/${systemd_unitdir}/system | 108 | install -m 644 ${UNPACKDIR}/proftpd.service ${D}/${systemd_unitdir}/system |
109 | sed -e 's,@BASE_SBINDIR@,${base_sbindir},g' \ | 109 | sed -e 's,@BASE_SBINDIR@,${base_sbindir},g' \ |
110 | -e 's,@SYSCONFDIR@,${sysconfdir},g' \ | 110 | -e 's,@SYSCONFDIR@,${sysconfdir},g' \ |
111 | -e 's,@SBINDIR@,${sbindir},g' \ | 111 | -e 's,@SBINDIR@,${sbindir},g' \ |
diff --git a/meta-networking/recipes-daemons/ptpd/ptpd_2.3.1.bb b/meta-networking/recipes-daemons/ptpd/ptpd_2.3.1.bb index d1eb6e28f..f2c300855 100644 --- a/meta-networking/recipes-daemons/ptpd/ptpd_2.3.1.bb +++ b/meta-networking/recipes-daemons/ptpd/ptpd_2.3.1.bb | |||
@@ -47,13 +47,13 @@ do_install() { | |||
47 | 47 | ||
48 | if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then | 48 | if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then |
49 | install -d ${D}${systemd_unitdir}/system | 49 | install -d ${D}${systemd_unitdir}/system |
50 | install -m 0644 ${WORKDIR}/ptpd.service ${D}${systemd_unitdir}/system | 50 | install -m 0644 ${UNPACKDIR}/ptpd.service ${D}${systemd_unitdir}/system |
51 | 51 | ||
52 | sed -i -e 's#@SYSCONFDIR@#${sysconfdir}#g' ${D}${systemd_unitdir}/system/ptpd.service | 52 | sed -i -e 's#@SYSCONFDIR@#${sysconfdir}#g' ${D}${systemd_unitdir}/system/ptpd.service |
53 | sed -i -e 's#@BINDIR@#${bindir}#g' ${D}${systemd_unitdir}/system/ptpd.service | 53 | sed -i -e 's#@BINDIR@#${bindir}#g' ${D}${systemd_unitdir}/system/ptpd.service |
54 | 54 | ||
55 | install -d ${D}${sysconfdir}/default/ | 55 | install -d ${D}${sysconfdir}/default/ |
56 | install -m 0644 ${WORKDIR}/ptpd.conf ${D}${sysconfdir}/default/ptpd | 56 | install -m 0644 ${UNPACKDIR}/ptpd.conf ${D}${sysconfdir}/default/ptpd |
57 | fi | 57 | fi |
58 | } | 58 | } |
59 | 59 | ||
diff --git a/meta-networking/recipes-daemons/radvd/radvd_2.19.bb b/meta-networking/recipes-daemons/radvd/radvd_2.19.bb index a9b5f7942..a8a116cbe 100644 --- a/meta-networking/recipes-daemons/radvd/radvd_2.19.bb +++ b/meta-networking/recipes-daemons/radvd/radvd_2.19.bb | |||
@@ -34,30 +34,30 @@ do_install:append () { | |||
34 | ${D}${sysconfdir}/default/volatiles \ | 34 | ${D}${sysconfdir}/default/volatiles \ |
35 | ${D}${docdir}/radvd | 35 | ${D}${docdir}/radvd |
36 | # Install init script and volatiles | 36 | # Install init script and volatiles |
37 | install -m 0755 ${WORKDIR}/radvd.init ${D}${sysconfdir}/init.d/radvd | 37 | install -m 0755 ${UNPACKDIR}/radvd.init ${D}${sysconfdir}/init.d/radvd |
38 | sed -i 's!/usr/sbin/!${sbindir}/!g' ${D}${sysconfdir}/init.d/radvd | 38 | sed -i 's!/usr/sbin/!${sbindir}/!g' ${D}${sysconfdir}/init.d/radvd |
39 | sed -i 's!/etc/!${sysconfdir}/!g' ${D}${sysconfdir}/init.d/radvd | 39 | sed -i 's!/etc/!${sysconfdir}/!g' ${D}${sysconfdir}/init.d/radvd |
40 | sed -i 's!/var/!${localstatedir}/!g' ${D}${sysconfdir}/init.d/radvd | 40 | sed -i 's!/var/!${localstatedir}/!g' ${D}${sysconfdir}/init.d/radvd |
41 | sed -i 's!^PATH=.*!PATH=${base_sbindir}:${base_bindir}:${sbindir}:${bindir}!' ${D}${sysconfdir}/init.d/radvd | 41 | sed -i 's!^PATH=.*!PATH=${base_sbindir}:${base_bindir}:${sbindir}:${bindir}!' ${D}${sysconfdir}/init.d/radvd |
42 | 42 | ||
43 | install -m 0644 ${WORKDIR}/volatiles.03_radvd ${D}${sysconfdir}/default/volatiles/03_radvd | 43 | install -m 0644 ${UNPACKDIR}/volatiles.03_radvd ${D}${sysconfdir}/default/volatiles/03_radvd |
44 | 44 | ||
45 | # Install systemd service files | 45 | # Install systemd service files |
46 | install -d ${D}${systemd_unitdir}/system | 46 | install -d ${D}${systemd_unitdir}/system |
47 | install -m 0644 ${WORKDIR}/radvd.service ${D}${systemd_unitdir}/system | 47 | install -m 0644 ${UNPACKDIR}/radvd.service ${D}${systemd_unitdir}/system |
48 | sed -i -e 's#@SYSCONFDIR@#${sysconfdir}#g' \ | 48 | sed -i -e 's#@SYSCONFDIR@#${sysconfdir}#g' \ |
49 | -e 's#@SBINDIR@#${sbindir}#g' \ | 49 | -e 's#@SBINDIR@#${sbindir}#g' \ |
50 | -e 's#@BASE_BINDIR@#${base_bindir}#g' ${D}${systemd_unitdir}/system/radvd.service | 50 | -e 's#@BASE_BINDIR@#${base_bindir}#g' ${D}${systemd_unitdir}/system/radvd.service |
51 | 51 | ||
52 | # Install default environment file | 52 | # Install default environment file |
53 | install -m 0644 ${WORKDIR}/radvd.default ${D}${sysconfdir}/default/radvd | 53 | install -m 0644 ${UNPACKDIR}/radvd.default ${D}${sysconfdir}/default/radvd |
54 | 54 | ||
55 | # Documentation | 55 | # Documentation |
56 | for i in radvd.conf.example README; do \ | 56 | for i in radvd.conf.example README; do \ |
57 | install -m 0644 ${S}/$i ${D}${docdir}/radvd; \ | 57 | install -m 0644 ${S}/$i ${D}${docdir}/radvd; \ |
58 | done | 58 | done |
59 | 59 | ||
60 | install -m 0644 ${WORKDIR}/radvd.conf ${D}${sysconfdir}/radvd.conf | 60 | install -m 0644 ${UNPACKDIR}/radvd.conf ${D}${sysconfdir}/radvd.conf |
61 | } | 61 | } |
62 | 62 | ||
63 | USERADD_PACKAGES = "${PN}" | 63 | USERADD_PACKAGES = "${PN}" |
diff --git a/meta-networking/recipes-daemons/squid/squid_6.9.bb b/meta-networking/recipes-daemons/squid/squid_6.9.bb index 33d286e12..f670a776e 100644 --- a/meta-networking/recipes-daemons/squid/squid_6.9.bb +++ b/meta-networking/recipes-daemons/squid/squid_6.9.bb | |||
@@ -122,7 +122,7 @@ do_install:append() { | |||
122 | fi | 122 | fi |
123 | 123 | ||
124 | install -d ${D}${sysconfdir}/default/volatiles | 124 | install -d ${D}${sysconfdir}/default/volatiles |
125 | install -m 0644 ${WORKDIR}/volatiles.03_squid ${D}${sysconfdir}/default/volatiles/03_squid | 125 | install -m 0644 ${UNPACKDIR}/volatiles.03_squid ${D}${sysconfdir}/default/volatiles/03_squid |
126 | 126 | ||
127 | rmdir "${D}${localstatedir}/run/${BPN}" | 127 | rmdir "${D}${localstatedir}/run/${BPN}" |
128 | rmdir --ignore-fail-on-non-empty "${D}${localstatedir}/run" | 128 | rmdir --ignore-fail-on-non-empty "${D}${localstatedir}/run" |
@@ -132,7 +132,7 @@ do_install:append() { | |||
132 | 132 | ||
133 | # Install NetworkManager dispatcher reload hooks | 133 | # Install NetworkManager dispatcher reload hooks |
134 | install -d ${D}${libdir}/NetworkManager/dispatcher.d | 134 | install -d ${D}${libdir}/NetworkManager/dispatcher.d |
135 | install -m 0755 ${WORKDIR}/squid.nm ${D}${libdir}/NetworkManager/dispatcher.d/20-squid | 135 | install -m 0755 ${UNPACKDIR}/squid.nm ${D}${libdir}/NetworkManager/dispatcher.d/20-squid |
136 | } | 136 | } |
137 | 137 | ||
138 | SYSTEMD_AUTO_ENABLE = "disable" | 138 | SYSTEMD_AUTO_ENABLE = "disable" |
diff --git a/meta-networking/recipes-daemons/tftp-hpa/tftp-hpa_5.2.bb b/meta-networking/recipes-daemons/tftp-hpa/tftp-hpa_5.2.bb index 565f493ce..b5a2b9dae 100644 --- a/meta-networking/recipes-daemons/tftp-hpa/tftp-hpa_5.2.bb +++ b/meta-networking/recipes-daemons/tftp-hpa/tftp-hpa_5.2.bb | |||
@@ -58,18 +58,18 @@ do_install() { | |||
58 | 58 | ||
59 | install -m 755 -d ${D}${localstatedir}/lib/tftpboot/ | 59 | install -m 755 -d ${D}${localstatedir}/lib/tftpboot/ |
60 | install -d ${D}${sysconfdir}/init.d | 60 | install -d ${D}${sysconfdir}/init.d |
61 | install -m 0755 ${WORKDIR}/init ${D}${sysconfdir}/init.d/tftpd-hpa | 61 | install -m 0755 ${UNPACKDIR}/init ${D}${sysconfdir}/init.d/tftpd-hpa |
62 | sed -i 's!/usr/sbin/!${sbindir}/!g' ${D}${sysconfdir}/init.d/tftpd-hpa | 62 | sed -i 's!/usr/sbin/!${sbindir}/!g' ${D}${sysconfdir}/init.d/tftpd-hpa |
63 | sed -i 's!/etc/!${sysconfdir}/!g' ${D}${sysconfdir}/init.d/tftpd-hpa | 63 | sed -i 's!/etc/!${sysconfdir}/!g' ${D}${sysconfdir}/init.d/tftpd-hpa |
64 | sed -i 's!/var/!${localstatedir}/!g' ${D}${sysconfdir}/init.d/tftpd-hpa | 64 | sed -i 's!/var/!${localstatedir}/!g' ${D}${sysconfdir}/init.d/tftpd-hpa |
65 | sed -i 's!^PATH=.*!PATH=${base_sbindir}:${base_bindir}:${sbindir}:${bindir}!' ${D}${sysconfdir}/init.d/tftpd-hpa | 65 | sed -i 's!^PATH=.*!PATH=${base_sbindir}:${base_bindir}:${sbindir}:${bindir}!' ${D}${sysconfdir}/init.d/tftpd-hpa |
66 | 66 | ||
67 | install -d ${D}${sysconfdir}/default | 67 | install -d ${D}${sysconfdir}/default |
68 | install -m 0644 ${WORKDIR}/default ${D}${sysconfdir}/default/tftpd-hpa | 68 | install -m 0644 ${UNPACKDIR}/default ${D}${sysconfdir}/default/tftpd-hpa |
69 | 69 | ||
70 | install -d ${D}${systemd_unitdir}/system | 70 | install -d ${D}${systemd_unitdir}/system |
71 | install -m 0644 ${WORKDIR}/tftpd-hpa.socket ${D}${systemd_unitdir}/system | 71 | install -m 0644 ${UNPACKDIR}/tftpd-hpa.socket ${D}${systemd_unitdir}/system |
72 | install -m 0644 ${WORKDIR}/tftpd-hpa.service ${D}${systemd_unitdir}/system | 72 | install -m 0644 ${UNPACKDIR}/tftpd-hpa.service ${D}${systemd_unitdir}/system |
73 | sed -i -e 's,@SBINDIR@,${sbindir},g' ${D}${systemd_unitdir}/system/tftpd-hpa.service | 73 | sed -i -e 's,@SBINDIR@,${sbindir},g' ${D}${systemd_unitdir}/system/tftpd-hpa.service |
74 | } | 74 | } |
75 | 75 | ||
diff --git a/meta-networking/recipes-daemons/vblade/vblade_25.bb b/meta-networking/recipes-daemons/vblade/vblade_25.bb index 7c37fc167..7f20e927c 100644 --- a/meta-networking/recipes-daemons/vblade/vblade_25.bb +++ b/meta-networking/recipes-daemons/vblade/vblade_25.bb | |||
@@ -27,22 +27,22 @@ do_install() { | |||
27 | install -D -m 0755 ${S}/vbladed ${D}/${sbindir}/vbladed | 27 | install -D -m 0755 ${S}/vbladed ${D}/${sbindir}/vbladed |
28 | install -D -m 0644 ${S}/vblade.8 ${D}/${mandir}/man8/vblade.8 | 28 | install -D -m 0644 ${S}/vblade.8 ${D}/${mandir}/man8/vblade.8 |
29 | 29 | ||
30 | install -D -m 0644 ${WORKDIR}/${BPN}.conf ${D}/${sysconfdir}/${BPN}.conf | 30 | install -D -m 0644 ${UNPACKDIR}/${BPN}.conf ${D}/${sysconfdir}/${BPN}.conf |
31 | install -D -m 0755 ${WORKDIR}/${BPN}.init ${D}/${sysconfdir}/init.d/${BPN} | 31 | install -D -m 0755 ${UNPACKDIR}/${BPN}.init ${D}/${sysconfdir}/init.d/${BPN} |
32 | 32 | ||
33 | if ${@bb.utils.contains('DISTRO_FEATURES', 'sysvinit', 'true', 'false', d)}; then | 33 | if ${@bb.utils.contains('DISTRO_FEATURES', 'sysvinit', 'true', 'false', d)}; then |
34 | install -d ${D}/${sysconfdir}/default/volatiles | 34 | install -d ${D}/${sysconfdir}/default/volatiles |
35 | install -m 0755 ${WORKDIR}/volatiles.99_vblade ${D}/${sysconfdir}/default/volatiles/99_vblade | 35 | install -m 0755 ${UNPACKDIR}/volatiles.99_vblade ${D}/${sysconfdir}/default/volatiles/99_vblade |
36 | fi | 36 | fi |
37 | 37 | ||
38 | if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then | 38 | if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then |
39 | install -d ${D}/${bindir} | 39 | install -d ${D}/${bindir} |
40 | install -m 0755 ${WORKDIR}/${BPN}.init ${D}/${bindir}/ | 40 | install -m 0755 ${UNPACKDIR}/${BPN}.init ${D}/${bindir}/ |
41 | install -d ${D}${sysconfdir}/tmpfiles.d | 41 | install -d ${D}${sysconfdir}/tmpfiles.d |
42 | echo "d /var/run/${BPN} 0755 root root -" > ${D}${sysconfdir}/tmpfiles.d/${BPN}.conf | 42 | echo "d /var/run/${BPN} 0755 root root -" > ${D}${sysconfdir}/tmpfiles.d/${BPN}.conf |
43 | 43 | ||
44 | install -d ${D}${systemd_system_unitdir} | 44 | install -d ${D}${systemd_system_unitdir} |
45 | install -m 0644 ${WORKDIR}/vblade.service ${D}${systemd_system_unitdir} | 45 | install -m 0644 ${UNPACKDIR}/vblade.service ${D}${systemd_system_unitdir} |
46 | sed -e 's,@BINDIR@,${bindir},g' -i ${D}${systemd_system_unitdir}/*.service | 46 | sed -e 's,@BINDIR@,${bindir},g' -i ${D}${systemd_system_unitdir}/*.service |
47 | fi | 47 | fi |
48 | 48 | ||
diff --git a/meta-networking/recipes-daemons/vsftpd/vsftpd_3.0.5.bb b/meta-networking/recipes-daemons/vsftpd/vsftpd_3.0.5.bb index 0ae52c8dd..4a843bd80 100644 --- a/meta-networking/recipes-daemons/vsftpd/vsftpd_3.0.5.bb +++ b/meta-networking/recipes-daemons/vsftpd/vsftpd_3.0.5.bb | |||
@@ -65,14 +65,14 @@ do_install() { | |||
65 | install -d ${D}${mandir}/man5 | 65 | install -d ${D}${mandir}/man5 |
66 | oe_runmake 'DESTDIR=${D}' install | 66 | oe_runmake 'DESTDIR=${D}' install |
67 | install -d ${D}${sysconfdir} | 67 | install -d ${D}${sysconfdir} |
68 | install -m 600 ${WORKDIR}/vsftpd.conf ${D}${sysconfdir}/vsftpd.conf | 68 | install -m 600 ${UNPACKDIR}/vsftpd.conf ${D}${sysconfdir}/vsftpd.conf |
69 | install -d ${D}${sysconfdir}/init.d/ | 69 | install -d ${D}${sysconfdir}/init.d/ |
70 | install -m 755 ${WORKDIR}/init ${D}${sysconfdir}/init.d/vsftpd | 70 | install -m 755 ${UNPACKDIR}/init ${D}${sysconfdir}/init.d/vsftpd |
71 | install -d ${D}/${sysconfdir}/default/volatiles | 71 | install -d ${D}/${sysconfdir}/default/volatiles |
72 | install -m 644 ${WORKDIR}/volatiles.99_vsftpd ${D}/${sysconfdir}/default/volatiles/99_vsftpd | 72 | install -m 644 ${UNPACKDIR}/volatiles.99_vsftpd ${D}/${sysconfdir}/default/volatiles/99_vsftpd |
73 | 73 | ||
74 | install -m 600 ${WORKDIR}/vsftpd.ftpusers ${D}${sysconfdir}/ | 74 | install -m 600 ${UNPACKDIR}/vsftpd.ftpusers ${D}${sysconfdir}/ |
75 | install -m 600 ${WORKDIR}/vsftpd.user_list ${D}${sysconfdir}/ | 75 | install -m 600 ${UNPACKDIR}/vsftpd.user_list ${D}${sysconfdir}/ |
76 | if ! test -z "${PAMLIB}" ; then | 76 | if ! test -z "${PAMLIB}" ; then |
77 | install -d ${D}${sysconfdir}/pam.d/ | 77 | install -d ${D}${sysconfdir}/pam.d/ |
78 | cp ${S}/RedHat/vsftpd.pam ${D}${sysconfdir}/pam.d/vsftpd | 78 | cp ${S}/RedHat/vsftpd.pam ${D}${sysconfdir}/pam.d/vsftpd |
@@ -87,7 +87,7 @@ do_install() { | |||
87 | 87 | ||
88 | # Install systemd unit files | 88 | # Install systemd unit files |
89 | install -d ${D}${systemd_unitdir}/system | 89 | install -d ${D}${systemd_unitdir}/system |
90 | install -m 0644 ${WORKDIR}/vsftpd.service ${D}${systemd_unitdir}/system | 90 | install -m 0644 ${UNPACKDIR}/vsftpd.service ${D}${systemd_unitdir}/system |
91 | sed -i -e 's#@SBINDIR@#${sbindir}#g' ${D}${systemd_unitdir}/system/vsftpd.service | 91 | sed -i -e 's#@SBINDIR@#${sbindir}#g' ${D}${systemd_unitdir}/system/vsftpd.service |
92 | } | 92 | } |
93 | 93 | ||
diff --git a/meta-networking/recipes-devtools/libcoap/libcoap_4.3.4.bb b/meta-networking/recipes-devtools/libcoap/libcoap_4.3.4.bb index 98f0f02fb..2f5d192a7 100644 --- a/meta-networking/recipes-devtools/libcoap/libcoap_4.3.4.bb +++ b/meta-networking/recipes-devtools/libcoap/libcoap_4.3.4.bb | |||
@@ -51,7 +51,7 @@ do_compile:prepend() { | |||
51 | 51 | ||
52 | do_install_ptest () { | 52 | do_install_ptest () { |
53 | install -d ${D}${PTEST_PATH} | 53 | install -d ${D}${PTEST_PATH} |
54 | install -m 0755 ${WORKDIR}/run-ptest ${D}${PTEST_PATH}/run-ptest | 54 | install -m 0755 ${UNPACKDIR}/run-ptest ${D}${PTEST_PATH}/run-ptest |
55 | install -m 0755 ${B}/tests/testdriver ${D}${PTEST_PATH}/testdriver | 55 | install -m 0755 ${B}/tests/testdriver ${D}${PTEST_PATH}/testdriver |
56 | } | 56 | } |
57 | 57 | ||
diff --git a/meta-networking/recipes-extended/corosync/corosync_3.1.6.bb b/meta-networking/recipes-extended/corosync/corosync_3.1.6.bb index 8fca57661..cbbbbc70c 100644 --- a/meta-networking/recipes-extended/corosync/corosync_3.1.6.bb +++ b/meta-networking/recipes-extended/corosync/corosync_3.1.6.bb | |||
@@ -40,7 +40,7 @@ EXTRA_OEMAKE = "tmpfilesdir_DATA=" | |||
40 | #} | 40 | #} |
41 | 41 | ||
42 | do_install:append() { | 42 | do_install:append() { |
43 | install -D -m 0644 ${WORKDIR}/corosync.conf ${D}${sysconfdir}/corosync/corosync.conf.example | 43 | install -D -m 0644 ${UNPACKDIR}/corosync.conf ${D}${sysconfdir}/corosync/corosync.conf.example |
44 | install -d ${D}${sysconfdir}/sysconfig/ | 44 | install -d ${D}${sysconfdir}/sysconfig/ |
45 | install -m 0644 ${S}/init/corosync.sysconfig.example ${D}${sysconfdir}/sysconfig/corosync | 45 | install -m 0644 ${S}/init/corosync.sysconfig.example ${D}${sysconfdir}/sysconfig/corosync |
46 | install -m 0644 ${S}/tools/corosync-notifyd.sysconfig.example ${D}${sysconfdir}/sysconfig/corosync-notifyd | 46 | install -m 0644 ${S}/tools/corosync-notifyd.sysconfig.example ${D}${sysconfdir}/sysconfig/corosync-notifyd |
diff --git a/meta-networking/recipes-extended/tgt/tgt_1.0.90.bb b/meta-networking/recipes-extended/tgt/tgt_1.0.90.bb index 35995f787..e816b79e8 100644 --- a/meta-networking/recipes-extended/tgt/tgt_1.0.90.bb +++ b/meta-networking/recipes-extended/tgt/tgt_1.0.90.bb | |||
@@ -39,12 +39,12 @@ do_install() { | |||
39 | 39 | ||
40 | if ${@bb.utils.contains('DISTRO_FEATURES', 'sysvinit', 'true', 'false', d)}; then | 40 | if ${@bb.utils.contains('DISTRO_FEATURES', 'sysvinit', 'true', 'false', d)}; then |
41 | install -d ${D}${sysconfdir}/init.d | 41 | install -d ${D}${sysconfdir}/init.d |
42 | install -m 0755 ${WORKDIR}/tgtd.init ${D}${sysconfdir}/init.d/tgtd | 42 | install -m 0755 ${UNPACKDIR}/tgtd.init ${D}${sysconfdir}/init.d/tgtd |
43 | elif ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then | 43 | elif ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then |
44 | install -d ${D}${systemd_unitdir}/system | 44 | install -d ${D}${systemd_unitdir}/system |
45 | install -m 0644 ${WORKDIR}/tgtd.service ${D}${systemd_unitdir}/system/tgtd.service | 45 | install -m 0644 ${UNPACKDIR}/tgtd.service ${D}${systemd_unitdir}/system/tgtd.service |
46 | install -d ${D}${sysconfdir}/sysconfig | 46 | install -d ${D}${sysconfdir}/sysconfig |
47 | install -m 0644 ${WORKDIR}/tgtd ${D}${sysconfdir}/sysconfig/tgtd | 47 | install -m 0644 ${UNPACKDIR}/tgtd ${D}${sysconfdir}/sysconfig/tgtd |
48 | sed -i -e 's,@SBINDIR@,${sbindir},g' ${D}${systemd_unitdir}/system/tgtd.service | 48 | sed -i -e 's,@SBINDIR@,${sbindir},g' ${D}${systemd_unitdir}/system/tgtd.service |
49 | sed -i -e 's,@BASE_BINDIR@,${base_bindir},g' ${D}${systemd_unitdir}/system/tgtd.service | 49 | sed -i -e 's,@BASE_BINDIR@,${base_bindir},g' ${D}${systemd_unitdir}/system/tgtd.service |
50 | sed -i -e 's,@SYSCONFDIR@,${sysconfdir},g' ${D}${systemd_unitdir}/system/tgtd.service | 50 | sed -i -e 's,@SYSCONFDIR@,${sysconfdir},g' ${D}${systemd_unitdir}/system/tgtd.service |
diff --git a/meta-networking/recipes-filter/conntrack-tools/conntrack-tools_1.4.8.bb b/meta-networking/recipes-filter/conntrack-tools/conntrack-tools_1.4.8.bb index 07e01845d..524718d56 100644 --- a/meta-networking/recipes-filter/conntrack-tools/conntrack-tools_1.4.8.bb +++ b/meta-networking/recipes-filter/conntrack-tools/conntrack-tools_1.4.8.bb | |||
@@ -34,8 +34,8 @@ do_install:append() { | |||
34 | install -d ${D}/${sysconfdir}/conntrackd | 34 | install -d ${D}/${sysconfdir}/conntrackd |
35 | install -d ${D}/${sysconfdir}/init.d | 35 | install -d ${D}/${sysconfdir}/init.d |
36 | install -m 0644 ${S}/doc/sync/ftfw/conntrackd.conf ${D}/${sysconfdir}/conntrackd/conntrackd.conf.sample | 36 | install -m 0644 ${S}/doc/sync/ftfw/conntrackd.conf ${D}/${sysconfdir}/conntrackd/conntrackd.conf.sample |
37 | install -m 0755 ${WORKDIR}/conntrack-failover ${D}/${sysconfdir}/init.d/conntrack-failover | 37 | install -m 0755 ${UNPACKDIR}/conntrack-failover ${D}/${sysconfdir}/init.d/conntrack-failover |
38 | install -m 0755 ${WORKDIR}/init ${D}/${sysconfdir}/init.d/conntrackd | 38 | install -m 0755 ${UNPACKDIR}/init ${D}/${sysconfdir}/init.d/conntrackd |
39 | 39 | ||
40 | # Fix hardcoded paths in scripts | 40 | # Fix hardcoded paths in scripts |
41 | sed -i 's!/usr/sbin/!${sbindir}/!g' ${D}/${sysconfdir}/init.d/conntrack-failover ${D}/${sysconfdir}/init.d/conntrackd | 41 | sed -i 's!/usr/sbin/!${sbindir}/!g' ${D}/${sysconfdir}/init.d/conntrack-failover ${D}/${sysconfdir}/init.d/conntrackd |
@@ -45,7 +45,7 @@ do_install:append() { | |||
45 | 45 | ||
46 | if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then | 46 | if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then |
47 | install -d ${D}/${systemd_system_unitdir} | 47 | install -d ${D}/${systemd_system_unitdir} |
48 | install -m 644 ${WORKDIR}/conntrackd.service ${D}/${systemd_system_unitdir} | 48 | install -m 644 ${UNPACKDIR}/conntrackd.service ${D}/${systemd_system_unitdir} |
49 | fi | 49 | fi |
50 | } | 50 | } |
51 | 51 | ||
diff --git a/meta-networking/recipes-filter/ebtables/ebtables_2.0.11.bb b/meta-networking/recipes-filter/ebtables/ebtables_2.0.11.bb index d522b514f..8918936e1 100644 --- a/meta-networking/recipes-filter/ebtables/ebtables_2.0.11.bb +++ b/meta-networking/recipes-filter/ebtables/ebtables_2.0.11.bb | |||
@@ -29,14 +29,14 @@ do_install:append () { | |||
29 | # Replace upstream ebtables-save perl script with Fedora bash based rewrite | 29 | # Replace upstream ebtables-save perl script with Fedora bash based rewrite |
30 | # http://pkgs.fedoraproject.org/cgit/rpms/ebtables.git/tree/ebtables-save | 30 | # http://pkgs.fedoraproject.org/cgit/rpms/ebtables.git/tree/ebtables-save |
31 | rm -f ${D}${sbindir}/ebtables-legacy-save | 31 | rm -f ${D}${sbindir}/ebtables-legacy-save |
32 | install -m 0755 ${WORKDIR}/ebtables-legacy-save ${D}${sbindir}/ebtables-legacy-save | 32 | install -m 0755 ${UNPACKDIR}/ebtables-legacy-save ${D}${sbindir}/ebtables-legacy-save |
33 | 33 | ||
34 | # Install systemd service files | 34 | # Install systemd service files |
35 | if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then | 35 | if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then |
36 | install -d ${D}${systemd_unitdir}/system | 36 | install -d ${D}${systemd_unitdir}/system |
37 | install -m 0644 ${WORKDIR}/ebtables.service ${D}${systemd_unitdir}/system | 37 | install -m 0644 ${UNPACKDIR}/ebtables.service ${D}${systemd_unitdir}/system |
38 | sed -i -e 's#@SBINDIR@#${sbindir}#g' ${D}${systemd_unitdir}/system/ebtables.service | 38 | sed -i -e 's#@SBINDIR@#${sbindir}#g' ${D}${systemd_unitdir}/system/ebtables.service |
39 | install -m 0755 ${WORKDIR}/ebtables.common ${D}${sbindir}/ebtables.common | 39 | install -m 0755 ${UNPACKDIR}/ebtables.common ${D}${sbindir}/ebtables.common |
40 | fi | 40 | fi |
41 | 41 | ||
42 | install -d ${D}${base_sbindir} | 42 | install -d ${D}${base_sbindir} |
diff --git a/meta-networking/recipes-filter/ulogd2/ulogd2_2.0.8.bb b/meta-networking/recipes-filter/ulogd2/ulogd2_2.0.8.bb index d075ec478..635fa6a40 100644 --- a/meta-networking/recipes-filter/ulogd2/ulogd2_2.0.8.bb +++ b/meta-networking/recipes-filter/ulogd2/ulogd2_2.0.8.bb | |||
@@ -42,11 +42,11 @@ do_install:append () { | |||
42 | install -m 0644 ${S}/ulogd.8 ${D}${mandir}/man8/ulogd.8 | 42 | install -m 0644 ${S}/ulogd.8 ${D}${mandir}/man8/ulogd.8 |
43 | 43 | ||
44 | install -d ${D}${systemd_system_unitdir} | 44 | install -d ${D}${systemd_system_unitdir} |
45 | install -m 0644 ${WORKDIR}/ulogd.service ${D}${systemd_system_unitdir} | 45 | install -m 0644 ${UNPACKDIR}/ulogd.service ${D}${systemd_system_unitdir} |
46 | sed -i -e 's,@SBINDIR@,${sbindir},g' ${D}${systemd_system_unitdir}/ulogd.service | 46 | sed -i -e 's,@SBINDIR@,${sbindir},g' ${D}${systemd_system_unitdir}/ulogd.service |
47 | 47 | ||
48 | install -d ${D}${sysconfdir}/init.d | 48 | install -d ${D}${sysconfdir}/init.d |
49 | install -m 755 ${WORKDIR}/ulogd.init ${D}${sysconfdir}/init.d/ulogd | 49 | install -m 755 ${UNPACKDIR}/ulogd.init ${D}${sysconfdir}/init.d/ulogd |
50 | } | 50 | } |
51 | 51 | ||
52 | PACKAGES += "${PN}-plugins" | 52 | PACKAGES += "${PN}-plugins" |
diff --git a/meta-networking/recipes-protocols/freediameter/freediameter_1.5.0.bb b/meta-networking/recipes-protocols/freediameter/freediameter_1.5.0.bb index b3282d273..c7c329a5d 100644 --- a/meta-networking/recipes-protocols/freediameter/freediameter_1.5.0.bb +++ b/meta-networking/recipes-protocols/freediameter/freediameter_1.5.0.bb | |||
@@ -78,18 +78,18 @@ do_install:append() { | |||
78 | mv ${D}${sysconfdir}/${fd_pkgname}/freediameter.conf.sample \ | 78 | mv ${D}${sysconfdir}/${fd_pkgname}/freediameter.conf.sample \ |
79 | ${D}${sysconfdir}/${fd_pkgname}/freeDiameter.conf.sample | 79 | ${D}${sysconfdir}/${fd_pkgname}/freeDiameter.conf.sample |
80 | install -d ${D}${sysconfdir}/freeDiameter | 80 | install -d ${D}${sysconfdir}/freeDiameter |
81 | install ${WORKDIR}/freeDiameter.conf ${D}${sysconfdir}/${fd_pkgname}/freeDiameter.conf | 81 | install ${UNPACKDIR}/freeDiameter.conf ${D}${sysconfdir}/${fd_pkgname}/freeDiameter.conf |
82 | 82 | ||
83 | # install daemon init related files | 83 | # install daemon init related files |
84 | install -d -m 0755 ${D}${sysconfdir}/default | 84 | install -d -m 0755 ${D}${sysconfdir}/default |
85 | install -d -m 0755 ${D}${sysconfdir}/init.d | 85 | install -d -m 0755 ${D}${sysconfdir}/init.d |
86 | install -m 0644 ${S}/contrib/debian/freediameter-daemon.default \ | 86 | install -m 0644 ${S}/contrib/debian/freediameter-daemon.default \ |
87 | ${D}${sysconfdir}/default/${BPN} | 87 | ${D}${sysconfdir}/default/${BPN} |
88 | install -m 0755 ${WORKDIR}/freediameter.init ${D}${sysconfdir}/init.d/${BPN} | 88 | install -m 0755 ${UNPACKDIR}/freediameter.init ${D}${sysconfdir}/init.d/${BPN} |
89 | 89 | ||
90 | # install for systemd | 90 | # install for systemd |
91 | install -d ${D}${systemd_system_unitdir} | 91 | install -d ${D}${systemd_system_unitdir} |
92 | install -m 0644 ${WORKDIR}/freediameter.service ${D}${systemd_system_unitdir} | 92 | install -m 0644 ${UNPACKDIR}/freediameter.service ${D}${systemd_system_unitdir} |
93 | sed -i -e 's,@BINDIR@,${bindir},g' ${D}${systemd_system_unitdir}/*.service | 93 | sed -i -e 's,@BINDIR@,${bindir},g' ${D}${systemd_system_unitdir}/*.service |
94 | 94 | ||
95 | cat >> ${D}${sysconfdir}/freeDiameter/freeDiameter.conf <<EOF | 95 | cat >> ${D}${sysconfdir}/freeDiameter/freeDiameter.conf <<EOF |
@@ -108,14 +108,14 @@ EOF | |||
108 | openssl req -x509 -config ${STAGING_DIR_NATIVE}/etc/ssl/openssl.cnf -newkey rsa:4096 -sha256 -nodes -out ${D}${sysconfdir}/freeDiameter/${FD_PEM} -keyout ${D}${sysconfdir}/freeDiameter/${FD_KEY} -days 3650 -subj '/CN=${FD_HOSTNAME}.${FD_REALM}' | 108 | openssl req -x509 -config ${STAGING_DIR_NATIVE}/etc/ssl/openssl.cnf -newkey rsa:4096 -sha256 -nodes -out ${D}${sysconfdir}/freeDiameter/${FD_PEM} -keyout ${D}${sysconfdir}/freeDiameter/${FD_KEY} -days 3650 -subj '/CN=${FD_HOSTNAME}.${FD_REALM}' |
109 | openssl dhparam -out ${D}${sysconfdir}/freeDiameter/${FD_DH_PEM} 1024 | 109 | openssl dhparam -out ${D}${sysconfdir}/freeDiameter/${FD_DH_PEM} 1024 |
110 | 110 | ||
111 | find ${B} \( -name "*.c" -o -name "*.h" \) -exec sed -i -e 's#${WORKDIR}##g' {} \; | 111 | find ${B} \( -name "*.c" -o -name "*.h" \) -exec sed -i -e 's#${UNPACKDIR}##g' {} \; |
112 | } | 112 | } |
113 | 113 | ||
114 | do_install_ptest() { | 114 | do_install_ptest() { |
115 | mv ${D}${PTEST_PATH}-tests/* ${D}${PTEST_PATH}/ | 115 | mv ${D}${PTEST_PATH}-tests/* ${D}${PTEST_PATH}/ |
116 | rmdir ${D}${PTEST_PATH}-tests | 116 | rmdir ${D}${PTEST_PATH}-tests |
117 | install -m 0644 ${B}/tests/CTestTestfile.cmake ${D}${PTEST_PATH}/ | 117 | install -m 0644 ${B}/tests/CTestTestfile.cmake ${D}${PTEST_PATH}/ |
118 | sed -i -e 's#${WORKDIR}##g' ${D}${PTEST_PATH}/CTestTestfile.cmake | 118 | sed -i -e 's#${UNPACKDIR}##g' ${D}${PTEST_PATH}/CTestTestfile.cmake |
119 | sed -i "/^set_tests_properties/d" ${D}${PTEST_PATH}/CTestTestfile.cmake | 119 | sed -i "/^set_tests_properties/d" ${D}${PTEST_PATH}/CTestTestfile.cmake |
120 | } | 120 | } |
121 | 121 | ||
diff --git a/meta-networking/recipes-protocols/frr/frr_9.1.bb b/meta-networking/recipes-protocols/frr/frr_9.1.bb index eea6d62f5..b1c9153be 100644 --- a/meta-networking/recipes-protocols/frr/frr_9.1.bb +++ b/meta-networking/recipes-protocols/frr/frr_9.1.bb | |||
@@ -104,7 +104,7 @@ do_install:append:class-target () { | |||
104 | 104 | ||
105 | if ${@bb.utils.contains('DISTRO_FEATURES', 'pam', 'true', 'false', d)}; then | 105 | if ${@bb.utils.contains('DISTRO_FEATURES', 'pam', 'true', 'false', d)}; then |
106 | install -d ${D}/${sysconfdir}/pam.d | 106 | install -d ${D}/${sysconfdir}/pam.d |
107 | install -m 644 ${WORKDIR}/frr.pam ${D}/${sysconfdir}/pam.d/frr | 107 | install -m 644 ${UNPACKDIR}/frr.pam ${D}/${sysconfdir}/pam.d/frr |
108 | fi | 108 | fi |
109 | 109 | ||
110 | if ${@bb.utils.contains('DISTRO_FEATURES', 'sysvinit', 'true', 'false', d)}; then | 110 | if ${@bb.utils.contains('DISTRO_FEATURES', 'sysvinit', 'true', 'false', d)}; then |
diff --git a/meta-networking/recipes-protocols/mdns/mdns_2200.100.94.0.2.bb b/meta-networking/recipes-protocols/mdns/mdns_2200.100.94.0.2.bb index 183f05ebc..ff7b0447b 100644 --- a/meta-networking/recipes-protocols/mdns/mdns_2200.100.94.0.2.bb +++ b/meta-networking/recipes-protocols/mdns/mdns_2200.100.94.0.2.bb | |||
@@ -104,7 +104,7 @@ do_install () { | |||
104 | install -m 0644 libnss_mdns.8 ${D}${mandir}/man8 | 104 | install -m 0644 libnss_mdns.8 ${D}${mandir}/man8 |
105 | 105 | ||
106 | install -d ${D}${systemd_system_unitdir} | 106 | install -d ${D}${systemd_system_unitdir} |
107 | install -m 0644 ${WORKDIR}/mdns.service ${D}${systemd_system_unitdir} | 107 | install -m 0644 ${UNPACKDIR}/mdns.service ${D}${systemd_system_unitdir} |
108 | 108 | ||
109 | install -d ${D}${INIT_D_DIR} | 109 | install -d ${D}${INIT_D_DIR} |
110 | install mdnsd.sh ${D}${INIT_D_DIR}/mdns | 110 | install mdnsd.sh ${D}${INIT_D_DIR}/mdns |
diff --git a/meta-networking/recipes-protocols/net-snmp/net-snmp_5.9.4.bb b/meta-networking/recipes-protocols/net-snmp/net-snmp_5.9.4.bb index 395b02df0..75b3d9e8c 100644 --- a/meta-networking/recipes-protocols/net-snmp/net-snmp_5.9.4.bb +++ b/meta-networking/recipes-protocols/net-snmp/net-snmp_5.9.4.bb | |||
@@ -116,12 +116,12 @@ do_configure:append() { | |||
116 | do_install:append() { | 116 | do_install:append() { |
117 | install -d ${D}${sysconfdir}/snmp | 117 | install -d ${D}${sysconfdir}/snmp |
118 | install -d ${D}${sysconfdir}/init.d | 118 | install -d ${D}${sysconfdir}/init.d |
119 | install -m 755 ${WORKDIR}/init ${D}${sysconfdir}/init.d/snmpd | 119 | install -m 755 ${UNPACKDIR}/init ${D}${sysconfdir}/init.d/snmpd |
120 | install -m 644 ${WORKDIR}/snmpd.conf ${D}${sysconfdir}/snmp/ | 120 | install -m 644 ${UNPACKDIR}/snmpd.conf ${D}${sysconfdir}/snmp/ |
121 | install -m 644 ${WORKDIR}/snmptrapd.conf ${D}${sysconfdir}/snmp/ | 121 | install -m 644 ${UNPACKDIR}/snmptrapd.conf ${D}${sysconfdir}/snmp/ |
122 | install -d ${D}${systemd_unitdir}/system | 122 | install -d ${D}${systemd_unitdir}/system |
123 | install -m 0644 ${WORKDIR}/snmpd.service ${D}${systemd_unitdir}/system | 123 | install -m 0644 ${UNPACKDIR}/snmpd.service ${D}${systemd_unitdir}/system |
124 | install -m 0644 ${WORKDIR}/snmptrapd.service ${D}${systemd_unitdir}/system | 124 | install -m 0644 ${UNPACKDIR}/snmptrapd.service ${D}${systemd_unitdir}/system |
125 | sed -e "s@^NSC_SRCDIR=.*@NSC_SRCDIR=.@g" \ | 125 | sed -e "s@^NSC_SRCDIR=.*@NSC_SRCDIR=.@g" \ |
126 | -i ${D}${bindir}/net-snmp-create-v3-user | 126 | -i ${D}${bindir}/net-snmp-create-v3-user |
127 | sed -e 's@^NSC_SRCDIR=.*@NSC_SRCDIR=.@g' \ | 127 | sed -e 's@^NSC_SRCDIR=.*@NSC_SRCDIR=.@g' \ |
diff --git a/meta-networking/recipes-protocols/openl2tp/openl2tp_1.8.bb b/meta-networking/recipes-protocols/openl2tp/openl2tp_1.8.bb index 183c0066d..f64c7340d 100644 --- a/meta-networking/recipes-protocols/openl2tp/openl2tp_1.8.bb +++ b/meta-networking/recipes-protocols/openl2tp/openl2tp_1.8.bb | |||
@@ -74,7 +74,7 @@ do_install:append () { | |||
74 | install -m 0755 ${S}/etc/sysconfig/openl2tpd ${D}${sysconfdir}/default/openl2tpd | 74 | install -m 0755 ${S}/etc/sysconfig/openl2tpd ${D}${sysconfdir}/default/openl2tpd |
75 | 75 | ||
76 | if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then | 76 | if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then |
77 | install -D -m 0644 ${WORKDIR}/openl2tpd.service ${D}${systemd_system_unitdir}/openl2tpd.service | 77 | install -D -m 0644 ${UNPACKDIR}/openl2tpd.service ${D}${systemd_system_unitdir}/openl2tpd.service |
78 | sed -i -e 's,@STATEDIR@,${localstatedir},g' \ | 78 | sed -i -e 's,@STATEDIR@,${localstatedir},g' \ |
79 | -e 's,@SYSCONFDIR@,${sysconfdir},g' \ | 79 | -e 's,@SYSCONFDIR@,${sysconfdir},g' \ |
80 | -e 's,@SBINDIR@,${sbindir},g' \ | 80 | -e 's,@SBINDIR@,${sbindir},g' \ |
diff --git a/meta-networking/recipes-protocols/pptp-linux/pptp-linux_1.10.0.bb b/meta-networking/recipes-protocols/pptp-linux/pptp-linux_1.10.0.bb index 0d26c338b..cabe18ef8 100644 --- a/meta-networking/recipes-protocols/pptp-linux/pptp-linux_1.10.0.bb +++ b/meta-networking/recipes-protocols/pptp-linux/pptp-linux_1.10.0.bb | |||
@@ -26,7 +26,7 @@ do_install() { | |||
26 | install -d ${D}${sbindir} ${D}${sysconfdir}/ppp ${D}${mandir}/man8 | 26 | install -d ${D}${sbindir} ${D}${sysconfdir}/ppp ${D}${mandir}/man8 |
27 | install -m 555 pptp ${D}${sbindir} | 27 | install -m 555 pptp ${D}${sbindir} |
28 | install -m 644 pptp.8 ${D}${mandir}/man8 | 28 | install -m 644 pptp.8 ${D}${mandir}/man8 |
29 | install -m 644 ${WORKDIR}/options.pptp ${D}${sysconfdir}/ppp | 29 | install -m 644 ${UNPACKDIR}/options.pptp ${D}${sysconfdir}/ppp |
30 | } | 30 | } |
31 | 31 | ||
32 | RDEPENDS:${PN} = "ppp" | 32 | RDEPENDS:${PN} = "ppp" |
diff --git a/meta-networking/recipes-protocols/rp-pppoe/rp-pppoe_3.15.bb b/meta-networking/recipes-protocols/rp-pppoe/rp-pppoe_3.15.bb index 4dfdb8fc2..c8e176711 100644 --- a/meta-networking/recipes-protocols/rp-pppoe/rp-pppoe_3.15.bb +++ b/meta-networking/recipes-protocols/rp-pppoe/rp-pppoe_3.15.bb | |||
@@ -29,7 +29,7 @@ CFLAGS += "-D_GNU_SOURCE" | |||
29 | 29 | ||
30 | do_install:append() { | 30 | do_install:append() { |
31 | install -d ${D}${systemd_unitdir}/system | 31 | install -d ${D}${systemd_unitdir}/system |
32 | install -m 0644 ${WORKDIR}/pppoe-server.service ${D}${systemd_unitdir}/system | 32 | install -m 0644 ${UNPACKDIR}/pppoe-server.service ${D}${systemd_unitdir}/system |
33 | sed -i -e 's#@SYSCONFDIR@#${sysconfdir}#g' ${D}${systemd_unitdir}/system/pppoe-server.service | 33 | sed -i -e 's#@SYSCONFDIR@#${sysconfdir}#g' ${D}${systemd_unitdir}/system/pppoe-server.service |
34 | sed -i -e 's#@SBINDIR@#${sbindir}#g' ${D}${systemd_unitdir}/system/pppoe-server.service | 34 | sed -i -e 's#@SBINDIR@#${sbindir}#g' ${D}${systemd_unitdir}/system/pppoe-server.service |
35 | install -d ${D}${datadir}/doc/${PN} | 35 | install -d ${D}${datadir}/doc/${PN} |
@@ -41,8 +41,8 @@ do_install:append() { | |||
41 | do_install() { | 41 | do_install() { |
42 | # Install init script and default settings | 42 | # Install init script and default settings |
43 | install -m 0755 -d ${D}${sysconfdir}/default ${D}${sysconfdir}/init.d | 43 | install -m 0755 -d ${D}${sysconfdir}/default ${D}${sysconfdir}/init.d |
44 | install -m 0644 ${WORKDIR}/pppoe-server.default ${D}${sysconfdir}/default/pppoe-server | 44 | install -m 0644 ${UNPACKDIR}/pppoe-server.default ${D}${sysconfdir}/default/pppoe-server |
45 | install -m 0755 ${WORKDIR}/pppoe-server.init ${D}${sysconfdir}/init.d/pppoe-server | 45 | install -m 0755 ${UNPACKDIR}/pppoe-server.init ${D}${sysconfdir}/init.d/pppoe-server |
46 | # Install | 46 | # Install |
47 | oe_runmake -C ${S} DESTDIR=${D} docdir=${docdir} install | 47 | oe_runmake -C ${S} DESTDIR=${D} docdir=${docdir} install |
48 | chmod 4755 ${D}${sbindir}/pppoe | 48 | chmod 4755 ${D}${sbindir}/pppoe |
diff --git a/meta-networking/recipes-protocols/zeroconf/zeroconf_0.9.bb b/meta-networking/recipes-protocols/zeroconf/zeroconf_0.9.bb index 61f6b79dd..cb2669921 100644 --- a/meta-networking/recipes-protocols/zeroconf/zeroconf_0.9.bb +++ b/meta-networking/recipes-protocols/zeroconf/zeroconf_0.9.bb | |||
@@ -32,6 +32,6 @@ do_install () { | |||
32 | install -d ${D}${sysconfdir}/network/if-up.d | 32 | install -d ${D}${sysconfdir}/network/if-up.d |
33 | install -d ${D}${sysconfdir}/default | 33 | install -d ${D}${sysconfdir}/default |
34 | install -c -m 755 ${S}/zeroconf ${D}${sbindir}/zeroconf | 34 | install -c -m 755 ${S}/zeroconf ${D}${sbindir}/zeroconf |
35 | install -c -m 755 ${WORKDIR}/debian-zeroconf ${D}${sysconfdir}/network/if-up.d/zeroconf | 35 | install -c -m 755 ${UNPACKDIR}/debian-zeroconf ${D}${sysconfdir}/network/if-up.d/zeroconf |
36 | install -c ${WORKDIR}/zeroconf-default ${D}${sysconfdir}/default/zeroconf | 36 | install -c ${UNPACKDIR}/zeroconf-default ${D}${sysconfdir}/default/zeroconf |
37 | } | 37 | } |
diff --git a/meta-networking/recipes-support/arptables/arptables_git.bb b/meta-networking/recipes-support/arptables/arptables_git.bb index 949794bf3..f9dd66f60 100644 --- a/meta-networking/recipes-support/arptables/arptables_git.bb +++ b/meta-networking/recipes-support/arptables/arptables_git.bb | |||
@@ -25,7 +25,7 @@ do_install() { | |||
25 | oe_runmake install DESTDIR=${D} | 25 | oe_runmake install DESTDIR=${D} |
26 | if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then | 26 | if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then |
27 | install -d ${D}${systemd_unitdir}/system | 27 | install -d ${D}${systemd_unitdir}/system |
28 | install -m 644 ${WORKDIR}/arptables.service ${D}${systemd_unitdir}/system | 28 | install -m 644 ${UNPACKDIR}/arptables.service ${D}${systemd_unitdir}/system |
29 | fi | 29 | fi |
30 | } | 30 | } |
31 | 31 | ||
diff --git a/meta-networking/recipes-support/chrony/chrony_4.5.bb b/meta-networking/recipes-support/chrony/chrony_4.5.bb index ed26e5987..0681a3439 100644 --- a/meta-networking/recipes-support/chrony/chrony_4.5.bb +++ b/meta-networking/recipes-support/chrony/chrony_4.5.bb | |||
@@ -90,7 +90,7 @@ do_install() { | |||
90 | 90 | ||
91 | # Config file | 91 | # Config file |
92 | install -d ${D}${sysconfdir} | 92 | install -d ${D}${sysconfdir} |
93 | install -m 644 ${WORKDIR}/chrony.conf ${D}${sysconfdir} | 93 | install -m 644 ${UNPACKDIR}/chrony.conf ${D}${sysconfdir} |
94 | if ${@bb.utils.contains('PACKAGECONFIG', 'privdrop', 'true', 'false', d)}; then | 94 | if ${@bb.utils.contains('PACKAGECONFIG', 'privdrop', 'true', 'false', d)}; then |
95 | echo "# Define user to drop to after dropping root privileges" >> ${D}${sysconfdir}/chrony.conf | 95 | echo "# Define user to drop to after dropping root privileges" >> ${D}${sysconfdir}/chrony.conf |
96 | echo "user chronyd" >> ${D}${sysconfdir}/chrony.conf | 96 | echo "user chronyd" >> ${D}${sysconfdir}/chrony.conf |
@@ -98,7 +98,7 @@ do_install() { | |||
98 | 98 | ||
99 | # System V init script | 99 | # System V init script |
100 | install -d ${D}${sysconfdir}/init.d | 100 | install -d ${D}${sysconfdir}/init.d |
101 | install -m 755 ${WORKDIR}/chronyd ${D}${sysconfdir}/init.d | 101 | install -m 755 ${UNPACKDIR}/chronyd ${D}${sysconfdir}/init.d |
102 | 102 | ||
103 | # systemd unit configuration file | 103 | # systemd unit configuration file |
104 | install -d ${D}${systemd_unitdir}/system | 104 | install -d ${D}${systemd_unitdir}/system |
diff --git a/meta-networking/recipes-support/cim-schema/cim-schema-docs_2.40.0.bb b/meta-networking/recipes-support/cim-schema/cim-schema-docs_2.40.0.bb index 62daf3279..86f6a0df5 100644 --- a/meta-networking/recipes-support/cim-schema/cim-schema-docs_2.40.0.bb +++ b/meta-networking/recipes-support/cim-schema/cim-schema-docs_2.40.0.bb | |||
@@ -9,7 +9,7 @@ SRC_URI = "http://dmtf.org/sites/default/files/cim/cim_schema_v2400/cim_schema_$ | |||
9 | " | 9 | " |
10 | SRC_URI[md5sum] = "3d01940bc1085c6c42184c25fb61f739" | 10 | SRC_URI[md5sum] = "3d01940bc1085c6c42184c25fb61f739" |
11 | SRC_URI[sha256sum] = "3174cf0f8657b19d80dc59e184778d8e553da424728cb2966fe9d5428dd84267" | 11 | SRC_URI[sha256sum] = "3174cf0f8657b19d80dc59e184778d8e553da424728cb2966fe9d5428dd84267" |
12 | LIC_FILES_CHKSUM = "file://${WORKDIR}/LICENSE;md5=eecc6f71a56ff3caf17f15bf7aeac7b4" | 12 | LIC_FILES_CHKSUM = "file://${UNPACKDIR}/LICENSE;md5=eecc6f71a56ff3caf17f15bf7aeac7b4" |
13 | 13 | ||
14 | do_install() { | 14 | do_install() { |
15 | install -d -m 0755 ${D}${datadir}/doc/cim-schema-${PV}-docs | 15 | install -d -m 0755 ${D}${datadir}/doc/cim-schema-${PV}-docs |
diff --git a/meta-networking/recipes-support/cim-schema/cim-schema-exper_2.50.0.bb b/meta-networking/recipes-support/cim-schema/cim-schema-exper_2.50.0.bb index 7d51bc1c9..45eee8f1b 100644 --- a/meta-networking/recipes-support/cim-schema/cim-schema-exper_2.50.0.bb +++ b/meta-networking/recipes-support/cim-schema/cim-schema-exper_2.50.0.bb | |||
@@ -9,12 +9,12 @@ SRC_URI = "http://dmtf.org/sites/default/files/cim/cim_schema_v2500/cim_schema_$ | |||
9 | " | 9 | " |
10 | SRC_URI[md5sum] = "ee4ad6441a2b65ca60a3abc53e3ec629" | 10 | SRC_URI[md5sum] = "ee4ad6441a2b65ca60a3abc53e3ec629" |
11 | SRC_URI[sha256sum] = "a44d67881325e267ef46b72eabe0c69f90470b1033b1ce7c26d9ba99072adb50" | 11 | SRC_URI[sha256sum] = "a44d67881325e267ef46b72eabe0c69f90470b1033b1ce7c26d9ba99072adb50" |
12 | LIC_FILES_CHKSUM = "file://${WORKDIR}/LICENSE;md5=eecc6f71a56ff3caf17f15bf7aeac7b4" | 12 | LIC_FILES_CHKSUM = "file://${UNPACKDIR}/LICENSE;md5=eecc6f71a56ff3caf17f15bf7aeac7b4" |
13 | 13 | ||
14 | do_install() { | 14 | do_install() { |
15 | install -d -m 0755 ${D}${datadir}/mof/cimv${PV}/ | 15 | install -d -m 0755 ${D}${datadir}/mof/cimv${PV}/ |
16 | install -d -m 0755 ${D}${datadir}/doc/cim-schema-${PV} | 16 | install -d -m 0755 ${D}${datadir}/doc/cim-schema-${PV} |
17 | install -m 644 ${WORKDIR}/LICENSE ${D}${datadir}/doc/cim-schema-${PV} | 17 | install -m 644 ${UNPACKDIR}/LICENSE ${D}${datadir}/doc/cim-schema-${PV} |
18 | 18 | ||
19 | cp -R --no-dereference --preserve=mode,links -v ${S}/* ${D}${datadir}/mof/cimv${PV}/ | 19 | cp -R --no-dereference --preserve=mode,links -v ${S}/* ${D}${datadir}/mof/cimv${PV}/ |
20 | chown -R root:root ${D}${datadir}/mof/cimv${PV} | 20 | chown -R root:root ${D}${datadir}/mof/cimv${PV} |
diff --git a/meta-networking/recipes-support/cim-schema/cim-schema-final_2.40.0.bb b/meta-networking/recipes-support/cim-schema/cim-schema-final_2.40.0.bb index 32bd8acbb..d046622df 100644 --- a/meta-networking/recipes-support/cim-schema/cim-schema-final_2.40.0.bb +++ b/meta-networking/recipes-support/cim-schema/cim-schema-final_2.40.0.bb | |||
@@ -9,12 +9,12 @@ SRC_URI = "http://dmtf.org/sites/default/files/cim/cim_schema_v2400/cim_schema_$ | |||
9 | " | 9 | " |
10 | SRC_URI[md5sum] = "a9bdf17c7374e3b5b7adeaac4842c4ad" | 10 | SRC_URI[md5sum] = "a9bdf17c7374e3b5b7adeaac4842c4ad" |
11 | SRC_URI[sha256sum] = "dbfa3064ea427acd71a4bebbc172ca2dc44b0b09a6d83b0945b9ffa988a9058a" | 11 | SRC_URI[sha256sum] = "dbfa3064ea427acd71a4bebbc172ca2dc44b0b09a6d83b0945b9ffa988a9058a" |
12 | LIC_FILES_CHKSUM = "file://${WORKDIR}/LICENSE;md5=eecc6f71a56ff3caf17f15bf7aeac7b4" | 12 | LIC_FILES_CHKSUM = "file://${UNPACKDIR}/LICENSE;md5=eecc6f71a56ff3caf17f15bf7aeac7b4" |
13 | 13 | ||
14 | do_install() { | 14 | do_install() { |
15 | install -d -m 0755 ${D}${datadir}/mof/cimv${PV}/ | 15 | install -d -m 0755 ${D}${datadir}/mof/cimv${PV}/ |
16 | install -d -m 0755 ${D}${datadir}/doc/cim-schema-${PV} | 16 | install -d -m 0755 ${D}${datadir}/doc/cim-schema-${PV} |
17 | install -m 644 ${WORKDIR}/LICENSE ${D}${datadir}/doc/cim-schema-${PV} | 17 | install -m 644 ${UNPACKDIR}/LICENSE ${D}${datadir}/doc/cim-schema-${PV} |
18 | 18 | ||
19 | cp -R --no-dereference --preserve=mode,links -v ${S}/* ${D}${datadir}/mof/cimv${PV}/ | 19 | cp -R --no-dereference --preserve=mode,links -v ${S}/* ${D}${datadir}/mof/cimv${PV}/ |
20 | chown -R root:root ${D}${datadir}/mof/cimv${PV}/ | 20 | chown -R root:root ${D}${datadir}/mof/cimv${PV}/ |
diff --git a/meta-networking/recipes-support/dnsmasq/dnsmasq_2.90.bb b/meta-networking/recipes-support/dnsmasq/dnsmasq_2.90.bb index 38fa271dc..be74759d5 100644 --- a/meta-networking/recipes-support/dnsmasq/dnsmasq_2.90.bb +++ b/meta-networking/recipes-support/dnsmasq/dnsmasq_2.90.bb | |||
@@ -81,20 +81,20 @@ do_install () { | |||
81 | "MANDIR=${D}${mandir}" \ | 81 | "MANDIR=${D}${mandir}" \ |
82 | install-i18n | 82 | install-i18n |
83 | install -d ${D}${sysconfdir}/ ${D}${sysconfdir}/init.d ${D}${sysconfdir}/dnsmasq.d | 83 | install -d ${D}${sysconfdir}/ ${D}${sysconfdir}/init.d ${D}${sysconfdir}/dnsmasq.d |
84 | install -m 644 ${WORKDIR}/dnsmasq.conf ${D}${sysconfdir}/ | 84 | install -m 644 ${UNPACKDIR}/dnsmasq.conf ${D}${sysconfdir}/ |
85 | install -m 755 ${WORKDIR}/init ${D}${sysconfdir}/init.d/dnsmasq | 85 | install -m 755 ${UNPACKDIR}/init ${D}${sysconfdir}/init.d/dnsmasq |
86 | 86 | ||
87 | install -d ${D}${systemd_unitdir}/system | 87 | install -d ${D}${systemd_unitdir}/system |
88 | 88 | ||
89 | if [ "${@bb.utils.filter('PACKAGECONFIG', 'resolvconf', d)}" ]; then | 89 | if [ "${@bb.utils.filter('PACKAGECONFIG', 'resolvconf', d)}" ]; then |
90 | install -m 0644 ${WORKDIR}/dnsmasq-resolvconf.service ${D}${systemd_unitdir}/system/dnsmasq.service | 90 | install -m 0644 ${UNPACKDIR}/dnsmasq-resolvconf.service ${D}${systemd_unitdir}/system/dnsmasq.service |
91 | else | 91 | else |
92 | install -m 0644 ${WORKDIR}/dnsmasq-noresolvconf.service ${D}${systemd_unitdir}/system/dnsmasq.service | 92 | install -m 0644 ${UNPACKDIR}/dnsmasq-noresolvconf.service ${D}${systemd_unitdir}/system/dnsmasq.service |
93 | fi | 93 | fi |
94 | 94 | ||
95 | if [ "${@bb.utils.filter('DISTRO_FEATURES', 'systemd', d)}" ]; then | 95 | if [ "${@bb.utils.filter('DISTRO_FEATURES', 'systemd', d)}" ]; then |
96 | install -d ${D}${sysconfdir}/systemd/resolved.conf.d/ | 96 | install -d ${D}${sysconfdir}/systemd/resolved.conf.d/ |
97 | install -m 0644 ${WORKDIR}/dnsmasq-resolved.conf ${D}${sysconfdir}/systemd/resolved.conf.d/ | 97 | install -m 0644 ${UNPACKDIR}/dnsmasq-resolved.conf ${D}${sysconfdir}/systemd/resolved.conf.d/ |
98 | fi | 98 | fi |
99 | 99 | ||
100 | if [ "${@bb.utils.filter('PACKAGECONFIG', 'dhcp', d)}" ]; then | 100 | if [ "${@bb.utils.filter('PACKAGECONFIG', 'dhcp', d)}" ]; then |
@@ -113,11 +113,11 @@ do_install () { | |||
113 | 113 | ||
114 | if [ "${@bb.utils.filter('PACKAGECONFIG', 'resolvconf', d)}" ]; then | 114 | if [ "${@bb.utils.filter('PACKAGECONFIG', 'resolvconf', d)}" ]; then |
115 | install -d ${D}${sysconfdir}/resolvconf/update.d/ | 115 | install -d ${D}${sysconfdir}/resolvconf/update.d/ |
116 | install -m 0755 ${WORKDIR}/dnsmasq.resolvconf ${D}${sysconfdir}/resolvconf/update.d/dnsmasq | 116 | install -m 0755 ${UNPACKDIR}/dnsmasq.resolvconf ${D}${sysconfdir}/resolvconf/update.d/dnsmasq |
117 | 117 | ||
118 | install -d ${D}${sysconfdir}/default/volatiles | 118 | install -d ${D}${sysconfdir}/default/volatiles |
119 | install -m 0644 ${WORKDIR}/99_dnsmasq ${D}${sysconfdir}/default/volatiles | 119 | install -m 0644 ${UNPACKDIR}/99_dnsmasq ${D}${sysconfdir}/default/volatiles |
120 | install -m 0755 ${WORKDIR}/dnsmasq-resolvconf-helper ${D}${bindir} | 120 | install -m 0755 ${UNPACKDIR}/dnsmasq-resolvconf-helper ${D}${bindir} |
121 | fi | 121 | fi |
122 | } | 122 | } |
123 | 123 | ||
diff --git a/meta-networking/recipes-support/dovecot/dovecot_2.3.21.bb b/meta-networking/recipes-support/dovecot/dovecot_2.3.21.bb index 17fbd789b..2f887e601 100644 --- a/meta-networking/recipes-support/dovecot/dovecot_2.3.21.bb +++ b/meta-networking/recipes-support/dovecot/dovecot_2.3.21.bb | |||
@@ -52,7 +52,7 @@ do_install:append () { | |||
52 | install -d 755 ${D}/etc/dovecot | 52 | install -d 755 ${D}/etc/dovecot |
53 | touch 644 ${D}/etc/dovecot/dovecot.conf | 53 | touch 644 ${D}/etc/dovecot/dovecot.conf |
54 | if [ "${@bb.utils.filter('DISTRO_FEATURES', 'systemd', d)}" ]; then | 54 | if [ "${@bb.utils.filter('DISTRO_FEATURES', 'systemd', d)}" ]; then |
55 | install -m 0644 ${WORKDIR}/dovecot.service ${D}${systemd_unitdir}/system | 55 | install -m 0644 ${UNPACKDIR}/dovecot.service ${D}${systemd_unitdir}/system |
56 | sed -i -e 's#@SYSCONFDIR@#${sysconfdir}#g' ${D}${systemd_unitdir}/system/dovecot.service | 56 | sed -i -e 's#@SYSCONFDIR@#${sysconfdir}#g' ${D}${systemd_unitdir}/system/dovecot.service |
57 | sed -i -e 's#@SBINDIR@#${sbindir}#g' ${D}${systemd_unitdir}/system/dovecot.service | 57 | sed -i -e 's#@SBINDIR@#${sbindir}#g' ${D}${systemd_unitdir}/system/dovecot.service |
58 | fi | 58 | fi |
diff --git a/meta-networking/recipes-support/geoip/geoip_1.6.12.bb b/meta-networking/recipes-support/geoip/geoip_1.6.12.bb index 429cd69d6..b247823cd 100644 --- a/meta-networking/recipes-support/geoip/geoip_1.6.12.bb +++ b/meta-networking/recipes-support/geoip/geoip_1.6.12.bb | |||
@@ -46,10 +46,10 @@ EXTRA_OECONF = "--disable-static \ | |||
46 | do_install() { | 46 | do_install() { |
47 | make DESTDIR=${D} install | 47 | make DESTDIR=${D} install |
48 | install -d ${D}/${datadir}/GeoIP | 48 | install -d ${D}/${datadir}/GeoIP |
49 | install ${WORKDIR}/GeoIP.dat.${GEOIP_DATABASE_VERSION} ${D}/${datadir}/GeoIP/GeoIP.dat | 49 | install ${UNPACKDIR}/GeoIP.dat.${GEOIP_DATABASE_VERSION} ${D}/${datadir}/GeoIP/GeoIP.dat |
50 | install ${WORKDIR}/GeoIPv6.dat.${GEOIP_DATABASE_VERSION} ${D}/${datadir}/GeoIP/GeoIPv6.dat | 50 | install ${UNPACKDIR}/GeoIPv6.dat.${GEOIP_DATABASE_VERSION} ${D}/${datadir}/GeoIP/GeoIPv6.dat |
51 | install ${WORKDIR}/GeoLiteCity.dat.${GEOIP_DATABASE_VERSION} ${D}/${datadir}/GeoIP/GeoLiteCity.dat | 51 | install ${UNPACKDIR}/GeoLiteCity.dat.${GEOIP_DATABASE_VERSION} ${D}/${datadir}/GeoIP/GeoLiteCity.dat |
52 | install ${WORKDIR}/GeoLiteCityv6.dat.${GEOIP_DATABASE_VERSION} ${D}/${datadir}/GeoIP/GeoLiteCityv6.dat | 52 | install ${UNPACKDIR}/GeoLiteCityv6.dat.${GEOIP_DATABASE_VERSION} ${D}/${datadir}/GeoIP/GeoLiteCityv6.dat |
53 | ln -s GeoLiteCity.dat ${D}${datadir}/GeoIP/GeoIPCity.dat | 53 | ln -s GeoLiteCity.dat ${D}${datadir}/GeoIP/GeoIPCity.dat |
54 | } | 54 | } |
55 | 55 | ||
diff --git a/meta-networking/recipes-support/geoip/geoipupdate_2.5.0.bb b/meta-networking/recipes-support/geoip/geoipupdate_2.5.0.bb index 9a0292eac..e4dc9dee4 100644 --- a/meta-networking/recipes-support/geoip/geoipupdate_2.5.0.bb +++ b/meta-networking/recipes-support/geoip/geoipupdate_2.5.0.bb | |||
@@ -28,6 +28,6 @@ inherit autotools | |||
28 | do_install:append() { | 28 | do_install:append() { |
29 | install -d ${D}/${sysconfdir} | 29 | install -d ${D}/${sysconfdir} |
30 | install -d ${D}/${sysconfdir}/cron.d | 30 | install -d ${D}/${sysconfdir}/cron.d |
31 | install ${WORKDIR}/GeoIP.conf ${D}/${sysconfdir}/ | 31 | install ${UNPACKDIR}/GeoIP.conf ${D}/${sysconfdir}/ |
32 | install ${WORKDIR}/geoipupdate.cron ${D}/${sysconfdir}/cron.d/ | 32 | install ${UNPACKDIR}/geoipupdate.cron ${D}/${sysconfdir}/cron.d/ |
33 | } | 33 | } |
diff --git a/meta-networking/recipes-support/lksctp-tools/lksctp-tools_1.0.19.bb b/meta-networking/recipes-support/lksctp-tools/lksctp-tools_1.0.19.bb index 3f945eeee..0243f2a1d 100644 --- a/meta-networking/recipes-support/lksctp-tools/lksctp-tools_1.0.19.bb +++ b/meta-networking/recipes-support/lksctp-tools/lksctp-tools_1.0.19.bb | |||
@@ -27,8 +27,8 @@ BBCLASSEXTEND = "native" | |||
27 | inherit autotools-brokensep pkgconfig binconfig ptest | 27 | inherit autotools-brokensep pkgconfig binconfig ptest |
28 | 28 | ||
29 | do_install_ptest () { | 29 | do_install_ptest () { |
30 | install -m 0755 ${WORKDIR}/v4test.sh ${D}${PTEST_PATH} | 30 | install -m 0755 ${UNPACKDIR}/v4test.sh ${D}${PTEST_PATH} |
31 | install -m 0755 ${WORKDIR}/v6test.sh ${D}${PTEST_PATH} | 31 | install -m 0755 ${UNPACKDIR}/v6test.sh ${D}${PTEST_PATH} |
32 | for testcase in `find ${B}/src/apps/.libs ${B}/src/func_tests/.libs -maxdepth 1 -type f -executable`; do | 32 | for testcase in `find ${B}/src/apps/.libs ${B}/src/func_tests/.libs -maxdepth 1 -type f -executable`; do |
33 | install $testcase ${D}${PTEST_PATH} | 33 | install $testcase ${D}${PTEST_PATH} |
34 | done | 34 | done |
diff --git a/meta-networking/recipes-support/netperf/netperf_git.bb b/meta-networking/recipes-support/netperf/netperf_git.bb index 6e459eeeb..579a04b86 100644 --- a/meta-networking/recipes-support/netperf/netperf_git.bb +++ b/meta-networking/recipes-support/netperf/netperf_git.bb | |||
@@ -42,14 +42,14 @@ do_configure:prepend() { | |||
42 | } | 42 | } |
43 | 43 | ||
44 | do_install() { | 44 | do_install() { |
45 | sed -e 's#/usr/sbin/#${sbindir}/#g' -i ${WORKDIR}/init | 45 | sed -e 's#/usr/sbin/#${sbindir}/#g' -i ${UNPACKDIR}/init |
46 | install -d ${D}${sbindir} ${D}${bindir} ${D}${sysconfdir}/init.d ${D}${systemd_system_unitdir} | 46 | install -d ${D}${sbindir} ${D}${bindir} ${D}${sysconfdir}/init.d ${D}${systemd_system_unitdir} |
47 | if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then | 47 | if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then |
48 | sed -e 's#/usr/sbin/#${sbindir}/#g' ${WORKDIR}/netserver.service > ${D}${systemd_system_unitdir}/netserver.service | 48 | sed -e 's#/usr/sbin/#${sbindir}/#g' ${UNPACKDIR}/netserver.service > ${D}${systemd_system_unitdir}/netserver.service |
49 | fi | 49 | fi |
50 | install -m 4755 src/netperf ${D}${bindir} | 50 | install -m 4755 src/netperf ${D}${bindir} |
51 | install -m 4755 src/netserver ${D}${sbindir} | 51 | install -m 4755 src/netserver ${D}${sbindir} |
52 | install -m 0755 ${WORKDIR}/init ${D}${sysconfdir}/init.d/netperf | 52 | install -m 0755 ${UNPACKDIR}/init ${D}${sysconfdir}/init.d/netperf |
53 | 53 | ||
54 | # man | 54 | # man |
55 | install -d ${D}${mandir}/man1/ | 55 | install -d ${D}${mandir}/man1/ |
diff --git a/meta-networking/recipes-support/nis/yp-tools_2.14.bb b/meta-networking/recipes-support/nis/yp-tools_2.14.bb index 8b7ed6fa2..0e147826f 100644 --- a/meta-networking/recipes-support/nis/yp-tools_2.14.bb +++ b/meta-networking/recipes-support/nis/yp-tools_2.14.bb | |||
@@ -30,5 +30,5 @@ CACHED_CONFIGUREVARS += "ac_cv_prog_STRIP=/bin/true" | |||
30 | 30 | ||
31 | do_install:append() { | 31 | do_install:append() { |
32 | install -d ${D}${systemd_unitdir}/system | 32 | install -d ${D}${systemd_unitdir}/system |
33 | install -m 0644 ${WORKDIR}/domainname.service ${D}${systemd_unitdir}/system | 33 | install -m 0644 ${UNPACKDIR}/domainname.service ${D}${systemd_unitdir}/system |
34 | } | 34 | } |
diff --git a/meta-networking/recipes-support/nis/yp-tools_4.2.3.bb b/meta-networking/recipes-support/nis/yp-tools_4.2.3.bb index d2535487b..9b2c18687 100644 --- a/meta-networking/recipes-support/nis/yp-tools_4.2.3.bb +++ b/meta-networking/recipes-support/nis/yp-tools_4.2.3.bb | |||
@@ -43,5 +43,5 @@ FILES:${PN}-staticdev += " ${libdir}/yp-nis/*.a" | |||
43 | 43 | ||
44 | do_install:append() { | 44 | do_install:append() { |
45 | install -d ${D}${systemd_unitdir}/system | 45 | install -d ${D}${systemd_unitdir}/system |
46 | install -m 0644 ${WORKDIR}/domainname.service ${D}${systemd_unitdir}/system | 46 | install -m 0644 ${UNPACKDIR}/domainname.service ${D}${systemd_unitdir}/system |
47 | } | 47 | } |
diff --git a/meta-networking/recipes-support/nis/ypbind-mt_2.7.2.bb b/meta-networking/recipes-support/nis/ypbind-mt_2.7.2.bb index a95062bc8..e29730a23 100644 --- a/meta-networking/recipes-support/nis/ypbind-mt_2.7.2.bb +++ b/meta-networking/recipes-support/nis/ypbind-mt_2.7.2.bb | |||
@@ -49,10 +49,10 @@ do_install:append () { | |||
49 | install -d ${D}${sysconfdir}/init.d | 49 | install -d ${D}${sysconfdir}/init.d |
50 | install -d ${D}${sysconfdir}/rcS.d | 50 | install -d ${D}${sysconfdir}/rcS.d |
51 | 51 | ||
52 | install -m 0755 ${WORKDIR}/ypbind.init ${D}${sysconfdir}/init.d/ypbind | 52 | install -m 0755 ${UNPACKDIR}/ypbind.init ${D}${sysconfdir}/init.d/ypbind |
53 | 53 | ||
54 | install -d ${D}${systemd_unitdir}/system | 54 | install -d ${D}${systemd_unitdir}/system |
55 | install -m 0644 ${WORKDIR}/ypbind.service ${D}${systemd_unitdir}/system | 55 | install -m 0644 ${UNPACKDIR}/ypbind.service ${D}${systemd_unitdir}/system |
56 | } | 56 | } |
57 | 57 | ||
58 | # uses glibc internal APIs e.g. _hostalias | 58 | # uses glibc internal APIs e.g. _hostalias |
diff --git a/meta-networking/recipes-support/ntopng/ntopng_5.2.1.bb b/meta-networking/recipes-support/ntopng/ntopng_5.2.1.bb index 110ca3686..a9ace9b41 100644 --- a/meta-networking/recipes-support/ntopng/ntopng_5.2.1.bb +++ b/meta-networking/recipes-support/ntopng/ntopng_5.2.1.bb | |||
@@ -34,7 +34,7 @@ inherit autotools-brokensep gettext pkgconfig systemd | |||
34 | 34 | ||
35 | do_install:append() { | 35 | do_install:append() { |
36 | install -d ${D}${systemd_unitdir}/system/ | 36 | install -d ${D}${systemd_unitdir}/system/ |
37 | install -m 0644 ${WORKDIR}/ntopng.service ${D}${systemd_unitdir}/system | 37 | install -m 0644 ${UNPACKDIR}/ntopng.service ${D}${systemd_unitdir}/system |
38 | } | 38 | } |
39 | 39 | ||
40 | FILES:${PN} += "\ | 40 | FILES:${PN} += "\ |
diff --git a/meta-networking/recipes-support/ntp/ntp_4.2.8p17.bb b/meta-networking/recipes-support/ntp/ntp_4.2.8p17.bb index 4ed58cd6a..5fa8db9ee 100644 --- a/meta-networking/recipes-support/ntp/ntp_4.2.8p17.bb +++ b/meta-networking/recipes-support/ntp/ntp_4.2.8p17.bb | |||
@@ -90,8 +90,8 @@ PACKAGECONFIG[ipv6] = "--enable-ipv6,--disable-ipv6," | |||
90 | 90 | ||
91 | do_install:append() { | 91 | do_install:append() { |
92 | install -d ${D}${sysconfdir}/init.d | 92 | install -d ${D}${sysconfdir}/init.d |
93 | install -m 644 ${WORKDIR}/ntp.conf ${D}${sysconfdir} | 93 | install -m 644 ${UNPACKDIR}/ntp.conf ${D}${sysconfdir} |
94 | install -m 755 ${WORKDIR}/ntpd ${D}${sysconfdir}/init.d | 94 | install -m 755 ${UNPACKDIR}/ntpd ${D}${sysconfdir}/init.d |
95 | 95 | ||
96 | install -m 755 -d ${D}${NTP_USER_HOME} | 96 | install -m 755 -d ${D}${NTP_USER_HOME} |
97 | chown ntp:ntp ${D}${NTP_USER_HOME} | 97 | chown ntp:ntp ${D}${NTP_USER_HOME} |
@@ -109,14 +109,14 @@ do_install:append() { | |||
109 | sed -i '/use/i use warnings;' ${D}${sbindir}/calc_tickadj | 109 | sed -i '/use/i use warnings;' ${D}${sbindir}/calc_tickadj |
110 | 110 | ||
111 | install -d ${D}/${sysconfdir}/default | 111 | install -d ${D}/${sysconfdir}/default |
112 | install -m 0644 ${WORKDIR}/sntp ${D}${sysconfdir}/default/ | 112 | install -m 0644 ${UNPACKDIR}/sntp ${D}${sysconfdir}/default/ |
113 | 113 | ||
114 | install -d ${D}${systemd_unitdir}/system | 114 | install -d ${D}${systemd_unitdir}/system |
115 | install -m 0644 ${WORKDIR}/ntpd.service ${D}${systemd_unitdir}/system/ | 115 | install -m 0644 ${UNPACKDIR}/ntpd.service ${D}${systemd_unitdir}/system/ |
116 | install -m 0644 ${WORKDIR}/sntp.service ${D}${systemd_unitdir}/system/ | 116 | install -m 0644 ${UNPACKDIR}/sntp.service ${D}${systemd_unitdir}/system/ |
117 | 117 | ||
118 | install -d ${D}${systemd_unitdir}/ntp-units.d | 118 | install -d ${D}${systemd_unitdir}/ntp-units.d |
119 | install -m 0644 ${WORKDIR}/ntpd.list ${D}${systemd_unitdir}/ntp-units.d/60-ntpd.list | 119 | install -m 0644 ${UNPACKDIR}/ntpd.list ${D}${systemd_unitdir}/ntp-units.d/60-ntpd.list |
120 | 120 | ||
121 | # Remove the empty libexecdir and bindir. | 121 | # Remove the empty libexecdir and bindir. |
122 | rmdir --ignore-fail-on-non-empty ${D}${libexecdir} | 122 | rmdir --ignore-fail-on-non-empty ${D}${libexecdir} |
diff --git a/meta-networking/recipes-support/ntpsec/ntpsec_1.2.2a.bb b/meta-networking/recipes-support/ntpsec/ntpsec_1.2.2a.bb index 9ad97e768..872d1ce4f 100644 --- a/meta-networking/recipes-support/ntpsec/ntpsec_1.2.2a.bb +++ b/meta-networking/recipes-support/ntpsec/ntpsec_1.2.2a.bb | |||
@@ -81,7 +81,7 @@ do_install:append() { | |||
81 | install -m 755 ${S}/etc/rc/ntpd ${D}${sysconfdir}/init.d | 81 | install -m 755 ${S}/etc/rc/ntpd ${D}${sysconfdir}/init.d |
82 | cp -r ${S}/etc/ntp.d ${D}${sysconfdir} | 82 | cp -r ${S}/etc/ntp.d ${D}${sysconfdir} |
83 | 83 | ||
84 | sed -e 's:@NTP_USER_HOME@:${NTP_USER_HOME}:g' ${WORKDIR}/volatiles.ntpsec >${T}/volatiles.ntpsec | 84 | sed -e 's:@NTP_USER_HOME@:${NTP_USER_HOME}:g' ${UNPACKDIR}/volatiles.ntpsec >${T}/volatiles.ntpsec |
85 | if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then | 85 | if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then |
86 | cp ${B}/main/etc/* ${D}${systemd_system_unitdir} | 86 | cp ${B}/main/etc/* ${D}${systemd_system_unitdir} |
87 | awk '{print $1, $5, $4, $2, $3, "-"}' ${T}/volatiles.ntpsec >${T}/tmpfiles.ntpsec | 87 | awk '{print $1, $5, $4, $2, $3, "-"}' ${T}/volatiles.ntpsec >${T}/tmpfiles.ntpsec |
diff --git a/meta-networking/recipes-support/open-vm-tools/open-vm-tools_12.3.5.bb b/meta-networking/recipes-support/open-vm-tools/open-vm-tools_12.3.5.bb index 82aab051f..7e3fe5601 100644 --- a/meta-networking/recipes-support/open-vm-tools/open-vm-tools_12.3.5.bb +++ b/meta-networking/recipes-support/open-vm-tools/open-vm-tools_12.3.5.bb | |||
@@ -97,12 +97,12 @@ do_install:append() { | |||
97 | install -d ${D}${sysconfdir}/vmware-tools | 97 | install -d ${D}${sysconfdir}/vmware-tools |
98 | if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then | 98 | if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then |
99 | install -d ${D}${systemd_unitdir}/system | 99 | install -d ${D}${systemd_unitdir}/system |
100 | install -m 644 ${WORKDIR}/*.service ${D}${systemd_unitdir}/system | 100 | install -m 644 ${UNPACKDIR}/*.service ${D}${systemd_unitdir}/system |
101 | else | 101 | else |
102 | install -d ${D}${sysconfdir}/init.d | 102 | install -d ${D}${sysconfdir}/init.d |
103 | install -m 0755 ${WORKDIR}/vmtoolsd.init ${D}${sysconfdir}/init.d/vmtoolsd | 103 | install -m 0755 ${UNPACKDIR}/vmtoolsd.init ${D}${sysconfdir}/init.d/vmtoolsd |
104 | fi | 104 | fi |
105 | install -m 0644 ${WORKDIR}/tools.conf ${D}${sysconfdir}/vmware-tools/tools.conf | 105 | install -m 0644 ${UNPACKDIR}/tools.conf ${D}${sysconfdir}/vmware-tools/tools.conf |
106 | } | 106 | } |
107 | 107 | ||
108 | do_configure:prepend() { | 108 | do_configure:prepend() { |
diff --git a/meta-networking/recipes-support/openipmi/openipmi_2.0.35.bb b/meta-networking/recipes-support/openipmi/openipmi_2.0.35.bb index 1209c064f..c7c757367 100644 --- a/meta-networking/recipes-support/openipmi/openipmi_2.0.35.bb +++ b/meta-networking/recipes-support/openipmi/openipmi_2.0.35.bb | |||
@@ -102,10 +102,10 @@ do_install:append () { | |||
102 | 102 | ||
103 | # for systemd | 103 | # for systemd |
104 | install -d ${D}${systemd_unitdir}/system | 104 | install -d ${D}${systemd_unitdir}/system |
105 | install -m 0664 ${WORKDIR}/ipmi.service ${D}${systemd_unitdir}/system | 105 | install -m 0664 ${UNPACKDIR}/ipmi.service ${D}${systemd_unitdir}/system |
106 | sed -i -e "s,@LIBEXECDIR@,${libexecdir},g" ${D}${systemd_unitdir}/system/ipmi.service | 106 | sed -i -e "s,@LIBEXECDIR@,${libexecdir},g" ${D}${systemd_unitdir}/system/ipmi.service |
107 | install -d ${D}${libexecdir} | 107 | install -d ${D}${libexecdir} |
108 | install -m 0755 ${WORKDIR}/openipmi-helper ${D}${libexecdir} | 108 | install -m 0755 ${UNPACKDIR}/openipmi-helper ${D}${libexecdir} |
109 | } | 109 | } |
110 | 110 | ||
111 | INITSCRIPT_NAME = "ipmi" | 111 | INITSCRIPT_NAME = "ipmi" |
diff --git a/meta-networking/recipes-support/openvpn/openvpn_2.6.10.bb b/meta-networking/recipes-support/openvpn/openvpn_2.6.10.bb index f8de78ff7..ba53d40f4 100644 --- a/meta-networking/recipes-support/openvpn/openvpn_2.6.10.bb +++ b/meta-networking/recipes-support/openvpn/openvpn_2.6.10.bb | |||
@@ -44,7 +44,7 @@ PACKAGECONFIG[selinux] = "--enable-selinux,--disable-selinux,libselinux" | |||
44 | 44 | ||
45 | do_install:append() { | 45 | do_install:append() { |
46 | install -d ${D}/${sysconfdir}/init.d | 46 | install -d ${D}/${sysconfdir}/init.d |
47 | install -m 755 ${WORKDIR}/openvpn ${D}/${sysconfdir}/init.d | 47 | install -m 755 ${UNPACKDIR}/openvpn ${D}/${sysconfdir}/init.d |
48 | 48 | ||
49 | install -d ${D}/${sysconfdir}/openvpn | 49 | install -d ${D}/${sysconfdir}/openvpn |
50 | install -d ${D}/${sysconfdir}/openvpn/server | 50 | install -d ${D}/${sysconfdir}/openvpn/server |
diff --git a/meta-networking/recipes-support/pgpool2/pgpool2_4.5.1.bb b/meta-networking/recipes-support/pgpool2/pgpool2_4.5.1.bb index ffb879952..ddcad46be 100644 --- a/meta-networking/recipes-support/pgpool2/pgpool2_4.5.1.bb +++ b/meta-networking/recipes-support/pgpool2/pgpool2_4.5.1.bb | |||
@@ -43,8 +43,8 @@ do_configure:append() { | |||
43 | 43 | ||
44 | do_install:append() { | 44 | do_install:append() { |
45 | install -d ${D}${sysconfdir}/pgpool-II | 45 | install -d ${D}${sysconfdir}/pgpool-II |
46 | install -D -m 0644 ${WORKDIR}/pgpool.sysconfig ${D}${sysconfdir}/pgpool-II/pgpool.conf | 46 | install -D -m 0644 ${UNPACKDIR}/pgpool.sysconfig ${D}${sysconfdir}/pgpool-II/pgpool.conf |
47 | install -D -m 0644 ${S}/src/sample/pcp.conf.sample ${D}${sysconfdir}/pgpool-II/pcp.conf | 47 | install -D -m 0644 ${S}/src/sample/pcp.conf.sample ${D}${sysconfdir}/pgpool-II/pcp.conf |
48 | install -D -m 0644 ${S}/src/sample/pool_hba.conf.sample ${D}${sysconfdir}/pgpool-II/pool_hba.conf | 48 | install -D -m 0644 ${S}/src/sample/pool_hba.conf.sample ${D}${sysconfdir}/pgpool-II/pool_hba.conf |
49 | install -Dm 0644 ${WORKDIR}/pgpool.service ${D}${systemd_system_unitdir}/pgpool.service | 49 | install -Dm 0644 ${UNPACKDIR}/pgpool.service ${D}${systemd_system_unitdir}/pgpool.service |
50 | } | 50 | } |
diff --git a/meta-networking/recipes-support/tinyproxy/tinyproxy_1.11.1.bb b/meta-networking/recipes-support/tinyproxy/tinyproxy_1.11.1.bb index 999deff4d..4f52ee2ba 100644 --- a/meta-networking/recipes-support/tinyproxy/tinyproxy_1.11.1.bb +++ b/meta-networking/recipes-support/tinyproxy/tinyproxy_1.11.1.bb | |||
@@ -36,7 +36,7 @@ SYSTEMD_AUTO_ENABLE:${PN} = "enable" | |||
36 | do_install:append() { | 36 | do_install:append() { |
37 | if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then | 37 | if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then |
38 | install -d ${D}${systemd_system_unitdir} | 38 | install -d ${D}${systemd_system_unitdir} |
39 | install -m 0644 ${WORKDIR}/tinyproxy.service ${D}${systemd_system_unitdir} | 39 | install -m 0644 ${UNPACKDIR}/tinyproxy.service ${D}${systemd_system_unitdir} |
40 | fi | 40 | fi |
41 | install -m 0644 ${WORKDIR}/tinyproxy.conf ${D}${sysconfdir}/tinyproxy.conf | 41 | install -m 0644 ${UNPACKDIR}/tinyproxy.conf ${D}${sysconfdir}/tinyproxy.conf |
42 | } | 42 | } |
diff --git a/meta-oe/dynamic-layers/meta-python/recipes-connectivity/lirc/lirc_0.10.2.bb b/meta-oe/dynamic-layers/meta-python/recipes-connectivity/lirc/lirc_0.10.2.bb index d348ef8be..17a1d3c94 100644 --- a/meta-oe/dynamic-layers/meta-python/recipes-connectivity/lirc/lirc_0.10.2.bb +++ b/meta-oe/dynamic-layers/meta-python/recipes-connectivity/lirc/lirc_0.10.2.bb | |||
@@ -70,13 +70,13 @@ do_install:append() { | |||
70 | 70 | ||
71 | install -m 0755 -d ${D}${sysconfdir} | 71 | install -m 0755 -d ${D}${sysconfdir} |
72 | install -m 0755 -d ${D}${sysconfdir}/lirc | 72 | install -m 0755 -d ${D}${sysconfdir}/lirc |
73 | install -m 0644 ${WORKDIR}/lircd.conf ${D}${sysconfdir}/lirc/ | 73 | install -m 0644 ${UNPACKDIR}/lircd.conf ${D}${sysconfdir}/lirc/ |
74 | install -m 0644 ${WORKDIR}/lirc_options.conf ${D}${sysconfdir}/lirc/ | 74 | install -m 0644 ${UNPACKDIR}/lirc_options.conf ${D}${sysconfdir}/lirc/ |
75 | if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then | 75 | if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then |
76 | install -m 0755 -d ${D}${systemd_unitdir}/system ${D}${libdir}/tmpfiles.d | 76 | install -m 0755 -d ${D}${systemd_unitdir}/system ${D}${libdir}/tmpfiles.d |
77 | install -m 0644 ${WORKDIR}/lircd.service ${D}${systemd_unitdir}/system/ | 77 | install -m 0644 ${UNPACKDIR}/lircd.service ${D}${systemd_unitdir}/system/ |
78 | install -m 0755 ${WORKDIR}/lircexec.init ${D}${systemd_unitdir}/system/ | 78 | install -m 0755 ${UNPACKDIR}/lircexec.init ${D}${systemd_unitdir}/system/ |
79 | install -m 0644 ${WORKDIR}/lirc.tmpfiles ${D}${libdir}/tmpfiles.d/lirc.conf | 79 | install -m 0644 ${UNPACKDIR}/lirc.tmpfiles ${D}${libdir}/tmpfiles.d/lirc.conf |
80 | else | 80 | else |
81 | rm -rf ${D}/lib | 81 | rm -rf ${D}/lib |
82 | fi | 82 | fi |
diff --git a/meta-oe/dynamic-layers/meta-python/recipes-connectivity/thingsboard-gateway/thingsboard-gateway_3.4.6.bb b/meta-oe/dynamic-layers/meta-python/recipes-connectivity/thingsboard-gateway/thingsboard-gateway_3.4.6.bb index 0d0f6fea4..246cdfe3f 100644 --- a/meta-oe/dynamic-layers/meta-python/recipes-connectivity/thingsboard-gateway/thingsboard-gateway_3.4.6.bb +++ b/meta-oe/dynamic-layers/meta-python/recipes-connectivity/thingsboard-gateway/thingsboard-gateway_3.4.6.bb | |||
@@ -55,13 +55,13 @@ do_install:append(){ | |||
55 | 55 | ||
56 | install -d ${D}${sysconfdir}/thingsboard-gateway/config | 56 | install -d ${D}${sysconfdir}/thingsboard-gateway/config |
57 | 57 | ||
58 | for file in $(find ${WORKDIR} -maxdepth 1 -type f -name *.json); do | 58 | for file in $(find ${UNPACKDIR} -maxdepth 1 -type f -name *.json); do |
59 | install -m 0644 "$file" ${D}${sysconfdir}/thingsboard-gateway/config | 59 | install -m 0644 "$file" ${D}${sysconfdir}/thingsboard-gateway/config |
60 | done | 60 | done |
61 | 61 | ||
62 | install -m 0644 ${WORKDIR}/tb_gateway.yaml ${D}${sysconfdir}/thingsboard-gateway/config | 62 | install -m 0644 ${UNPACKDIR}/tb_gateway.yaml ${D}${sysconfdir}/thingsboard-gateway/config |
63 | install -m 0644 ${WORKDIR}/logs.conf ${D}${sysconfdir}/thingsboard-gateway/config | 63 | install -m 0644 ${UNPACKDIR}/logs.conf ${D}${sysconfdir}/thingsboard-gateway/config |
64 | 64 | ||
65 | install -d ${D}${systemd_unitdir}/system/ | 65 | install -d ${D}${systemd_unitdir}/system/ |
66 | install -m 0644 ${WORKDIR}/thingsboard-gateway.service ${D}${systemd_system_unitdir}/thingsboard-gateway.service | 66 | install -m 0644 ${UNPACKDIR}/thingsboard-gateway.service ${D}${systemd_system_unitdir}/thingsboard-gateway.service |
67 | } | 67 | } |
diff --git a/meta-oe/dynamic-layers/perl-layer/recipes-support/rasdaemon/rasdaemon_0.8.0.bb b/meta-oe/dynamic-layers/perl-layer/recipes-support/rasdaemon/rasdaemon_0.8.0.bb index c083a3a37..a7a3bf12c 100644 --- a/meta-oe/dynamic-layers/perl-layer/recipes-support/rasdaemon/rasdaemon_0.8.0.bb +++ b/meta-oe/dynamic-layers/perl-layer/recipes-support/rasdaemon/rasdaemon_0.8.0.bb | |||
@@ -34,9 +34,9 @@ LDFLAGS:append:libc-musl = " -largp" | |||
34 | 34 | ||
35 | do_install:append() { | 35 | do_install:append() { |
36 | install -d ${D}${sysconfdir}/init.d | 36 | install -d ${D}${sysconfdir}/init.d |
37 | install -m 755 ${WORKDIR}/init ${D}${sysconfdir}/init.d/rasdaemon | 37 | install -m 755 ${UNPACKDIR}/init ${D}${sysconfdir}/init.d/rasdaemon |
38 | install -d ${D}${systemd_unitdir}/system | 38 | install -d ${D}${systemd_unitdir}/system |
39 | install -m 0644 ${WORKDIR}/rasdaemon.service ${D}${systemd_unitdir}/system | 39 | install -m 0644 ${UNPACKDIR}/rasdaemon.service ${D}${systemd_unitdir}/system |
40 | } | 40 | } |
41 | 41 | ||
42 | FILES:${PN} += "${sbindir}/rasdaemon \ | 42 | FILES:${PN} += "${sbindir}/rasdaemon \ |
diff --git a/meta-oe/dynamic-layers/selinux/recipes-devtool/android-tools/android-tools-conf-configfs_1.0.bb b/meta-oe/dynamic-layers/selinux/recipes-devtool/android-tools/android-tools-conf-configfs_1.0.bb index 1c26c7207..35b3a5c08 100644 --- a/meta-oe/dynamic-layers/selinux/recipes-devtool/android-tools/android-tools-conf-configfs_1.0.bb +++ b/meta-oe/dynamic-layers/selinux/recipes-devtool/android-tools/android-tools-conf-configfs_1.0.bb | |||
@@ -14,17 +14,17 @@ PACKAGE_ARCH = "${MACHINE_ARCH}" | |||
14 | 14 | ||
15 | do_install() { | 15 | do_install() { |
16 | install -d ${D}${bindir} | 16 | install -d ${D}${bindir} |
17 | install -m 0755 ${WORKDIR}/android-gadget-setup ${D}${bindir} | 17 | install -m 0755 ${UNPACKDIR}/android-gadget-setup ${D}${bindir} |
18 | install -m 0755 ${WORKDIR}/android-gadget-start ${D}${bindir} | 18 | install -m 0755 ${UNPACKDIR}/android-gadget-start ${D}${bindir} |
19 | install -m 0755 ${WORKDIR}/android-gadget-cleanup ${D}${bindir} | 19 | install -m 0755 ${UNPACKDIR}/android-gadget-cleanup ${D}${bindir} |
20 | 20 | ||
21 | if [ -r ${WORKDIR}/android-gadget-setup.machine ] ; then | 21 | if [ -r ${UNPACKDIR}/android-gadget-setup.machine ] ; then |
22 | install -d ${D}${sysconfdir} | 22 | install -d ${D}${sysconfdir} |
23 | install -m 0644 ${WORKDIR}/android-gadget-setup.machine ${D}${sysconfdir} | 23 | install -m 0644 ${UNPACKDIR}/android-gadget-setup.machine ${D}${sysconfdir} |
24 | fi | 24 | fi |
25 | 25 | ||
26 | install -d ${D}${systemd_unitdir}/system/android-tools-adbd.service.d | 26 | install -d ${D}${systemd_unitdir}/system/android-tools-adbd.service.d |
27 | install -m 0644 ${WORKDIR}/10-adbd-configfs.conf ${D}${systemd_unitdir}/system/android-tools-adbd.service.d | 27 | install -m 0644 ${UNPACKDIR}/10-adbd-configfs.conf ${D}${systemd_unitdir}/system/android-tools-adbd.service.d |
28 | } | 28 | } |
29 | 29 | ||
30 | FILES:${PN} += " \ | 30 | FILES:${PN} += " \ |
diff --git a/meta-oe/dynamic-layers/selinux/recipes-devtool/android-tools/android-tools-conf_1.0.bb b/meta-oe/dynamic-layers/selinux/recipes-devtool/android-tools/android-tools-conf_1.0.bb index b63ccbb08..cb2ff672e 100644 --- a/meta-oe/dynamic-layers/selinux/recipes-devtool/android-tools/android-tools-conf_1.0.bb +++ b/meta-oe/dynamic-layers/selinux/recipes-devtool/android-tools/android-tools-conf_1.0.bb | |||
@@ -7,7 +7,7 @@ SRC_URI = "file://android-gadget-setup" | |||
7 | 7 | ||
8 | do_install() { | 8 | do_install() { |
9 | install -d ${D}${bindir} | 9 | install -d ${D}${bindir} |
10 | install -m 0755 ${WORKDIR}/android-gadget-setup ${D}${bindir} | 10 | install -m 0755 ${UNPACKDIR}/android-gadget-setup ${D}${bindir} |
11 | } | 11 | } |
12 | 12 | ||
13 | python () { | 13 | python () { |
diff --git a/meta-oe/dynamic-layers/selinux/recipes-devtool/android-tools/android-tools_29.0.6.r14.bb b/meta-oe/dynamic-layers/selinux/recipes-devtool/android-tools/android-tools_29.0.6.r14.bb index fbad5e136..f63b5c04b 100644 --- a/meta-oe/dynamic-layers/selinux/recipes-devtool/android-tools/android-tools_29.0.6.r14.bb +++ b/meta-oe/dynamic-layers/selinux/recipes-devtool/android-tools/android-tools_29.0.6.r14.bb | |||
@@ -153,7 +153,7 @@ do_install() { | |||
153 | fi | 153 | fi |
154 | 154 | ||
155 | # Outside the if statement to avoid errors during do_package | 155 | # Outside the if statement to avoid errors during do_package |
156 | install -D -p -m0644 ${WORKDIR}/android-tools-adbd.service \ | 156 | install -D -p -m0644 ${UNPACKDIR}/android-tools-adbd.service \ |
157 | ${D}${systemd_unitdir}/system/android-tools-adbd.service | 157 | ${D}${systemd_unitdir}/system/android-tools-adbd.service |
158 | 158 | ||
159 | install -d ${D}${libdir}/android/ | 159 | install -d ${D}${libdir}/android/ |
diff --git a/meta-oe/recipes-benchmark/iozone3/iozone3_506.bb b/meta-oe/recipes-benchmark/iozone3/iozone3_506.bb index 5a1306b6f..6ab1121ef 100644 --- a/meta-oe/recipes-benchmark/iozone3/iozone3_506.bb +++ b/meta-oe/recipes-benchmark/iozone3/iozone3_506.bb | |||
@@ -37,8 +37,8 @@ do_install() { | |||
37 | 37 | ||
38 | install -m 0755 ${S}/iozone ${D}${bindir} | 38 | install -m 0755 ${S}/iozone ${D}${bindir} |
39 | install -m 0755 ${S}/fileop ${D}${bindir} | 39 | install -m 0755 ${S}/fileop ${D}${bindir} |
40 | install -m 0644 ${WORKDIR}/${BPN}_${PV}/docs/iozone.1 ${D}${mandir}/man1/ | 40 | install -m 0644 ${S}/../../docs/iozone.1 ${D}${mandir}/man1/ |
41 | install -m 0644 ${WORKDIR}/copyright.txt ${D}${datadir}/doc/${BPN}/ | 41 | install -m 0644 ${UNPACKDIR}/copyright.txt ${D}${datadir}/doc/${BPN}/ |
42 | 42 | ||
43 | install -m 0644 ${S}/*.dem ${D}${datadir}/doc/${BPN}/examples | 43 | install -m 0644 ${S}/*.dem ${D}${datadir}/doc/${BPN}/examples |
44 | install -m 0644 ${S}/client_list ${D}${datadir}/doc/${BPN}/examples | 44 | install -m 0644 ${S}/client_list ${D}${datadir}/doc/${BPN}/examples |
@@ -48,9 +48,9 @@ do_install() { | |||
48 | install -m 0755 ${S}/gengnuplot.sh ${D}${datadir}/doc/${BPN}/examples | 48 | install -m 0755 ${S}/gengnuplot.sh ${D}${datadir}/doc/${BPN}/examples |
49 | install -m 0755 ${S}/report.pl ${D}${datadir}/doc/${BPN}/examples | 49 | install -m 0755 ${S}/report.pl ${D}${datadir}/doc/${BPN}/examples |
50 | 50 | ||
51 | install -m 0644 ${WORKDIR}/${BPN}_${PV}/docs/Iozone_ps.gz ${D}${datadir}/doc/${BPN}/ | 51 | install -m 0644 ${S}/../../docs/Iozone_ps.gz ${D}${datadir}/doc/${BPN}/ |
52 | install -m 0644 ${WORKDIR}/${BPN}_${PV}/docs/IOzone_msword_98.pdf ${D}${datadir}/doc/${BPN}/ | 52 | install -m 0644 ${S}/../../docs/IOzone_msword_98.pdf ${D}${datadir}/doc/${BPN}/ |
53 | install -m 0644 ${WORKDIR}/${BPN}_${PV}/docs/Run_rules.doc ${D}${datadir}/doc/${BPN}/ | 53 | install -m 0644 ${S}/../../docs/Run_rules.doc ${D}${datadir}/doc/${BPN}/ |
54 | } | 54 | } |
55 | 55 | ||
56 | FILES:${PN} += "${datadir}/doc/${PN}/copyright.txt" | 56 | FILES:${PN} += "${datadir}/doc/${PN}/copyright.txt" |
diff --git a/meta-oe/recipes-benchmark/linpack/linpack_1.0.bb b/meta-oe/recipes-benchmark/linpack/linpack_1.0.bb index 603004ddd..b49951cc2 100644 --- a/meta-oe/recipes-benchmark/linpack/linpack_1.0.bb +++ b/meta-oe/recipes-benchmark/linpack/linpack_1.0.bb | |||
@@ -2,7 +2,7 @@ DESCRIPTION = "LINPACK Benchmarks are a measure of a system's floating point com | |||
2 | SUMMARY = "LINPACK is a software library for performing numerical linear algebra on digital computers" | 2 | SUMMARY = "LINPACK is a software library for performing numerical linear algebra on digital computers" |
3 | 3 | ||
4 | LICENSE = "PD" | 4 | LICENSE = "PD" |
5 | LIC_FILES_CHKSUM ="file://${WORKDIR}/linpacknew.c;beginline=1;endline=23;md5=aa025e3bc44190c71e4c5e3b084fed87" | 5 | LIC_FILES_CHKSUM ="file://${UNPACKDIR}/linpacknew.c;beginline=1;endline=23;md5=aa025e3bc44190c71e4c5e3b084fed87" |
6 | 6 | ||
7 | SRC_URI = "http://www.netlib.org/benchmark/linpackc.new;downloadfilename=linpacknew.c \ | 7 | SRC_URI = "http://www.netlib.org/benchmark/linpackc.new;downloadfilename=linpacknew.c \ |
8 | file://0001-linpack-Define-DP-only-when-SP-is-not-defined.patch \ | 8 | file://0001-linpack-Define-DP-only-when-SP-is-not-defined.patch \ |
diff --git a/meta-oe/recipes-benchmark/lmbench/lmbench_3.0-a9.bb b/meta-oe/recipes-benchmark/lmbench/lmbench_3.0-a9.bb index 57f73eedc..6729e81fa 100644 --- a/meta-oe/recipes-benchmark/lmbench/lmbench_3.0-a9.bb +++ b/meta-oe/recipes-benchmark/lmbench/lmbench_3.0-a9.bb | |||
@@ -75,7 +75,7 @@ do_install () { | |||
75 | DESTDIR="${D}" \ | 75 | DESTDIR="${D}" \ |
76 | -C src install | 76 | -C src install |
77 | mv ${D}${bindir}/line ${D}${bindir}/lm_line | 77 | mv ${D}${bindir}/line ${D}${bindir}/lm_line |
78 | install -m 0755 ${WORKDIR}/lmbench-run ${D}${bindir}/ | 78 | install -m 0755 ${UNPACKDIR}/lmbench-run ${D}${bindir}/ |
79 | install -m 0755 ${S}/bin/${TARGET_SYS}/cache ${D}${bindir}/ | 79 | install -m 0755 ${S}/bin/${TARGET_SYS}/cache ${D}${bindir}/ |
80 | sed -i -e 's,^SHAREDIR=.*$,SHAREDIR=${datadir}/${BPN},;' \ | 80 | sed -i -e 's,^SHAREDIR=.*$,SHAREDIR=${datadir}/${BPN},;' \ |
81 | -e 's,^CONFIG=.*$,CONFIG=`$SCRIPTSDIR/config`,;' \ | 81 | -e 's,^CONFIG=.*$,CONFIG=`$SCRIPTSDIR/config`,;' \ |
diff --git a/meta-oe/recipes-bsp/edac-utils/edac-utils_git.bb b/meta-oe/recipes-bsp/edac-utils/edac-utils_git.bb index 03076cbc6..6c80f4c81 100644 --- a/meta-oe/recipes-bsp/edac-utils/edac-utils_git.bb +++ b/meta-oe/recipes-bsp/edac-utils/edac-utils_git.bb | |||
@@ -48,7 +48,7 @@ RDEPENDS:${PN}:append = " \ | |||
48 | 48 | ||
49 | do_install:append() { | 49 | do_install:append() { |
50 | install -d ${D}${systemd_unitdir}/system | 50 | install -d ${D}${systemd_unitdir}/system |
51 | install -m 644 ${WORKDIR}/edac.service ${D}/${systemd_unitdir}/system | 51 | install -m 644 ${UNPACKDIR}/edac.service ${D}/${systemd_unitdir}/system |
52 | sed -i -e 's,@SBINDIR@,${sbindir},g' ${D}/${systemd_unitdir}/system/edac.service | 52 | sed -i -e 's,@SBINDIR@,${sbindir},g' ${D}/${systemd_unitdir}/system/edac.service |
53 | } | 53 | } |
54 | 54 | ||
diff --git a/meta-oe/recipes-bsp/firmwared/firmwared_git.bb b/meta-oe/recipes-bsp/firmwared/firmwared_git.bb index 0a041835e..f3760a40e 100644 --- a/meta-oe/recipes-bsp/firmwared/firmwared_git.bb +++ b/meta-oe/recipes-bsp/firmwared/firmwared_git.bb | |||
@@ -29,6 +29,6 @@ do_configure:prepend() { | |||
29 | 29 | ||
30 | do_install:append() { | 30 | do_install:append() { |
31 | install -d ${D}${systemd_system_unitdir} | 31 | install -d ${D}${systemd_system_unitdir} |
32 | install -m 0644 ${WORKDIR}/firmwared.service ${D}${systemd_system_unitdir} | 32 | install -m 0644 ${UNPACKDIR}/firmwared.service ${D}${systemd_system_unitdir} |
33 | sed -i -e 's,@BINDIR@,${bindir},g' ${D}${systemd_system_unitdir}/firmwared.service | 33 | sed -i -e 's,@BINDIR@,${bindir},g' ${D}${systemd_system_unitdir}/firmwared.service |
34 | } | 34 | } |
diff --git a/meta-oe/recipes-bsp/irda-utils/irda-utils_0.9.18.bb b/meta-oe/recipes-bsp/irda-utils/irda-utils_0.9.18.bb index fa1bb928c..22bb30a50 100644 --- a/meta-oe/recipes-bsp/irda-utils/irda-utils_0.9.18.bb +++ b/meta-oe/recipes-bsp/irda-utils/irda-utils_0.9.18.bb | |||
@@ -60,5 +60,5 @@ do_install () { | |||
60 | done | 60 | done |
61 | 61 | ||
62 | install -d ${D}${sysconfdir}/init.d | 62 | install -d ${D}${sysconfdir}/init.d |
63 | install -m 0755 ${WORKDIR}/init ${D}${sysconfdir}/init.d/${INITSCRIPT_NAME} | 63 | install -m 0755 ${UNPACKDIR}/init ${D}${sysconfdir}/init.d/${INITSCRIPT_NAME} |
64 | } | 64 | } |
diff --git a/meta-oe/recipes-bsp/lm_sensors/lmsensors_3.6.0.bb b/meta-oe/recipes-bsp/lm_sensors/lmsensors_3.6.0.bb index aba5ab587..f956224e1 100644 --- a/meta-oe/recipes-bsp/lm_sensors/lmsensors_3.6.0.bb +++ b/meta-oe/recipes-bsp/lm_sensors/lmsensors_3.6.0.bb | |||
@@ -70,11 +70,11 @@ do_install() { | |||
70 | install -d ${D}${INIT_D_DIR} | 70 | install -d ${D}${INIT_D_DIR} |
71 | 71 | ||
72 | # Install fancontrol init script | 72 | # Install fancontrol init script |
73 | install -m 0755 ${WORKDIR}/fancontrol.init ${D}${INIT_D_DIR}/fancontrol | 73 | install -m 0755 ${UNPACKDIR}/fancontrol.init ${D}${INIT_D_DIR}/fancontrol |
74 | 74 | ||
75 | if ${@bb.utils.contains('PACKAGECONFIG', 'sensord', 'true', 'false', d)}; then | 75 | if ${@bb.utils.contains('PACKAGECONFIG', 'sensord', 'true', 'false', d)}; then |
76 | # Install sensord init script | 76 | # Install sensord init script |
77 | install -m 0755 ${WORKDIR}/sensord.init ${D}${INIT_D_DIR}/sensord | 77 | install -m 0755 ${UNPACKDIR}/sensord.init ${D}${INIT_D_DIR}/sensord |
78 | fi | 78 | fi |
79 | 79 | ||
80 | # Insall sensord service script | 80 | # Insall sensord service script |
diff --git a/meta-oe/recipes-connectivity/gammu/gammu_1.42.0.bb b/meta-oe/recipes-connectivity/gammu/gammu_1.42.0.bb index aa52f6257..e6ec9c357 100644 --- a/meta-oe/recipes-connectivity/gammu/gammu_1.42.0.bb +++ b/meta-oe/recipes-connectivity/gammu/gammu_1.42.0.bb | |||
@@ -22,8 +22,8 @@ do_install:append() { | |||
22 | rm -rf ${D}/usr/share/gammu | 22 | rm -rf ${D}/usr/share/gammu |
23 | #install default configuration files | 23 | #install default configuration files |
24 | install -d ${D}${sysconfdir} | 24 | install -d ${D}${sysconfdir} |
25 | install -m 0644 ${WORKDIR}/gammurc ${D}${sysconfdir}/gammurc | 25 | install -m 0644 ${UNPACKDIR}/gammurc ${D}${sysconfdir}/gammurc |
26 | install -m 0644 ${WORKDIR}/gammu-smsdrc ${D}${sysconfdir}/gammu-smsdrc | 26 | install -m 0644 ${UNPACKDIR}/gammu-smsdrc ${D}${sysconfdir}/gammu-smsdrc |
27 | } | 27 | } |
28 | 28 | ||
29 | EXTRA_OECONF = " \ | 29 | EXTRA_OECONF = " \ |
diff --git a/meta-oe/recipes-connectivity/hostapd/hostapd_2.10.bb b/meta-oe/recipes-connectivity/hostapd/hostapd_2.10.bb index dbdc5c1bd..e547462bb 100644 --- a/meta-oe/recipes-connectivity/hostapd/hostapd_2.10.bb +++ b/meta-oe/recipes-connectivity/hostapd/hostapd_2.10.bb | |||
@@ -29,7 +29,7 @@ SYSTEMD_SERVICE:${PN} = "hostapd.service" | |||
29 | SYSTEMD_AUTO_ENABLE:${PN} = "disable" | 29 | SYSTEMD_AUTO_ENABLE:${PN} = "disable" |
30 | 30 | ||
31 | do_configure:append() { | 31 | do_configure:append() { |
32 | install -m 0644 ${WORKDIR}/defconfig ${B}/.config | 32 | install -m 0644 ${UNPACKDIR}/defconfig ${B}/.config |
33 | } | 33 | } |
34 | 34 | ||
35 | do_compile() { | 35 | do_compile() { |
@@ -43,8 +43,8 @@ do_install() { | |||
43 | install -m 0644 ${B}/hostapd.conf ${D}${sysconfdir} | 43 | install -m 0644 ${B}/hostapd.conf ${D}${sysconfdir} |
44 | install -m 0755 ${B}/hostapd ${D}${sbindir} | 44 | install -m 0755 ${B}/hostapd ${D}${sbindir} |
45 | install -m 0755 ${B}/hostapd_cli ${D}${sbindir} | 45 | install -m 0755 ${B}/hostapd_cli ${D}${sbindir} |
46 | install -m 755 ${WORKDIR}/init ${D}${sysconfdir}/init.d/hostapd | 46 | install -m 755 ${UNPACKDIR}/init ${D}${sysconfdir}/init.d/hostapd |
47 | install -m 0644 ${WORKDIR}/hostapd.service ${D}${systemd_unitdir}/system/ | 47 | install -m 0644 ${UNPACKDIR}/hostapd.service ${D}${systemd_unitdir}/system/ |
48 | sed -i -e 's,@SBINDIR@,${sbindir},g' -e 's,@SYSCONFDIR@,${sysconfdir},g' ${D}${systemd_unitdir}/system/hostapd.service | 48 | sed -i -e 's,@SBINDIR@,${sbindir},g' -e 's,@SYSCONFDIR@,${sysconfdir},g' ${D}${systemd_unitdir}/system/hostapd.service |
49 | } | 49 | } |
50 | 50 | ||
diff --git a/meta-oe/recipes-connectivity/krb5/krb5_1.21.2.bb b/meta-oe/recipes-connectivity/krb5/krb5_1.21.2.bb index 7af33e4e7..ed12fee94 100644 --- a/meta-oe/recipes-connectivity/krb5/krb5_1.21.2.bb +++ b/meta-oe/recipes-connectivity/krb5/krb5_1.21.2.bb | |||
@@ -74,8 +74,8 @@ do_install:append() { | |||
74 | 74 | ||
75 | if ${@bb.utils.contains('DISTRO_FEATURES', 'sysvinit', 'true', 'false', d)}; then | 75 | if ${@bb.utils.contains('DISTRO_FEATURES', 'sysvinit', 'true', 'false', d)}; then |
76 | mkdir -p ${D}/${sysconfdir}/init.d ${D}/${sysconfdir}/default | 76 | mkdir -p ${D}/${sysconfdir}/init.d ${D}/${sysconfdir}/default |
77 | install -m 0755 ${WORKDIR}/etc/init.d/* ${D}/${sysconfdir}/init.d | 77 | install -m 0755 ${UNPACKDIR}/etc/init.d/* ${D}/${sysconfdir}/init.d |
78 | install -m 0644 ${WORKDIR}/etc/default/* ${D}/${sysconfdir}/default | 78 | install -m 0644 ${UNPACKDIR}/etc/default/* ${D}/${sysconfdir}/default |
79 | 79 | ||
80 | mkdir -p ${D}/${sysconfdir}/default/volatiles | 80 | mkdir -p ${D}/${sysconfdir}/default/volatiles |
81 | echo "d root root 0755 ${localstatedir}/run/krb5kdc none" \ | 81 | echo "d root root 0755 ${localstatedir}/run/krb5kdc none" \ |
@@ -90,11 +90,11 @@ do_install:append() { | |||
90 | > ${D}${sysconfdir}/tmpfiles.d/krb5.conf | 90 | > ${D}${sysconfdir}/tmpfiles.d/krb5.conf |
91 | 91 | ||
92 | mkdir -p ${D}/${sysconfdir}/default | 92 | mkdir -p ${D}/${sysconfdir}/default |
93 | install -m 0644 ${WORKDIR}/etc/default/* ${D}/${sysconfdir}/default | 93 | install -m 0644 ${UNPACKDIR}/etc/default/* ${D}/${sysconfdir}/default |
94 | 94 | ||
95 | install -d ${D}${systemd_system_unitdir} | 95 | install -d ${D}${systemd_system_unitdir} |
96 | install -m 0644 ${WORKDIR}/krb5-admin-server.service ${D}${systemd_system_unitdir} | 96 | install -m 0644 ${UNPACKDIR}/krb5-admin-server.service ${D}${systemd_system_unitdir} |
97 | install -m 0644 ${WORKDIR}/krb5-kdc.service ${D}${systemd_system_unitdir} | 97 | install -m 0644 ${UNPACKDIR}/krb5-kdc.service ${D}${systemd_system_unitdir} |
98 | fi | 98 | fi |
99 | 99 | ||
100 | sed -e 's@[^ ]*-ffile-prefix-map=[^ "]*@@g' \ | 100 | sed -e 's@[^ ]*-ffile-prefix-map=[^ "]*@@g' \ |
diff --git a/meta-oe/recipes-connectivity/linuxptp/linuxptp_4.1.bb b/meta-oe/recipes-connectivity/linuxptp/linuxptp_4.1.bb index 9a5c9b520..d1a73841a 100644 --- a/meta-oe/recipes-connectivity/linuxptp/linuxptp_4.1.bb +++ b/meta-oe/recipes-connectivity/linuxptp/linuxptp_4.1.bb | |||
@@ -46,10 +46,10 @@ do_install() { | |||
46 | install -d ${D}/${systemd_unitdir}/system/ | 46 | install -d ${D}/${systemd_unitdir}/system/ |
47 | for service in ${LINUXPTP_SYSTEMD_SERVICES}; do | 47 | for service in ${LINUXPTP_SYSTEMD_SERVICES}; do |
48 | sed -i -e 's,@SBINDIR@,${sbindir},g' \ | 48 | sed -i -e 's,@SBINDIR@,${sbindir},g' \ |
49 | ${WORKDIR}/systemd/$service.in | 49 | ${UNPACKDIR}/systemd/$service.in |
50 | sed -i -e 's,@SYSCONFDIR@,${sysconfdir},g' \ | 50 | sed -i -e 's,@SYSCONFDIR@,${sysconfdir},g' \ |
51 | ${WORKDIR}/systemd/$service.in | 51 | ${UNPACKDIR}/systemd/$service.in |
52 | install -m 644 ${WORKDIR}/systemd/$service.in \ | 52 | install -m 644 ${UNPACKDIR}/systemd/$service.in \ |
53 | ${D}/${systemd_unitdir}/system/$service | 53 | ${D}/${systemd_unitdir}/system/$service |
54 | done | 54 | done |
55 | } | 55 | } |
diff --git a/meta-oe/recipes-connectivity/ser2net/ser2net_4.6.2.bb b/meta-oe/recipes-connectivity/ser2net/ser2net_4.6.2.bb index 21066b10f..f23692816 100644 --- a/meta-oe/recipes-connectivity/ser2net/ser2net_4.6.2.bb +++ b/meta-oe/recipes-connectivity/ser2net/ser2net_4.6.2.bb | |||
@@ -24,7 +24,7 @@ CONFFILES:${PN} += "${sysconfdir}/ser2net/ser2net.yaml" | |||
24 | do_install:append() { | 24 | do_install:append() { |
25 | if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then | 25 | if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then |
26 | install -d ${D}${systemd_unitdir}/system | 26 | install -d ${D}${systemd_unitdir}/system |
27 | install -m 0644 ${WORKDIR}/ser2net.service ${D}${systemd_unitdir}/system/ | 27 | install -m 0644 ${UNPACKDIR}/ser2net.service ${D}${systemd_unitdir}/system/ |
28 | sed -i -e 's,@SBINDIR@,${sbindir},g' -e 's,@SYSCONFDIR@,${sysconfdir},g' ${D}${systemd_unitdir}/system/ser2net.service | 28 | sed -i -e 's,@SBINDIR@,${sbindir},g' -e 's,@SYSCONFDIR@,${sysconfdir},g' ${D}${systemd_unitdir}/system/ser2net.service |
29 | fi | 29 | fi |
30 | } | 30 | } |
diff --git a/meta-oe/recipes-connectivity/transmission/transmission_4.0.5.bb b/meta-oe/recipes-connectivity/transmission/transmission_4.0.5.bb index cbba31edb..b9ed3d925 100644 --- a/meta-oe/recipes-connectivity/transmission/transmission_4.0.5.bb +++ b/meta-oe/recipes-connectivity/transmission/transmission_4.0.5.bb | |||
@@ -32,9 +32,9 @@ TRANSMISSION_GROUP ??= "root" | |||
32 | 32 | ||
33 | do_install:append() { | 33 | do_install:append() { |
34 | if ${@bb.utils.contains('DISTRO_FEATURES', 'sysvinit', 'true', 'false', d)}; then | 34 | if ${@bb.utils.contains('DISTRO_FEATURES', 'sysvinit', 'true', 'false', d)}; then |
35 | sed -i '/USERNAME=/c\USERNAME=${TRANSMISSION_USER}' ${WORKDIR}/transmission-daemon | 35 | sed -i '/USERNAME=/c\USERNAME=${TRANSMISSION_USER}' ${UNPACKDIR}/transmission-daemon |
36 | install -d ${D}${sysconfdir}/init.d | 36 | install -d ${D}${sysconfdir}/init.d |
37 | install -m 0744 ${WORKDIR}/transmission-daemon ${D}${sysconfdir}/init.d/ | 37 | install -m 0744 ${UNPACKDIR}/transmission-daemon ${D}${sysconfdir}/init.d/ |
38 | chown ${TRANSMISSION_USER}:${TRANSMISSION_GROUP} ${D}${sysconfdir}/init.d/transmission-daemon | 38 | chown ${TRANSMISSION_USER}:${TRANSMISSION_GROUP} ${D}${sysconfdir}/init.d/transmission-daemon |
39 | fi | 39 | fi |
40 | 40 | ||
diff --git a/meta-oe/recipes-connectivity/zabbix/zabbix_6.2.7.bb b/meta-oe/recipes-connectivity/zabbix/zabbix_6.2.7.bb index 8708852ce..46c09a02a 100644 --- a/meta-oe/recipes-connectivity/zabbix/zabbix_6.2.7.bb +++ b/meta-oe/recipes-connectivity/zabbix/zabbix_6.2.7.bb | |||
@@ -68,7 +68,7 @@ do_configure:prepend() { | |||
68 | do_install:append() { | 68 | do_install:append() { |
69 | if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then | 69 | if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then |
70 | install -d ${D}${systemd_unitdir}/system | 70 | install -d ${D}${systemd_unitdir}/system |
71 | install -m 0644 ${WORKDIR}/zabbix-agent.service ${D}${systemd_unitdir}/system/ | 71 | install -m 0644 ${UNPACKDIR}/zabbix-agent.service ${D}${systemd_unitdir}/system/ |
72 | sed -i -e 's#@SBINDIR@#${sbindir}#g' ${D}${systemd_unitdir}/system/zabbix-agent.service | 72 | sed -i -e 's#@SBINDIR@#${sbindir}#g' ${D}${systemd_unitdir}/system/zabbix-agent.service |
73 | fi | 73 | fi |
74 | } | 74 | } |
diff --git a/meta-oe/recipes-core/emlog/emlog_git.bb b/meta-oe/recipes-core/emlog/emlog_git.bb index 6331f618f..3f3b5bc92 100644 --- a/meta-oe/recipes-core/emlog/emlog_git.bb +++ b/meta-oe/recipes-core/emlog/emlog_git.bb | |||
@@ -18,7 +18,7 @@ do_compile() { | |||
18 | } | 18 | } |
19 | 19 | ||
20 | do_install() { | 20 | do_install() { |
21 | install -Dm 0755 ${WORKDIR}/${BPN}.initd ${D}${sysconfdir}/init.d/${BPN} | 21 | install -Dm 0755 ${UNPACKDIR}/${BPN}.initd ${D}${sysconfdir}/init.d/${BPN} |
22 | install -Dm 0755 ${S}/nbcat ${D}${bindir}/nbcat | 22 | install -Dm 0755 ${S}/nbcat ${D}${bindir}/nbcat |
23 | install -Dm 0755 ${S}/mkemlog ${D}${bindir}/mkemlog | 23 | install -Dm 0755 ${S}/mkemlog ${D}${bindir}/mkemlog |
24 | } | 24 | } |
diff --git a/meta-oe/recipes-dbs/mysql/mariadb.inc b/meta-oe/recipes-dbs/mysql/mariadb.inc index 33da32fb2..bbfad1e47 100644 --- a/meta-oe/recipes-dbs/mysql/mariadb.inc +++ b/meta-oe/recipes-dbs/mysql/mariadb.inc | |||
@@ -31,8 +31,6 @@ SRC_URI[sha256sum] = "5239a245ed90517e96396605cd01ccd8f73cd7442d1b3076b6ffe25811 | |||
31 | 31 | ||
32 | UPSTREAM_CHECK_URI = "https://github.com/MariaDB/server/releases" | 32 | UPSTREAM_CHECK_URI = "https://github.com/MariaDB/server/releases" |
33 | 33 | ||
34 | S = "${WORKDIR}/mariadb-${PV}" | ||
35 | |||
36 | BINCONFIG_GLOB = "mysql_config" | 34 | BINCONFIG_GLOB = "mysql_config" |
37 | 35 | ||
38 | inherit cmake gettext binconfig update-rc.d systemd multilib_script pkgconfig | 36 | inherit cmake gettext binconfig update-rc.d systemd multilib_script pkgconfig |
@@ -163,18 +161,18 @@ do_install() { | |||
163 | oe_runmake 'DESTDIR=${D}' install | 161 | oe_runmake 'DESTDIR=${D}' install |
164 | 162 | ||
165 | install -d ${D}/${sysconfdir}/init.d | 163 | install -d ${D}/${sysconfdir}/init.d |
166 | install -m 0644 ${WORKDIR}/my.cnf ${D}/${sysconfdir}/ | 164 | install -m 0644 ${UNPACKDIR}/my.cnf ${D}/${sysconfdir}/ |
167 | install -m 0755 ${WORKDIR}/install_db ${D}/${sysconfdir}/init.d/ | 165 | install -m 0755 ${UNPACKDIR}/install_db ${D}/${sysconfdir}/init.d/ |
168 | mv ${D}/${sysconfdir}/init.d/mysql ${D}/${sysconfdir}/init.d/mysqld | 166 | mv ${D}/${sysconfdir}/init.d/mysql ${D}/${sysconfdir}/init.d/mysqld |
169 | 167 | ||
170 | install -d ${D}${systemd_unitdir}/system | 168 | install -d ${D}${systemd_unitdir}/system |
171 | install -m 0644 ${WORKDIR}/mysqld.service ${D}${systemd_unitdir}/system | 169 | install -m 0644 ${UNPACKDIR}/mysqld.service ${D}${systemd_unitdir}/system |
172 | install -m 0644 ${WORKDIR}/install_db.service ${D}${systemd_unitdir}/system | 170 | install -m 0644 ${UNPACKDIR}/install_db.service ${D}${systemd_unitdir}/system |
173 | sed -i -e 's,@BINDIR@,${bindir},g' -e 's,@PREFIX@,${prefix},g' ${D}${systemd_unitdir}/system/mysqld.service \ | 171 | sed -i -e 's,@BINDIR@,${bindir},g' -e 's,@PREFIX@,${prefix},g' ${D}${systemd_unitdir}/system/mysqld.service \ |
174 | ${D}${systemd_unitdir}/system/install_db.service | 172 | ${D}${systemd_unitdir}/system/install_db.service |
175 | 173 | ||
176 | install -d ${D}${bindir} | 174 | install -d ${D}${bindir} |
177 | install -m 755 ${WORKDIR}/mysql-systemd-start ${D}${bindir} | 175 | install -m 755 ${UNPACKDIR}/mysql-systemd-start ${D}${bindir} |
178 | install -d ${D}${datadir}/doc/${PN} | 176 | install -d ${D}${datadir}/doc/${PN} |
179 | if [ -f ${D}${datadir}/doc/README ]; then | 177 | if [ -f ${D}${datadir}/doc/README ]; then |
180 | mv ${D}${datadir}/doc/README ${D}${datadir}/doc/${PN}/ | 178 | mv ${D}${datadir}/doc/README ${D}${datadir}/doc/${PN}/ |
diff --git a/meta-oe/recipes-dbs/postgresql/postgresql.inc b/meta-oe/recipes-dbs/postgresql/postgresql.inc index e29a5bef7..2dd7dd6fd 100644 --- a/meta-oe/recipes-dbs/postgresql/postgresql.inc +++ b/meta-oe/recipes-dbs/postgresql/postgresql.inc | |||
@@ -198,24 +198,24 @@ do_install:append() { | |||
198 | 198 | ||
199 | # install dirs and server init | 199 | # install dirs and server init |
200 | install -d ${D}${sysconfdir}/init.d | 200 | install -d ${D}${sysconfdir}/init.d |
201 | install -m 0755 ${WORKDIR}/${BPN}.init ${D}${sysconfdir}/init.d/${BPN}-server | 201 | install -m 0755 ${UNPACKDIR}/${BPN}.init ${D}${sysconfdir}/init.d/${BPN}-server |
202 | sed -i -e "s/^PGVERSION=.*$/PGVERSION=${PV}/g" ${D}${sysconfdir}/init.d/${BPN}-server | 202 | sed -i -e "s/^PGVERSION=.*$/PGVERSION=${PV}/g" ${D}${sysconfdir}/init.d/${BPN}-server |
203 | install -m 0755 ${WORKDIR}/${BPN}-setup ${D}${bindir}/${BPN}-setup | 203 | install -m 0755 ${UNPACKDIR}/${BPN}-setup ${D}${bindir}/${BPN}-setup |
204 | install -d -m 700 ${D}${localstatedir}/lib/${BPN}/data | 204 | install -d -m 700 ${D}${localstatedir}/lib/${BPN}/data |
205 | install -d -m 700 ${D}${localstatedir}/lib/${BPN}/backups | 205 | install -d -m 700 ${D}${localstatedir}/lib/${BPN}/backups |
206 | install -m 644 ${WORKDIR}/${BPN}-profile ${D}${localstatedir}/lib/${BPN}/.profile | 206 | install -m 644 ${UNPACKDIR}/${BPN}-profile ${D}${localstatedir}/lib/${BPN}/.profile |
207 | chown -R postgres:postgres ${D}${localstatedir}/lib/${BPN} | 207 | chown -R postgres:postgres ${D}${localstatedir}/lib/${BPN} |
208 | # multiple server config directory | 208 | # multiple server config directory |
209 | install -d -m 700 ${D}${sysconfdir}/default/${BPN} | 209 | install -d -m 700 ${D}${sysconfdir}/default/${BPN} |
210 | 210 | ||
211 | if ${@bb.utils.contains('DISTRO_FEATURES', 'pam', 'true', 'false', d)}; then | 211 | if ${@bb.utils.contains('DISTRO_FEATURES', 'pam', 'true', 'false', d)}; then |
212 | install -d ${D}${sysconfdir}/pam.d | 212 | install -d ${D}${sysconfdir}/pam.d |
213 | install -m 644 ${WORKDIR}/postgresql.pam ${D}${sysconfdir}/pam.d/postgresql | 213 | install -m 644 ${UNPACKDIR}/postgresql.pam ${D}${sysconfdir}/pam.d/postgresql |
214 | fi | 214 | fi |
215 | 215 | ||
216 | # Install systemd unit files | 216 | # Install systemd unit files |
217 | install -d ${D}${systemd_unitdir}/system | 217 | install -d ${D}${systemd_unitdir}/system |
218 | install -m 0644 ${WORKDIR}/postgresql.service ${D}${systemd_unitdir}/system | 218 | install -m 0644 ${UNPACKDIR}/postgresql.service ${D}${systemd_unitdir}/system |
219 | sed -i -e 's,@BINDIR@,${bindir},g' \ | 219 | sed -i -e 's,@BINDIR@,${bindir},g' \ |
220 | ${D}${systemd_unitdir}/system/postgresql.service | 220 | ${D}${systemd_unitdir}/system/postgresql.service |
221 | # Remove the build path | 221 | # Remove the build path |
diff --git a/meta-oe/recipes-devtools/android-tools/android-tools-conf-configfs_1.0.bb b/meta-oe/recipes-devtools/android-tools/android-tools-conf-configfs_1.0.bb index 3f9d49a2d..430b53c4d 100644 --- a/meta-oe/recipes-devtools/android-tools/android-tools-conf-configfs_1.0.bb +++ b/meta-oe/recipes-devtools/android-tools/android-tools-conf-configfs_1.0.bb | |||
@@ -14,17 +14,17 @@ PACKAGE_ARCH = "${MACHINE_ARCH}" | |||
14 | 14 | ||
15 | do_install() { | 15 | do_install() { |
16 | install -d ${D}${bindir} | 16 | install -d ${D}${bindir} |
17 | install -m 0755 ${WORKDIR}/android-gadget-setup ${D}${bindir} | 17 | install -m 0755 ${UNPACKDIR}/android-gadget-setup ${D}${bindir} |
18 | install -m 0755 ${WORKDIR}/android-gadget-start ${D}${bindir} | 18 | install -m 0755 ${UNPACKDIR}/android-gadget-start ${D}${bindir} |
19 | install -m 0755 ${WORKDIR}/android-gadget-cleanup ${D}${bindir} | 19 | install -m 0755 ${UNPACKDIR}/android-gadget-cleanup ${D}${bindir} |
20 | 20 | ||
21 | if [ -r ${WORKDIR}/android-gadget-setup.machine ] ; then | 21 | if [ -r ${UNPACKDIR}/android-gadget-setup.machine ] ; then |
22 | install -d ${D}${sysconfdir} | 22 | install -d ${D}${sysconfdir} |
23 | install -m 0644 ${WORKDIR}/android-gadget-setup.machine ${D}${sysconfdir} | 23 | install -m 0644 ${UNPACKDIR}/android-gadget-setup.machine ${D}${sysconfdir} |
24 | fi | 24 | fi |
25 | 25 | ||
26 | install -d ${D}${systemd_unitdir}/system/android-tools-adbd.service.d | 26 | install -d ${D}${systemd_unitdir}/system/android-tools-adbd.service.d |
27 | install -m 0644 ${WORKDIR}/10-adbd-configfs.conf ${D}${systemd_unitdir}/system/android-tools-adbd.service.d | 27 | install -m 0644 ${UNPACKDIR}/10-adbd-configfs.conf ${D}${systemd_unitdir}/system/android-tools-adbd.service.d |
28 | } | 28 | } |
29 | 29 | ||
30 | FILES:${PN} += " \ | 30 | FILES:${PN} += " \ |
diff --git a/meta-oe/recipes-devtools/android-tools/android-tools-conf_1.0.bb b/meta-oe/recipes-devtools/android-tools/android-tools-conf_1.0.bb index 34b1a9bdd..f73be8dbb 100644 --- a/meta-oe/recipes-devtools/android-tools/android-tools-conf_1.0.bb +++ b/meta-oe/recipes-devtools/android-tools/android-tools-conf_1.0.bb | |||
@@ -9,7 +9,7 @@ PACKAGE_ARCH = "${MACHINE_ARCH}" | |||
9 | 9 | ||
10 | do_install() { | 10 | do_install() { |
11 | install -d ${D}${bindir} | 11 | install -d ${D}${bindir} |
12 | install -m 0755 ${WORKDIR}/android-gadget-setup ${D}${bindir} | 12 | install -m 0755 ${UNPACKDIR}/android-gadget-setup ${D}${bindir} |
13 | } | 13 | } |
14 | 14 | ||
15 | python () { | 15 | python () { |
diff --git a/meta-oe/recipes-devtools/android-tools/android-tools_5.1.1.r37.bb b/meta-oe/recipes-devtools/android-tools/android-tools_5.1.1.r37.bb index 1c66ea499..6343256d3 100644 --- a/meta-oe/recipes-devtools/android-tools/android-tools_5.1.1.r37.bb +++ b/meta-oe/recipes-devtools/android-tools/android-tools_5.1.1.r37.bb | |||
@@ -88,7 +88,7 @@ TOOLS:class-native = "fastboot ext4_utils mkbootimg" | |||
88 | TOOLS:class-nativesdk = "fastboot ext4_utils mkbootimg" | 88 | TOOLS:class-nativesdk = "fastboot ext4_utils mkbootimg" |
89 | 89 | ||
90 | do_compile() { | 90 | do_compile() { |
91 | cp ${WORKDIR}/gitignore ${S}/.gitignore | 91 | cp ${UNPACKDIR}/gitignore ${S}/.gitignore |
92 | 92 | ||
93 | # Setting both variables below causing our makefiles to not work with | 93 | # Setting both variables below causing our makefiles to not work with |
94 | # implicit make rules | 94 | # implicit make rules |
@@ -123,7 +123,7 @@ do_compile() { | |||
123 | 123 | ||
124 | for tool in ${TOOLS}; do | 124 | for tool in ${TOOLS}; do |
125 | mkdir -p ${B}/${tool} | 125 | mkdir -p ${B}/${tool} |
126 | oe_runmake -f ${B}/${tool}.mk -C ${B}/${tool} | 126 | oe_runmake -f ${UNPACKDIR}/${BPN}/${tool}.mk -C ${B}/${tool} |
127 | done | 127 | done |
128 | } | 128 | } |
129 | 129 | ||
@@ -151,7 +151,7 @@ do_install() { | |||
151 | fi | 151 | fi |
152 | 152 | ||
153 | # Outside the if statement to avoid errors during do_package | 153 | # Outside the if statement to avoid errors during do_package |
154 | install -D -p -m0644 ${WORKDIR}/android-tools-adbd.service \ | 154 | install -D -p -m0644 ${UNPACKDIR}/android-tools-adbd.service \ |
155 | ${D}${systemd_unitdir}/system/android-tools-adbd.service | 155 | ${D}${systemd_unitdir}/system/android-tools-adbd.service |
156 | 156 | ||
157 | if echo ${TOOLS} | grep -q "fastboot" ; then | 157 | if echo ${TOOLS} | grep -q "fastboot" ; then |
diff --git a/meta-oe/recipes-devtools/dnf-plugin-tui/dnf-plugin-tui_1.4.bb b/meta-oe/recipes-devtools/dnf-plugin-tui/dnf-plugin-tui_1.4.bb index 479b98d44..599675a34 100644 --- a/meta-oe/recipes-devtools/dnf-plugin-tui/dnf-plugin-tui_1.4.bb +++ b/meta-oe/recipes-devtools/dnf-plugin-tui/dnf-plugin-tui_1.4.bb | |||
@@ -24,7 +24,7 @@ do_install:append() { | |||
24 | 24 | ||
25 | do_install:append:class-target() { | 25 | do_install:append:class-target() { |
26 | install -d ${D}${sysconfdir}/yum.repos.d | 26 | install -d ${D}${sysconfdir}/yum.repos.d |
27 | install -m 0644 ${WORKDIR}/oe-remote.repo.sample ${D}${sysconfdir}/yum.repos.d | 27 | install -m 0644 ${UNPACKDIR}/oe-remote.repo.sample ${D}${sysconfdir}/yum.repos.d |
28 | } | 28 | } |
29 | 29 | ||
30 | do_install:append:class-nativesdk() { | 30 | do_install:append:class-nativesdk() { |
diff --git a/meta-oe/recipes-devtools/iptraf/iptraf-ng_1.2.1.bb b/meta-oe/recipes-devtools/iptraf/iptraf-ng_1.2.1.bb index 0f6bbb4d5..f9e2c7873 100644 --- a/meta-oe/recipes-devtools/iptraf/iptraf-ng_1.2.1.bb +++ b/meta-oe/recipes-devtools/iptraf/iptraf-ng_1.2.1.bb | |||
@@ -42,7 +42,7 @@ do_compile() { | |||
42 | do_install() { | 42 | do_install() { |
43 | oe_runmake DESTDIR=${D} install | 43 | oe_runmake DESTDIR=${D} install |
44 | install -D -m 0644 -p ${S}/iptraf-ng-logrotate.conf ${D}${sysconfdir}/logrotate.d/iptraf-ng | 44 | install -D -m 0644 -p ${S}/iptraf-ng-logrotate.conf ${D}${sysconfdir}/logrotate.d/iptraf-ng |
45 | install -Dm 0644 ${WORKDIR}/iptraf-ng-tmpfiles.conf ${D}${libdir}/tmpfiles.d/iptraf-ng-tmpfiles.conf | 45 | install -Dm 0644 ${UNPACKDIR}/iptraf-ng-tmpfiles.conf ${D}${libdir}/tmpfiles.d/iptraf-ng-tmpfiles.conf |
46 | } | 46 | } |
47 | 47 | ||
48 | FILES:${PN} += "${libdir}/tmpfiles.d" | 48 | FILES:${PN} += "${libdir}/tmpfiles.d" |
diff --git a/meta-oe/recipes-devtools/php/php_8.2.18.bb b/meta-oe/recipes-devtools/php/php_8.2.18.bb index da04ffba6..e662f6806 100644 --- a/meta-oe/recipes-devtools/php/php_8.2.18.bb +++ b/meta-oe/recipes-devtools/php/php_8.2.18.bb | |||
@@ -182,19 +182,19 @@ do_install:append:class-target() { | |||
182 | rm -rf ${D}/.[a-z]* | 182 | rm -rf ${D}/.[a-z]* |
183 | rm -rf ${D}/var | 183 | rm -rf ${D}/var |
184 | rm -f ${D}/${sysconfdir}/php-fpm.conf.default | 184 | rm -f ${D}/${sysconfdir}/php-fpm.conf.default |
185 | install -m 0644 ${WORKDIR}/php-fpm.conf ${D}/${sysconfdir}/php-fpm.conf | 185 | install -m 0644 ${UNPACKDIR}/php-fpm.conf ${D}/${sysconfdir}/php-fpm.conf |
186 | install -d ${D}/${sysconfdir}/apache2/conf.d | 186 | install -d ${D}/${sysconfdir}/apache2/conf.d |
187 | install -m 0644 ${WORKDIR}/php-fpm-apache.conf ${D}/${sysconfdir}/apache2/conf.d/php-fpm.conf | 187 | install -m 0644 ${UNPACKDIR}/php-fpm-apache.conf ${D}/${sysconfdir}/apache2/conf.d/php-fpm.conf |
188 | install -d ${D}${sysconfdir}/init.d | 188 | install -d ${D}${sysconfdir}/init.d |
189 | sed -i 's:=/usr/sbin:=${sbindir}:g' ${B}/sapi/fpm/init.d.php-fpm | 189 | sed -i 's:=/usr/sbin:=${sbindir}:g' ${B}/sapi/fpm/init.d.php-fpm |
190 | sed -i 's:=/etc:=${sysconfdir}:g' ${B}/sapi/fpm/init.d.php-fpm | 190 | sed -i 's:=/etc:=${sysconfdir}:g' ${B}/sapi/fpm/init.d.php-fpm |
191 | sed -i 's:=/var:=${localstatedir}:g' ${B}/sapi/fpm/init.d.php-fpm | 191 | sed -i 's:=/var:=${localstatedir}:g' ${B}/sapi/fpm/init.d.php-fpm |
192 | install -m 0755 ${B}/sapi/fpm/init.d.php-fpm ${D}${sysconfdir}/init.d/php-fpm | 192 | install -m 0755 ${B}/sapi/fpm/init.d.php-fpm ${D}${sysconfdir}/init.d/php-fpm |
193 | install -m 0644 ${WORKDIR}/php-fpm-apache.conf ${D}/${sysconfdir}/apache2/conf.d/php-fpm.conf | 193 | install -m 0644 ${UNPACKDIR}/php-fpm-apache.conf ${D}/${sysconfdir}/apache2/conf.d/php-fpm.conf |
194 | 194 | ||
195 | if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)};then | 195 | if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)};then |
196 | install -d ${D}${systemd_system_unitdir} | 196 | install -d ${D}${systemd_system_unitdir} |
197 | install -m 0644 ${WORKDIR}/php-fpm.service ${D}${systemd_system_unitdir}/php-fpm.service | 197 | install -m 0644 ${UNPACKDIR}/php-fpm.service ${D}${systemd_system_unitdir}/php-fpm.service |
198 | sed -i -e 's,@LOCALSTATEDIR@,${localstatedir},g' ${D}${systemd_system_unitdir}/php-fpm.service | 198 | sed -i -e 's,@LOCALSTATEDIR@,${localstatedir},g' ${D}${systemd_system_unitdir}/php-fpm.service |
199 | sed -i -e 's,@SBINDIR@,${sbindir},g' ${D}${systemd_system_unitdir}/php-fpm.service | 199 | sed -i -e 's,@SBINDIR@,${sbindir},g' ${D}${systemd_system_unitdir}/php-fpm.service |
200 | sed -i -e 's,@BINDIR@,${bindir},g' ${D}${systemd_system_unitdir}/php-fpm.service | 200 | sed -i -e 's,@BINDIR@,${bindir},g' ${D}${systemd_system_unitdir}/php-fpm.service |
@@ -203,7 +203,7 @@ do_install:append:class-target() { | |||
203 | if ${@bb.utils.contains('PACKAGECONFIG', 'apache2', 'true', 'false', d)}; then | 203 | if ${@bb.utils.contains('PACKAGECONFIG', 'apache2', 'true', 'false', d)}; then |
204 | install -d ${D}${sysconfdir}/apache2/modules.d | 204 | install -d ${D}${sysconfdir}/apache2/modules.d |
205 | install -d ${D}${sysconfdir}/php/apache2-php${PHP_MAJOR_VERSION} | 205 | install -d ${D}${sysconfdir}/php/apache2-php${PHP_MAJOR_VERSION} |
206 | install -m 644 ${WORKDIR}/70_mod_php${PHP_MAJOR_VERSION}.conf ${D}${sysconfdir}/apache2/modules.d | 206 | install -m 644 ${UNPACKDIR}/70_mod_php${PHP_MAJOR_VERSION}.conf ${D}${sysconfdir}/apache2/modules.d |
207 | sed -i s,lib/,${libexecdir}/, ${D}${sysconfdir}/apache2/modules.d/70_mod_php${PHP_MAJOR_VERSION}.conf | 207 | sed -i s,lib/,${libexecdir}/, ${D}${sysconfdir}/apache2/modules.d/70_mod_php${PHP_MAJOR_VERSION}.conf |
208 | cat ${S}/php.ini-production | \ | 208 | cat ${S}/php.ini-production | \ |
209 | sed -e 's,extension_dir = \"\./\",extension_dir = \"/usr/lib/extensions\",' \ | 209 | sed -e 's,extension_dir = \"\./\",extension_dir = \"/usr/lib/extensions\",' \ |
diff --git a/meta-oe/recipes-extended/bitwise/bitwise_0.50.bb b/meta-oe/recipes-extended/bitwise/bitwise_0.50.bb index 5cd20c5b1..178a5eb0b 100644 --- a/meta-oe/recipes-extended/bitwise/bitwise_0.50.bb +++ b/meta-oe/recipes-extended/bitwise/bitwise_0.50.bb | |||
@@ -27,6 +27,6 @@ inherit autotools ptest | |||
27 | 27 | ||
28 | do_install_ptest() { | 28 | do_install_ptest() { |
29 | install -d ${D}${PTEST_PATH} | 29 | install -d ${D}${PTEST_PATH} |
30 | install -m 0644 ${WORKDIR}/ptest.out.expected ${D}${PTEST_PATH}/ptest.out.expected | 30 | install -m 0644 ${UNPACKDIR}/ptest.out.expected ${D}${PTEST_PATH}/ptest.out.expected |
31 | } | 31 | } |
32 | 32 | ||
diff --git a/meta-oe/recipes-extended/collectd/collectd_5.12.0.bb b/meta-oe/recipes-extended/collectd/collectd_5.12.0.bb index 02f1fcb42..df36b6469 100644 --- a/meta-oe/recipes-extended/collectd/collectd_5.12.0.bb +++ b/meta-oe/recipes-extended/collectd/collectd_5.12.0.bb | |||
@@ -63,7 +63,7 @@ EXTRA_OECONF = " \ | |||
63 | 63 | ||
64 | do_install:append() { | 64 | do_install:append() { |
65 | install -d ${D}${sysconfdir}/init.d | 65 | install -d ${D}${sysconfdir}/init.d |
66 | install -m 0755 ${WORKDIR}/collectd.init ${D}${sysconfdir}/init.d/collectd | 66 | install -m 0755 ${UNPACKDIR}/collectd.init ${D}${sysconfdir}/init.d/collectd |
67 | sed -i 's!/usr/sbin/!${sbindir}/!g' ${D}${sysconfdir}/init.d/collectd | 67 | sed -i 's!/usr/sbin/!${sbindir}/!g' ${D}${sysconfdir}/init.d/collectd |
68 | sed -i 's!/etc/!${sysconfdir}/!g' ${D}${sysconfdir}/init.d/collectd | 68 | sed -i 's!/etc/!${sysconfdir}/!g' ${D}${sysconfdir}/init.d/collectd |
69 | sed -i 's!/var/!${localstatedir}/!g' ${D}${sysconfdir}/init.d/collectd | 69 | sed -i 's!/var/!${localstatedir}/!g' ${D}${sysconfdir}/init.d/collectd |
@@ -77,7 +77,7 @@ do_install:append() { | |||
77 | 77 | ||
78 | # Install systemd unit files | 78 | # Install systemd unit files |
79 | install -d ${D}${systemd_unitdir}/system | 79 | install -d ${D}${systemd_unitdir}/system |
80 | install -m 0644 ${WORKDIR}/collectd.service ${D}${systemd_unitdir}/system | 80 | install -m 0644 ${UNPACKDIR}/collectd.service ${D}${systemd_unitdir}/system |
81 | sed -i -e 's,@SBINDIR@,${sbindir},g' \ | 81 | sed -i -e 's,@SBINDIR@,${sbindir},g' \ |
82 | ${D}${systemd_unitdir}/system/collectd.service | 82 | ${D}${systemd_unitdir}/system/collectd.service |
83 | } | 83 | } |
diff --git a/meta-oe/recipes-extended/gnuplot/gnuplot_5.4.3.bb b/meta-oe/recipes-extended/gnuplot/gnuplot_5.4.3.bb index fe5e5c067..a293048a2 100644 --- a/meta-oe/recipes-extended/gnuplot/gnuplot_5.4.3.bb +++ b/meta-oe/recipes-extended/gnuplot/gnuplot_5.4.3.bb | |||
@@ -50,14 +50,14 @@ EXTRA_OECONF = " \ | |||
50 | " | 50 | " |
51 | 51 | ||
52 | do_compile:prepend() { | 52 | do_compile:prepend() { |
53 | install -m 0644 ${WORKDIR}/qtplot-0.2/qtopia.trm ${S}/term/ | 53 | install -m 0644 ${UNPACKDIR}/qtplot-0.2/qtopia.trm ${S}/term/ |
54 | } | 54 | } |
55 | 55 | ||
56 | do_install:append:class-target() { | 56 | do_install:append:class-target() { |
57 | install -d ${D}${datadir}/applications/ | 57 | install -d ${D}${datadir}/applications/ |
58 | install -m 0644 ${WORKDIR}/gnuplot.desktop ${D}${datadir}/applications/ | 58 | install -m 0644 ${UNPACKDIR}/gnuplot.desktop ${D}${datadir}/applications/ |
59 | install -d ${D}${datadir}/pixmaps/ | 59 | install -d ${D}${datadir}/pixmaps/ |
60 | install -m 0644 ${WORKDIR}/gnuplot.png ${D}${datadir}/pixmaps/ | 60 | install -m 0644 ${UNPACKDIR}/gnuplot.png ${D}${datadir}/pixmaps/ |
61 | } | 61 | } |
62 | 62 | ||
63 | PACKAGES =+ "${PN}-x11" | 63 | PACKAGES =+ "${PN}-x11" |
diff --git a/meta-oe/recipes-extended/inputattach-config/inputattach-config.bb b/meta-oe/recipes-extended/inputattach-config/inputattach-config.bb index 84ed3b052..fb1aefad6 100644 --- a/meta-oe/recipes-extended/inputattach-config/inputattach-config.bb +++ b/meta-oe/recipes-extended/inputattach-config/inputattach-config.bb | |||
@@ -8,5 +8,5 @@ do_configure[noexec] = "1" | |||
8 | do_compile[noexec] = "1" | 8 | do_compile[noexec] = "1" |
9 | 9 | ||
10 | do_install() { | 10 | do_install() { |
11 | install -Dm 0644 ${WORKDIR}/inputattach.conf ${D}${sysconfdir}/inputattach.conf | 11 | install -Dm 0644 ${UNPACKDIR}/inputattach.conf ${D}${sysconfdir}/inputattach.conf |
12 | } | 12 | } |
diff --git a/meta-oe/recipes-extended/linuxconsole/linuxconsole_1.7.1.bb b/meta-oe/recipes-extended/linuxconsole/linuxconsole_1.7.1.bb index 5716817e9..a2a420ced 100644 --- a/meta-oe/recipes-extended/linuxconsole/linuxconsole_1.7.1.bb +++ b/meta-oe/recipes-extended/linuxconsole/linuxconsole_1.7.1.bb | |||
@@ -50,11 +50,11 @@ do_compile() { | |||
50 | do_install() { | 50 | do_install() { |
51 | oe_runmake install | 51 | oe_runmake install |
52 | 52 | ||
53 | install -Dm 0644 ${WORKDIR}/51-these-are-not-joysticks-rm.rules ${D}${nonarch_base_libdir}/udev/rules.d/51-these-are-not-joysticks-rm.rules | 53 | install -Dm 0644 ${UNPACKDIR}/51-these-are-not-joysticks-rm.rules ${D}${nonarch_base_libdir}/udev/rules.d/51-these-are-not-joysticks-rm.rules |
54 | install -Dm 0644 ${WORKDIR}/60-joystick.rules ${D}${nonarch_base_libdir}/udev/rules.d/60-joystick.rules | 54 | install -Dm 0644 ${UNPACKDIR}/60-joystick.rules ${D}${nonarch_base_libdir}/udev/rules.d/60-joystick.rules |
55 | 55 | ||
56 | install -Dm 0644 ${WORKDIR}/inputattach.service ${D}${systemd_system_unitdir}/inputattach.service | 56 | install -Dm 0644 ${UNPACKDIR}/inputattach.service ${D}${systemd_system_unitdir}/inputattach.service |
57 | install -Dm 0755 ${WORKDIR}/inputattachctl ${D}${bindir}/inputattachctl | 57 | install -Dm 0755 ${UNPACKDIR}/inputattachctl ${D}${bindir}/inputattachctl |
58 | } | 58 | } |
59 | 59 | ||
60 | PACKAGES += "inputattach joystick-jscal joystick" | 60 | PACKAGES += "inputattach joystick-jscal joystick" |
diff --git a/meta-oe/recipes-extended/minifi-cpp/minifi-cpp_0.15.0.bb b/meta-oe/recipes-extended/minifi-cpp/minifi-cpp_0.15.0.bb index beb247c25..c9b369f0a 100644 --- a/meta-oe/recipes-extended/minifi-cpp/minifi-cpp_0.15.0.bb +++ b/meta-oe/recipes-extended/minifi-cpp/minifi-cpp_0.15.0.bb | |||
@@ -47,7 +47,7 @@ SRCREV_FORMAT .= "_expected-lite_range-v3_magic-enum_cxxopts_gsl-lite_date_asio_ | |||
47 | SRC_URI[ossp-uuid.sha256sum] = "11a615225baa5f8bb686824423f50e4427acd3f70d394765bdff32801f0fd5b0" | 47 | SRC_URI[ossp-uuid.sha256sum] = "11a615225baa5f8bb686824423f50e4427acd3f70d394765bdff32801f0fd5b0" |
48 | SRC_URI[libsodium.sha256sum] = "018d79fe0a045cca07331d37bd0cb57b2e838c51bc48fd837a1472e50068bbea" | 48 | SRC_URI[libsodium.sha256sum] = "018d79fe0a045cca07331d37bd0cb57b2e838c51bc48fd837a1472e50068bbea" |
49 | 49 | ||
50 | S = "${WORKDIR}/git" | 50 | S = "${UNPACKDIR}/git" |
51 | 51 | ||
52 | inherit pkgconfig cmake systemd | 52 | inherit pkgconfig cmake systemd |
53 | 53 | ||
@@ -162,7 +162,7 @@ do_install() { | |||
162 | 162 | ||
163 | if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then | 163 | if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then |
164 | install -m 755 -d ${D}${sysconfdir}/tmpfiles.d | 164 | install -m 755 -d ${D}${sysconfdir}/tmpfiles.d |
165 | install -m 644 ${WORKDIR}/systemd-volatile.conf ${D}${sysconfdir}/tmpfiles.d/minifi.conf | 165 | install -m 644 ${UNPACKDIR}/systemd-volatile.conf ${D}${sysconfdir}/tmpfiles.d/minifi.conf |
166 | sed -i "s|@MINIFI_LOG@|${MINIFI_LOG}|g" ${D}${sysconfdir}/tmpfiles.d/minifi.conf | 166 | sed -i "s|@MINIFI_LOG@|${MINIFI_LOG}|g" ${D}${sysconfdir}/tmpfiles.d/minifi.conf |
167 | 167 | ||
168 | install -m 755 -d ${D}${systemd_system_unitdir} | 168 | install -m 755 -d ${D}${systemd_system_unitdir} |
@@ -174,7 +174,7 @@ do_install() { | |||
174 | 174 | ||
175 | if ${@bb.utils.contains('DISTRO_FEATURES', 'sysvinit', 'true', 'false', d)}; then | 175 | if ${@bb.utils.contains('DISTRO_FEATURES', 'sysvinit', 'true', 'false', d)}; then |
176 | install -d ${D}${sysconfdir}/default/volatiles | 176 | install -d ${D}${sysconfdir}/default/volatiles |
177 | install -m 0644 ${WORKDIR}/sysvinit-volatile.conf ${D}${sysconfdir}/default/volatiles/99_minifi | 177 | install -m 0644 ${UNPACKDIR}/sysvinit-volatile.conf ${D}${sysconfdir}/default/volatiles/99_minifi |
178 | 178 | ||
179 | sed -i "s|@MINIFI_LOG@|${MINIFI_LOG}|g" ${D}${sysconfdir}/default/volatiles/99_minifi | 179 | sed -i "s|@MINIFI_LOG@|${MINIFI_LOG}|g" ${D}${sysconfdir}/default/volatiles/99_minifi |
180 | fi | 180 | fi |
diff --git a/meta-oe/recipes-extended/networking/mstpd_git.bb b/meta-oe/recipes-extended/networking/mstpd_git.bb index b2043ef06..e6e1f9a3b 100644 --- a/meta-oe/recipes-extended/networking/mstpd_git.bb +++ b/meta-oe/recipes-extended/networking/mstpd_git.bb | |||
@@ -26,8 +26,8 @@ do_install:append() { | |||
26 | rmdir ${D}${libdir} || true | 26 | rmdir ${D}${libdir} || true |
27 | 27 | ||
28 | install -d -m 0755 ${D}${sbindir} | 28 | install -d -m 0755 ${D}${sbindir} |
29 | install -m 0755 ${WORKDIR}/bridge-stp ${D}${sbindir} | 29 | install -m 0755 ${UNPACKDIR}/bridge-stp ${D}${sbindir} |
30 | 30 | ||
31 | install -d -m 0755 ${D}${systemd_system_unitdir} | 31 | install -d -m 0755 ${D}${systemd_system_unitdir} |
32 | install -m 0644 ${WORKDIR}/mstpd.service ${D}${systemd_system_unitdir} | 32 | install -m 0644 ${UNPACKDIR}/mstpd.service ${D}${systemd_system_unitdir} |
33 | } | 33 | } |
diff --git a/meta-oe/recipes-extended/openwsman/openwsman_2.7.2.bb b/meta-oe/recipes-extended/openwsman/openwsman_2.7.2.bb index 1c68b5f43..5437ea13e 100644 --- a/meta-oe/recipes-extended/openwsman/openwsman_2.7.2.bb +++ b/meta-oe/recipes-extended/openwsman/openwsman_2.7.2.bb | |||
@@ -57,7 +57,7 @@ do_install:append() { | |||
57 | chmod 755 ${D}/${sysconfdir}/openwsman/owsmangencert.sh | 57 | chmod 755 ${D}/${sysconfdir}/openwsman/owsmangencert.sh |
58 | if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then | 58 | if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then |
59 | install -d ${D}/${systemd_unitdir}/system | 59 | install -d ${D}/${systemd_unitdir}/system |
60 | install -m 644 ${WORKDIR}/openwsmand.service ${D}/${systemd_unitdir}/system | 60 | install -m 644 ${UNPACKDIR}/openwsmand.service ${D}/${systemd_unitdir}/system |
61 | 61 | ||
62 | sed -i -e 's,@SBINDIR@,${sbindir},g' ${D}${systemd_unitdir}/system/openwsmand.service | 62 | sed -i -e 's,@SBINDIR@,${sbindir},g' ${D}${systemd_unitdir}/system/openwsmand.service |
63 | sed -i -e 's,@SYSCONFDIR@,${sysconfdir},g' ${D}${systemd_unitdir}/system/openwsmand.service | 63 | sed -i -e 's,@SYSCONFDIR@,${sysconfdir},g' ${D}${systemd_unitdir}/system/openwsmand.service |
diff --git a/meta-oe/recipes-extended/polkit/polkit-group-rule-datetime.bb b/meta-oe/recipes-extended/polkit/polkit-group-rule-datetime.bb index 8a14018a8..2159482eb 100644 --- a/meta-oe/recipes-extended/polkit/polkit-group-rule-datetime.bb +++ b/meta-oe/recipes-extended/polkit/polkit-group-rule-datetime.bb | |||
@@ -7,7 +7,7 @@ require polkit-group-rule.inc | |||
7 | SRC_URI = "file://50-org.freedesktop.timedate1.rules" | 7 | SRC_URI = "file://50-org.freedesktop.timedate1.rules" |
8 | 8 | ||
9 | do_install() { | 9 | do_install() { |
10 | install -m 0755 ${WORKDIR}/50-org.freedesktop.timedate1.rules ${D}${sysconfdir}/polkit-1/rules.d | 10 | install -m 0755 ${UNPACKDIR}/50-org.freedesktop.timedate1.rules ${D}${sysconfdir}/polkit-1/rules.d |
11 | } | 11 | } |
12 | 12 | ||
13 | USERADD_PACKAGES = "${PN}" | 13 | USERADD_PACKAGES = "${PN}" |
diff --git a/meta-oe/recipes-extended/polkit/polkit-group-rule-network.bb b/meta-oe/recipes-extended/polkit/polkit-group-rule-network.bb index 8266fa639..bfd3361df 100644 --- a/meta-oe/recipes-extended/polkit/polkit-group-rule-network.bb +++ b/meta-oe/recipes-extended/polkit/polkit-group-rule-network.bb | |||
@@ -7,7 +7,7 @@ require polkit-group-rule.inc | |||
7 | SRC_URI = "file://50-org.freedesktop.NetworkManager.rules" | 7 | SRC_URI = "file://50-org.freedesktop.NetworkManager.rules" |
8 | 8 | ||
9 | do_install() { | 9 | do_install() { |
10 | install -m 0755 ${WORKDIR}/50-org.freedesktop.NetworkManager.rules ${D}${sysconfdir}/polkit-1/rules.d | 10 | install -m 0755 ${UNPACKDIR}/50-org.freedesktop.NetworkManager.rules ${D}${sysconfdir}/polkit-1/rules.d |
11 | } | 11 | } |
12 | 12 | ||
13 | USERADD_PACKAGES = "${PN}" | 13 | USERADD_PACKAGES = "${PN}" |
diff --git a/meta-oe/recipes-extended/polkit/polkit-group-rule-udisks2.bb b/meta-oe/recipes-extended/polkit/polkit-group-rule-udisks2.bb index db2ed015b..8dc8c5e25 100644 --- a/meta-oe/recipes-extended/polkit/polkit-group-rule-udisks2.bb +++ b/meta-oe/recipes-extended/polkit/polkit-group-rule-udisks2.bb | |||
@@ -10,7 +10,7 @@ SRC_URI = "file://50-org.freedesktop.udiskie.rules" | |||
10 | RDEPENDS:${PN} += "udisks2" | 10 | RDEPENDS:${PN} += "udisks2" |
11 | 11 | ||
12 | do_install() { | 12 | do_install() { |
13 | install -m 0755 ${WORKDIR}/50-org.freedesktop.udiskie.rules ${D}${sysconfdir}/polkit-1/rules.d | 13 | install -m 0755 ${UNPACKDIR}/50-org.freedesktop.udiskie.rules ${D}${sysconfdir}/polkit-1/rules.d |
14 | } | 14 | } |
15 | 15 | ||
16 | USERADD_PACKAGES = "${PN}" | 16 | USERADD_PACKAGES = "${PN}" |
diff --git a/meta-oe/recipes-extended/rarpd/rarpd_ss981107.bb b/meta-oe/recipes-extended/rarpd/rarpd_ss981107.bb index 7359c1254..293431245 100644 --- a/meta-oe/recipes-extended/rarpd/rarpd_ss981107.bb +++ b/meta-oe/recipes-extended/rarpd/rarpd_ss981107.bb | |||
@@ -36,10 +36,10 @@ do_install() { | |||
36 | install -m 755 rarpd.init ${D}${sysconfdir}/init.d/rarpd | 36 | install -m 755 rarpd.init ${D}${sysconfdir}/init.d/rarpd |
37 | install -m 755 rarpd ${D}${sbindir}/rarpd | 37 | install -m 755 rarpd ${D}${sbindir}/rarpd |
38 | install -m 644 rarpd.8 ${D}${mandir}/man8/rarpd.8 | 38 | install -m 644 rarpd.8 ${D}${mandir}/man8/rarpd.8 |
39 | install -m 644 ${WORKDIR}/ethers.sample ${D}${sysconfdir}/ethers | 39 | install -m 644 ${UNPACKDIR}/ethers.sample ${D}${sysconfdir}/ethers |
40 | 40 | ||
41 | install -d ${D}${systemd_unitdir}/system | 41 | install -d ${D}${systemd_unitdir}/system |
42 | install -m 0644 ${WORKDIR}/rarpd.service ${D}${systemd_unitdir}/system/ | 42 | install -m 0644 ${UNPACKDIR}/rarpd.service ${D}${systemd_unitdir}/system/ |
43 | } | 43 | } |
44 | 44 | ||
45 | inherit systemd | 45 | inherit systemd |
diff --git a/meta-oe/recipes-extended/redis/redis_6.2.14.bb b/meta-oe/recipes-extended/redis/redis_6.2.14.bb index fa430ce40..2433abba5 100644 --- a/meta-oe/recipes-extended/redis/redis_6.2.14.bb +++ b/meta-oe/recipes-extended/redis/redis_6.2.14.bb | |||
@@ -43,14 +43,14 @@ do_install() { | |||
43 | export PREFIX=${D}/${prefix} | 43 | export PREFIX=${D}/${prefix} |
44 | oe_runmake install | 44 | oe_runmake install |
45 | install -d ${D}/${sysconfdir}/redis | 45 | install -d ${D}/${sysconfdir}/redis |
46 | install -m 0644 ${WORKDIR}/redis.conf ${D}/${sysconfdir}/redis/redis.conf | 46 | install -m 0644 ${UNPACKDIR}/redis.conf ${D}/${sysconfdir}/redis/redis.conf |
47 | install -d ${D}/${sysconfdir}/init.d | 47 | install -d ${D}/${sysconfdir}/init.d |
48 | install -m 0755 ${WORKDIR}/init-redis-server ${D}/${sysconfdir}/init.d/redis-server | 48 | install -m 0755 ${UNPACKDIR}/init-redis-server ${D}/${sysconfdir}/init.d/redis-server |
49 | install -d ${D}/var/lib/redis/ | 49 | install -d ${D}/var/lib/redis/ |
50 | chown redis.redis ${D}/var/lib/redis/ | 50 | chown redis.redis ${D}/var/lib/redis/ |
51 | 51 | ||
52 | install -d ${D}${systemd_system_unitdir} | 52 | install -d ${D}${systemd_system_unitdir} |
53 | install -m 0644 ${WORKDIR}/redis.service ${D}${systemd_system_unitdir} | 53 | install -m 0644 ${UNPACKDIR}/redis.service ${D}${systemd_system_unitdir} |
54 | sed -i 's!/usr/sbin/!${sbindir}/!g' ${D}${systemd_system_unitdir}/redis.service | 54 | sed -i 's!/usr/sbin/!${sbindir}/!g' ${D}${systemd_system_unitdir}/redis.service |
55 | 55 | ||
56 | if [ "${REDIS_ON_SYSTEMD}" = true ]; then | 56 | if [ "${REDIS_ON_SYSTEMD}" = true ]; then |
diff --git a/meta-oe/recipes-extended/redis/redis_7.2.4.bb b/meta-oe/recipes-extended/redis/redis_7.2.4.bb index 5d64e9ba7..f23eabe3b 100644 --- a/meta-oe/recipes-extended/redis/redis_7.2.4.bb +++ b/meta-oe/recipes-extended/redis/redis_7.2.4.bb | |||
@@ -46,14 +46,14 @@ do_install() { | |||
46 | export PREFIX=${D}/${prefix} | 46 | export PREFIX=${D}/${prefix} |
47 | oe_runmake install | 47 | oe_runmake install |
48 | install -d ${D}/${sysconfdir}/redis | 48 | install -d ${D}/${sysconfdir}/redis |
49 | install -m 0644 ${WORKDIR}/redis.conf ${D}/${sysconfdir}/redis/redis.conf | 49 | install -m 0644 ${UNPACKDIR}/redis.conf ${D}/${sysconfdir}/redis/redis.conf |
50 | install -d ${D}/${sysconfdir}/init.d | 50 | install -d ${D}/${sysconfdir}/init.d |
51 | install -m 0755 ${WORKDIR}/init-redis-server ${D}/${sysconfdir}/init.d/redis-server | 51 | install -m 0755 ${UNPACKDIR}/init-redis-server ${D}/${sysconfdir}/init.d/redis-server |
52 | install -d ${D}/var/lib/redis/ | 52 | install -d ${D}/var/lib/redis/ |
53 | chown redis.redis ${D}/var/lib/redis/ | 53 | chown redis.redis ${D}/var/lib/redis/ |
54 | 54 | ||
55 | install -d ${D}${systemd_system_unitdir} | 55 | install -d ${D}${systemd_system_unitdir} |
56 | install -m 0644 ${WORKDIR}/redis.service ${D}${systemd_system_unitdir} | 56 | install -m 0644 ${UNPACKDIR}/redis.service ${D}${systemd_system_unitdir} |
57 | sed -i 's!/usr/sbin/!${sbindir}/!g' ${D}${systemd_system_unitdir}/redis.service | 57 | sed -i 's!/usr/sbin/!${sbindir}/!g' ${D}${systemd_system_unitdir}/redis.service |
58 | 58 | ||
59 | if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then | 59 | if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then |
diff --git a/meta-oe/recipes-extended/rsyslog/rsyslog_8.2404.0.bb b/meta-oe/recipes-extended/rsyslog/rsyslog_8.2404.0.bb index 515298424..ac1645f67 100644 --- a/meta-oe/recipes-extended/rsyslog/rsyslog_8.2404.0.bb +++ b/meta-oe/recipes-extended/rsyslog/rsyslog_8.2404.0.bb | |||
@@ -137,9 +137,9 @@ do_install_ptest() { | |||
137 | do_install:append() { | 137 | do_install:append() { |
138 | install -d "${D}${sysconfdir}/init.d" | 138 | install -d "${D}${sysconfdir}/init.d" |
139 | install -d "${D}${sysconfdir}/logrotate.d" | 139 | install -d "${D}${sysconfdir}/logrotate.d" |
140 | install -m 755 ${WORKDIR}/initscript ${D}${sysconfdir}/init.d/syslog | 140 | install -m 755 ${UNPACKDIR}/initscript ${D}${sysconfdir}/init.d/syslog |
141 | install -m 644 ${WORKDIR}/rsyslog.conf ${D}${sysconfdir}/rsyslog.conf | 141 | install -m 644 ${UNPACKDIR}/rsyslog.conf ${D}${sysconfdir}/rsyslog.conf |
142 | install -m 644 ${WORKDIR}/rsyslog.logrotate ${D}${sysconfdir}/logrotate.d/logrotate.rsyslog | 142 | install -m 644 ${UNPACKDIR}/rsyslog.logrotate ${D}${sysconfdir}/logrotate.d/logrotate.rsyslog |
143 | sed -i -e "s#@BINDIR@#${bindir}#g" ${D}${sysconfdir}/logrotate.d/logrotate.rsyslog | 143 | sed -i -e "s#@BINDIR@#${bindir}#g" ${D}${sysconfdir}/logrotate.d/logrotate.rsyslog |
144 | 144 | ||
145 | if ${@bb.utils.contains('PACKAGECONFIG', 'imjournal', 'true', 'false', d)}; then | 145 | if ${@bb.utils.contains('PACKAGECONFIG', 'imjournal', 'true', 'false', d)}; then |
@@ -152,7 +152,7 @@ do_install:append() { | |||
152 | fi | 152 | fi |
153 | if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then | 153 | if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then |
154 | install -d ${D}${systemd_system_unitdir} | 154 | install -d ${D}${systemd_system_unitdir} |
155 | install -m 644 ${WORKDIR}/rsyslog.service ${D}${systemd_system_unitdir} | 155 | install -m 644 ${UNPACKDIR}/rsyslog.service ${D}${systemd_system_unitdir} |
156 | sed -i -e "s,@sbindir@,${sbindir},g" ${D}${systemd_system_unitdir}/rsyslog.service | 156 | sed -i -e "s,@sbindir@,${sbindir},g" ${D}${systemd_system_unitdir}/rsyslog.service |
157 | fi | 157 | fi |
158 | } | 158 | } |
diff --git a/meta-oe/recipes-extended/sblim-sfcb/sblim-sfcb_1.4.9.bb b/meta-oe/recipes-extended/sblim-sfcb/sblim-sfcb_1.4.9.bb index 2a7cf2285..508939791 100644 --- a/meta-oe/recipes-extended/sblim-sfcb/sblim-sfcb_1.4.9.bb +++ b/meta-oe/recipes-extended/sblim-sfcb/sblim-sfcb_1.4.9.bb | |||
@@ -64,7 +64,7 @@ do_install() { | |||
64 | oe_runmake DESTDIR=${D} install | 64 | oe_runmake DESTDIR=${D} install |
65 | 65 | ||
66 | install -d ${D}${systemd_unitdir}/system | 66 | install -d ${D}${systemd_unitdir}/system |
67 | install -m 0644 ${WORKDIR}/sfcb.service ${D}${systemd_unitdir}/system/sblim-sfcb.service | 67 | install -m 0644 ${UNPACKDIR}/sfcb.service ${D}${systemd_unitdir}/system/sblim-sfcb.service |
68 | 68 | ||
69 | install -d ${D}${sysconfdir}/init.d | 69 | install -d ${D}${sysconfdir}/init.d |
70 | mv ${D}${sysconfdir}/init.d/sfcb ${D}${sysconfdir}/init.d/sblim-sfcb | 70 | mv ${D}${sysconfdir}/init.d/sfcb ${D}${sysconfdir}/init.d/sblim-sfcb |
diff --git a/meta-oe/recipes-extended/scsirastools/scsirastools_1.6.6.bb b/meta-oe/recipes-extended/scsirastools/scsirastools_1.6.6.bb index 4fefd5169..999d2b9e9 100644 --- a/meta-oe/recipes-extended/scsirastools/scsirastools_1.6.6.bb +++ b/meta-oe/recipes-extended/scsirastools/scsirastools_1.6.6.bb | |||
@@ -24,7 +24,7 @@ EXTRA_OEMAKE += "CC='${CC}' CFLAGS='${CFLAGS} -D_LARGEFILE64_SOURCE=1' sbindir=$ | |||
24 | 24 | ||
25 | do_configure:append() { | 25 | do_configure:append() { |
26 | oe_runmake -C mdadm.d mdadm-1.3.0 | 26 | oe_runmake -C mdadm.d mdadm-1.3.0 |
27 | patch -p0 < ${WORKDIR}/mdadm.patch | 27 | patch -p0 < ${UNPACKDIR}/mdadm.patch |
28 | } | 28 | } |
29 | INITSCRIPT_PACKAGES = "${PN}-diskmon ${PN}-raidmon" | 29 | INITSCRIPT_PACKAGES = "${PN}-diskmon ${PN}-raidmon" |
30 | INITSCRIPT_NAME:${PN}-diskmon = "sgdisk" | 30 | INITSCRIPT_NAME:${PN}-diskmon = "sgdisk" |
diff --git a/meta-oe/recipes-extended/smartmontools/smartmontools_7.4.bb b/meta-oe/recipes-extended/smartmontools/smartmontools_7.4.bb index f38714741..bd92b1629 100644 --- a/meta-oe/recipes-extended/smartmontools/smartmontools_7.4.bb +++ b/meta-oe/recipes-extended/smartmontools/smartmontools_7.4.bb | |||
@@ -33,13 +33,13 @@ SYSTEMD_AUTO_ENABLE = "disable" | |||
33 | do_install:append () { | 33 | do_install:append () { |
34 | #install the init.d/smartd | 34 | #install the init.d/smartd |
35 | install -d ${D}${sysconfdir}/init.d | 35 | install -d ${D}${sysconfdir}/init.d |
36 | install -p -m 0755 ${WORKDIR}/initd.smartd ${D}${sysconfdir}/init.d/smartd | 36 | install -p -m 0755 ${UNPACKDIR}/initd.smartd ${D}${sysconfdir}/init.d/smartd |
37 | install -d ${D}${sysconfdir}/default | 37 | install -d ${D}${sysconfdir}/default |
38 | install -p -m 0644 ${WORKDIR}/smartmontools.default ${D}${sysconfdir}/default/smartmontools | 38 | install -p -m 0644 ${UNPACKDIR}/smartmontools.default ${D}${sysconfdir}/default/smartmontools |
39 | 39 | ||
40 | #install systemd service file | 40 | #install systemd service file |
41 | install -d ${D}${systemd_unitdir}/system | 41 | install -d ${D}${systemd_unitdir}/system |
42 | install -m 0644 ${WORKDIR}/smartd.service ${D}${systemd_unitdir}/system | 42 | install -m 0644 ${UNPACKDIR}/smartd.service ${D}${systemd_unitdir}/system |
43 | sed -i -e 's,@BASE_BINDIR@,${base_bindir},g' \ | 43 | sed -i -e 's,@BASE_BINDIR@,${base_bindir},g' \ |
44 | -e 's,@SYSCONFDIR@,${sysconfdir},g' \ | 44 | -e 's,@SYSCONFDIR@,${sysconfdir},g' \ |
45 | -e 's,@SBINDIR@,${sbindir},g' \ | 45 | -e 's,@SBINDIR@,${sbindir},g' \ |
diff --git a/meta-oe/recipes-extended/vlock/vlock_2.2.3.bb b/meta-oe/recipes-extended/vlock/vlock_2.2.3.bb index 455bda1d7..1a7592227 100644 --- a/meta-oe/recipes-extended/vlock/vlock_2.2.3.bb +++ b/meta-oe/recipes-extended/vlock/vlock_2.2.3.bb | |||
@@ -50,7 +50,7 @@ do_configure () { | |||
50 | do_install:append () { | 50 | do_install:append () { |
51 | if [ ${@bb.utils.contains('DISTRO_FEATURES', 'pam', 'yes', '', d)} = yes ]; then | 51 | if [ ${@bb.utils.contains('DISTRO_FEATURES', 'pam', 'yes', '', d)} = yes ]; then |
52 | install -d -m 0755 ${D}/${sysconfdir}/pam.d | 52 | install -d -m 0755 ${D}/${sysconfdir}/pam.d |
53 | install -m 0644 ${WORKDIR}/vlock_pam ${D}${sysconfdir}/pam.d/vlock | 53 | install -m 0644 ${UNPACKDIR}/vlock_pam ${D}${sysconfdir}/pam.d/vlock |
54 | fi | 54 | fi |
55 | } | 55 | } |
56 | 56 | ||
diff --git a/meta-oe/recipes-extended/zram/zram_0.2.bb b/meta-oe/recipes-extended/zram/zram_0.2.bb index b4b3a27b2..800dd6b7c 100644 --- a/meta-oe/recipes-extended/zram/zram_0.2.bb +++ b/meta-oe/recipes-extended/zram/zram_0.2.bb | |||
@@ -21,17 +21,17 @@ do_install () { | |||
21 | # Install systemd related configuration file | 21 | # Install systemd related configuration file |
22 | if ${@bb.utils.contains('DISTRO_FEATURES', 'sysvinit', 'true', 'false', d)}; then | 22 | if ${@bb.utils.contains('DISTRO_FEATURES', 'sysvinit', 'true', 'false', d)}; then |
23 | install -d ${D}${sysconfdir}/init.d | 23 | install -d ${D}${sysconfdir}/init.d |
24 | install -m 0755 ${WORKDIR}/init ${D}${sysconfdir}/init.d/zram | 24 | install -m 0755 ${UNPACKDIR}/init ${D}${sysconfdir}/init.d/zram |
25 | fi | 25 | fi |
26 | 26 | ||
27 | if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then | 27 | if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then |
28 | install -d ${D}${libexecdir} | 28 | install -d ${D}${libexecdir} |
29 | install -m 0755 ${WORKDIR}/zram-swap-init ${D}${libexecdir} | 29 | install -m 0755 ${UNPACKDIR}/zram-swap-init ${D}${libexecdir} |
30 | install -m 0755 ${WORKDIR}/zram-swap-deinit ${D}${libexecdir} | 30 | install -m 0755 ${UNPACKDIR}/zram-swap-deinit ${D}${libexecdir} |
31 | install -d ${D}${systemd_unitdir}/system | 31 | install -d ${D}${systemd_unitdir}/system |
32 | install -m 0644 ${WORKDIR}/zram-swap.service ${D}${systemd_unitdir}/system/zram-swap.service | 32 | install -m 0644 ${UNPACKDIR}/zram-swap.service ${D}${systemd_unitdir}/system/zram-swap.service |
33 | sed -i -e "s,@LIBEXECDIR@,${libexecdir},g" ${D}${systemd_unitdir}/system/zram-swap.service | 33 | sed -i -e "s,@LIBEXECDIR@,${libexecdir},g" ${D}${systemd_unitdir}/system/zram-swap.service |
34 | install -m 0644 ${WORKDIR}/dev-zram0.swap ${D}${systemd_unitdir}/system/dev-zram0.swap | 34 | install -m 0644 ${UNPACKDIR}/dev-zram0.swap ${D}${systemd_unitdir}/system/dev-zram0.swap |
35 | fi | 35 | fi |
36 | } | 36 | } |
37 | 37 | ||
diff --git a/meta-oe/recipes-gnome/gmime/gmime_3.2.13.bb b/meta-oe/recipes-gnome/gmime/gmime_3.2.13.bb index f51451d97..54b37912b 100644 --- a/meta-oe/recipes-gnome/gmime/gmime_3.2.13.bb +++ b/meta-oe/recipes-gnome/gmime/gmime_3.2.13.bb | |||
@@ -19,5 +19,5 @@ export ac_cv_have_iconv_detect_h="yes" | |||
19 | export ac_cv_sys_file_offset_bits="64" | 19 | export ac_cv_sys_file_offset_bits="64" |
20 | 20 | ||
21 | do_configure:append () { | 21 | do_configure:append () { |
22 | cp ${WORKDIR}/iconv-detect.h ${S} | 22 | cp ${UNPACKDIR}/iconv-detect.h ${S} |
23 | } | 23 | } |
diff --git a/meta-oe/recipes-gnome/gnome-doc-utils-stub/gnome-doc-utils-stub_1.0.bb b/meta-oe/recipes-gnome/gnome-doc-utils-stub/gnome-doc-utils-stub_1.0.bb index db55f2239..1cfd9c1cb 100644 --- a/meta-oe/recipes-gnome/gnome-doc-utils-stub/gnome-doc-utils-stub_1.0.bb +++ b/meta-oe/recipes-gnome/gnome-doc-utils-stub/gnome-doc-utils-stub_1.0.bb | |||
@@ -11,7 +11,7 @@ PROVIDES = "gnome-doc-utils" | |||
11 | 11 | ||
12 | do_install:append() { | 12 | do_install:append() { |
13 | install -d ${D}${datadir}/aclocal/ | 13 | install -d ${D}${datadir}/aclocal/ |
14 | install ${WORKDIR}/gnome-doc-utils.m4 ${D}${datadir}/aclocal/ | 14 | install ${UNPACKDIR}/gnome-doc-utils.m4 ${D}${datadir}/aclocal/ |
15 | } | 15 | } |
16 | 16 | ||
17 | FILES:${PN} += "${datadir}" | 17 | FILES:${PN} += "${datadir}" |
diff --git a/meta-oe/recipes-graphics/glm/glm_0.9.9.8.bb b/meta-oe/recipes-graphics/glm/glm_0.9.9.8.bb index dd520b245..e313d7a19 100644 --- a/meta-oe/recipes-graphics/glm/glm_0.9.9.8.bb +++ b/meta-oe/recipes-graphics/glm/glm_0.9.9.8.bb | |||
@@ -29,10 +29,10 @@ do_install() { | |||
29 | cp -R --no-dereference --preserve=mode,links ${S}/glm ${D}${includedir} | 29 | cp -R --no-dereference --preserve=mode,links ${S}/glm ${D}${includedir} |
30 | cp -R --no-dereference --preserve=mode,links ${S}/doc ${D}${docdir}/glm | 30 | cp -R --no-dereference --preserve=mode,links ${S}/doc ${D}${docdir}/glm |
31 | rm ${D}${includedir}/glm/CMakeLists.txt | 31 | rm ${D}${includedir}/glm/CMakeLists.txt |
32 | sed "s/@VERSION@/${PV}/" ${WORKDIR}/glmConfigVersion.cmake.in > ${D}${libdir}/cmake/glm/glmConfigVersion.cmake | 32 | sed "s/@VERSION@/${PV}/" ${UNPACKDIR}/glmConfigVersion.cmake.in > ${D}${libdir}/cmake/glm/glmConfigVersion.cmake |
33 | sed "s/@VERSION@/${PV}/" ${WORKDIR}/glmConfig.cmake.in > ${D}${libdir}/cmake/glm/glmConfig.cmake | 33 | sed "s/@VERSION@/${PV}/" ${UNPACKDIR}/glmConfig.cmake.in > ${D}${libdir}/cmake/glm/glmConfig.cmake |
34 | sed "s/@VERSION@/${PV}/" ${WORKDIR}/glm.pc.in > ${D}${libdir}/pkgconfig/glm.pc | 34 | sed "s/@VERSION@/${PV}/" ${UNPACKDIR}/glm.pc.in > ${D}${libdir}/pkgconfig/glm.pc |
35 | install -Dm644 ${WORKDIR}/glmTargets.cmake ${D}${libdir}/cmake/glm/glmTargets.cmake | 35 | install -Dm644 ${UNPACKDIR}/glmTargets.cmake ${D}${libdir}/cmake/glm/glmTargets.cmake |
36 | 36 | ||
37 | } | 37 | } |
38 | 38 | ||
diff --git a/meta-oe/recipes-graphics/gphoto2/libgphoto2_2.5.31.bb b/meta-oe/recipes-graphics/gphoto2/libgphoto2_2.5.31.bb index cc42b6a9c..1d0b37826 100644 --- a/meta-oe/recipes-graphics/gphoto2/libgphoto2_2.5.31.bb +++ b/meta-oe/recipes-graphics/gphoto2/libgphoto2_2.5.31.bb | |||
@@ -38,7 +38,7 @@ do_configure:append() { | |||
38 | 38 | ||
39 | do_install:append() { | 39 | do_install:append() { |
40 | install -d ${D}${sysconfdir}/udev/rules.d/ | 40 | install -d ${D}${sysconfdir}/udev/rules.d/ |
41 | install -m 0644 ${WORKDIR}/*.rules ${D}${sysconfdir}/udev/rules.d/ | 41 | install -m 0644 ${UNPACKDIR}/*.rules ${D}${sysconfdir}/udev/rules.d/ |
42 | } | 42 | } |
43 | 43 | ||
44 | PACKAGES =+ "libgphotoport libgphoto2-camlibs" | 44 | PACKAGES =+ "libgphotoport libgphoto2-camlibs" |
diff --git a/meta-oe/recipes-graphics/graphviz/graphviz_8.1.0.bb b/meta-oe/recipes-graphics/graphviz/graphviz_8.1.0.bb index 2700142e5..38d738310 100644 --- a/meta-oe/recipes-graphics/graphviz/graphviz_8.1.0.bb +++ b/meta-oe/recipes-graphics/graphviz/graphviz_8.1.0.bb | |||
@@ -67,7 +67,7 @@ do_configure:prepend() { | |||
67 | do_install:append:class-nativesdk() { | 67 | do_install:append:class-nativesdk() { |
68 | # graphviz-setup.sh must be executed at SDK installation | 68 | # graphviz-setup.sh must be executed at SDK installation |
69 | install -d ${D}${SDKPATHNATIVE}/post-relocate-setup.d | 69 | install -d ${D}${SDKPATHNATIVE}/post-relocate-setup.d |
70 | install -m 0755 ${WORKDIR}/graphviz-setup.sh ${D}${SDKPATHNATIVE}/post-relocate-setup.d | 70 | install -m 0755 ${UNPACKDIR}/graphviz-setup.sh ${D}${SDKPATHNATIVE}/post-relocate-setup.d |
71 | } | 71 | } |
72 | FILES:${PN}:class-nativesdk += "${SDKPATHNATIVE}" | 72 | FILES:${PN}:class-nativesdk += "${SDKPATHNATIVE}" |
73 | 73 | ||
diff --git a/meta-oe/recipes-graphics/gtkperf/gtkperf_0.40.bb b/meta-oe/recipes-graphics/gtkperf/gtkperf_0.40.bb index a70d31fed..30964a1b9 100644 --- a/meta-oe/recipes-graphics/gtkperf/gtkperf_0.40.bb +++ b/meta-oe/recipes-graphics/gtkperf/gtkperf_0.40.bb | |||
@@ -24,7 +24,7 @@ REQUIRED_DISTRO_FEATURES = "x11" | |||
24 | 24 | ||
25 | do_configure:prepend () { | 25 | do_configure:prepend () { |
26 | rm -f ${S}/m4/init.m4 | 26 | rm -f ${S}/m4/init.m4 |
27 | cp -f ${WORKDIR}/Makevars ${S}/po/ | 27 | cp -f ${UNPACKDIR}/Makevars ${S}/po/ |
28 | } | 28 | } |
29 | 29 | ||
30 | do_install:append () { | 30 | do_install:append () { |
diff --git a/meta-oe/recipes-graphics/lxdm/lxdm_0.5.3.bb b/meta-oe/recipes-graphics/lxdm/lxdm_0.5.3.bb index adf9cb597..ae4525829 100644 --- a/meta-oe/recipes-graphics/lxdm/lxdm_0.5.3.bb +++ b/meta-oe/recipes-graphics/lxdm/lxdm_0.5.3.bb | |||
@@ -61,12 +61,12 @@ do_compile:append() { | |||
61 | 61 | ||
62 | do_install:append() { | 62 | do_install:append() { |
63 | install -d ${D}${localstatedir}/lib/lxdm | 63 | install -d ${D}${localstatedir}/lib/lxdm |
64 | install -m 644 ${WORKDIR}/lxdm.conf ${D}${localstatedir}/lib/lxdm | 64 | install -m 644 ${UNPACKDIR}/lxdm.conf ${D}${localstatedir}/lib/lxdm |
65 | if ${@bb.utils.contains('DISTRO_FEATURES', 'pam', 'true', 'false', d)}; then | 65 | if ${@bb.utils.contains('DISTRO_FEATURES', 'pam', 'true', 'false', d)}; then |
66 | # ArchLinux version of pam config has the following advantages: | 66 | # ArchLinux version of pam config has the following advantages: |
67 | # * simple setup of passwordless login | 67 | # * simple setup of passwordless login |
68 | # * in XFCE powerdown/restart enabled in logoff dialog | 68 | # * in XFCE powerdown/restart enabled in logoff dialog |
69 | install -m 644 ${WORKDIR}/${@bb.utils.contains("DISTRO_TYPE", "debug", "lxdm-pam-debug", "lxdm-pam",d)} ${D}${sysconfdir}/pam.d/lxdm | 69 | install -m 644 ${UNPACKDIR}/${@bb.utils.contains("DISTRO_TYPE", "debug", "lxdm-pam-debug", "lxdm-pam",d)} ${D}${sysconfdir}/pam.d/lxdm |
70 | fi | 70 | fi |
71 | } | 71 | } |
72 | 72 | ||
diff --git a/meta-oe/recipes-graphics/tigervnc/tigervnc_1.11.0.bb b/meta-oe/recipes-graphics/tigervnc/tigervnc_1.11.0.bb index 5cde7c9fb..668ca79dd 100644 --- a/meta-oe/recipes-graphics/tigervnc/tigervnc_1.11.0.bb +++ b/meta-oe/recipes-graphics/tigervnc/tigervnc_1.11.0.bb | |||
@@ -27,7 +27,7 @@ SRC_URI = "git://github.com/TigerVNC/tigervnc.git;branch=1.11-branch;protocol=ht | |||
27 | XORG_PN ?= "xorg-server" | 27 | XORG_PN ?= "xorg-server" |
28 | XORG_PV ?= "1.20.6" | 28 | XORG_PV ?= "1.20.6" |
29 | SRC_URI += "${XORG_MIRROR}/individual/xserver/${XORG_PN}-${XORG_PV}.tar.bz2;name=xorg" | 29 | SRC_URI += "${XORG_MIRROR}/individual/xserver/${XORG_PN}-${XORG_PV}.tar.bz2;name=xorg" |
30 | XORG_S = "${WORKDIR}/${XORG_PN}-${XORG_PV}" | 30 | XORG_S = "${UNPACKDIR}/${XORG_PN}-${XORG_PV}" |
31 | SRC_URI[xorg.md5sum] = "a98170084f2c8fed480d2ff601f8a14b" | 31 | SRC_URI[xorg.md5sum] = "a98170084f2c8fed480d2ff601f8a14b" |
32 | SRC_URI[xorg.sha256sum] = "6316146304e6e8a36d5904987ae2917b5d5b195dc9fc63d67f7aca137e5a51d1" | 32 | SRC_URI[xorg.sha256sum] = "6316146304e6e8a36d5904987ae2917b5d5b195dc9fc63d67f7aca137e5a51d1" |
33 | 33 | ||
diff --git a/meta-oe/recipes-graphics/tslib/tslib_1.22.bb b/meta-oe/recipes-graphics/tslib/tslib_1.22.bb index 01da03a47..cc7e44eff 100644 --- a/meta-oe/recipes-graphics/tslib/tslib_1.22.bb +++ b/meta-oe/recipes-graphics/tslib/tslib_1.22.bb | |||
@@ -53,12 +53,12 @@ PACKAGECONFIG[one-wire-ts-input] = "--enable-one-wire-ts-input,--disable-one-wir | |||
53 | PACKAGECONFIG[debug] = "--enable-debug,--disable-debug" | 53 | PACKAGECONFIG[debug] = "--enable-debug,--disable-debug" |
54 | 54 | ||
55 | do_install:prepend() { | 55 | do_install:prepend() { |
56 | install -m 0644 ${WORKDIR}/ts.conf ${S}/etc/ts.conf | 56 | install -m 0644 ${UNPACKDIR}/ts.conf ${S}/etc/ts.conf |
57 | } | 57 | } |
58 | 58 | ||
59 | do_install:append() { | 59 | do_install:append() { |
60 | install -d ${D}${sysconfdir}/profile.d/ | 60 | install -d ${D}${sysconfdir}/profile.d/ |
61 | install -m 0755 ${WORKDIR}/tslib.sh ${D}${sysconfdir}/profile.d/ | 61 | install -m 0755 ${UNPACKDIR}/tslib.sh ${D}${sysconfdir}/profile.d/ |
62 | } | 62 | } |
63 | 63 | ||
64 | RPROVIDES:tslib-conf = "libts-0.0-conf" | 64 | RPROVIDES:tslib-conf = "libts-0.0-conf" |
diff --git a/meta-oe/recipes-graphics/ttf-fonts/source-code-pro-fonts_2.030_1.050.bb b/meta-oe/recipes-graphics/ttf-fonts/source-code-pro-fonts_2.030_1.050.bb index 3402d0d46..e7ec00405 100644 --- a/meta-oe/recipes-graphics/ttf-fonts/source-code-pro-fonts_2.030_1.050.bb +++ b/meta-oe/recipes-graphics/ttf-fonts/source-code-pro-fonts_2.030_1.050.bb | |||
@@ -16,7 +16,7 @@ S = "${WORKDIR}/source-code-pro-2.030R-ro-1.050R-it" | |||
16 | 16 | ||
17 | do_install() { | 17 | do_install() { |
18 | install -d ${D}${sysconfdir}/fonts/conf.d/ | 18 | install -d ${D}${sysconfdir}/fonts/conf.d/ |
19 | install -m 0644 ${WORKDIR}/44-source-code-pro-fonts-fontconfig.conf ${D}${sysconfdir}/fonts/conf.d/ | 19 | install -m 0644 ${UNPACKDIR}/44-source-code-pro-fonts-fontconfig.conf ${D}${sysconfdir}/fonts/conf.d/ |
20 | 20 | ||
21 | install -d ${D}${datadir}/fonts/truetype/ | 21 | install -d ${D}${datadir}/fonts/truetype/ |
22 | find ./ -name '*.otf' -exec install -m 0644 {} ${D}${datadir}/fonts/truetype/ \; | 22 | find ./ -name '*.otf' -exec install -m 0644 {} ${D}${datadir}/fonts/truetype/ \; |
diff --git a/meta-oe/recipes-graphics/ttf-fonts/source-han-sans-cn-fonts_2.004.bb b/meta-oe/recipes-graphics/ttf-fonts/source-han-sans-cn-fonts_2.004.bb index 391d46557..fe00bf6c0 100644 --- a/meta-oe/recipes-graphics/ttf-fonts/source-han-sans-cn-fonts_2.004.bb +++ b/meta-oe/recipes-graphics/ttf-fonts/source-han-sans-cn-fonts_2.004.bb | |||
@@ -18,7 +18,7 @@ SRC_URI[sha256sum] = "6841fc13f1c0d255cfeb33d2a2c68d24bbebd94ae2c070347a2b2b200a | |||
18 | 18 | ||
19 | do_install() { | 19 | do_install() { |
20 | install -d ${D}${sysconfdir}/fonts/conf.d/ | 20 | install -d ${D}${sysconfdir}/fonts/conf.d/ |
21 | install -m 0644 ${WORKDIR}/44-source-han-sans-cn.conf ${D}${sysconfdir}/fonts/conf.d/ | 21 | install -m 0644 ${UNPACKDIR}/44-source-han-sans-cn.conf ${D}${sysconfdir}/fonts/conf.d/ |
22 | 22 | ||
23 | install -d ${D}${datadir}/fonts/truetype/ | 23 | install -d ${D}${datadir}/fonts/truetype/ |
24 | find ./ -name '*.otf' -exec install -m 0644 {} ${D}${datadir}/fonts/truetype/ \; | 24 | find ./ -name '*.otf' -exec install -m 0644 {} ${D}${datadir}/fonts/truetype/ \; |
diff --git a/meta-oe/recipes-graphics/ttf-fonts/source-han-sans-jp-fonts_2.004.bb b/meta-oe/recipes-graphics/ttf-fonts/source-han-sans-jp-fonts_2.004.bb index f940478a8..24f41174b 100644 --- a/meta-oe/recipes-graphics/ttf-fonts/source-han-sans-jp-fonts_2.004.bb +++ b/meta-oe/recipes-graphics/ttf-fonts/source-han-sans-jp-fonts_2.004.bb | |||
@@ -18,7 +18,7 @@ SRC_URI[sha256sum] = "1ae9f62ad620d686c4a049ce25cf54e3afd8fefc954a678c644cf98027 | |||
18 | 18 | ||
19 | do_install() { | 19 | do_install() { |
20 | install -d ${D}${sysconfdir}/fonts/conf.d/ | 20 | install -d ${D}${sysconfdir}/fonts/conf.d/ |
21 | install -m 0644 ${WORKDIR}/44-source-han-sans-jp.conf ${D}${sysconfdir}/fonts/conf.d/ | 21 | install -m 0644 ${UNPACKDIR}/44-source-han-sans-jp.conf ${D}${sysconfdir}/fonts/conf.d/ |
22 | 22 | ||
23 | install -d ${D}${datadir}/fonts/truetype/ | 23 | install -d ${D}${datadir}/fonts/truetype/ |
24 | find ./ -name '*.otf' -exec install -m 0644 {} ${D}${datadir}/fonts/truetype/ \; | 24 | find ./ -name '*.otf' -exec install -m 0644 {} ${D}${datadir}/fonts/truetype/ \; |
diff --git a/meta-oe/recipes-graphics/ttf-fonts/source-han-sans-kr-fonts_2.004.bb b/meta-oe/recipes-graphics/ttf-fonts/source-han-sans-kr-fonts_2.004.bb index f536d1b61..42e7b3dc3 100644 --- a/meta-oe/recipes-graphics/ttf-fonts/source-han-sans-kr-fonts_2.004.bb +++ b/meta-oe/recipes-graphics/ttf-fonts/source-han-sans-kr-fonts_2.004.bb | |||
@@ -15,10 +15,11 @@ SRC_URI = " \ | |||
15 | file://44-source-han-sans-kr.conf \ | 15 | file://44-source-han-sans-kr.conf \ |
16 | " | 16 | " |
17 | SRC_URI[sha256sum] = "02fe28a48c6381c49d61c27a1b173c77f0e6f2b9f2b68e79f076f10a6a8f4bfe" | 17 | SRC_URI[sha256sum] = "02fe28a48c6381c49d61c27a1b173c77f0e6f2b9f2b68e79f076f10a6a8f4bfe" |
18 | S = "${UNPACKDIR}/branches" | ||
18 | 19 | ||
19 | do_install() { | 20 | do_install() { |
20 | install -d ${D}${sysconfdir}/fonts/conf.d/ | 21 | install -d ${D}${sysconfdir}/fonts/conf.d/ |
21 | install -m 0644 ${WORKDIR}/44-source-han-sans-kr.conf ${D}${sysconfdir}/fonts/conf.d/ | 22 | install -m 0644 ${UNPACKDIR}/44-source-han-sans-kr.conf ${D}${sysconfdir}/fonts/conf.d/ |
22 | 23 | ||
23 | install -d ${D}${datadir}/fonts/truetype/ | 24 | install -d ${D}${datadir}/fonts/truetype/ |
24 | find ./ -name '*.otf' -exec install -m 0644 {} ${D}${datadir}/fonts/truetype/ \; | 25 | find ./ -name '*.otf' -exec install -m 0644 {} ${D}${datadir}/fonts/truetype/ \; |
diff --git a/meta-oe/recipes-graphics/ttf-fonts/source-han-sans-tw-fonts_2.004.bb b/meta-oe/recipes-graphics/ttf-fonts/source-han-sans-tw-fonts_2.004.bb index 0a4aff5e3..f99e2fd39 100644 --- a/meta-oe/recipes-graphics/ttf-fonts/source-han-sans-tw-fonts_2.004.bb +++ b/meta-oe/recipes-graphics/ttf-fonts/source-han-sans-tw-fonts_2.004.bb | |||
@@ -15,10 +15,11 @@ SRC_URI = " \ | |||
15 | file://44-source-han-sans-tw.conf \ | 15 | file://44-source-han-sans-tw.conf \ |
16 | " | 16 | " |
17 | SRC_URI[sha256sum] = "11d78c8fbc1a4bb04a453cdd65c99db8d41ec5cd6ba6d68c8638e6ba170de806" | 17 | SRC_URI[sha256sum] = "11d78c8fbc1a4bb04a453cdd65c99db8d41ec5cd6ba6d68c8638e6ba170de806" |
18 | S = "${UNPACKDIR}/SourceHanSansTW" | ||
18 | 19 | ||
19 | do_install() { | 20 | do_install() { |
20 | install -d ${D}${sysconfdir}/fonts/conf.d/ | 21 | install -d ${D}${sysconfdir}/fonts/conf.d/ |
21 | install -m 0644 ${WORKDIR}/44-source-han-sans-tw.conf ${D}${sysconfdir}/fonts/conf.d/ | 22 | install -m 0644 ${UNPACKDIR}/44-source-han-sans-tw.conf ${D}${sysconfdir}/fonts/conf.d/ |
22 | 23 | ||
23 | install -d ${D}${datadir}/fonts/truetype/ | 24 | install -d ${D}${datadir}/fonts/truetype/ |
24 | find ./ -name '*.otf' -exec install -m 0644 {} ${D}${datadir}/fonts/truetype/ \; | 25 | find ./ -name '*.otf' -exec install -m 0644 {} ${D}${datadir}/fonts/truetype/ \; |
diff --git a/meta-oe/recipes-graphics/ttf-fonts/ttf-dejavu_2.37.bb b/meta-oe/recipes-graphics/ttf-fonts/ttf-dejavu_2.37.bb index 43a387b81..54aeb318a 100644 --- a/meta-oe/recipes-graphics/ttf-fonts/ttf-dejavu_2.37.bb +++ b/meta-oe/recipes-graphics/ttf-fonts/ttf-dejavu_2.37.bb | |||
@@ -23,7 +23,7 @@ UPSTREAM_CHECK_URI = "https://sourceforge.net/projects/dejavu/files/dejavu/" | |||
23 | 23 | ||
24 | do_install:append () { | 24 | do_install:append () { |
25 | install -d ${D}${sysconfdir}/fonts/conf.d/ | 25 | install -d ${D}${sysconfdir}/fonts/conf.d/ |
26 | install -m 0644 ${WORKDIR}/30-dejavu-aliases.conf ${D}${sysconfdir}/fonts/conf.d/ | 26 | install -m 0644 ${UNPACKDIR}/30-dejavu-aliases.conf ${D}${sysconfdir}/fonts/conf.d/ |
27 | } | 27 | } |
28 | 28 | ||
29 | PACKAGES = "\ | 29 | PACKAGES = "\ |
diff --git a/meta-oe/recipes-graphics/ttf-fonts/ttf-inconsolata_20100526.bb b/meta-oe/recipes-graphics/ttf-fonts/ttf-inconsolata_20100526.bb index 2ae1d619c..5a8fe4c32 100644 --- a/meta-oe/recipes-graphics/ttf-fonts/ttf-inconsolata_20100526.bb +++ b/meta-oe/recipes-graphics/ttf-fonts/ttf-inconsolata_20100526.bb | |||
@@ -3,23 +3,23 @@ require ttf.inc | |||
3 | SUMMARY = "Inconsolata font - TTF Version" | 3 | SUMMARY = "Inconsolata font - TTF Version" |
4 | HOMEPAGE = "http://www.levien.com/type/myfonts/inconsolata.html" | 4 | HOMEPAGE = "http://www.levien.com/type/myfonts/inconsolata.html" |
5 | LICENSE = "OFL-1.1" | 5 | LICENSE = "OFL-1.1" |
6 | LIC_FILES_CHKSUM = "file://../OFL.txt;md5=969851e3a70122069a4d9ee61dd5a2ed" | 6 | LIC_FILES_CHKSUM = "file://${UNPACKDIR}/OFL.txt;md5=969851e3a70122069a4d9ee61dd5a2ed" |
7 | 7 | ||
8 | SRC_URI = "http://levien.com/type/myfonts/Inconsolata.otf \ | 8 | SRC_URI = "http://levien.com/type/myfonts/Inconsolata.otf \ |
9 | file://OFL.txt" | 9 | file://OFL.txt" |
10 | 10 | ||
11 | S = "${WORKDIR}/ttf-inconsolata-${PV}" | 11 | S = "${UNPACKDIR}/ttf-inconsolata-${PV}" |
12 | 12 | ||
13 | FILES:${PN} = "${datadir}/fonts/truetype/Inconsolata.ttf \ | 13 | FILES:${PN} = "${datadir}/fonts/truetype/Inconsolata.ttf \ |
14 | ${datadir}/doc/ttf-inconsolata/*" | 14 | ${datadir}/doc/ttf-inconsolata/*" |
15 | 15 | ||
16 | do_configure() { | 16 | do_configure() { |
17 | cp -fr ${WORKDIR}/Inconsolata.otf ${S}/Inconsolata.ttf | 17 | cp -fr ${UNPACKDIR}/Inconsolata.otf ${S}/Inconsolata.ttf |
18 | } | 18 | } |
19 | 19 | ||
20 | do_install:append() { | 20 | do_install:append() { |
21 | install -d ${D}${datadir}/doc/ttf-inconsolata/ | 21 | install -d ${D}${datadir}/doc/ttf-inconsolata/ |
22 | install -m 0644 ${WORKDIR}/OFL.txt ${D}${datadir}/doc/ttf-inconsolata/ | 22 | install -m 0644 ${UNPACKDIR}/OFL.txt ${D}${datadir}/doc/ttf-inconsolata/ |
23 | } | 23 | } |
24 | 24 | ||
25 | SRC_URI[md5sum] = "0fbe014c1f0fb5e3c71140ff0dc63edf" | 25 | SRC_URI[md5sum] = "0fbe014c1f0fb5e3c71140ff0dc63edf" |
diff --git a/meta-oe/recipes-graphics/ttf-fonts/ttf-liberation-sans-narrow_1.07.4.bb b/meta-oe/recipes-graphics/ttf-fonts/ttf-liberation-sans-narrow_1.07.4.bb index f386d6ec5..a0fb7b6a7 100644 --- a/meta-oe/recipes-graphics/ttf-fonts/ttf-liberation-sans-narrow_1.07.4.bb +++ b/meta-oe/recipes-graphics/ttf-fonts/ttf-liberation-sans-narrow_1.07.4.bb | |||
@@ -22,7 +22,7 @@ do_install:append () { | |||
22 | install -d ${D}${datadir}/fonts/TTF/ | 22 | install -d ${D}${datadir}/fonts/TTF/ |
23 | install -d ${D}${sysconfdir}/fonts/conf.d/ | 23 | install -d ${D}${sysconfdir}/fonts/conf.d/ |
24 | install -m 0644 LiberationSansNarrow*.ttf ${D}${datadir}/fonts/TTF/ | 24 | install -m 0644 LiberationSansNarrow*.ttf ${D}${datadir}/fonts/TTF/ |
25 | install -D -m 0644 ${WORKDIR}/30-0-liberation-sans-narrow.conf ${D}${sysconfdir}/conf.avail/30-${PN}-sans.conf | 25 | install -D -m 0644 ${UNPACKDIR}/30-0-liberation-sans-narrow.conf ${D}${sysconfdir}/conf.avail/30-${PN}-sans.conf |
26 | install -D -m 0644 ${S}/License.txt ${D}${datadir}/licenses/${PN}/LICENSE | 26 | install -D -m 0644 ${S}/License.txt ${D}${datadir}/licenses/${PN}/LICENSE |
27 | # normal liberation fonts come from ttf-liberation recipe so delete here | 27 | # normal liberation fonts come from ttf-liberation recipe so delete here |
28 | rm -rf ${D}${datadir}/fonts/truetype | 28 | rm -rf ${D}${datadir}/fonts/truetype |
diff --git a/meta-oe/recipes-graphics/ttf-fonts/ttf-pt-sans_1.1.bb b/meta-oe/recipes-graphics/ttf-fonts/ttf-pt-sans_1.1.bb index e9aa5721f..fce76418f 100644 --- a/meta-oe/recipes-graphics/ttf-fonts/ttf-pt-sans_1.1.bb +++ b/meta-oe/recipes-graphics/ttf-fonts/ttf-pt-sans_1.1.bb | |||
@@ -5,7 +5,7 @@ HOMEPAGE = "http://www.paratype.com/public/" | |||
5 | SECTION = "x11/fonts" | 5 | SECTION = "x11/fonts" |
6 | 6 | ||
7 | LICENSE = "ParaTypeFFL-1.3" | 7 | LICENSE = "ParaTypeFFL-1.3" |
8 | LIC_FILES_CHKSUM = "file://../PT%20Free%20Font%20License_eng.txt;md5=d720f3a281ed81c3f4cfc465e11b1d0d" | 8 | LIC_FILES_CHKSUM = "file://${UNPACKDIR}/PT%20Free%20Font%20License_eng.txt;md5=d720f3a281ed81c3f4cfc465e11b1d0d" |
9 | 9 | ||
10 | inherit allarch fontcache | 10 | inherit allarch fontcache |
11 | 11 | ||
@@ -16,9 +16,10 @@ SRC_URI = "http://pkgs.fedoraproject.org/repo/pkgs/paratype-pt-sans-fonts/PTSans | |||
16 | SRC_URI[md5sum] = "c3f5a0e20a75cf628387510a720924a7" | 16 | SRC_URI[md5sum] = "c3f5a0e20a75cf628387510a720924a7" |
17 | SRC_URI[sha256sum] = "0164f824e03c32c99e8a225853ec168893a04a09ade132e93a674e85ae033b2e" | 17 | SRC_URI[sha256sum] = "0164f824e03c32c99e8a225853ec168893a04a09ade132e93a674e85ae033b2e" |
18 | 18 | ||
19 | S = "${UNPACKDIR}" | ||
20 | |||
19 | do_install () { | 21 | do_install () { |
20 | install -d ${D}${datadir}/fonts/X11/TTF/ | 22 | install -d ${D}${datadir}/fonts/X11/TTF/ |
21 | cd .. | ||
22 | for i in *.ttf; do | 23 | for i in *.ttf; do |
23 | install -m 0644 $i ${D}${prefix}/share/fonts/X11/TTF/${i} | 24 | install -m 0644 $i ${D}${prefix}/share/fonts/X11/TTF/${i} |
24 | done | 25 | done |
diff --git a/meta-oe/recipes-graphics/ttf-fonts/ttf-tlwg_0.6.1.bb b/meta-oe/recipes-graphics/ttf-fonts/ttf-tlwg_0.6.1.bb index 461e3def7..0131a62ee 100644 --- a/meta-oe/recipes-graphics/ttf-fonts/ttf-tlwg_0.6.1.bb +++ b/meta-oe/recipes-graphics/ttf-fonts/ttf-tlwg_0.6.1.bb | |||
@@ -3,7 +3,7 @@ require ttf.inc | |||
3 | SUMMARY = "Thai Linux Working Group Fonts" | 3 | SUMMARY = "Thai Linux Working Group Fonts" |
4 | HOMEPAGE = "http://linux.thai.net/projects/fonts-tlwg" | 4 | HOMEPAGE = "http://linux.thai.net/projects/fonts-tlwg" |
5 | LICENSE = "GPL-2.0-only & TLWG" | 5 | LICENSE = "GPL-2.0-only & TLWG" |
6 | LIC_FILES_CHKSUM = "file://../fonts-tlwg-${PV}/COPYING;md5=3d20cd7eadf4afd5460c0adb32e387fd" | 6 | LIC_FILES_CHKSUM = "file://${UNPACKDIR}/fonts-tlwg-${PV}/COPYING;md5=3d20cd7eadf4afd5460c0adb32e387fd" |
7 | 7 | ||
8 | SRC_URI = "http://linux.thai.net/pub/ThaiLinux/software/fonts-tlwg/fonts-tlwg-${PV}.tar.xz;name=source \ | 8 | SRC_URI = "http://linux.thai.net/pub/ThaiLinux/software/fonts-tlwg/fonts-tlwg-${PV}.tar.xz;name=source \ |
9 | http://linux.thai.net/pub/ThaiLinux/software/ttf-tlwg/ttf-tlwg-${PV}.tar.xz;name=ttf" | 9 | http://linux.thai.net/pub/ThaiLinux/software/ttf-tlwg/ttf-tlwg-${PV}.tar.xz;name=ttf" |
diff --git a/meta-oe/recipes-graphics/xorg-driver/xf86-input-tslib_1.1.1.bb b/meta-oe/recipes-graphics/xorg-driver/xf86-input-tslib_1.1.1.bb index 9f445ff26..8c26bf798 100644 --- a/meta-oe/recipes-graphics/xorg-driver/xf86-input-tslib_1.1.1.bb +++ b/meta-oe/recipes-graphics/xorg-driver/xf86-input-tslib_1.1.1.bb | |||
@@ -14,7 +14,7 @@ SRC_URI[sha256sum] = "b596168c4ed2f1023212dc828ce49cbe82a0bbd1aac3c5e2958154d788 | |||
14 | 14 | ||
15 | do_install:append() { | 15 | do_install:append() { |
16 | install -d ${D}${nonarch_base_libdir}/udev/rules.d | 16 | install -d ${D}${nonarch_base_libdir}/udev/rules.d |
17 | install -m 0644 ${WORKDIR}/99-xf86-input-tslib.rules ${D}${nonarch_base_libdir}/udev/rules.d/ | 17 | install -m 0644 ${UNPACKDIR}/99-xf86-input-tslib.rules ${D}${nonarch_base_libdir}/udev/rules.d/ |
18 | } | 18 | } |
19 | 19 | ||
20 | FILES:${PN} += "${nonarch_base_libdir}/udev" | 20 | FILES:${PN} += "${nonarch_base_libdir}/udev" |
diff --git a/meta-oe/recipes-graphics/xscreensaver/xscreensaver_6.04.bb b/meta-oe/recipes-graphics/xscreensaver/xscreensaver_6.04.bb index dc909ed78..c06c9e96b 100644 --- a/meta-oe/recipes-graphics/xscreensaver/xscreensaver_6.04.bb +++ b/meta-oe/recipes-graphics/xscreensaver/xscreensaver_6.04.bb | |||
@@ -38,7 +38,7 @@ CONFIGUREOPTS:remove = "--disable-silent-rules --disable-dependency-tracking ${@ | |||
38 | EXTRA_OECONF:remove = "--disable-static" | 38 | EXTRA_OECONF:remove = "--disable-static" |
39 | 39 | ||
40 | do_install:append() { | 40 | do_install:append() { |
41 | install -D ${WORKDIR}/xscreensaver.service ${D}${systemd_unitdir}/system/xscreensaver.service | 41 | install -D ${UNPACKDIR}/xscreensaver.service ${D}${systemd_unitdir}/system/xscreensaver.service |
42 | for f in xscreensaver-getimage-file xscreensaver-getimage-video webcollage xscreensaver-text vidwhacker | 42 | for f in xscreensaver-getimage-file xscreensaver-getimage-video webcollage xscreensaver-text vidwhacker |
43 | do | 43 | do |
44 | sed -i -e "s|${STAGING_BINDIR_NATIVE}/perl-native/perl|/usr/bin/perl|g" ${D}/${libexecdir}/${PN}/$f | 44 | sed -i -e "s|${STAGING_BINDIR_NATIVE}/perl-native/perl|/usr/bin/perl|g" ${D}/${libexecdir}/${PN}/$f |
diff --git a/meta-oe/recipes-kernel/ipmitool/ipmitool_1.8.19.bb b/meta-oe/recipes-kernel/ipmitool/ipmitool_1.8.19.bb index 0f1c8846b..7a15d16bc 100644 --- a/meta-oe/recipes-kernel/ipmitool/ipmitool_1.8.19.bb +++ b/meta-oe/recipes-kernel/ipmitool/ipmitool_1.8.19.bb | |||
@@ -37,8 +37,8 @@ S = "${WORKDIR}/git" | |||
37 | inherit autotools pkgconfig | 37 | inherit autotools pkgconfig |
38 | 38 | ||
39 | do_install:append() { | 39 | do_install:append() { |
40 | if [ -e ${WORKDIR}/iana-enterprise-numbers ]; then | 40 | if [ -e ${UNPACKDIR}/iana-enterprise-numbers ]; then |
41 | install -Dm 0755 ${WORKDIR}/iana-enterprise-numbers ${D}${datadir}/misc/enterprise-numbers | 41 | install -Dm 0755 ${UNPACKDIR}/iana-enterprise-numbers ${D}${datadir}/misc/enterprise-numbers |
42 | fi | 42 | fi |
43 | } | 43 | } |
44 | 44 | ||
diff --git a/meta-oe/recipes-kernel/kernel-selftest/kernel-selftest.bb b/meta-oe/recipes-kernel/kernel-selftest/kernel-selftest.bb index 01f185adb..3f57ef3bf 100644 --- a/meta-oe/recipes-kernel/kernel-selftest/kernel-selftest.bb +++ b/meta-oe/recipes-kernel/kernel-selftest/kernel-selftest.bb | |||
@@ -2,7 +2,7 @@ SUMMARY = "Kernel selftest for Linux" | |||
2 | DESCRIPTION = "Kernel selftest for Linux" | 2 | DESCRIPTION = "Kernel selftest for Linux" |
3 | LICENSE = "GPL-2.0-only" | 3 | LICENSE = "GPL-2.0-only" |
4 | 4 | ||
5 | LIC_FILES_CHKSUM = "file://../COPYING;md5=bbea815ee2795b2f4230826c0c6b8814" | 5 | LIC_FILES_CHKSUM = "file://${UNPACKDIR}/COPYING;md5=bbea815ee2795b2f4230826c0c6b8814" |
6 | 6 | ||
7 | DEPENDS = "rsync-native llvm-native" | 7 | DEPENDS = "rsync-native llvm-native" |
8 | 8 | ||
@@ -120,7 +120,7 @@ do_install() { | |||
120 | } | 120 | } |
121 | 121 | ||
122 | do_configure() { | 122 | do_configure() { |
123 | install -D -m 0644 ${WORKDIR}/COPYING ${S}/COPYING | 123 | install -D -m 0644 ${UNPACKDIR}/COPYING ${S}/COPYING |
124 | } | 124 | } |
125 | 125 | ||
126 | do_patch[prefuncs] += "copy_kselftest_source_from_kernel remove_unrelated" | 126 | do_patch[prefuncs] += "copy_kselftest_source_from_kernel remove_unrelated" |
diff --git a/meta-oe/recipes-kernel/linux/linux.inc b/meta-oe/recipes-kernel/linux/linux.inc index b4b066122..79a916d46 100644 --- a/meta-oe/recipes-kernel/linux/linux.inc +++ b/meta-oe/recipes-kernel/linux/linux.inc | |||
@@ -41,8 +41,8 @@ do_configure:prepend() { | |||
41 | # | 41 | # |
42 | # logo support, if you supply logo_linux_clut224.ppm in SRC_URI, then it's going to be used | 42 | # logo support, if you supply logo_linux_clut224.ppm in SRC_URI, then it's going to be used |
43 | # | 43 | # |
44 | if [ -e ${WORKDIR}/logo_linux_clut224.ppm ]; then | 44 | if [ -e ${UNPACKDIR}/logo_linux_clut224.ppm ]; then |
45 | install -m 0644 ${WORKDIR}/logo_linux_clut224.ppm drivers/video/logo/logo_linux_clut224.ppm | 45 | install -m 0644 ${UNPACKDIR}/logo_linux_clut224.ppm drivers/video/logo/logo_linux_clut224.ppm |
46 | kernel_conf_variable LOGO y | 46 | kernel_conf_variable LOGO y |
47 | kernel_conf_variable LOGO_LINUX_CLUT224 y | 47 | kernel_conf_variable LOGO_LINUX_CLUT224 y |
48 | fi | 48 | fi |
diff --git a/meta-oe/recipes-kernel/minicoredumper/minicoredumper_2.0.7.bb b/meta-oe/recipes-kernel/minicoredumper/minicoredumper_2.0.7.bb index 726aa60ce..90e847c13 100644 --- a/meta-oe/recipes-kernel/minicoredumper/minicoredumper_2.0.7.bb +++ b/meta-oe/recipes-kernel/minicoredumper/minicoredumper_2.0.7.bb | |||
@@ -36,9 +36,9 @@ do_install:append() { | |||
36 | cp -rf ${S}/etc/* ${D}/${sysconfdir}/ | 36 | cp -rf ${S}/etc/* ${D}/${sysconfdir}/ |
37 | 37 | ||
38 | install -d ${D}${systemd_system_unitdir} | 38 | install -d ${D}${systemd_system_unitdir} |
39 | install -m 0644 ${WORKDIR}/minicoredumper.service ${D}${systemd_system_unitdir} | 39 | install -m 0644 ${UNPACKDIR}/minicoredumper.service ${D}${systemd_system_unitdir} |
40 | install -d ${D}${sysconfdir}/init.d | 40 | install -d ${D}${sysconfdir}/init.d |
41 | install -m 0755 ${WORKDIR}/minicoredumper.init ${D}${sysconfdir}/init.d/minicoredumper | 41 | install -m 0755 ${UNPACKDIR}/minicoredumper.init ${D}${sysconfdir}/init.d/minicoredumper |
42 | 42 | ||
43 | # correct path of minicoredumper | 43 | # correct path of minicoredumper |
44 | sed -i -e s:/usr/bin/minicoredumper:${sbindir}/minicoredumper:g ${D}${sysconfdir}/init.d/minicoredumper | 44 | sed -i -e s:/usr/bin/minicoredumper:${sbindir}/minicoredumper:g ${D}${sysconfdir}/init.d/minicoredumper |
diff --git a/meta-oe/recipes-kernel/oprofile/oprofile_1.4.0.bb b/meta-oe/recipes-kernel/oprofile/oprofile_1.4.0.bb index c4c89e575..45f70aa38 100644 --- a/meta-oe/recipes-kernel/oprofile/oprofile_1.4.0.bb +++ b/meta-oe/recipes-kernel/oprofile/oprofile_1.4.0.bb | |||
@@ -43,7 +43,7 @@ inherit autotools pkgconfig ptest | |||
43 | 43 | ||
44 | EXTRA_OECONF = "--with-kernel=${STAGING_DIR_HOST}${prefix} --without-x ac_cv_prog_XSLTPROC=" | 44 | EXTRA_OECONF = "--with-kernel=${STAGING_DIR_HOST}${prefix} --without-x ac_cv_prog_XSLTPROC=" |
45 | do_configure () { | 45 | do_configure () { |
46 | cp ${WORKDIR}/acinclude.m4 ${S}/ | 46 | cp ${UNPACKDIR}/acinclude.m4 ${S}/ |
47 | autotools_do_configure | 47 | autotools_do_configure |
48 | } | 48 | } |
49 | 49 | ||
diff --git a/meta-oe/recipes-kernel/turbostat/turbostat_3.4.bb b/meta-oe/recipes-kernel/turbostat/turbostat_3.4.bb index bdc37c038..02a695218 100644 --- a/meta-oe/recipes-kernel/turbostat/turbostat_3.4.bb +++ b/meta-oe/recipes-kernel/turbostat/turbostat_3.4.bb | |||
@@ -12,7 +12,7 @@ processor frequency and idle power saving state residency on supported \ | |||
12 | processors." | 12 | processors." |
13 | 13 | ||
14 | LICENSE = "GPL-2.0-only" | 14 | LICENSE = "GPL-2.0-only" |
15 | LIC_FILES_CHKSUM = "file://../COPYING;md5=bbea815ee2795b2f4230826c0c6b8814" | 15 | LIC_FILES_CHKSUM = "file://${UNPACKDIR}/COPYING;md5=bbea815ee2795b2f4230826c0c6b8814" |
16 | COMPATIBLE_HOST = '(x86_64.*|i.86.*)-linux' | 16 | COMPATIBLE_HOST = '(x86_64.*|i.86.*)-linux' |
17 | COMPATIBLE_HOST:libc-musl = "null" | 17 | COMPATIBLE_HOST:libc-musl = "null" |
18 | 18 | ||
@@ -50,7 +50,7 @@ do_configure:prepend() { | |||
50 | cp -r ${STAGING_KERNEL_DIR}/include/linux/const.h ${S} | 50 | cp -r ${STAGING_KERNEL_DIR}/include/linux/const.h ${S} |
51 | fi | 51 | fi |
52 | cp -r ${STAGING_KERNEL_DIR}/tools/power/x86/turbostat/* ${S} | 52 | cp -r ${STAGING_KERNEL_DIR}/tools/power/x86/turbostat/* ${S} |
53 | cp -r ${WORKDIR}/COPYING ${S} | 53 | cp -r ${UNPACKDIR}/COPYING ${S} |
54 | } | 54 | } |
55 | 55 | ||
56 | 56 | ||
diff --git a/meta-oe/recipes-multimedia/live555/live555_20210824.bb b/meta-oe/recipes-multimedia/live555/live555_20210824.bb index a899049b7..80c770c3e 100644 --- a/meta-oe/recipes-multimedia/live555/live555_20210824.bb +++ b/meta-oe/recipes-multimedia/live555/live555_20210824.bb | |||
@@ -27,7 +27,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504 \ | |||
27 | TARGET_CC_ARCH += "${LDFLAGS}" | 27 | TARGET_CC_ARCH += "${LDFLAGS}" |
28 | 28 | ||
29 | do_configure() { | 29 | do_configure() { |
30 | cp ${WORKDIR}/config.linux-cross . | 30 | cp ${UNPACKDIR}/config.linux-cross . |
31 | echo "COMPILE_OPTS+=" -fPIC -DXLOCALE_NOT_USED"" >> config.linux-cross | 31 | echo "COMPILE_OPTS+=" -fPIC -DXLOCALE_NOT_USED"" >> config.linux-cross |
32 | ./genMakefiles linux-cross | 32 | ./genMakefiles linux-cross |
33 | } | 33 | } |
diff --git a/meta-oe/recipes-navigation/gpsd/gpsd_3.24.bb b/meta-oe/recipes-navigation/gpsd/gpsd_3.24.bb index a755e39ed..ddea8ad2e 100644 --- a/meta-oe/recipes-navigation/gpsd/gpsd_3.24.bb +++ b/meta-oe/recipes-navigation/gpsd/gpsd_3.24.bb | |||
@@ -68,7 +68,7 @@ do_install() { | |||
68 | 68 | ||
69 | do_install:append() { | 69 | do_install:append() { |
70 | install -d ${D}${sysconfdir}/init.d | 70 | install -d ${D}${sysconfdir}/init.d |
71 | install -m 0755 ${WORKDIR}/gpsd.init ${D}${sysconfdir}/init.d/gpsd | 71 | install -m 0755 ${UNPACKDIR}/gpsd.init ${D}${sysconfdir}/init.d/gpsd |
72 | install -d ${D}${sysconfdir}/default | 72 | install -d ${D}${sysconfdir}/default |
73 | install -m 0644 ${S}/packaging/deb/etc_default_gpsd ${D}${sysconfdir}/default/gpsd.default | 73 | install -m 0644 ${S}/packaging/deb/etc_default_gpsd ${D}${sysconfdir}/default/gpsd.default |
74 | 74 | ||
diff --git a/meta-oe/recipes-networking/cyrus-sasl/cyrus-sasl_2.1.28.bb b/meta-oe/recipes-networking/cyrus-sasl/cyrus-sasl_2.1.28.bb index d85ef2057..a6703ecf8 100644 --- a/meta-oe/recipes-networking/cyrus-sasl/cyrus-sasl_2.1.28.bb +++ b/meta-oe/recipes-networking/cyrus-sasl/cyrus-sasl_2.1.28.bb | |||
@@ -58,7 +58,7 @@ do_compile:prepend () { | |||
58 | do_install:append() { | 58 | do_install:append() { |
59 | if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then | 59 | if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then |
60 | install -d ${D}${systemd_unitdir}/system | 60 | install -d ${D}${systemd_unitdir}/system |
61 | install -m 0644 ${WORKDIR}/saslauthd.service ${D}${systemd_unitdir}/system | 61 | install -m 0644 ${UNPACKDIR}/saslauthd.service ${D}${systemd_unitdir}/system |
62 | 62 | ||
63 | sed -i -e 's#@SBINDIR@#${sbindir}#g' ${D}${systemd_unitdir}/system/saslauthd.service | 63 | sed -i -e 's#@SBINDIR@#${sbindir}#g' ${D}${systemd_unitdir}/system/saslauthd.service |
64 | sed -i -e 's#@LOCALSTATEDIR@#${localstatedir}#g' ${D}${systemd_unitdir}/system/saslauthd.service | 64 | sed -i -e 's#@LOCALSTATEDIR@#${localstatedir}#g' ${D}${systemd_unitdir}/system/saslauthd.service |
@@ -68,7 +68,7 @@ do_install:append() { | |||
68 | echo "d /run/saslauthd/ - - - -" > ${D}${sysconfdir}/tmpfiles.d/saslauthd.conf | 68 | echo "d /run/saslauthd/ - - - -" > ${D}${sysconfdir}/tmpfiles.d/saslauthd.conf |
69 | 69 | ||
70 | install -d ${D}${sysconfdir}/default/ | 70 | install -d ${D}${sysconfdir}/default/ |
71 | install -m 0644 ${WORKDIR}/saslauthd.conf ${D}${sysconfdir}/default/saslauthd | 71 | install -m 0644 ${UNPACKDIR}/saslauthd.conf ${D}${sysconfdir}/default/saslauthd |
72 | sed -i -e 's#@LOCALSTATEDIR@#${localstatedir}#g' ${D}${sysconfdir}/default/saslauthd | 72 | sed -i -e 's#@LOCALSTATEDIR@#${localstatedir}#g' ${D}${sysconfdir}/default/saslauthd |
73 | fi | 73 | fi |
74 | } | 74 | } |
diff --git a/meta-oe/recipes-security/audit/audit_4.0.1.bb b/meta-oe/recipes-security/audit/audit_4.0.1.bb index a37ae3bb8..c189cfea5 100644 --- a/meta-oe/recipes-security/audit/audit_4.0.1.bb +++ b/meta-oe/recipes-security/audit/audit_4.0.1.bb | |||
@@ -90,11 +90,11 @@ do_install:append() { | |||
90 | install -m 0640 ${D}/etc/audit/rules.d/audit.rules ${D}/etc/audit/audit.rules | 90 | install -m 0640 ${D}/etc/audit/rules.d/audit.rules ${D}/etc/audit/audit.rules |
91 | 91 | ||
92 | if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then | 92 | if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then |
93 | install -D -m 0644 ${WORKDIR}/audit-volatile.conf ${D}${sysconfdir}/tmpfiles.d/audit.conf | 93 | install -D -m 0644 ${UNPACKDIR}/audit-volatile.conf ${D}${sysconfdir}/tmpfiles.d/audit.conf |
94 | fi | 94 | fi |
95 | 95 | ||
96 | if ${@bb.utils.contains('DISTRO_FEATURES', 'sysvinit', 'true', 'false', d)}; then | 96 | if ${@bb.utils.contains('DISTRO_FEATURES', 'sysvinit', 'true', 'false', d)}; then |
97 | install -D -m 0755 ${WORKDIR}/auditd ${D}/etc/init.d/auditd | 97 | install -D -m 0755 ${UNPACKDIR}/auditd ${D}/etc/init.d/auditd |
98 | rm -rf ${D}${libdir}/systemd | 98 | rm -rf ${D}${libdir}/systemd |
99 | fi | 99 | fi |
100 | 100 | ||
diff --git a/meta-oe/recipes-support/atop/atop_2.4.0.bb b/meta-oe/recipes-support/atop/atop_2.4.0.bb index bb1f53624..4b0e74227 100644 --- a/meta-oe/recipes-support/atop/atop_2.4.0.bb +++ b/meta-oe/recipes-support/atop/atop_2.4.0.bb | |||
@@ -35,12 +35,12 @@ do_install() { | |||
35 | make DESTDIR=${D} VERS=${PV} SYSDPATH=${systemd_system_unitdir} \ | 35 | make DESTDIR=${D} VERS=${PV} SYSDPATH=${systemd_system_unitdir} \ |
36 | PMPATHD=${systemd_unitdir}/system-sleep systemdinstall | 36 | PMPATHD=${systemd_unitdir}/system-sleep systemdinstall |
37 | install -d ${D}${sysconfdir}/tmpfiles.d | 37 | install -d ${D}${sysconfdir}/tmpfiles.d |
38 | install -m 644 ${WORKDIR}/volatiles.atop.conf ${D}${sysconfdir}/tmpfiles.d/atop.conf | 38 | install -m 644 ${UNPACKDIR}/volatiles.atop.conf ${D}${sysconfdir}/tmpfiles.d/atop.conf |
39 | rm -f ${D}${systemd_system_unitdir}/atopacct.service | 39 | rm -f ${D}${systemd_system_unitdir}/atopacct.service |
40 | else | 40 | else |
41 | make DESTDIR=${D} VERS=${PV} sysvinstall | 41 | make DESTDIR=${D} VERS=${PV} sysvinstall |
42 | install -d ${D}${sysconfdir}/default/volatiles | 42 | install -d ${D}${sysconfdir}/default/volatiles |
43 | install -m 644 ${WORKDIR}/volatiles.99_atop ${D}${sysconfdir}/default/volatiles/99_atop | 43 | install -m 644 ${UNPACKDIR}/volatiles.99_atop ${D}${sysconfdir}/default/volatiles/99_atop |
44 | rm -f ${D}${sysconfdir}/init.d/atopacct | 44 | rm -f ${D}${sysconfdir}/init.d/atopacct |
45 | fi | 45 | fi |
46 | 46 | ||
diff --git a/meta-oe/recipes-support/c-ares/c-ares_1.27.0.bb b/meta-oe/recipes-support/c-ares/c-ares_1.27.0.bb index 2d91ac173..d0f5b30eb 100644 --- a/meta-oe/recipes-support/c-ares/c-ares_1.27.0.bb +++ b/meta-oe/recipes-support/c-ares/c-ares_1.27.0.bb | |||
@@ -20,7 +20,7 @@ EXTRA_OECMAKE = "-DCARES_STATIC=${@ 'ON' if d.getVar('DISABLE_STATIC') == '' els | |||
20 | do_install_ptest () { | 20 | do_install_ptest () { |
21 | install -d ${D}${PTEST_PATH} | 21 | install -d ${D}${PTEST_PATH} |
22 | install -m 0755 ${B}/bin/arestest ${D}${PTEST_PATH} | 22 | install -m 0755 ${B}/bin/arestest ${D}${PTEST_PATH} |
23 | install -m 0755 ${WORKDIR}/run-ptest ${D}${PTEST_PATH} | 23 | install -m 0755 ${UNPACKDIR}/run-ptest ${D}${PTEST_PATH} |
24 | } | 24 | } |
25 | 25 | ||
26 | PACKAGE_BEFORE_PN = "${PN}-utils" | 26 | PACKAGE_BEFORE_PN = "${PN}-utils" |
diff --git a/meta-oe/recipes-support/ctapi-common/ctapi-common_1.1-14.bb b/meta-oe/recipes-support/ctapi-common/ctapi-common_1.1-14.bb index 0e994d8b0..90db08544 100644 --- a/meta-oe/recipes-support/ctapi-common/ctapi-common_1.1-14.bb +++ b/meta-oe/recipes-support/ctapi-common/ctapi-common_1.1-14.bb | |||
@@ -2,15 +2,15 @@ SUMMARY = "Common files and packaging infrastructure for CT-API modules" | |||
2 | HOMEPAGE = "http://fedoraproject.org/" | 2 | HOMEPAGE = "http://fedoraproject.org/" |
3 | SECTION = "System Environment/Libraries" | 3 | SECTION = "System Environment/Libraries" |
4 | LICENSE = "MIT" | 4 | LICENSE = "MIT" |
5 | LIC_FILES_CHKSUM = "file://../ctapi-common.LICENSE;md5=8744cd52545ecb45befebd0da6f70f0a" | 5 | LIC_FILES_CHKSUM = "file://${UNPACKDIR}/ctapi-common.LICENSE;md5=8744cd52545ecb45befebd0da6f70f0a" |
6 | 6 | ||
7 | SRC_URI = "https://archives.fedoraproject.org/pub/archive/fedora/linux/releases/23/Everything/source/SRPMS/c/${BPN}-${PV}.fc23.src.rpm;extract=ctapi-common.LICENSE \ | 7 | SRC_URI = "https://archives.fedoraproject.org/pub/archive/fedora/linux/releases/23/Everything/source/SRPMS/c/${BPN}-${PV}.fc23.src.rpm;extract=ctapi-common.LICENSE \ |
8 | https://archives.fedoraproject.org/pub/archive/fedora/linux/releases/23/Everything/source/SRPMS/c/${BPN}-${PV}.fc23.src.rpm;extract=ctapi-common.README" | 8 | https://archives.fedoraproject.org/pub/archive/fedora/linux/releases/23/Everything/source/SRPMS/c/${BPN}-${PV}.fc23.src.rpm;extract=ctapi-common.README" |
9 | SRC_URI[sha256sum] = "87a74eb0a66055c34ba2c5c919e74f3211c5950ae1c2cbab967fdf4137f5de91" | 9 | SRC_URI[sha256sum] = "87a74eb0a66055c34ba2c5c919e74f3211c5950ae1c2cbab967fdf4137f5de91" |
10 | 10 | ||
11 | do_compile() { | 11 | do_compile() { |
12 | install -pm 644 ${WORKDIR}/ctapi-common.LICENSE LICENSE | 12 | install -pm 644 ${UNPACKDIR}/ctapi-common.LICENSE LICENSE |
13 | install -pm 644 ${WORKDIR}/ctapi-common.README README | 13 | install -pm 644 ${UNPACKDIR}/ctapi-common.README README |
14 | echo ${libdir}/ctapi > ctapi.conf | 14 | echo ${libdir}/ctapi > ctapi.conf |
15 | } | 15 | } |
16 | 16 | ||
diff --git a/meta-oe/recipes-support/gpm/gpm_git.bb b/meta-oe/recipes-support/gpm/gpm_git.bb index 31503e9c6..25e5414a3 100644 --- a/meta-oe/recipes-support/gpm/gpm_git.bb +++ b/meta-oe/recipes-support/gpm/gpm_git.bb | |||
@@ -30,8 +30,8 @@ do_configure:prepend() { | |||
30 | 30 | ||
31 | do_install:append () { | 31 | do_install:append () { |
32 | install -d ${D}${systemd_system_unitdir} | 32 | install -d ${D}${systemd_system_unitdir} |
33 | sed 's:@bindir@:${sbindir}:' < ${WORKDIR}/gpm.service.in >${D}${systemd_system_unitdir}/gpm.service | 33 | sed 's:@bindir@:${sbindir}:' < ${UNPACKDIR}/gpm.service.in >${D}${systemd_system_unitdir}/gpm.service |
34 | install -D -m 0755 ${WORKDIR}/init ${D}${INIT_D_DIR}/gpm | 34 | install -D -m 0755 ${UNPACKDIR}/init ${D}${INIT_D_DIR}/gpm |
35 | ln -s libgpm.so.2 ${D}${libdir}/libgpm.so | 35 | ln -s libgpm.so.2 ${D}${libdir}/libgpm.so |
36 | } | 36 | } |
37 | 37 | ||
diff --git a/meta-oe/recipes-support/hddtemp/hddtemp_0.3-beta15.bb b/meta-oe/recipes-support/hddtemp/hddtemp_0.3-beta15.bb index b204ea4dd..384a19c4f 100644 --- a/meta-oe/recipes-support/hddtemp/hddtemp_0.3-beta15.bb +++ b/meta-oe/recipes-support/hddtemp/hddtemp_0.3-beta15.bb | |||
@@ -25,9 +25,9 @@ FILES:${PN} += "/usr/share/misc/hddtemp.db" | |||
25 | 25 | ||
26 | do_install:append() { | 26 | do_install:append() { |
27 | install -d ${D}/usr/share/misc/ | 27 | install -d ${D}/usr/share/misc/ |
28 | install -m 0644 ${WORKDIR}/hddtemp.db ${D}/usr/share/misc/hddtemp.db | 28 | install -m 0644 ${UNPACKDIR}/hddtemp.db ${D}/usr/share/misc/hddtemp.db |
29 | install -d ${D}${sysconfdir}/init.d | 29 | install -d ${D}${sysconfdir}/init.d |
30 | install -m 0644 ${WORKDIR}/init ${D}${sysconfdir}/init.d/hddtemp | 30 | install -m 0644 ${UNPACKDIR}/init ${D}${sysconfdir}/init.d/hddtemp |
31 | } | 31 | } |
32 | 32 | ||
33 | INITSCRIPT_NAME = "hddtemp" | 33 | INITSCRIPT_NAME = "hddtemp" |
diff --git a/meta-oe/recipes-support/libee/libee.inc b/meta-oe/recipes-support/libee/libee.inc index 16fe557f7..592109b95 100644 --- a/meta-oe/recipes-support/libee/libee.inc +++ b/meta-oe/recipes-support/libee/libee.inc | |||
@@ -35,5 +35,5 @@ do_install_ptest() { | |||
35 | install -d ${D}${PTEST_PATH} | 35 | install -d ${D}${PTEST_PATH} |
36 | install -m 0755 ${B}/${TESTDIR}/genfile ${D}${PTEST_PATH} | 36 | install -m 0755 ${B}/${TESTDIR}/genfile ${D}${PTEST_PATH} |
37 | install -m 0755 ${B}/${TESTDIR}/.libs/ezapi1 ${D}${PTEST_PATH} | 37 | install -m 0755 ${B}/${TESTDIR}/.libs/ezapi1 ${D}${PTEST_PATH} |
38 | install -m 0755 ${WORKDIR}/ezapi1.sh ${D}${PTEST_PATH} | 38 | install -m 0755 ${UNPACKDIR}/ezapi1.sh ${D}${PTEST_PATH} |
39 | } | 39 | } |
diff --git a/meta-oe/recipes-support/libsmi/libsmi_0.5.0.bb b/meta-oe/recipes-support/libsmi/libsmi_0.5.0.bb index 822b7ffc2..73aeb5539 100644 --- a/meta-oe/recipes-support/libsmi/libsmi_0.5.0.bb +++ b/meta-oe/recipes-support/libsmi/libsmi_0.5.0.bb | |||
@@ -26,7 +26,7 @@ EXTRA_OECONF:class-target = "ac_cv_path_SH=/bin/sh ac_cv_path_WGET=${bindir}/wge | |||
26 | 26 | ||
27 | do_install:append () { | 27 | do_install:append () { |
28 | install -d ${D}${sysconfdir} | 28 | install -d ${D}${sysconfdir} |
29 | install -m 0644 ${WORKDIR}/smi.conf ${D}${sysconfdir}/smi.conf | 29 | install -m 0644 ${UNPACKDIR}/smi.conf ${D}${sysconfdir}/smi.conf |
30 | } | 30 | } |
31 | 31 | ||
32 | PACKAGES += "${PN}-mibs ${PN}-pibs ${PN}-yang" | 32 | PACKAGES += "${PN}-mibs ${PN}-pibs ${PN}-yang" |
diff --git a/meta-oe/recipes-support/libusbgx/libusbgx-config.bb b/meta-oe/recipes-support/libusbgx/libusbgx-config.bb index b269e33c4..4e9e6bcdf 100644 --- a/meta-oe/recipes-support/libusbgx/libusbgx-config.bb +++ b/meta-oe/recipes-support/libusbgx/libusbgx-config.bb | |||
@@ -8,5 +8,5 @@ do_configure[noexec] = "1" | |||
8 | do_compile[noexec] = "1" | 8 | do_compile[noexec] = "1" |
9 | 9 | ||
10 | do_install() { | 10 | do_install() { |
11 | install -Dm 0644 ${WORKDIR}/usbgx.default ${D}${sysconfdir}/default/usbgx | 11 | install -Dm 0644 ${UNPACKDIR}/usbgx.default ${D}${sysconfdir}/default/usbgx |
12 | } | 12 | } |
diff --git a/meta-oe/recipes-support/libusbgx/libusbgx_git.bb b/meta-oe/recipes-support/libusbgx/libusbgx_git.bb index a20ff4eea..bc40f029c 100644 --- a/meta-oe/recipes-support/libusbgx/libusbgx_git.bb +++ b/meta-oe/recipes-support/libusbgx/libusbgx_git.bb | |||
@@ -38,17 +38,17 @@ INITSCRIPT_PARAMS = "defaults" | |||
38 | INHIBIT_UPDATERCD_BBCLASS = "${@bb.utils.contains('PACKAGECONFIG', 'examples', '1', '0', d)}" | 38 | INHIBIT_UPDATERCD_BBCLASS = "${@bb.utils.contains('PACKAGECONFIG', 'examples', '1', '0', d)}" |
39 | 39 | ||
40 | do_install:append() { | 40 | do_install:append() { |
41 | install -Dm 0755 ${WORKDIR}/gadget-start ${D}${bindir}/gadget-start | 41 | install -Dm 0755 ${UNPACKDIR}/gadget-start ${D}${bindir}/gadget-start |
42 | sed -i -e 's,/usr/bin,${bindir},g' -e 's,/etc,${sysconfdir},g' ${D}${bindir}/gadget-start | 42 | sed -i -e 's,/usr/bin,${bindir},g' -e 's,/etc,${sysconfdir},g' ${D}${bindir}/gadget-start |
43 | install -m 0755 ${WORKDIR}/gadget-start ${D}${bindir}/gadget-stop | 43 | install -m 0755 ${UNPACKDIR}/gadget-start ${D}${bindir}/gadget-stop |
44 | sed -i -e 's,/usr/bin,${bindir},g' -e 's,/etc,${sysconfdir},g' ${D}${bindir}/gadget-stop | 44 | sed -i -e 's,/usr/bin,${bindir},g' -e 's,/etc,${sysconfdir},g' ${D}${bindir}/gadget-stop |
45 | 45 | ||
46 | if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then | 46 | if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then |
47 | install -Dm 0644 ${WORKDIR}/usbgx.service ${D}${systemd_system_unitdir}/usbgx.service | 47 | install -Dm 0644 ${UNPACKDIR}/usbgx.service ${D}${systemd_system_unitdir}/usbgx.service |
48 | fi | 48 | fi |
49 | 49 | ||
50 | if ${@bb.utils.contains('DISTRO_FEATURES', 'sysvinit', 'true', 'false', d)}; then | 50 | if ${@bb.utils.contains('DISTRO_FEATURES', 'sysvinit', 'true', 'false', d)}; then |
51 | install -Dm 0755 ${WORKDIR}/usbgx.initd ${D}${sysconfdir}/init.d/usbgx | 51 | install -Dm 0755 ${UNPACKDIR}/usbgx.initd ${D}${sysconfdir}/init.d/usbgx |
52 | fi | 52 | fi |
53 | } | 53 | } |
54 | 54 | ||
diff --git a/meta-oe/recipes-support/links/links-x11_2.26.bb b/meta-oe/recipes-support/links/links-x11_2.26.bb index 4c8d935cc..713919bca 100644 --- a/meta-oe/recipes-support/links/links-x11_2.26.bb +++ b/meta-oe/recipes-support/links/links-x11_2.26.bb | |||
@@ -23,7 +23,7 @@ EXTRA_OECONF = "--enable-graphics \ | |||
23 | 23 | ||
24 | do_install:append() { | 24 | do_install:append() { |
25 | install -d ${D}/${datadir}/applications | 25 | install -d ${D}/${datadir}/applications |
26 | install -m 0644 ${WORKDIR}/links2.desktop ${D}/${datadir}/applications | 26 | install -m 0644 ${UNPACKDIR}/links2.desktop ${D}/${datadir}/applications |
27 | install -d ${D}/${datadir}/pixmaps | 27 | install -d ${D}/${datadir}/pixmaps |
28 | install -m 0644 ${WORKDIR}/links2.png ${D}/${datadir}/pixmaps | 28 | install -m 0644 ${UNPACKDIR}/links2.png ${D}/${datadir}/pixmaps |
29 | } | 29 | } |
diff --git a/meta-oe/recipes-support/lvm2/lvm2_2.03.22.bb b/meta-oe/recipes-support/lvm2/lvm2_2.03.22.bb index c675d3ded..200457c69 100644 --- a/meta-oe/recipes-support/lvm2/lvm2_2.03.22.bb +++ b/meta-oe/recipes-support/lvm2/lvm2_2.03.22.bb | |||
@@ -17,7 +17,7 @@ CACHED_CONFIGUREVARS += "MODPROBE_CMD=${base_sbindir}/modprobe" | |||
17 | do_install:append() { | 17 | do_install:append() { |
18 | # Install machine specific configuration file | 18 | # Install machine specific configuration file |
19 | install -d ${D}${sysconfdir}/lvm | 19 | install -d ${D}${sysconfdir}/lvm |
20 | install -m 0644 ${WORKDIR}/lvm.conf ${D}${sysconfdir}/lvm/lvm.conf | 20 | install -m 0644 ${UNPACKDIR}/lvm.conf ${D}${sysconfdir}/lvm/lvm.conf |
21 | sed -i -e 's:@libdir@:${libdir}:g' ${D}${sysconfdir}/lvm/lvm.conf | 21 | sed -i -e 's:@libdir@:${libdir}:g' ${D}${sysconfdir}/lvm/lvm.conf |
22 | # We don't want init scripts/systemd units for native SDK utilities | 22 | # We don't want init scripts/systemd units for native SDK utilities |
23 | if [ "${PN}" != "nativesdk-lvm2" ]; then | 23 | if [ "${PN}" != "nativesdk-lvm2" ]; then |
diff --git a/meta-oe/recipes-support/monit/monit_5.33.0.bb b/meta-oe/recipes-support/monit/monit_5.33.0.bb index 66d4079a9..9d7b35838 100644 --- a/meta-oe/recipes-support/monit/monit_5.33.0.bb +++ b/meta-oe/recipes-support/monit/monit_5.33.0.bb | |||
@@ -45,12 +45,12 @@ do_configure:prepend() { | |||
45 | do_install:append() { | 45 | do_install:append() { |
46 | 46 | ||
47 | # Configuration file | 47 | # Configuration file |
48 | install -Dm 0600 ${WORKDIR}/monitrc ${D}${sysconfdir}/monitrc | 48 | install -Dm 0600 ${UNPACKDIR}/monitrc ${D}${sysconfdir}/monitrc |
49 | 49 | ||
50 | # SystemD | 50 | # SystemD |
51 | install -Dm 0644 ${S}/system/startup/monit.service.in ${D}${systemd_system_unitdir}/monit.service | 51 | install -Dm 0644 ${S}/system/startup/monit.service.in ${D}${systemd_system_unitdir}/monit.service |
52 | sed -i -e 's,@prefix@,${exec_prefix},g' ${D}${systemd_unitdir}/system/monit.service | 52 | sed -i -e 's,@prefix@,${exec_prefix},g' ${D}${systemd_unitdir}/system/monit.service |
53 | 53 | ||
54 | # SysV | 54 | # SysV |
55 | install -Dm 0755 ${WORKDIR}/monit ${D}${sysconfdir}/init.d/monit | 55 | install -Dm 0755 ${UNPACKDIR}/monit ${D}${sysconfdir}/init.d/monit |
56 | } | 56 | } |
diff --git a/meta-oe/recipes-support/multipath-tools/multipath-tools_0.9.8.bb b/meta-oe/recipes-support/multipath-tools/multipath-tools_0.9.8.bb index e9f01bd1f..374cda3b4 100644 --- a/meta-oe/recipes-support/multipath-tools/multipath-tools_0.9.8.bb +++ b/meta-oe/recipes-support/multipath-tools/multipath-tools_0.9.8.bb | |||
@@ -91,14 +91,14 @@ do_install() { | |||
91 | # | 91 | # |
92 | if ${@bb.utils.contains('DISTRO_FEATURES','sysvinit','true','false',d)};then | 92 | if ${@bb.utils.contains('DISTRO_FEATURES','sysvinit','true','false',d)};then |
93 | install -d ${D}${sysconfdir}/init.d | 93 | install -d ${D}${sysconfdir}/init.d |
94 | cp ${WORKDIR}/multipathd.oe ${D}${sysconfdir}/init.d/multipathd | 94 | cp ${UNPACKDIR}/multipathd.oe ${D}${sysconfdir}/init.d/multipathd |
95 | fi | 95 | fi |
96 | 96 | ||
97 | sed -i "s:/usr/lib/udev/kpartx_id:${nonarch_base_libdir}/udev/kpartx_id:g" \ | 97 | sed -i "s:/usr/lib/udev/kpartx_id:${nonarch_base_libdir}/udev/kpartx_id:g" \ |
98 | ${D}${nonarch_base_libdir}/udev/rules.d/11-dm-mpath.rules | 98 | ${D}${nonarch_base_libdir}/udev/rules.d/11-dm-mpath.rules |
99 | 99 | ||
100 | install -d ${D}${sysconfdir} | 100 | install -d ${D}${sysconfdir} |
101 | install -m 0644 ${WORKDIR}/multipath.conf.example \ | 101 | install -m 0644 ${UNPACKDIR}/multipath.conf.example \ |
102 | ${D}${sysconfdir}/multipath.conf.example | 102 | ${D}${sysconfdir}/multipath.conf.example |
103 | } | 103 | } |
104 | 104 | ||
diff --git a/meta-oe/recipes-support/nspr/nspr_4.35.bb b/meta-oe/recipes-support/nspr/nspr_4.35.bb index f8d329398..abd750b13 100644 --- a/meta-oe/recipes-support/nspr/nspr_4.35.bb +++ b/meta-oe/recipes-support/nspr/nspr_4.35.bb | |||
@@ -171,7 +171,7 @@ do_compile:append() { | |||
171 | } | 171 | } |
172 | 172 | ||
173 | do_install:append() { | 173 | do_install:append() { |
174 | install -D ${WORKDIR}/nspr.pc.in ${D}${libdir}/pkgconfig/nspr.pc | 174 | install -D ${UNPACKDIR}/nspr.pc.in ${D}${libdir}/pkgconfig/nspr.pc |
175 | sed -i \ | 175 | sed -i \ |
176 | -e 's:NSPRVERSION:${PV}:g' \ | 176 | -e 's:NSPRVERSION:${PV}:g' \ |
177 | -e 's:OEPREFIX:${prefix}:g' \ | 177 | -e 's:OEPREFIX:${prefix}:g' \ |
diff --git a/meta-oe/recipes-support/nss/nss_3.98.bb b/meta-oe/recipes-support/nss/nss_3.98.bb index 01501362e..0ceefb5e3 100644 --- a/meta-oe/recipes-support/nss/nss_3.98.bb +++ b/meta-oe/recipes-support/nss/nss_3.98.bb | |||
@@ -224,7 +224,7 @@ do_install:append() { | |||
224 | done | 224 | done |
225 | 225 | ||
226 | install -d ${D}${libdir}/pkgconfig/ | 226 | install -d ${D}${libdir}/pkgconfig/ |
227 | sed 's/%NSS_VERSION%/${PV}/' ${WORKDIR}/nss.pc.in | sed 's/%NSPR_VERSION%/4.9.2/' > ${D}${libdir}/pkgconfig/nss.pc | 227 | sed 's/%NSS_VERSION%/${PV}/' ${UNPACKDIR}/nss.pc.in | sed 's/%NSPR_VERSION%/4.9.2/' > ${D}${libdir}/pkgconfig/nss.pc |
228 | sed -i s:OEPREFIX:${prefix}:g ${D}${libdir}/pkgconfig/nss.pc | 228 | sed -i s:OEPREFIX:${prefix}:g ${D}${libdir}/pkgconfig/nss.pc |
229 | sed -i s:OEEXECPREFIX:${exec_prefix}:g ${D}${libdir}/pkgconfig/nss.pc | 229 | sed -i s:OEEXECPREFIX:${exec_prefix}:g ${D}${libdir}/pkgconfig/nss.pc |
230 | sed -i s:OELIBDIR:${libdir}:g ${D}${libdir}/pkgconfig/nss.pc | 230 | sed -i s:OELIBDIR:${libdir}:g ${D}${libdir}/pkgconfig/nss.pc |
@@ -239,9 +239,9 @@ do_install:append:class-target() { | |||
239 | # databases by: | 239 | # databases by: |
240 | # certutil -N -d sql:/database/path/ --empty-password | 240 | # certutil -N -d sql:/database/path/ --empty-password |
241 | install -d ${D}${sysconfdir}/pki/nssdb/ | 241 | install -d ${D}${sysconfdir}/pki/nssdb/ |
242 | install -m 0644 ${WORKDIR}/blank-cert9.db ${D}${sysconfdir}/pki/nssdb/cert9.db | 242 | install -m 0644 ${UNPACKDIR}/blank-cert9.db ${D}${sysconfdir}/pki/nssdb/cert9.db |
243 | install -m 0644 ${WORKDIR}/blank-key4.db ${D}${sysconfdir}/pki/nssdb/key4.db | 243 | install -m 0644 ${UNPACKDIR}/blank-key4.db ${D}${sysconfdir}/pki/nssdb/key4.db |
244 | install -m 0644 ${WORKDIR}/system-pkcs11.txt ${D}${sysconfdir}/pki/nssdb/pkcs11.txt | 244 | install -m 0644 ${UNPACKDIR}/system-pkcs11.txt ${D}${sysconfdir}/pki/nssdb/pkcs11.txt |
245 | } | 245 | } |
246 | 246 | ||
247 | PACKAGE_WRITE_DEPS += "nss-native" | 247 | PACKAGE_WRITE_DEPS += "nss-native" |
diff --git a/meta-oe/recipes-support/openct/openct_0.6.20.bb b/meta-oe/recipes-support/openct/openct_0.6.20.bb index 4a1a0f568..e4b99089f 100644 --- a/meta-oe/recipes-support/openct/openct_0.6.20.bb +++ b/meta-oe/recipes-support/openct/openct_0.6.20.bb | |||
@@ -62,7 +62,7 @@ do_install () { | |||
62 | install -d ${D}${sysconfdir} | 62 | install -d ${D}${sysconfdir} |
63 | # fix up hardcoded paths | 63 | # fix up hardcoded paths |
64 | sed -i -e 's,/etc/,${sysconfdir}/,' -e 's,/usr/sbin/,${sbindir}/,' \ | 64 | sed -i -e 's,/etc/,${sysconfdir}/,' -e 's,/usr/sbin/,${sbindir}/,' \ |
65 | ${WORKDIR}/openct.service ${WORKDIR}/openct.init | 65 | ${UNPACKDIR}/openct.service ${UNPACKDIR}/openct.init |
66 | 66 | ||
67 | oe_runmake install DESTDIR=${D} | 67 | oe_runmake install DESTDIR=${D} |
68 | install -dm 755 ${D}${libdir}/ctapi/ | 68 | install -dm 755 ${D}${libdir}/ctapi/ |
@@ -70,11 +70,11 @@ do_install () { | |||
70 | install -Dpm 644 etc/openct.udev ${D}${nonarch_libdir}/udev/rules.d/60-openct.rules | 70 | install -Dpm 644 etc/openct.udev ${D}${nonarch_libdir}/udev/rules.d/60-openct.rules |
71 | install -pm 644 etc/openct.conf ${D}${sysconfdir}/openct.conf | 71 | install -pm 644 etc/openct.conf ${D}${sysconfdir}/openct.conf |
72 | 72 | ||
73 | install -Dpm 755 ${WORKDIR}/openct.init ${D}${sysconfdir}/init.d/openct | 73 | install -Dpm 755 ${UNPACKDIR}/openct.init ${D}${sysconfdir}/init.d/openct |
74 | install -Dpm 644 ${WORKDIR}/openct.sysconfig ${D}${sysconfdir}/sysconfig/openct | 74 | install -Dpm 644 ${UNPACKDIR}/openct.sysconfig ${D}${sysconfdir}/sysconfig/openct |
75 | 75 | ||
76 | install -d ${D}${systemd_unitdir}/system | 76 | install -d ${D}${systemd_unitdir}/system |
77 | install -m 644 ${WORKDIR}/openct.service ${D}${systemd_unitdir}/system | 77 | install -m 644 ${UNPACKDIR}/openct.service ${D}${systemd_unitdir}/system |
78 | 78 | ||
79 | so=$(find ${D} -name \*.so | sed "s|^${D}||") | 79 | so=$(find ${D} -name \*.so | sed "s|^${D}||") |
80 | sed -i -e 's|\\(LIBPATH\\s*\\).*|\\1$so|' etc/reader.conf | 80 | sed -i -e 's|\\(LIBPATH\\s*\\).*|\\1$so|' etc/reader.conf |
diff --git a/meta-oe/recipes-support/openldap/openldap_2.6.7.bb b/meta-oe/recipes-support/openldap/openldap_2.6.7.bb index e807fdef1..c229667d6 100644 --- a/meta-oe/recipes-support/openldap/openldap_2.6.7.bb +++ b/meta-oe/recipes-support/openldap/openldap_2.6.7.bb | |||
@@ -160,7 +160,7 @@ FILES:${PN}-dbg += "${libexecdir}/openldap/.debug" | |||
160 | 160 | ||
161 | do_install:append() { | 161 | do_install:append() { |
162 | install -d ${D}${sysconfdir}/init.d | 162 | install -d ${D}${sysconfdir}/init.d |
163 | cat ${WORKDIR}/initscript > ${D}${sysconfdir}/init.d/openldap | 163 | cat ${UNPACKDIR}/initscript > ${D}${sysconfdir}/init.d/openldap |
164 | chmod 755 ${D}${sysconfdir}/init.d/openldap | 164 | chmod 755 ${D}${sysconfdir}/init.d/openldap |
165 | # This is duplicated in /etc/openldap and is for slapd | 165 | # This is duplicated in /etc/openldap and is for slapd |
166 | rm -f ${D}${localstatedir}/openldap-data/DB_CONFIG.example | 166 | rm -f ${D}${localstatedir}/openldap-data/DB_CONFIG.example |
@@ -177,7 +177,7 @@ do_install:append() { | |||
177 | rmdir --ignore-fail-on-non-empty "${D}${localstatedir}" | 177 | rmdir --ignore-fail-on-non-empty "${D}${localstatedir}" |
178 | 178 | ||
179 | install -d ${D}${systemd_unitdir}/system/ | 179 | install -d ${D}${systemd_unitdir}/system/ |
180 | install -m 0644 ${WORKDIR}/slapd.service ${D}${systemd_unitdir}/system/ | 180 | install -m 0644 ${UNPACKDIR}/slapd.service ${D}${systemd_unitdir}/system/ |
181 | sed -i -e 's,@SBINDIR@,${sbindir},g' ${D}${systemd_unitdir}/system/*.service | 181 | sed -i -e 's,@SBINDIR@,${sbindir},g' ${D}${systemd_unitdir}/system/*.service |
182 | 182 | ||
183 | # Uses mdm as the database | 183 | # Uses mdm as the database |
diff --git a/meta-oe/recipes-support/pcp/pcp_6.0.5.bb b/meta-oe/recipes-support/pcp/pcp_6.0.5.bb index 6a93b2ec9..10545b65e 100644 --- a/meta-oe/recipes-support/pcp/pcp_6.0.5.bb +++ b/meta-oe/recipes-support/pcp/pcp_6.0.5.bb | |||
@@ -52,7 +52,7 @@ RDEPENDS:${PN}-testsuite += "${PN} bash perl" | |||
52 | RDEPENDS:python3-${PN} += "${PN} python3" | 52 | RDEPENDS:python3-${PN} += "${PN} python3" |
53 | 53 | ||
54 | do_configure:prepend () { | 54 | do_configure:prepend () { |
55 | cp ${WORKDIR}/config.linux ${B} | 55 | cp ${UNPACKDIR}/config.linux ${B} |
56 | rm -rf ${S}/include/pcp/configsz.h | 56 | rm -rf ${S}/include/pcp/configsz.h |
57 | rm -rf ${S}/include/pcp/platformsz.h | 57 | rm -rf ${S}/include/pcp/platformsz.h |
58 | export SED=${TMPDIR}/hosttools/sed | 58 | export SED=${TMPDIR}/hosttools/sed |
diff --git a/meta-oe/recipes-support/poppler/poppler-data_0.4.12.bb b/meta-oe/recipes-support/poppler/poppler-data_0.4.12.bb index eed21ad54..5433659af 100644 --- a/meta-oe/recipes-support/poppler/poppler-data_0.4.12.bb +++ b/meta-oe/recipes-support/poppler/poppler-data_0.4.12.bb | |||
@@ -30,7 +30,7 @@ do_compile() { | |||
30 | do_install() { | 30 | do_install() { |
31 | oe_runmake install DESTDIR=${D} prefix=${prefix} datadir=${datadir} | 31 | oe_runmake install DESTDIR=${D} prefix=${prefix} datadir=${datadir} |
32 | install -d ${D}${datadir}/poppler/cMap | 32 | install -d ${D}${datadir}/poppler/cMap |
33 | install -m644 ${WORKDIR}/Identity-* ${D}${datadir}/poppler/cMap/ | 33 | install -m644 ${UNPACKDIR}/Identity-* ${D}${datadir}/poppler/cMap/ |
34 | } | 34 | } |
35 | 35 | ||
36 | FILES:${PN} += "${datadir}" | 36 | FILES:${PN} += "${datadir}" |
diff --git a/meta-oe/recipes-support/serial/serial_1.2.1.bb b/meta-oe/recipes-support/serial/serial_1.2.1.bb index f42d0f351..c3f13d1af 100644 --- a/meta-oe/recipes-support/serial/serial_1.2.1.bb +++ b/meta-oe/recipes-support/serial/serial_1.2.1.bb | |||
@@ -17,7 +17,7 @@ inherit cmake | |||
17 | 17 | ||
18 | # Work-around for https://github.com/wjwwood/serial/issues/135 | 18 | # Work-around for https://github.com/wjwwood/serial/issues/135 |
19 | EXTRA_OECMAKE = " \ | 19 | EXTRA_OECMAKE = " \ |
20 | -DCMAKE_MODULE_PATH=${WORKDIR} \ | 20 | -DCMAKE_MODULE_PATH=${UNPACKDIR} \ |
21 | -DCATKIN_PACKAGE_LIB_DESTINATION=${libdir} \ | 21 | -DCATKIN_PACKAGE_LIB_DESTINATION=${libdir} \ |
22 | -DCATKIN_PACKAGE_BIN_DESTINATION=${bindir} \ | 22 | -DCATKIN_PACKAGE_BIN_DESTINATION=${bindir} \ |
23 | -DCATKIN_GLOBAL_INCLUDE_DESTINATION=${includedir} \ | 23 | -DCATKIN_GLOBAL_INCLUDE_DESTINATION=${includedir} \ |
diff --git a/meta-oe/recipes-support/syslog-ng/syslog-ng_4.6.0.bb b/meta-oe/recipes-support/syslog-ng/syslog-ng_4.6.0.bb index 2c6cc79dd..ab4a8d182 100644 --- a/meta-oe/recipes-support/syslog-ng/syslog-ng_4.6.0.bb +++ b/meta-oe/recipes-support/syslog-ng/syslog-ng_4.6.0.bb | |||
@@ -77,12 +77,12 @@ do_configure:prepend() { | |||
77 | do_install:append() { | 77 | do_install:append() { |
78 | install -d ${D}${sysconfdir}/${BPN} | 78 | install -d ${D}${sysconfdir}/${BPN} |
79 | install -d ${D}${sysconfdir}/init.d | 79 | install -d ${D}${sysconfdir}/init.d |
80 | install -m 755 ${WORKDIR}/initscript ${D}${sysconfdir}/init.d/syslog | 80 | install -m 755 ${UNPACKDIR}/initscript ${D}${sysconfdir}/init.d/syslog |
81 | 81 | ||
82 | install -d ${D}${sysconfdir}/default/volatiles/ | 82 | install -d ${D}${sysconfdir}/default/volatiles/ |
83 | install -m 644 ${WORKDIR}/volatiles.03_syslog-ng ${D}${sysconfdir}/default/volatiles/03_syslog-ng | 83 | install -m 644 ${UNPACKDIR}/volatiles.03_syslog-ng ${D}${sysconfdir}/default/volatiles/03_syslog-ng |
84 | install -d ${D}${sysconfdir}/tmpfiles.d/ | 84 | install -d ${D}${sysconfdir}/tmpfiles.d/ |
85 | install -m 644 ${WORKDIR}/syslog-ng-tmp.conf ${D}${sysconfdir}/tmpfiles.d/syslog-ng.conf | 85 | install -m 644 ${UNPACKDIR}/syslog-ng-tmp.conf ${D}${sysconfdir}/tmpfiles.d/syslog-ng.conf |
86 | 86 | ||
87 | install -d ${D}${localstatedir}/lib/${BPN} | 87 | install -d ${D}${localstatedir}/lib/${BPN} |
88 | # Remove /var/run as it is created on startup | 88 | # Remove /var/run as it is created on startup |
@@ -94,7 +94,7 @@ do_install:append() { | |||
94 | 94 | ||
95 | # support for systemd | 95 | # support for systemd |
96 | if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then | 96 | if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then |
97 | install -m 644 ${WORKDIR}/syslog-ng.conf.systemd ${D}${sysconfdir}/${BPN}/${BPN}.conf | 97 | install -m 644 ${UNPACKDIR}/syslog-ng.conf.systemd ${D}${sysconfdir}/${BPN}/${BPN}.conf |
98 | 98 | ||
99 | install -d ${D}${systemd_unitdir}/system/ | 99 | install -d ${D}${systemd_unitdir}/system/ |
100 | install -m 644 ${S}/contrib/systemd/${BPN}@.service ${D}${systemd_unitdir}/system/${BPN}@.service | 100 | install -m 644 ${S}/contrib/systemd/${BPN}@.service ${D}${systemd_unitdir}/system/${BPN}@.service |
@@ -107,7 +107,7 @@ do_install:append() { | |||
107 | install -d ${D}${systemd_unitdir}/system/multi-user.target.wants | 107 | install -d ${D}${systemd_unitdir}/system/multi-user.target.wants |
108 | ln -sf ../${BPN}@.service ${D}${systemd_unitdir}/system/multi-user.target.wants/${BPN}@default.service | 108 | ln -sf ../${BPN}@.service ${D}${systemd_unitdir}/system/multi-user.target.wants/${BPN}@default.service |
109 | else | 109 | else |
110 | install -m 644 ${WORKDIR}/syslog-ng.conf.sysvinit ${D}${sysconfdir}/${BPN}/${BPN}.conf | 110 | install -m 644 ${UNPACKDIR}/syslog-ng.conf.sysvinit ${D}${sysconfdir}/${BPN}/${BPN}.conf |
111 | fi | 111 | fi |
112 | 112 | ||
113 | oe_multilib_header syslog-ng/syslog-ng-config.h | 113 | oe_multilib_header syslog-ng/syslog-ng-config.h |
diff --git a/meta-oe/recipes-support/unicode-ucd/unicode-ucd_14.0.0.bb b/meta-oe/recipes-support/unicode-ucd/unicode-ucd_14.0.0.bb index 7970cd953..0c8a10e0e 100644 --- a/meta-oe/recipes-support/unicode-ucd/unicode-ucd_14.0.0.bb +++ b/meta-oe/recipes-support/unicode-ucd/unicode-ucd_14.0.0.bb | |||
@@ -1,7 +1,7 @@ | |||
1 | SUMMARY = "Unicode Character Database" | 1 | SUMMARY = "Unicode Character Database" |
2 | HOMEPAGE = "https://unicode.org/ucd/" | 2 | HOMEPAGE = "https://unicode.org/ucd/" |
3 | LICENSE = "MIT" | 3 | LICENSE = "MIT" |
4 | LIC_FILES_CHKSUM = "file://${WORKDIR}/license.txt;md5=4b11b5cbb0a24df9f4e7db63db98f22f" | 4 | LIC_FILES_CHKSUM = "file://${UNPACKDIR}/license.txt;md5=4b11b5cbb0a24df9f4e7db63db98f22f" |
5 | 5 | ||
6 | SRC_URI = " \ | 6 | SRC_URI = " \ |
7 | https://www.unicode.org/Public/zipped/${PV}/UCD.zip;name=ucd;subdir=ucd;downloadfilename=unicode-ucd-${PV}.zip \ | 7 | https://www.unicode.org/Public/zipped/${PV}/UCD.zip;name=ucd;subdir=ucd;downloadfilename=unicode-ucd-${PV}.zip \ |
@@ -16,7 +16,7 @@ do_configure[noexec] = "1" | |||
16 | 16 | ||
17 | do_install() { | 17 | do_install() { |
18 | install -d ${D}${datadir}/unicode | 18 | install -d ${D}${datadir}/unicode |
19 | cp -rf ${WORKDIR}/ucd ${D}${datadir}/unicode | 19 | cp -rf ${UNPACKDIR}/ucd ${D}${datadir}/unicode |
20 | } | 20 | } |
21 | 21 | ||
22 | FILES:${PN} = "${datadir}/unicode/ucd" | 22 | FILES:${PN} = "${datadir}/unicode/ucd" |
diff --git a/meta-oe/recipes-support/vboxguestdrivers/vboxguestdrivers_7.0.18.bb b/meta-oe/recipes-support/vboxguestdrivers/vboxguestdrivers_7.0.18.bb index eebbe202f..47f616e99 100644 --- a/meta-oe/recipes-support/vboxguestdrivers/vboxguestdrivers_7.0.18.bb +++ b/meta-oe/recipes-support/vboxguestdrivers/vboxguestdrivers_7.0.18.bb | |||
@@ -1,7 +1,7 @@ | |||
1 | SUMMARY = "VirtualBox Linux Guest Drivers" | 1 | SUMMARY = "VirtualBox Linux Guest Drivers" |
2 | SECTION = "core" | 2 | SECTION = "core" |
3 | LICENSE = "GPL-3.0-only" | 3 | LICENSE = "GPL-3.0-only" |
4 | LIC_FILES_CHKSUM = "file://${WORKDIR}/${VBOX_NAME}/COPYING;md5=fff5fe1c81dd6dc3d522e7862e44881e" | 4 | LIC_FILES_CHKSUM = "file://${UNPACKDIR}/${VBOX_NAME}/COPYING;md5=fff5fe1c81dd6dc3d522e7862e44881e" |
5 | 5 | ||
6 | DEPENDS = "virtual/kernel" | 6 | DEPENDS = "virtual/kernel" |
7 | 7 | ||
@@ -33,14 +33,14 @@ do_export_sources[depends] += "virtual/kernel:do_shared_workdir" | |||
33 | 33 | ||
34 | do_export_sources() { | 34 | do_export_sources() { |
35 | mkdir -p "${S}" | 35 | mkdir -p "${S}" |
36 | ${WORKDIR}/${VBOX_NAME}/src/VBox/Additions/linux/export_modules.sh ${T}/vbox_modules.tar.gz | 36 | ${UNPACKDIR}/${VBOX_NAME}/src/VBox/Additions/linux/export_modules.sh ${T}/vbox_modules.tar.gz |
37 | tar -C "${S}" -xzf ${T}/vbox_modules.tar.gz | 37 | tar -C "${S}" -xzf ${T}/vbox_modules.tar.gz |
38 | 38 | ||
39 | # add a mount utility to use shared folder from VBox Addition Source Code | 39 | # add a mount utility to use shared folder from VBox Addition Source Code |
40 | mkdir -p "${S}/utils" | 40 | mkdir -p "${S}/utils" |
41 | install ${WORKDIR}/${VBOX_NAME}/src/VBox/Additions/linux/sharedfolders/mount.vboxsf.c ${S}/utils | 41 | install ${UNPACKDIR}/${VBOX_NAME}/src/VBox/Additions/linux/sharedfolders/mount.vboxsf.c ${S}/utils |
42 | install ${WORKDIR}/${VBOX_NAME}/src/VBox/Additions/linux/sharedfolders/vbsfmount.c ${S}/utils | 42 | install ${UNPACKDIR}/${VBOX_NAME}/src/VBox/Additions/linux/sharedfolders/vbsfmount.c ${S}/utils |
43 | install ${S}/../Makefile.utils ${S}/utils/Makefile | 43 | install ${UNPACKDIR}/Makefile.utils ${S}/utils/Makefile |
44 | 44 | ||
45 | # some kernel versions have issues with stdarg.h and compatibility with | 45 | # some kernel versions have issues with stdarg.h and compatibility with |
46 | # the sysroot and libc-headers/uapi. If we include the file directly from | 46 | # the sysroot and libc-headers/uapi. If we include the file directly from |
diff --git a/meta-oe/recipes-support/xrdp/xrdp_0.9.19.bb b/meta-oe/recipes-support/xrdp/xrdp_0.9.19.bb index b839a6829..c1b75e613 100644 --- a/meta-oe/recipes-support/xrdp/xrdp_0.9.19.bb +++ b/meta-oe/recipes-support/xrdp/xrdp_0.9.19.bb | |||
@@ -66,7 +66,7 @@ do_install:append() { | |||
66 | install -d ${D}${sysconfdir}/sysconfig/xrdp | 66 | install -d ${D}${sysconfdir}/sysconfig/xrdp |
67 | install -m 0644 ${S}/instfiles/*.ini ${D}${sysconfdir}/xrdp/ | 67 | install -m 0644 ${S}/instfiles/*.ini ${D}${sysconfdir}/xrdp/ |
68 | install -m 0644 ${S}/keygen/openssl.conf ${D}${sysconfdir}/xrdp/ | 68 | install -m 0644 ${S}/keygen/openssl.conf ${D}${sysconfdir}/xrdp/ |
69 | install -m 0644 ${WORKDIR}/xrdp.sysconfig ${D}${sysconfdir}/sysconfig/xrdp/ | 69 | install -m 0644 ${UNPACKDIR}/xrdp.sysconfig ${D}${sysconfdir}/sysconfig/xrdp/ |
70 | chown xrdp:xrdp ${D}${sysconfdir}/xrdp | 70 | chown xrdp:xrdp ${D}${sysconfdir}/xrdp |
71 | } | 71 | } |
72 | 72 | ||
diff --git a/meta-perl/recipes-extended/logcheck/logcheck_1.4.3.bb b/meta-perl/recipes-extended/logcheck/logcheck_1.4.3.bb index c13bd940e..037852392 100644 --- a/meta-perl/recipes-extended/logcheck/logcheck_1.4.3.bb +++ b/meta-perl/recipes-extended/logcheck/logcheck_1.4.3.bb | |||
@@ -49,7 +49,7 @@ do_install() { | |||
49 | # Don't install /var/lock when populating rootfs. Do it through volatile | 49 | # Don't install /var/lock when populating rootfs. Do it through volatile |
50 | if ${@bb.utils.contains('DISTRO_FEATURES', 'sysvinit', 'true', 'false', d)}; then | 50 | if ${@bb.utils.contains('DISTRO_FEATURES', 'sysvinit', 'true', 'false', d)}; then |
51 | install -d ${D}${sysconfdir}/default/volatiles | 51 | install -d ${D}${sysconfdir}/default/volatiles |
52 | install -m 0644 ${WORKDIR}/99_logcheck ${D}${sysconfdir}/default/volatiles | 52 | install -m 0644 ${UNPACKDIR}/99_logcheck ${D}${sysconfdir}/default/volatiles |
53 | fi | 53 | fi |
54 | if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then | 54 | if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then |
55 | install -d ${D}${sysconfdir}/tmpfiles.d | 55 | install -d ${D}${sysconfdir}/tmpfiles.d |
diff --git a/meta-perl/recipes-perl/libdb/libdbd-sqlite-perl_1.74.bb b/meta-perl/recipes-perl/libdb/libdbd-sqlite-perl_1.74.bb index 7e38da883..e5483e8c2 100644 --- a/meta-perl/recipes-perl/libdb/libdbd-sqlite-perl_1.74.bb +++ b/meta-perl/recipes-perl/libdb/libdbd-sqlite-perl_1.74.bb | |||
@@ -33,7 +33,7 @@ RDEPENDS:${PN} += "libdbi-perl \ | |||
33 | 33 | ||
34 | do_install:append() { | 34 | do_install:append() { |
35 | if [ ${PERL_DBM_TEST} = "1" ]; then | 35 | if [ ${PERL_DBM_TEST} = "1" ]; then |
36 | install -m 755 -D ${WORKDIR}/sqlite-perl-test.pl ${D}/${bindir}/sqlite-perl-test.pl | 36 | install -m 755 -D ${UNPACKDIR}/sqlite-perl-test.pl ${D}/${bindir}/sqlite-perl-test.pl |
37 | fi | 37 | fi |
38 | } | 38 | } |
39 | 39 | ||
diff --git a/meta-python/recipes-devtools/python/python3-cloudpickle_3.0.0.bb b/meta-python/recipes-devtools/python/python3-cloudpickle_3.0.0.bb index 25c379590..fce5a5b40 100644 --- a/meta-python/recipes-devtools/python/python3-cloudpickle_3.0.0.bb +++ b/meta-python/recipes-devtools/python/python3-cloudpickle_3.0.0.bb | |||
@@ -8,7 +8,7 @@ data." | |||
8 | HOMEPAGE = "https://github.com/cloudpipe/cloudpickle" | 8 | HOMEPAGE = "https://github.com/cloudpipe/cloudpickle" |
9 | 9 | ||
10 | LICENSE = "BSD-3-Clause" | 10 | LICENSE = "BSD-3-Clause" |
11 | LIC_FILES_CHKSUM = "file://${WORKDIR}/LICENSE.cloudpickle;md5=b4d59aa5e2cc777722aac17841237931" | 11 | LIC_FILES_CHKSUM = "file://${UNPACKDIR}/LICENSE.cloudpickle;md5=b4d59aa5e2cc777722aac17841237931" |
12 | 12 | ||
13 | inherit pypi python_flit_core | 13 | inherit pypi python_flit_core |
14 | 14 | ||
diff --git a/meta-python/recipes-devtools/python/python3-cmake_3.28.3.bb b/meta-python/recipes-devtools/python/python3-cmake_3.28.3.bb index 6b31d0b4f..a6c3e139b 100644 --- a/meta-python/recipes-devtools/python/python3-cmake_3.28.3.bb +++ b/meta-python/recipes-devtools/python/python3-cmake_3.28.3.bb | |||
@@ -22,7 +22,7 @@ addtask do_patchbuild after do_patch before do_configure | |||
22 | 22 | ||
23 | do_patchbuild () { | 23 | do_patchbuild () { |
24 | rm -f ${S}/CMakeLists.txt | 24 | rm -f ${S}/CMakeLists.txt |
25 | cp ${WORKDIR}/CMakeLists.txt ${S}/ | 25 | cp ${UNPACKDIR}/CMakeLists.txt ${S}/ |
26 | } | 26 | } |
27 | 27 | ||
28 | do_install:append () { | 28 | do_install:append () { |
diff --git a/meta-python/recipes-devtools/python/python3-jstyleson_0.0.2.bb b/meta-python/recipes-devtools/python/python3-jstyleson_0.0.2.bb index 237713bf1..ff9d7dd55 100644 --- a/meta-python/recipes-devtools/python/python3-jstyleson_0.0.2.bb +++ b/meta-python/recipes-devtools/python/python3-jstyleson_0.0.2.bb | |||
@@ -4,7 +4,7 @@ HOMEPAGE = "https://github.com/linjackson78/jstyleson" | |||
4 | SRC_URI += " file://LICENSE " | 4 | SRC_URI += " file://LICENSE " |
5 | 5 | ||
6 | LICENSE = "MIT" | 6 | LICENSE = "MIT" |
7 | LIC_FILES_CHKSUM = "file://${WORKDIR}/LICENSE;md5=d97b96c7337934ee448ffd4392f32079" | 7 | LIC_FILES_CHKSUM = "file://${UNPACKDIR}/LICENSE;md5=d97b96c7337934ee448ffd4392f32079" |
8 | 8 | ||
9 | PYPI_PACKAGE_EXT = "tar.gz" | 9 | PYPI_PACKAGE_EXT = "tar.gz" |
10 | 10 | ||
diff --git a/meta-python/recipes-devtools/python/python3-stopit_1.1.2.bb b/meta-python/recipes-devtools/python/python3-stopit_1.1.2.bb index e119a0f11..a95272261 100644 --- a/meta-python/recipes-devtools/python/python3-stopit_1.1.2.bb +++ b/meta-python/recipes-devtools/python/python3-stopit_1.1.2.bb | |||
@@ -4,7 +4,7 @@ SECTION = "devel/python" | |||
4 | 4 | ||
5 | SRC_URI += " file://LICENSE " | 5 | SRC_URI += " file://LICENSE " |
6 | LICENSE = "MIT" | 6 | LICENSE = "MIT" |
7 | LIC_FILES_CHKSUM = "file://${WORKDIR}/LICENSE;md5=497c556f42b1355b64190da2f3d88f93" | 7 | LIC_FILES_CHKSUM = "file://${UNPACKDIR}/LICENSE;md5=497c556f42b1355b64190da2f3d88f93" |
8 | 8 | ||
9 | SRC_URI[sha256sum] = "f7f39c583fd92027bd9d06127b259aee7a5b7945c1f1fa56263811e1e766996d" | 9 | SRC_URI[sha256sum] = "f7f39c583fd92027bd9d06127b259aee7a5b7945c1f1fa56263811e1e766996d" |
10 | 10 | ||
@@ -14,4 +14,4 @@ RDEPENDS:${PN} += "\ | |||
14 | python3-setuptools \ | 14 | python3-setuptools \ |
15 | " | 15 | " |
16 | 16 | ||
17 | BBCLASSEXTEND = "native nativesdk" \ No newline at end of file | 17 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta-python/recipes-devtools/python/python3-supervisor_4.2.5.bb b/meta-python/recipes-devtools/python/python3-supervisor_4.2.5.bb index 06b08e78a..e104e1c0c 100644 --- a/meta-python/recipes-devtools/python/python3-supervisor_4.2.5.bb +++ b/meta-python/recipes-devtools/python/python3-supervisor_4.2.5.bb | |||
@@ -28,6 +28,6 @@ do_install:append() { | |||
28 | install -d ${D}${sysconfdir}/supervisor | 28 | install -d ${D}${sysconfdir}/supervisor |
29 | install -d ${D}${systemd_system_unitdir} | 29 | install -d ${D}${systemd_system_unitdir} |
30 | 30 | ||
31 | install -m 0644 ${WORKDIR}/supervisord.conf ${D}${sysconfdir}/supervisor | 31 | install -m 0644 ${UNPACKDIR}/supervisord.conf ${D}${sysconfdir}/supervisor |
32 | install -m 0644 ${WORKDIR}/supervisor.service ${D}${systemd_system_unitdir} | 32 | install -m 0644 ${UNPACKDIR}/supervisor.service ${D}${systemd_system_unitdir} |
33 | } | 33 | } |
diff --git a/meta-webserver/recipes-httpd/apache2/apache2_2.4.59.bb b/meta-webserver/recipes-httpd/apache2/apache2_2.4.59.bb index b96e8b4e1..14891ea89 100644 --- a/meta-webserver/recipes-httpd/apache2/apache2_2.4.59.bb +++ b/meta-webserver/recipes-httpd/apache2/apache2_2.4.59.bb | |||
@@ -86,7 +86,7 @@ do_configure:prepend() { | |||
86 | do_install:append:class-target() { | 86 | do_install:append:class-target() { |
87 | install -d ${D}/${sysconfdir}/init.d | 87 | install -d ${D}/${sysconfdir}/init.d |
88 | 88 | ||
89 | cat ${WORKDIR}/init | \ | 89 | cat ${UNPACKDIR}/init | \ |
90 | sed -e 's,/usr/sbin/,${sbindir}/,g' \ | 90 | sed -e 's,/usr/sbin/,${sbindir}/,g' \ |
91 | -e 's,/usr/bin/,${bindir}/,g' \ | 91 | -e 's,/usr/bin/,${bindir}/,g' \ |
92 | -e 's,/usr/lib/,${libdir}/,g' \ | 92 | -e 's,/usr/lib/,${libdir}/,g' \ |
@@ -130,15 +130,15 @@ do_install:append:class-target() { | |||
130 | 130 | ||
131 | if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then | 131 | if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then |
132 | install -d ${D}${sysconfdir}/tmpfiles.d/ | 132 | install -d ${D}${sysconfdir}/tmpfiles.d/ |
133 | install -m 0644 ${WORKDIR}/apache2-volatile.conf ${D}${sysconfdir}/tmpfiles.d/ | 133 | install -m 0644 ${UNPACKDIR}/apache2-volatile.conf ${D}${sysconfdir}/tmpfiles.d/ |
134 | 134 | ||
135 | install -d ${D}${systemd_unitdir}/system | 135 | install -d ${D}${systemd_unitdir}/system |
136 | install -m 0644 ${WORKDIR}/apache2.service ${D}${systemd_unitdir}/system | 136 | install -m 0644 ${UNPACKDIR}/apache2.service ${D}${systemd_unitdir}/system |
137 | sed -i -e 's,@SBINDIR@,${sbindir},g' ${D}${systemd_unitdir}/system/apache2.service | 137 | sed -i -e 's,@SBINDIR@,${sbindir},g' ${D}${systemd_unitdir}/system/apache2.service |
138 | sed -i -e 's,@BASE_BINDIR@,${base_bindir},g' ${D}${systemd_unitdir}/system/apache2.service | 138 | sed -i -e 's,@BASE_BINDIR@,${base_bindir},g' ${D}${systemd_unitdir}/system/apache2.service |
139 | elif ${@bb.utils.contains('DISTRO_FEATURES', 'sysvinit', 'true', 'false', d)}; then | 139 | elif ${@bb.utils.contains('DISTRO_FEATURES', 'sysvinit', 'true', 'false', d)}; then |
140 | install -d ${D}${sysconfdir}/default/volatiles | 140 | install -d ${D}${sysconfdir}/default/volatiles |
141 | install -m 0644 ${WORKDIR}/volatiles.04_apache2 ${D}${sysconfdir}/default/volatiles/04_apache2 | 141 | install -m 0644 ${UNPACKDIR}/volatiles.04_apache2 ${D}${sysconfdir}/default/volatiles/04_apache2 |
142 | fi | 142 | fi |
143 | 143 | ||
144 | rm -rf ${D}${localstatedir} ${D}${sbindir}/envvars* | 144 | rm -rf ${D}${localstatedir} ${D}${sbindir}/envvars* |
diff --git a/meta-webserver/recipes-httpd/cherokee/cherokee_git.bb b/meta-webserver/recipes-httpd/cherokee/cherokee_git.bb index 7763a3188..53d6a85ae 100644 --- a/meta-webserver/recipes-httpd/cherokee/cherokee_git.bb +++ b/meta-webserver/recipes-httpd/cherokee/cherokee_git.bb | |||
@@ -36,13 +36,13 @@ EXTRA_OECONF = "--disable-static \ | |||
36 | 36 | ||
37 | do_install:append () { | 37 | do_install:append () { |
38 | install -m 0755 -d ${D}${sysconfdir}/init.d | 38 | install -m 0755 -d ${D}${sysconfdir}/init.d |
39 | install -m 755 ${WORKDIR}/cherokee.init ${D}${sysconfdir}/init.d/cherokee | 39 | install -m 755 ${UNPACKDIR}/cherokee.init ${D}${sysconfdir}/init.d/cherokee |
40 | 40 | ||
41 | # clean up .la files for plugins | 41 | # clean up .la files for plugins |
42 | rm -f ${D}${libdir}/cherokee/*.la | 42 | rm -f ${D}${libdir}/cherokee/*.la |
43 | 43 | ||
44 | install -d ${D}${systemd_unitdir}/system | 44 | install -d ${D}${systemd_unitdir}/system |
45 | install -m 0644 ${WORKDIR}/cherokee.service ${D}${systemd_unitdir}/system | 45 | install -m 0644 ${UNPACKDIR}/cherokee.service ${D}${systemd_unitdir}/system |
46 | rmdir "${D}${localstatedir}/run" | 46 | rmdir "${D}${localstatedir}/run" |
47 | rmdir --ignore-fail-on-non-empty "${D}${localstatedir}" | 47 | rmdir --ignore-fail-on-non-empty "${D}${localstatedir}" |
48 | } | 48 | } |
diff --git a/meta-webserver/recipes-httpd/hiawatha/hiawatha_10.12.bb b/meta-webserver/recipes-httpd/hiawatha/hiawatha_10.12.bb index 2e848eaf5..1111ef6f5 100644 --- a/meta-webserver/recipes-httpd/hiawatha/hiawatha_10.12.bb +++ b/meta-webserver/recipes-httpd/hiawatha/hiawatha_10.12.bb | |||
@@ -37,9 +37,9 @@ EXTRA_OECMAKE = " -DENABLE_IPV6=OFF \ | |||
37 | 37 | ||
38 | do_install:append() { | 38 | do_install:append() { |
39 | # Copy over init script and sed in the correct sbin path | 39 | # Copy over init script and sed in the correct sbin path |
40 | sed -i 's,sed_sbin_path,${sbindir},' ${WORKDIR}/hiawatha-init | 40 | sed -i 's,sed_sbin_path,${sbindir},' ${UNPACKDIR}/hiawatha-init |
41 | mkdir -p ${D}${sysconfdir}/init.d | 41 | mkdir -p ${D}${sysconfdir}/init.d |
42 | install -m 0755 ${WORKDIR}/hiawatha-init ${D}${sysconfdir}/init.d/hiawatha | 42 | install -m 0755 ${UNPACKDIR}/hiawatha-init ${D}${sysconfdir}/init.d/hiawatha |
43 | 43 | ||
44 | # configure php-fcgi to have a working configuration | 44 | # configure php-fcgi to have a working configuration |
45 | # by default if php is installed | 45 | # by default if php is installed |
@@ -47,7 +47,7 @@ do_install:append() { | |||
47 | 47 | ||
48 | if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then | 48 | if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then |
49 | install -d ${D}/${systemd_unitdir}/system | 49 | install -d ${D}/${systemd_unitdir}/system |
50 | install -m 644 ${WORKDIR}/hiawatha.service ${D}/${systemd_unitdir}/system | 50 | install -m 644 ${UNPACKDIR}/hiawatha.service ${D}/${systemd_unitdir}/system |
51 | fi | 51 | fi |
52 | 52 | ||
53 | # /var/log/hiawatha and /var/lib/hiawatha needs to be created in runtime. | 53 | # /var/log/hiawatha and /var/lib/hiawatha needs to be created in runtime. |
diff --git a/meta-webserver/recipes-httpd/monkey/monkey_1.6.9.bb b/meta-webserver/recipes-httpd/monkey/monkey_1.6.9.bb index ee5dc1619..5bf6373a8 100644 --- a/meta-webserver/recipes-httpd/monkey/monkey_1.6.9.bb +++ b/meta-webserver/recipes-httpd/monkey/monkey_1.6.9.bb | |||
@@ -46,7 +46,7 @@ do_configure:append() { | |||
46 | do_install:append() { | 46 | do_install:append() { |
47 | rmdir ${D}${localstatedir}/log/${BPN} ${D}${localstatedir}/run ${D}${localstatedir}/log | 47 | rmdir ${D}${localstatedir}/log/${BPN} ${D}${localstatedir}/run ${D}${localstatedir}/log |
48 | rmdir --ignore-fail-on-non-empty ${D}${localstatedir} | 48 | rmdir --ignore-fail-on-non-empty ${D}${localstatedir} |
49 | install -Dm 0755 ${WORKDIR}/monkey.init ${D}${sysconfdir}/init.d/monkey | 49 | install -Dm 0755 ${UNPACKDIR}/monkey.init ${D}${sysconfdir}/init.d/monkey |
50 | # Create /var/log/monkey in runtime. | 50 | # Create /var/log/monkey in runtime. |
51 | if [ "${@bb.utils.filter('DISTRO_FEATURES', 'systemd', d)}" ]; then | 51 | if [ "${@bb.utils.filter('DISTRO_FEATURES', 'systemd', d)}" ]; then |
52 | install -d ${D}${nonarch_libdir}/tmpfiles.d | 52 | install -d ${D}${nonarch_libdir}/tmpfiles.d |
@@ -57,7 +57,7 @@ do_install:append() { | |||
57 | echo "d ${BPN} ${BPN} 0755 ${localstatedir}/log/${BPN} none" > ${D}${sysconfdir}/default/volatiles/99_${BPN} | 57 | echo "d ${BPN} ${BPN} 0755 ${localstatedir}/log/${BPN} none" > ${D}${sysconfdir}/default/volatiles/99_${BPN} |
58 | fi | 58 | fi |
59 | if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then | 59 | if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then |
60 | install -Dm 644 ${WORKDIR}/monkey.service ${D}/${systemd_unitdir}/system/monkey.service | 60 | install -Dm 644 ${UNPACKDIR}/monkey.service ${D}/${systemd_unitdir}/system/monkey.service |
61 | fi | 61 | fi |
62 | } | 62 | } |
63 | 63 | ||
diff --git a/meta-webserver/recipes-httpd/nginx/nginx.inc b/meta-webserver/recipes-httpd/nginx/nginx.inc index 83ae90c40..2714c3d22 100644 --- a/meta-webserver/recipes-httpd/nginx/nginx.inc +++ b/meta-webserver/recipes-httpd/nginx/nginx.inc | |||
@@ -108,24 +108,24 @@ do_install () { | |||
108 | chown ${NGINX_USER}:www-data -R ${D}${NGINX_WWWDIR} | 108 | chown ${NGINX_USER}:www-data -R ${D}${NGINX_WWWDIR} |
109 | 109 | ||
110 | install -d ${D}${sysconfdir}/init.d | 110 | install -d ${D}${sysconfdir}/init.d |
111 | install -m 0755 ${WORKDIR}/nginx.init ${D}${sysconfdir}/init.d/nginx | 111 | install -m 0755 ${UNPACKDIR}/nginx.init ${D}${sysconfdir}/init.d/nginx |
112 | sed -i 's,/usr/sbin/,${sbindir}/,g' ${D}${sysconfdir}/init.d/nginx | 112 | sed -i 's,/usr/sbin/,${sbindir}/,g' ${D}${sysconfdir}/init.d/nginx |
113 | sed -i 's,/etc/,${sysconfdir}/,g' ${D}${sysconfdir}/init.d/nginx | 113 | sed -i 's,/etc/,${sysconfdir}/,g' ${D}${sysconfdir}/init.d/nginx |
114 | 114 | ||
115 | install -d ${D}${sysconfdir}/nginx | 115 | install -d ${D}${sysconfdir}/nginx |
116 | install -m 0644 ${WORKDIR}/nginx.conf ${D}${sysconfdir}/nginx/nginx.conf | 116 | install -m 0644 ${UNPACKDIR}/nginx.conf ${D}${sysconfdir}/nginx/nginx.conf |
117 | sed -i 's,/etc/,${sysconfdir}/,g' ${D}${sysconfdir}/nginx/nginx.conf | 117 | sed -i 's,/etc/,${sysconfdir}/,g' ${D}${sysconfdir}/nginx/nginx.conf |
118 | sed -i 's,/var/,${localstatedir}/,g' ${D}${sysconfdir}/nginx/nginx.conf | 118 | sed -i 's,/var/,${localstatedir}/,g' ${D}${sysconfdir}/nginx/nginx.conf |
119 | sed -i 's/^user.*/user ${NGINX_USER};/g' ${D}${sysconfdir}/nginx/nginx.conf | 119 | sed -i 's/^user.*/user ${NGINX_USER};/g' ${D}${sysconfdir}/nginx/nginx.conf |
120 | install -Dm 0644 ${WORKDIR}/default_server.site ${D}${sysconfdir}/nginx/sites-available/default_server | 120 | install -Dm 0644 ${UNPACKDIR}/default_server.site ${D}${sysconfdir}/nginx/sites-available/default_server |
121 | sed -i 's,/var/,${localstatedir}/,g' ${D}${sysconfdir}/nginx/sites-available/default_server | 121 | sed -i 's,/var/,${localstatedir}/,g' ${D}${sysconfdir}/nginx/sites-available/default_server |
122 | install -d ${D}${sysconfdir}/nginx/sites-enabled | 122 | install -d ${D}${sysconfdir}/nginx/sites-enabled |
123 | ln -s ../sites-available/default_server ${D}${sysconfdir}/nginx/sites-enabled/ | 123 | ln -s ../sites-available/default_server ${D}${sysconfdir}/nginx/sites-enabled/ |
124 | 124 | ||
125 | install -m 0644 ${WORKDIR}/proxy_params ${D}${sysconfdir}/nginx/proxy_params | 125 | install -m 0644 ${UNPACKDIR}/proxy_params ${D}${sysconfdir}/nginx/proxy_params |
126 | 126 | ||
127 | install -d ${D}${sysconfdir}/default/volatiles | 127 | install -d ${D}${sysconfdir}/default/volatiles |
128 | install -m 0644 ${WORKDIR}/nginx-volatile.conf ${D}${sysconfdir}/default/volatiles/99_nginx | 128 | install -m 0644 ${UNPACKDIR}/nginx-volatile.conf ${D}${sysconfdir}/default/volatiles/99_nginx |
129 | sed -i 's,/var/,${localstatedir}/,g' ${D}${sysconfdir}/default/volatiles/99_nginx | 129 | sed -i 's,/var/,${localstatedir}/,g' ${D}${sysconfdir}/default/volatiles/99_nginx |
130 | sed -i 's,@NGINX_USER@,${NGINX_USER},g' ${D}${sysconfdir}/default/volatiles/99_nginx | 130 | sed -i 's,@NGINX_USER@,${NGINX_USER},g' ${D}${sysconfdir}/default/volatiles/99_nginx |
131 | 131 | ||
@@ -140,7 +140,7 @@ do_install () { | |||
140 | 140 | ||
141 | if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)};then | 141 | if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)};then |
142 | install -d ${D}${systemd_unitdir}/system | 142 | install -d ${D}${systemd_unitdir}/system |
143 | install -m 0644 ${WORKDIR}/nginx.service ${D}${systemd_unitdir}/system/ | 143 | install -m 0644 ${UNPACKDIR}/nginx.service ${D}${systemd_unitdir}/system/ |
144 | sed -i -e 's,@SYSCONFDIR@,${sysconfdir},g' \ | 144 | sed -i -e 's,@SYSCONFDIR@,${sysconfdir},g' \ |
145 | -e 's,@LOCALSTATEDIR@,${localstatedir},g' \ | 145 | -e 's,@LOCALSTATEDIR@,${localstatedir},g' \ |
146 | -e 's,@SBINDIR@,${sbindir},g' \ | 146 | -e 's,@SBINDIR@,${sbindir},g' \ |
diff --git a/meta-webserver/recipes-httpd/sthttpd/sthttpd_2.27.1.bb b/meta-webserver/recipes-httpd/sthttpd/sthttpd_2.27.1.bb index 601ec7bcd..ec188cc48 100644 --- a/meta-webserver/recipes-httpd/sthttpd/sthttpd_2.27.1.bb +++ b/meta-webserver/recipes-httpd/sthttpd/sthttpd_2.27.1.bb | |||
@@ -37,14 +37,14 @@ do_configure:prepend () { | |||
37 | 37 | ||
38 | do_install:append () { | 38 | do_install:append () { |
39 | install -d ${D}${sysconfdir}/init.d | 39 | install -d ${D}${sysconfdir}/init.d |
40 | install -c -m 755 ${WORKDIR}/init ${D}${sysconfdir}/init.d/thttpd | 40 | install -c -m 755 ${UNPACKDIR}/init ${D}${sysconfdir}/init.d/thttpd |
41 | install -c -m 755 ${WORKDIR}/thttpd.conf ${D}${sysconfdir} | 41 | install -c -m 755 ${UNPACKDIR}/thttpd.conf ${D}${sysconfdir} |
42 | sed -i -e 's,@@CONFFILE,${sysconfdir}/thttpd.conf,g' ${D}${sysconfdir}/init.d/thttpd | 42 | sed -i -e 's,@@CONFFILE,${sysconfdir}/thttpd.conf,g' ${D}${sysconfdir}/init.d/thttpd |
43 | sed -i -e 's,@@SRVDIR,${SRV_DIR},g' ${D}${sysconfdir}/thttpd.conf | 43 | sed -i -e 's,@@SRVDIR,${SRV_DIR},g' ${D}${sysconfdir}/thttpd.conf |
44 | sed -i 's!/usr/sbin/!${sbindir}/!g' ${D}${sysconfdir}/init.d/thttpd | 44 | sed -i 's!/usr/sbin/!${sbindir}/!g' ${D}${sysconfdir}/init.d/thttpd |
45 | 45 | ||
46 | install -d ${D}${systemd_unitdir}/system | 46 | install -d ${D}${systemd_unitdir}/system |
47 | install -m 0644 ${WORKDIR}/thttpd.service ${D}${systemd_unitdir}/system | 47 | install -m 0644 ${UNPACKDIR}/thttpd.service ${D}${systemd_unitdir}/system |
48 | sed -i 's!/usr/sbin/!${sbindir}/!g' ${D}${systemd_unitdir}/system/thttpd.service | 48 | sed -i 's!/usr/sbin/!${sbindir}/!g' ${D}${systemd_unitdir}/system/thttpd.service |
49 | sed -i 's!/var/!${localstatedir}/!g' ${D}${systemd_unitdir}/system/thttpd.service | 49 | sed -i 's!/var/!${localstatedir}/!g' ${D}${systemd_unitdir}/system/thttpd.service |
50 | sed -i -e 's,@@CONFFILE,${sysconfdir}/thttpd.conf,g' ${D}${systemd_unitdir}/system/thttpd.service | 50 | sed -i -e 's,@@CONFFILE,${sysconfdir}/thttpd.conf,g' ${D}${systemd_unitdir}/system/thttpd.service |
diff --git a/meta-webserver/recipes-php/phpmyadmin/phpmyadmin_5.2.1.bb b/meta-webserver/recipes-php/phpmyadmin/phpmyadmin_5.2.1.bb index 34b710e88..7c3810154 100644 --- a/meta-webserver/recipes-php/phpmyadmin/phpmyadmin_5.2.1.bb +++ b/meta-webserver/recipes-php/phpmyadmin/phpmyadmin_5.2.1.bb | |||
@@ -28,7 +28,7 @@ do_install() { | |||
28 | rm -rf ${D}${datadir}/${BPN}/patches | 28 | rm -rf ${D}${datadir}/${BPN}/patches |
29 | 29 | ||
30 | install -d ${D}${sysconfdir}/apache2/conf.d | 30 | install -d ${D}${sysconfdir}/apache2/conf.d |
31 | install -m 0644 ${WORKDIR}/apache.conf ${D}${sysconfdir}/apache2/conf.d/phpmyadmin.conf | 31 | install -m 0644 ${UNPACKDIR}/apache.conf ${D}${sysconfdir}/apache2/conf.d/phpmyadmin.conf |
32 | 32 | ||
33 | # Remove a few scripts that explicitly require bash (!) | 33 | # Remove a few scripts that explicitly require bash (!) |
34 | rm -f ${D}${datadir}/phpmyadmin/libraries/transformations/*.sh | 34 | rm -f ${D}${datadir}/phpmyadmin/libraries/transformations/*.sh |
diff --git a/meta-webserver/recipes-webadmin/cockpit/cockpit_304.bb b/meta-webserver/recipes-webadmin/cockpit/cockpit_304.bb index df7f47a11..6a5eb4e66 100644 --- a/meta-webserver/recipes-webadmin/cockpit/cockpit_304.bb +++ b/meta-webserver/recipes-webadmin/cockpit/cockpit_304.bb | |||
@@ -193,7 +193,7 @@ do_install:append() { | |||
193 | chmod 4750 ${D}${libexecdir}/cockpit-session | 193 | chmod 4750 ${D}${libexecdir}/cockpit-session |
194 | 194 | ||
195 | install -d "${D}${sysconfdir}/pam.d" | 195 | install -d "${D}${sysconfdir}/pam.d" |
196 | install -p -m 0644 ${WORKDIR}/cockpit.pam ${D}${sysconfdir}/pam.d/cockpit | 196 | install -p -m 0644 ${UNPACKDIR}/cockpit.pam ${D}${sysconfdir}/pam.d/cockpit |
197 | 197 | ||
198 | # provided by firewalld | 198 | # provided by firewalld |
199 | rm -rf ${D}${libdir}/firewalld | 199 | rm -rf ${D}${libdir}/firewalld |
diff --git a/meta-webserver/recipes-webadmin/netdata/netdata_1.44.3.bb b/meta-webserver/recipes-webadmin/netdata/netdata_1.44.3.bb index 700c6b234..b06a5df31 100644 --- a/meta-webserver/recipes-webadmin/netdata/netdata_1.44.3.bb +++ b/meta-webserver/recipes-webadmin/netdata/netdata_1.44.3.bb | |||
@@ -55,13 +55,13 @@ do_install:append() { | |||
55 | if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then | 55 | if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then |
56 | # Install systemd unit files | 56 | # Install systemd unit files |
57 | install -d ${D}${systemd_unitdir}/system | 57 | install -d ${D}${systemd_unitdir}/system |
58 | install -m 0644 ${WORKDIR}/netdata.service ${D}${systemd_unitdir}/system | 58 | install -m 0644 ${UNPACKDIR}/netdata.service ${D}${systemd_unitdir}/system |
59 | sed -i -e 's,@@datadir,${datadir_native},g' ${D}${systemd_unitdir}/system/netdata.service | 59 | sed -i -e 's,@@datadir,${datadir_native},g' ${D}${systemd_unitdir}/system/netdata.service |
60 | fi | 60 | fi |
61 | 61 | ||
62 | # Install default netdata.conf | 62 | # Install default netdata.conf |
63 | install -d ${D}${sysconfdir}/netdata | 63 | install -d ${D}${sysconfdir}/netdata |
64 | install -m 0644 ${WORKDIR}/netdata.conf ${D}${sysconfdir}/netdata/ | 64 | install -m 0644 ${UNPACKDIR}/netdata.conf ${D}${sysconfdir}/netdata/ |
65 | sed -i -e 's,@@sysconfdir,${sysconfdir},g' ${D}${sysconfdir}/netdata/netdata.conf | 65 | sed -i -e 's,@@sysconfdir,${sysconfdir},g' ${D}${sysconfdir}/netdata/netdata.conf |
66 | sed -i -e 's,@@libdir,${libexecdir},g' ${D}${sysconfdir}/netdata/netdata.conf | 66 | sed -i -e 's,@@libdir,${libexecdir},g' ${D}${sysconfdir}/netdata/netdata.conf |
67 | sed -i -e 's,@@datadir,${datadir},g' ${D}${sysconfdir}/netdata/netdata.conf | 67 | sed -i -e 's,@@datadir,${datadir},g' ${D}${sysconfdir}/netdata/netdata.conf |
diff --git a/meta-webserver/recipes-webadmin/webmin/webmin_1.850.bb b/meta-webserver/recipes-webadmin/webmin/webmin_1.850.bb index 35ec09dae..bbc59443c 100644 --- a/meta-webserver/recipes-webadmin/webmin/webmin_1.850.bb +++ b/meta-webserver/recipes-webadmin/webmin/webmin_1.850.bb | |||
@@ -82,7 +82,7 @@ do_install() { | |||
82 | install -m 0755 webmin-init ${D}${sysconfdir}/init.d/webmin | 82 | install -m 0755 webmin-init ${D}${sysconfdir}/init.d/webmin |
83 | 83 | ||
84 | install -d ${D}${systemd_unitdir}/system | 84 | install -d ${D}${systemd_unitdir}/system |
85 | install -m 0644 ${WORKDIR}/webmin.service ${D}${systemd_unitdir}/system | 85 | install -m 0644 ${UNPACKDIR}/webmin.service ${D}${systemd_unitdir}/system |
86 | sed -i -e 's,@SYSCONFDIR@,${sysconfdir},g' \ | 86 | sed -i -e 's,@SYSCONFDIR@,${sysconfdir},g' \ |
87 | ${D}${systemd_unitdir}/system/webmin.service | 87 | ${D}${systemd_unitdir}/system/webmin.service |
88 | 88 | ||
@@ -117,7 +117,7 @@ do_install() { | |||
117 | export atboot=1 | 117 | export atboot=1 |
118 | export no_pam=1 | 118 | export no_pam=1 |
119 | mkdir -p $tempdir | 119 | mkdir -p $tempdir |
120 | ${S}/../setup.sh | 120 | ${UNPACKDIR}/setup.sh |
121 | 121 | ||
122 | # Ensure correct PERLLIB path | 122 | # Ensure correct PERLLIB path |
123 | sed -i -e 's#${D}##g' ${D}${sysconfdir}/webmin/start | 123 | sed -i -e 's#${D}##g' ${D}${sysconfdir}/webmin/start |