From: Chris Larson Date: Tue, 20 Jan 2004 20:04:44 +0000 (+0000) Subject: Add stage target to OpenSP, fix the openjade build, and move openjade out of nonworking. X-Git-Tag: Release-2010-05/1~20282 X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5473ad07d2957783b885124f6d3cd7ca10874f1b;p=openembedded.git Add stage target to OpenSP, fix the openjade build, and move openjade out of nonworking. BKrev: 400d89dcNL5_702Nw8ld7b13sxqshQ --- diff --git a/nonworking/openjade/openjade_1.3.2.oe b/openjade/openjade-1.3.2/configure.patch similarity index 100% rename from nonworking/openjade/openjade_1.3.2.oe rename to openjade/openjade-1.3.2/configure.patch diff --git a/openjade/openjade_1.3.2.oe b/openjade/openjade_1.3.2.oe new file mode 100644 index 0000000000..e69de29bb2 diff --git a/opensp/opensp_1.5.oe b/opensp/opensp_1.5.oe index e69de29bb2..ea659bff10 100644 --- a/opensp/opensp_1.5.oe +++ b/opensp/opensp_1.5.oe @@ -0,0 +1,21 @@ +DEPENDS = virtual/libc +RDEPENDS = libc6 + +SRC_URI = ${SOURCEFORGE_MIRROR}/openjade/OpenSP-${PV}.tar.gz \ + file://${FILESDIR}/m4.patch;patch=1 \ + file://${FILESDIR}/attributevalue.patch;patch=1 +S = ${WORKDIR}/OpenSP-${PV} + +inherit autotools libtool + +do_stage () { + install -m 0755 ${S}/lib/.libs/libosp.a ${STAGING_LIBDIR}/libosp.so.a + install -m 0755 ${S}/lib/.libs/libosp.lai ${STAGING_LIBDIR}/libosp.la + install -m 0755 ${S}/lib/.libs/libosp.so.3.0.0 ${STAGING_LIBDIR}/libosp.so.3.0.0 + ln -sf libosp.so.3.0.0 ${STAGING_LIBDIR}/libosp.so.3 + ln -sf libosp.so.3.0.0 ${STAGING_LIBDIR}/libosp.so + install -d ${STAGING_INCDIR}/OpenSP + install -m 0644 ${S}/include/*.h ${STAGING_INCDIR}/OpenSP/ + install -m 0644 ${S}/include/*.cxx ${STAGING_INCDIR}/OpenSP/ + install -m 0644 ${S}/config.h ${STAGING_INCDIR}/OpenSP/config.h +}