Add libgtkhtml-2.0

git-svn-id: https://svn.o-hand.com/repos/poky@124 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Chris Lord 2005-10-06 11:42:44 +00:00
parent bab73940ce
commit 7469e31fac
1 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,22 @@
SECTION = "libs"
DEPENDS = "gtk+ glib-2.0 libxml2"
DESCRIPTION = "A GTK+ HTML rendering library."
LICENSE = "GPL"
MAINTAINER = "Chris Lord <chris@openedhand.com>"
PV = "0.0cvs${CVSDATE}"
SRC_URI = "cvs://anonymous@anoncvs.gnome.org/cvs/gnome;module=gtkhtml2"
S = "${WORKDIR}/${PN}"
inherit pkgconfig autotools
EXTRA_OECONF = " --disable-accessibility"
do_stage() {
oe_libinstall -so -C libgtkhtml libgtkhtml-2 ${STAGING_LIBDIR}
install -d ${STAGING_INCDIR}/gtkhtml-2.0/libgtkhtml
( for i in css document dom dom/core dom/events dom/html dom/traversal dom/views graphics layout layout/html util view; do install -d ${STAGING_INCDIR}/gtkhtml-2.0/libgtkhtml/$i; install -m 0644 ${S}/libgtkhtml/$i/*.h ${STAGING_INCDIR}/gtkhtml-2.0/libgtkhtml/$i; done )
install -m 0644 ${S}/libgtkhtml/*.h ${STAGING_INCDIR}/gtkhtml-2.0/libgtkhtml
}