Add missing icons and a .desktop launcher for owl-video-widget

git-svn-id: https://svn.o-hand.com/repos/poky/trunk@751 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Chris Lord 2006-09-22 23:40:12 +00:00
parent b4a1c8f1e9
commit 2f98100f9a
8 changed files with 31 additions and 1 deletions

View File

@ -0,0 +1,10 @@
[Desktop Entry]
Encoding=UTF-8
Name=Video
Exec=video
Icon=owl-video-widget.png
Terminal=false
Type=Application
Categories=AudioVideo;Player;PIM;MB;
SingleInstance=true
StartupNotify=true

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 329 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 570 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 689 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 630 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 570 B

View File

@ -7,9 +7,29 @@ MAINTAINER = "Chris Lord <chris@openedhand.com>"
DESCRIPTION = "OpenedHand Widget Library video widget"
PV = "0.1+svn${SRCDATE}"
PR = "r1"
S = "${WORKDIR}/${PN}"
SRC_URI = "svn://svn.o-hand.com/repos/misc/trunk;module=${PN};proto=http"
SRC_URI = "svn://svn.o-hand.com/repos/misc/trunk;module=${PN};proto=http \
file://owl-video-widget.png \
file://stock_media-play.png \
file://stock_volume-0.png \
file://stock_volume-min.png \
file://stock_volume-med.png \
file://stock_volume-max.png \
file://owl-video-widget.desktop"
inherit autotools pkgconfig
do_install_append () {
install -d ${D}/${datadir}/pixmaps
install -m 0644 ${WORKDIR}/stock_media-play.png ${D}/${datadir}/pixmaps
install -m 0644 ${WORKDIR}/stock_volume-0.png ${D}/${datadir}/pixmaps
install -m 0644 ${WORKDIR}/stock_volume-min.png ${D}/${datadir}/pixmaps
install -m 0644 ${WORKDIR}/stock_volume-med.png ${D}/${datadir}/pixmaps
install -m 0644 ${WORKDIR}/stock_volume-max.png ${D}/${datadir}/pixmaps
install -m 0644 ${WORKDIR}/owl-video-widget.png ${D}/${datadir}/pixmaps
install -d ${D}/${datadir}/applications
install -m 0644 ${WORKDIR}/owl-video-widget.desktop ${D}/${datadir}/applications
}