diff options
author | Chris Larson <clarson@kergoth.com> | 2004-01-23 17:54:49 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-01-23 17:54:49 +0000 |
commit | b2c59922b002eb88ceb2bdf2b02505a73603b564 (patch) | |
tree | 6046bd08b1e8349b215912f17e62bd15744510dc /libogg | |
parent | 96f7a2293a8fbc852fcb68fefce2a2ff65184460 (diff) |
Dont install some m4s..
BKrev: 40115fe9Sqmws9-T5ZIHTb2fPc32ng
Diffstat (limited to 'libogg')
-rw-r--r-- | libogg/libogg_1.0.oe | 3 | ||||
-rw-r--r-- | libogg/libogg_1.1.oe | 18 |
2 files changed, 18 insertions, 3 deletions
diff --git a/libogg/libogg_1.0.oe b/libogg/libogg_1.0.oe index 08b276df84..71b032a200 100644 --- a/libogg/libogg_1.0.oe +++ b/libogg/libogg_1.0.oe @@ -15,7 +15,4 @@ do_stage () { 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/libogg/libogg_1.1.oe b/libogg/libogg_1.1.oe index e69de29bb2..e82c1f5431 100644 --- a/libogg/libogg_1.1.oe +++ b/libogg/libogg_1.1.oe @@ -0,0 +1,18 @@ +SECTION=libs +RDEPENDS=libc6 +DEPENDS=virtual/libc + +SRC_URI = http://www.vorbis.com/files/1.0.1/unix/libogg-${PV}.tar.gz + +inherit autotools libtool + +do_stage () { + install -m 0644 src/.libs/libogg.a ${STAGING_LIBDIR}/ + install -m 0644 src/.libs/libogg.lai ${STAGING_LIBDIR}/libogg.la + install -m 0644 src/.libs/libogg.so.0.5.0 ${STAGING_LIBDIR}/ + ln -sf libogg.so.0.5.0 ${STAGING_LIBDIR}/libogg.so.0 + ln -sf libogg.so.0.5.0 ${STAGING_LIBDIR}/libogg.so + + install -d ${STAGING_DIR}/target/include/ogg + (cd include/ogg; cp config_types.h ogg.h os_types.h ${STAGING_DIR}/target/include/ogg/) +} |