diff options
| author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-11-07 13:31:53 +0000 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-11-07 13:31:53 +0000 |
| commit | 8c22ff0d8b70d9b12f0487ef696a7e915b9e3173 (patch) | |
| tree | efdc32587159d0050a69009bdf2330a531727d95 /meta/recipes-extended/screen | |
| parent | d412d2747595c1cc4a5e3ca975e3adc31b2f7891 (diff) | |
| download | poky-8c22ff0d8b70d9b12f0487ef696a7e915b9e3173.tar.gz | |
The poky repository master branch is no longer being updated.
You can either:
a) switch to individual clones of bitbake, openembedded-core, meta-yocto and yocto-docs
b) use the new bitbake-setup
You can find information about either approach in our documentation:
https://docs.yoctoproject.org/
Note that "poky" the distro setting is still available in meta-yocto as
before and we continue to use and maintain that.
Long live Poky!
Some further information on the background of this change can be found
in: https://lists.openembedded.org/g/openembedded-architecture/message/2179
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/screen')
| -rw-r--r-- | meta/recipes-extended/screen/screen/screen.pam | 2 | ||||
| -rw-r--r-- | meta/recipes-extended/screen/screen_5.0.1.bb | 46 |
2 files changed, 0 insertions, 48 deletions
diff --git a/meta/recipes-extended/screen/screen/screen.pam b/meta/recipes-extended/screen/screen/screen.pam deleted file mode 100644 index ff657fa07c..0000000000 --- a/meta/recipes-extended/screen/screen/screen.pam +++ /dev/null | |||
| @@ -1,2 +0,0 @@ | |||
| 1 | #%PAM-1.0 | ||
| 2 | auth include common-auth | ||
diff --git a/meta/recipes-extended/screen/screen_5.0.1.bb b/meta/recipes-extended/screen/screen_5.0.1.bb deleted file mode 100644 index 69f4098519..0000000000 --- a/meta/recipes-extended/screen/screen_5.0.1.bb +++ /dev/null | |||
| @@ -1,46 +0,0 @@ | |||
| 1 | SUMMARY = "Multiplexing terminal manager" | ||
| 2 | DESCRIPTION = "Screen is a full-screen window manager \ | ||
| 3 | that multiplexes a physical terminal between several \ | ||
| 4 | processes, typically interactive shells." | ||
| 5 | HOMEPAGE = "http://www.gnu.org/software/screen/" | ||
| 6 | BUGTRACKER = "https://savannah.gnu.org/bugs/?func=additem&group=screen" | ||
| 7 | |||
| 8 | SECTION = "console/utils" | ||
| 9 | |||
| 10 | LICENSE = "GPL-3.0-or-later" | ||
| 11 | LIC_FILES_CHKSUM = "file://COPYING;md5=c678957b0c8e964aa6c70fd77641a71e \ | ||
| 12 | file://screen.h;endline=26;md5=b8dc717c9a3dba842ae6c44ca0f73f52 \ | ||
| 13 | " | ||
| 14 | |||
| 15 | DEPENDS = "ncurses virtual/crypt \ | ||
| 16 | ${@bb.utils.contains('DISTRO_FEATURES', 'pam', 'libpam', '', d)}" | ||
| 17 | RDEPENDS:${PN} = "base-files" | ||
| 18 | |||
| 19 | SRC_URI = "${GNU_MIRROR}/screen/screen-${PV}.tar.gz \ | ||
| 20 | ${@bb.utils.contains('DISTRO_FEATURES', 'pam', 'file://screen.pam', '', d)} \ | ||
| 21 | " | ||
| 22 | |||
| 23 | SRC_URI[sha256sum] = "2dae36f4db379ffcd14b691596ba6ec18ac3a9e22bc47ac239789ab58409869d" | ||
| 24 | |||
| 25 | inherit autotools-brokensep texinfo | ||
| 26 | |||
| 27 | PACKAGECONFIG ??= "" | ||
| 28 | PACKAGECONFIG[utempter] = "ac_cv_header_utempter_h=yes,ac_cv_header_utempter_h=no,libutempter," | ||
| 29 | |||
| 30 | EXTRA_OECONF = "--with-pty-mode=0620 --with-pty-group=5 --with-system_screenrc=${sysconfdir}/screenrc \ | ||
| 31 | ${@bb.utils.contains('DISTRO_FEATURES', 'pam', '--enable-pam', '--disable-pam', d)}" | ||
| 32 | |||
| 33 | do_install:append () { | ||
| 34 | install -D -m 644 ${S}/etc/etcscreenrc ${D}/${sysconfdir}/screenrc | ||
| 35 | if [ "${@bb.utils.filter('DISTRO_FEATURES', 'pam', d)}" ]; then | ||
| 36 | install -D -m 644 ${UNPACKDIR}/screen.pam ${D}/${sysconfdir}/pam.d/screen | ||
| 37 | fi | ||
| 38 | } | ||
| 39 | |||
| 40 | pkg_postinst:${PN} () { | ||
| 41 | grep -q "^${bindir}/screen$" $D${sysconfdir}/shells || echo ${bindir}/screen >> $D${sysconfdir}/shells | ||
| 42 | } | ||
| 43 | |||
| 44 | pkg_postrm:${PN} () { | ||
| 45 | printf "$(grep -v "^${bindir}/screen$" $D${sysconfdir}/shells)\n" > $D${sysconfdir}/shells | ||
| 46 | } | ||
