- Fix glib 2.8 building

- Add pcmanfm to task-oh
- Add .desktop and icon for pcmanfm
- Add missing icons required for pcmanfm to run


git-svn-id: https://svn.o-hand.com/repos/poky/trunk@280 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Chris Lord 2006-02-15 02:59:28 +00:00
parent cb92e3d2ce
commit d2387e1ae4
9 changed files with 32 additions and 3 deletions

View File

@ -10,12 +10,12 @@ MAINTAINER = "Philip Blundell <pb@handhelds.org>"
DEPENDS += "glib-2.0-native gtk-doc"
DEPENDS += "virtual/libiconv virtual/libintl"
PACKAGES =+ "glib-2.0-utils "
PR = "r0"
PR = "r1"
LEAD_SONAME = "libglib-2.0.*"
FILES_glib-2.0-utils = "${bindir}/*"
EXTRA_OECONF = "--disable-debug"
EXTRA_OECONF = "--disable-debug --with-libiconv=gnu"
SRC_URI = "ftp://ftp.gtk.org/pub/gtk/v2.8/glib-${PV}.tar.bz2 \
file://glibconfig-sysdefs.h"

View File

@ -1,7 +1,7 @@
PACKAGES = "task-oh-base-depends task-oh-base"
DESCRIPTION = "Tasks for OpenedHand Poky"
MAINTAINER = "Richard Purdie <richard@openedhand.com>"
PR = "r21"
PR = "r22"
ALLOW_EMPTY = "1"
@ -35,6 +35,7 @@ RDEPENDS_task-oh-base := "\
web \
libcurl \
js \
pcmanfm \
leafpad \
puzzles \
kf \

Binary file not shown.

After

Width:  |  Height:  |  Size: 999 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

View File

@ -0,0 +1,11 @@
[Desktop Entry]
Encoding=UTF-8
Name=File Manager
Exec=/usr/bin/pcmanfm
Icon=pcmanfm.png
Terminal=false
Type=Application
Categories=Utility;
SingleInstance=true
StartupNotify=true

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -6,7 +6,24 @@ MAINTAINER = "Chris Lord <chris@openedhand.com>"
DEPENDS = "gtk+"
SRC_URI = "${SOURCEFORGE_MIRROR}/pcmanfm/pcmanfm-${PV}.tar.gz \
file://pcmanfm.desktop \
file://pcmanfm.png \
file://gnome-fs-directory.png \
file://gnome-fs-regular.png \
file://gnome-mime-text-plain.png \
file://emblem-symbolic-link.png \
file://no-fam-gtk2.6.patch;patch=1;pnum=1"
inherit autotools pkgconfig
do_install_append () {
install -d ${D}/${datadir}
install -d ${D}/${datadir}/applications
install -d ${D}/${datadir}/pixmaps/
install -m 0644 ${WORKDIR}/*.png ${D}/${datadir}/pixmaps
install -m 0644 ${WORKDIR}/pcmanfm.desktop ${D}/${datadir}/applications
}
FILES_${PN} += "${datadir}/applications/pcmanfm.desktop ${datadir}/pixmaps/*.png"