diff options
author | Dongxiao Xu <dongxiao.xu@intel.com> | 2011-04-19 14:58:37 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-04-28 10:44:26 +0100 |
commit | 722d95cb705a62b607d9798769ec5313138f31cc (patch) | |
tree | 37399da97d330bb929c3da89f71fd117f3393d2b /meta/recipes-sato/rxvt-unicode/rxvt-unicode_9.10.bb | |
parent | e8a11302a9816b2d3604460c3307aa8e03f8a30d (diff) | |
download | poky-722d95cb705a62b607d9798769ec5313138f31cc.tar.gz |
rxvt-unicode: upgrade to version 9.10
Remove some patches since some logic doesn't exist in upstream.
This upgrades fixes CVE:
http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2006-0126
Also it fixes [Yocto #980]
(From OE-Core rev: 6108c5962a717e1ece4aa7acb0f543f7d8e86a35)
Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-sato/rxvt-unicode/rxvt-unicode_9.10.bb')
-rw-r--r-- | meta/recipes-sato/rxvt-unicode/rxvt-unicode_9.10.bb | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/meta/recipes-sato/rxvt-unicode/rxvt-unicode_9.10.bb b/meta/recipes-sato/rxvt-unicode/rxvt-unicode_9.10.bb new file mode 100644 index 0000000000..9657e218b2 --- /dev/null +++ b/meta/recipes-sato/rxvt-unicode/rxvt-unicode_9.10.bb | |||
@@ -0,0 +1,65 @@ | |||
1 | SECTION = "x11/utils" | ||
2 | DEPENDS = "virtual/libx11 libxt libxft" | ||
3 | DESCRIPTION = "rxvt-unicode is a clone of the well known \ | ||
4 | terminal emulator rxvt, modified to store text in Unicode \ | ||
5 | (either UCS-2 or UCS-4) and to use locale-correct input and \ | ||
6 | output. It also supports mixing multiple fonts at the \ | ||
7 | same time, including Xft fonts." | ||
8 | LICENSE = "GPLv2+" | ||
9 | LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552 \ | ||
10 | file://src/main.C;beginline=1;endline=31;md5=633e23cdeb89fe980ded9a3af4f335c2" | ||
11 | SRC_URI = "http://dist.schmorp.de/rxvt-unicode/Attic/rxvt-unicode-${PV}.tar.bz2 \ | ||
12 | file://xwc.patch \ | ||
13 | file://rxvt.desktop \ | ||
14 | file://rxvt.png" | ||
15 | PR = "r0" | ||
16 | |||
17 | inherit autotools update-alternatives | ||
18 | |||
19 | PROVIDES = "virtual/x-terminal-emulator" | ||
20 | ALTERNATIVE_NAME = "x-terminal-emulator" | ||
21 | ALTERNATIVE_PATH = "${bindir}/rxvt" | ||
22 | |||
23 | CFLAGS_append = " -fpermissive" | ||
24 | |||
25 | # This is necessary so that the "tic" command executed during the install can | ||
26 | # link with the correct libary in staging. | ||
27 | export LD_LIBRARY_PATH = "${STAGING_LIBDIR_NATIVE}" | ||
28 | |||
29 | EXTRA_OECONF = "--enable-menubar --enable-xim \ | ||
30 | --enable-utmp --enable-wtmp --enable-lastlog \ | ||
31 | --disable-strings --with-term=rxvt --enable-keepscrolling \ | ||
32 | --enable-xft --with-name=rxvt --enable-frills \ | ||
33 | --enable-swapscreen --enable-transparency \ | ||
34 | --with-codesets=eu \ | ||
35 | --enable-cursor-blink --enable-pointer-blank \ | ||
36 | --enable-text-blink --enable-rxvt-scroll \ | ||
37 | --enable-combining --enable-shared \ | ||
38 | --enable-xgetdefault \ | ||
39 | --disable-perl \ | ||
40 | --with-x=${STAGING_DIR_HOST}${prefix}" | ||
41 | |||
42 | do_configure_prepend () { | ||
43 | cp aclocal.m4 acinclude.m4 | ||
44 | } | ||
45 | |||
46 | do_compile_prepend () { | ||
47 | echo '#define UTMP_FILE "${localstatedir}/run/utmp"' >> config.h | ||
48 | echo '#define WTMP_FILE "${localstatedir}/log/wtmp"' >> config.h | ||
49 | echo '#define LASTLOG_FILE "${localstatedir}/log/lastlog"' >> config.h | ||
50 | echo '#define HAVE_XLOCALE 1' >> config.h | ||
51 | } | ||
52 | |||
53 | do_install_append () { | ||
54 | install -d ${D}/${datadir} | ||
55 | install -d ${D}/${datadir}/applications | ||
56 | install -d ${D}/${datadir}/pixmaps/ | ||
57 | |||
58 | install -m 0644 ${WORKDIR}/rxvt.png ${D}/${datadir}/pixmaps | ||
59 | install -m 0644 ${WORKDIR}/rxvt.desktop ${D}/${datadir}/applications | ||
60 | } | ||
61 | |||
62 | FILES_${PN} += "${datadir}/applications/rxvt.desktop ${datadir}/pixmaps/rxvt.png" | ||
63 | |||
64 | SRC_URI[md5sum] = "a23aa40b31e843878b6f9c44768de430" | ||
65 | SRC_URI[sha256sum] = "1c238f7e545b1a8da81239b826fb2a7d196c73effbcbd211db7a50995a0a067a" | ||