diff options
Diffstat (limited to 'meta/packages/gtkhtml2/gtkhtml2_svn.bb')
-rw-r--r-- | meta/packages/gtkhtml2/gtkhtml2_svn.bb | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/meta/packages/gtkhtml2/gtkhtml2_svn.bb b/meta/packages/gtkhtml2/gtkhtml2_svn.bb new file mode 100644 index 0000000000..a2eb95ad6b --- /dev/null +++ b/meta/packages/gtkhtml2/gtkhtml2_svn.bb | |||
@@ -0,0 +1,28 @@ | |||
1 | SECTION = "libs" | ||
2 | DEPENDS = "gtk+ glib-2.0 libxml2" | ||
3 | DESCRIPTION = "A GTK+ HTML rendering library." | ||
4 | LICENSE = "GPL" | ||
5 | PV = "2.11.0+svn${SRCDATE}" | ||
6 | PR = "r3" | ||
7 | |||
8 | SRC_URI = "svn://svn.gnome.org/svn/${PN};module=trunk;proto=http \ | ||
9 | http://svn.o-hand.com/repos/web/trunk/patches/at-import_box-pos.patch;patch=1;pnum=0 \ | ||
10 | http://svn.o-hand.com/repos/web/trunk/patches/css-stylesheet-user.patch;patch=1;pnum=0 \ | ||
11 | http://svn.o-hand.com/repos/web/trunk/patches/css-media.patch;patch=1;pnum=0 \ | ||
12 | http://svn.o-hand.com/repos/web/trunk/patches/add-end-element-signal.patch;patch=1;pnum=0 \ | ||
13 | http://svn.o-hand.com/repos/web/trunk/patches/add-dom-functions.patch;patch=1;pnum=0 \ | ||
14 | http://svn.o-hand.com/repos/web/trunk/patches/iain-mem-leak.patch;patch=1;pnum=0" | ||
15 | |||
16 | S = "${WORKDIR}/trunk" | ||
17 | |||
18 | inherit pkgconfig autotools | ||
19 | |||
20 | EXTRA_OECONF = " --disable-accessibility" | ||
21 | |||
22 | do_stage() { | ||
23 | oe_libinstall -so -C libgtkhtml libgtkhtml-2 ${STAGING_LIBDIR} | ||
24 | install -d ${STAGING_INCDIR}/gtkhtml-2.0/libgtkhtml | ||
25 | ( 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 ) | ||
26 | install -m 0644 ${S}/libgtkhtml/*.h ${STAGING_INCDIR}/gtkhtml-2.0/libgtkhtml | ||
27 | } | ||
28 | |||