diff options
author | Chris Larson <clarson@kergoth.com> | 2003-11-17 23:13:29 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2003-11-17 23:13:29 +0000 |
commit | 8faf8024fd8f874a89bb324408a47805ac63ded0 (patch) | |
tree | 6576385eb0f6acafc9acbc999c9f7583804f7d64 | |
parent | aad8af5665e5c028d66e7cc89a3673b76d463540 (diff) |
libogg_1.0.0.oe:
Install the libogg headers into the correct place in staging.
openobex_1.0.0.oe:
Install the openobex m4 macros in the stage target.
BKrev: 3fb95619Np1CTozA2YuIPW4ZMUOmDg
-rw-r--r-- | libogg/libogg_1.0.0.oe | 4 | ||||
-rw-r--r-- | libtool/libtool_1.5.oe | 1 | ||||
-rw-r--r-- | openobex/openobex_1.0.0.oe | 15 |
3 files changed, 17 insertions, 3 deletions
diff --git a/libogg/libogg_1.0.0.oe b/libogg/libogg_1.0.0.oe index d542599c01..420acacc54 100644 --- a/libogg/libogg_1.0.0.oe +++ b/libogg/libogg_1.0.0.oe @@ -19,8 +19,8 @@ do_stage () { ln -sf libogg.so.0.4.0 ${STAGING_LIBDIR}/libogg.so.0 ln -sf libogg.so.0.4.0 ${STAGING_LIBDIR}/libogg.so - install -d ${STAGING_LIBDIR}/ogg - (cd include/ogg; cp config_types.h ogg.h os_types.h ${STAGING_LIBDIR}/ogg/) + install -d ${STAGING_DIR}/target/include/ogg + (cd include/ogg; cp config_types.h ogg.h os_types.h ${STAGING_DIR}/target/include/ogg/) install -d ${STAGING_DIR}/share/aclocal install -m 0644 ogg.m4 ${STAGING_DIR}/share/aclocal/ogg.m4 diff --git a/libtool/libtool_1.5.oe b/libtool/libtool_1.5.oe index e47a1ff771..e80305c983 100644 --- a/libtool/libtool_1.5.oe +++ b/libtool/libtool_1.5.oe @@ -12,7 +12,6 @@ S = "${WORKDIR}/${P}" inherit autotools -#EXTRA_OECONF = --disable-ltdl-install do_configure_prepend () { ./bootstrap } diff --git a/openobex/openobex_1.0.0.oe b/openobex/openobex_1.0.0.oe index e69de29bb2..b0d821a7af 100644 --- a/openobex/openobex_1.0.0.oe +++ b/openobex/openobex_1.0.0.oe @@ -0,0 +1,15 @@ +DEPENDS = virtual/libc +RDEPENDS = libc6 + +SRC_URI = ${SOURCEFORGE_MIRROR}/openobex/${P}.tar.gz +S = ${WORKDIR}/${P} + +inherit autotools libtool + +do_stage () { + install -m 0755 src/.libs/libopenobex* ${STAGING_LIBDIR}/ + install -d ${STAGING_DIR}/target/include/openobex + install -m 0644 src/obex_const.h src/obex.h ${STAGING_DIR}/target/include/openobex/ + install -m 0755 openobex-config ${STAGING_BINDIR}/ + install -m 0644 m4macros/openobex.m4 ${STAGING_DIR}/share/aclocal/ +} |