generic-poky/openembedded/packages/gtkhtml2/gtkhtml2_cvs.bb

29 lines
1.1 KiB
BlitzBasic
Executable File

SECTION = "libs"
DEPENDS = "gtk+ glib-2.0 libxml2"
DESCRIPTION = "A GTK+ HTML rendering library."
LICENSE = "GPL"
MAINTAINER = "Chris Lord <chris@openedhand.com>"
PV = "2.11.0cvs${CVSDATE}"
SRC_URI = "cvs://anonymous@anoncvs.gnome.org/cvs/gnome;module=gtkhtml2 \
file://at-import_box-pos.patch;patch=1;pnum=0 \
file://fix-background-none.patch;patch=1;pnum=1 \
file://css-stylesheet-user.patch;patch=1;pnum=1 \
file://css-media.patch;patch=1;pnum=1 \
file://fix-background-min-max.patch;patch=1;pnum=1 \
file://fix-recreation.patch;patch=1;pnum=1"
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
}