summaryrefslogtreecommitdiff
path: root/gtk-webcore/osb-nrcit_0.5.0.oe
diff options
context:
space:
mode:
authorRene Wagner <rw@handhelds.org>2004-10-29 22:36:40 +0000
committerRene Wagner <rw@handhelds.org>2004-10-29 22:36:40 +0000
commit8b230ee6959e7d39dda0b999626a24095804c19b (patch)
tree5016a062730be2e1b88fa1b9b19af1203d77b541 /gtk-webcore/osb-nrcit_0.5.0.oe
parentc4e8411032b99f7f1366db1d50ae352d456140ec (diff)
gtk-webcore: work around libtool breakage causing stuff to be linked against libstdc++. if someone has a proper fix please let me know
BKrev: 4182c5f8thL0lUFwLkUM2gLE8x9GwQ
Diffstat (limited to 'gtk-webcore/osb-nrcit_0.5.0.oe')
-rw-r--r--gtk-webcore/osb-nrcit_0.5.0.oe30
1 files changed, 30 insertions, 0 deletions
diff --git a/gtk-webcore/osb-nrcit_0.5.0.oe b/gtk-webcore/osb-nrcit_0.5.0.oe
index e69de29bb2..5045b1faa0 100644
--- a/gtk-webcore/osb-nrcit_0.5.0.oe
+++ b/gtk-webcore/osb-nrcit_0.5.0.oe
@@ -0,0 +1,30 @@
+DESCRIPTION = "Gtk+ WebCore - NRCit embeddable browser component"
+HOMEPAGE = "http://gtk-webcore.sourceforge.net/"
+PRIORITY = "optional"
+MAINTAINER = "Rene Wagner <rw@handhelds.org>"
+DEPENDS = "curl osb-nrcore"
+SECTION = "gpe"
+PR = "r1"
+
+SRC_URI = "${SOURCEFORGE_MIRROR}/gtk-webcore/osb-nrcit-${PV}.tar.gz"
+
+inherit autotools pkgconfig
+
+do_configure () {
+ autotools_do_configure
+ cd ${S}
+
+ # prevent libtool from linking libs against libstdc++, libgcc, ...
+ cat arm-linux-libtool | sed -e 's/postdeps=".*"/postdeps=""/' > arm-linux-libtool.tmp
+ mv arm-linux-libtool.tmp arm-linux-libtool
+}
+
+do_stage () {
+ oe_libinstall -so -C src libnrcit ${STAGING_LIBDIR}
+
+ autotools_stage_includes
+
+ install -d ${STAGING_INCDIR}/osb
+ install -m 0644 ${S}/src/gtk/gtk-khtml.h ${STAGING_INCDIR}/osb
+ install -m 0644 ${S}/src/osb.h ${STAGING_INCDIR}/osb
+}