packages/gtk-webcore/osb-nrcit_svn.bb
authorPhilippe De Swert <philippedeswert@scarlet.be>
Sun, 7 Jan 2007 01:21:58 +0000 (01:21 +0000)
committerPhilippe De Swert <philippedeswert@scarlet.be>
Sun, 7 Jan 2007 01:21:58 +0000 (01:21 +0000)
* added nrcit svn build recipe

packages/gtk-webcore/osb-nrcit_svn.bb [new file with mode: 0644]

diff --git a/packages/gtk-webcore/osb-nrcit_svn.bb b/packages/gtk-webcore/osb-nrcit_svn.bb
new file mode 100644 (file)
index 0000000..c72714d
--- /dev/null
@@ -0,0 +1,37 @@
+DESCRIPTION = "Gtk+ WebCore - NRCit embeddable browser component"
+HOMEPAGE = "http://gtk-webcore.sourceforge.net/"
+LICENSE = "nokia"
+PRIORITY = "optional"
+SECTION = "gpe"
+
+PV = "0.5.0+svn${SRCDATE}"
+PR = "r0"
+
+DEPENDS = "curl librsvg osb-nrcore"
+
+SRC_URI = "svn://gtk-webcore.svn.sourceforge.net/svnroot/gtk-webcore/trunk;module=NRCit;proto=https \
+           file://gcc4-fno-threadsafe-statics-NRCit.patch;patch=1"
+S = "${WORKDIR}/NRCit"
+
+DEFAULT_PREFERENCE = "-1"
+
+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 -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
+}