diff options
Diffstat (limited to 'meta/recipes-extended/screen/screen_4.7.0.bb')
-rw-r--r-- | meta/recipes-extended/screen/screen_4.7.0.bb | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/meta/recipes-extended/screen/screen_4.7.0.bb b/meta/recipes-extended/screen/screen_4.7.0.bb new file mode 100644 index 0000000000..67aa5f1fc6 --- /dev/null +++ b/meta/recipes-extended/screen/screen_4.7.0.bb | |||
@@ -0,0 +1,49 @@ | |||
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 = "GPLv3+" | ||
11 | LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504 \ | ||
12 | file://screen.h;endline=26;md5=3971142989289a8198a544220703c2bf" | ||
13 | |||
14 | DEPENDS = "ncurses virtual/crypt \ | ||
15 | ${@bb.utils.contains('DISTRO_FEATURES', 'pam', 'libpam', '', d)}" | ||
16 | RDEPENDS_${PN} = "base-files" | ||
17 | |||
18 | SRC_URI = "${GNU_MIRROR}/screen/screen-${PV}.tar.gz \ | ||
19 | ${@bb.utils.contains('DISTRO_FEATURES', 'pam', 'file://screen.pam', '', d)} \ | ||
20 | file://0002-comm.h-now-depends-on-term.h.patch \ | ||
21 | file://0001-fix-for-multijob-build.patch \ | ||
22 | file://0001-Remove-more-compatibility-stuff.patch \ | ||
23 | " | ||
24 | |||
25 | SRC_URI[md5sum] = "b8971ebd68d046f2814d1040cb8e6641" | ||
26 | SRC_URI[sha256sum] = "da775328fa783bd2a787d722014dbd99c6093effc11f337827604c2efc5d20c1" | ||
27 | |||
28 | inherit autotools texinfo | ||
29 | |||
30 | PACKAGECONFIG ??= "" | ||
31 | PACKAGECONFIG[utempter] = "ac_cv_header_utempter_h=yes,ac_cv_header_utempter_h=no,libutempter," | ||
32 | |||
33 | EXTRA_OECONF = "--with-pty-mode=0620 --with-pty-group=5 --with-sys-screenrc=${sysconfdir}/screenrc \ | ||
34 | ${@bb.utils.contains('DISTRO_FEATURES', 'pam', '--enable-pam', '--disable-pam', d)}" | ||
35 | |||
36 | do_install_append () { | ||
37 | install -D -m 644 ${S}/etc/etcscreenrc ${D}/${sysconfdir}/screenrc | ||
38 | if [ "${@bb.utils.filter('DISTRO_FEATURES', 'pam', d)}" ]; then | ||
39 | install -D -m 644 ${WORKDIR}/screen.pam ${D}/${sysconfdir}/pam.d/screen | ||
40 | fi | ||
41 | } | ||
42 | |||
43 | pkg_postinst_${PN} () { | ||
44 | grep -q "^${bindir}/screen$" $D${sysconfdir}/shells || echo ${bindir}/screen >> $D${sysconfdir}/shells | ||
45 | } | ||
46 | |||
47 | pkg_postrm_${PN} () { | ||
48 | printf "$(grep -v "^${bindir}/screen$" $D${sysconfdir}/shells)\n" > $D${sysconfdir}/shells | ||
49 | } | ||