summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--openembedded/packages/rxvt-unicode/files/rxvt.desktop10
-rw-r--r--openembedded/packages/rxvt-unicode/files/rxvt.pngbin0 -> 2847 bytes
-rw-r--r--openembedded/packages/rxvt-unicode/rxvt-unicode_5.6.bb17
3 files changed, 25 insertions, 2 deletions
diff --git a/openembedded/packages/rxvt-unicode/files/rxvt.desktop b/openembedded/packages/rxvt-unicode/files/rxvt.desktop
new file mode 100644
index 0000000000..0bb7701ff8
--- /dev/null
+++ b/openembedded/packages/rxvt-unicode/files/rxvt.desktop
@@ -0,0 +1,10 @@
1[Desktop Entry]
2Encoding=UTF-8
3Name=Terminal
4Exec=/usr/bin/rxvt
5Icon=rxvt.png
6Terminal=false
7Type=Application
8Categories=Utilities
9StartupNotify=false
10
diff --git a/openembedded/packages/rxvt-unicode/files/rxvt.png b/openembedded/packages/rxvt-unicode/files/rxvt.png
new file mode 100644
index 0000000000..e56fa2e9cd
--- /dev/null
+++ b/openembedded/packages/rxvt-unicode/files/rxvt.png
Binary files differ
diff --git a/openembedded/packages/rxvt-unicode/rxvt-unicode_5.6.bb b/openembedded/packages/rxvt-unicode/rxvt-unicode_5.6.bb
index 92915bf872..f21b1f27b5 100644
--- a/openembedded/packages/rxvt-unicode/rxvt-unicode_5.6.bb
+++ b/openembedded/packages/rxvt-unicode/rxvt-unicode_5.6.bb
@@ -8,8 +8,10 @@ same time, including Xft fonts."
8LICENSE = "GPL" 8LICENSE = "GPL"
9SRC_URI = "http://dist.schmorp.de/rxvt-unicode/Attic/rxvt-unicode-${PV}.tar.bz2 \ 9SRC_URI = "http://dist.schmorp.de/rxvt-unicode/Attic/rxvt-unicode-${PV}.tar.bz2 \
10 file://xwc.patch;patch=1 \ 10 file://xwc.patch;patch=1 \
11 file://signedchar.patch;patch=1" 11 file://signedchar.patch;patch=1 \
12PR = "r2" 12 file://rxvt.desktop \
13 file://rxvt.png"
14PR = "r3"
13 15
14inherit autotools update-alternatives 16inherit autotools update-alternatives
15 17
@@ -53,3 +55,14 @@ do_compile () {
53 # docs need "yodl" and I have no idea what that is 55 # docs need "yodl" and I have no idea what that is
54 oe_runmake -C src "LIBTOOL=$LIBTOOL" 56 oe_runmake -C src "LIBTOOL=$LIBTOOL"
55} 57}
58
59do_install_append () {
60 install -d ${D}/${datadir}
61 install -d ${D}/${datadir}/applications
62 install -d ${D}/${datadir}/icons/hicolor/48x48/apps
63
64 install -m 0644 ${WORKDIR}/rxvt.png ${D}/${datadir}/icons/hicolor/48x48/apps
65 install -m 0644 ${WORKDIR}/rxvt.desktop ${D}/${datadir}/applications
66}
67
68FILES_${PN} += "${datadir}/applications/rxvt.desktop ${datadir}/icons/hicolor/48x48/apps/rxvt.png"