diff options
author | Chris Larson <clarson@kergoth.com> | 2004-01-20 20:04:44 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-01-20 20:04:44 +0000 |
commit | 5473ad07d2957783b885124f6d3cd7ca10874f1b (patch) | |
tree | 8c0dc9c8dffb6f1331f1e06d3b70e381b9dd2b5f /opensp/opensp_1.5.oe | |
parent | fd5c2dc637a999f3a93632fcf6275fe738d68d92 (diff) |
Add stage target to OpenSP, fix the openjade build, and move openjade out of nonworking.
BKrev: 400d89dcNL5_702Nw8ld7b13sxqshQ
Diffstat (limited to 'opensp/opensp_1.5.oe')
-rw-r--r-- | opensp/opensp_1.5.oe | 21 |
1 files changed, 21 insertions, 0 deletions
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 +} |