summaryrefslogtreecommitdiff
path: root/packages/gtk-webcore/osb-nrcore.inc
diff options
context:
space:
mode:
authorMarcin Juszkiewicz <hrw@openembedded.org>2006-12-13 22:51:45 +0000
committerMarcin Juszkiewicz <hrw@openembedded.org>2006-12-13 22:51:45 +0000
commitc22d566264a112b8d2897e4d1a6bb8ee3eb90993 (patch)
tree011ecaa5dd5f72ccca97e5894345388f5ac30394 /packages/gtk-webcore/osb-nrcore.inc
parent4ee624d7f8c71de2559d8417bc5bd327ac62d8f6 (diff)
osb-nrcore: unified recipes, added missing libxt dependency
Diffstat (limited to 'packages/gtk-webcore/osb-nrcore.inc')
-rw-r--r--packages/gtk-webcore/osb-nrcore.inc32
1 files changed, 32 insertions, 0 deletions
diff --git a/packages/gtk-webcore/osb-nrcore.inc b/packages/gtk-webcore/osb-nrcore.inc
new file mode 100644
index 0000000000..3b71c9685d
--- /dev/null
+++ b/packages/gtk-webcore/osb-nrcore.inc
@@ -0,0 +1,32 @@
+DESCRIPTION = "Gtk+ WebCore - rendering engine"
+HOMEPAGE = "http://gtk-webcore.sourceforge.net/"
+PRIORITY = "optional"
+SECTION = "gpe"
+LICENSE = "GPL"
+DEPENDS = "glib-2.0 gtk+ pango osb-jscore libxt"
+
+LEAD_SONAME = "libnrcore.so"
+
+inherit autotools pkgconfig
+
+do_configure () {
+ autotools_do_configure
+ cd ${S}
+
+ # prevent libtool from linking libs against libstdc++, libgcc, ...
+ cat ${TARGET_PREFIX}libtool | sed -e 's/postdeps=".*"/postdeps=""/' > ${TARGET_PREFIX}libtool.tmp
+ mv ${TARGET_PREFIX}libtool.tmp ${TARGET_PREFIX}libtool
+}
+
+do_stage () {
+ oe_libinstall -so libnrcore ${STAGING_LIBDIR}
+ oe_libinstall -so -C kwiq libnrcore_kwiq_gtk ${STAGING_LIBDIR}
+
+ autotools_stage_includes
+
+ install -d ${STAGING_INCDIR}/osb/NRCore
+ for i in ${S}/kwiq/WebCore*.h ${S}/kwiq/KWIQ*.h; do
+ install -m 0644 $i ${STAGING_INCDIR}/osb/NRCore
+ done
+}
+