Put the directfb pkgconfig in the correct place so things can find it, and minor...
authorChris Larson <clarson@kergoth.com>
Tue, 14 Oct 2003 16:03:17 +0000 (16:03 +0000)
committerChris Larson <clarson@kergoth.com>
Tue, 14 Oct 2003 16:03:17 +0000 (16:03 +0000)
BKrev: 3f8c1e45jO-2MJnbcXjsHjR1Ef-r4Q

directfb/directfb-0.9.19.oe
libtool/libtool-cross-1.5.oe

index bebb568..cda0885 100644 (file)
@@ -22,7 +22,8 @@ do_stage() {
                              'DESTDIR=${STAGING_DIR}' \
                              'INTERNALINCLUDEDIR=/target/include/directfb-internal' \
                              install-internalincludeHEADERS install-includeHEADERS
-       cp -f directfb.pc ${STAGING_DIR}/share/
+       install -d ${STAGING_DIR}/share/pkgconfig
+       install -m 0644 directfb.pc ${STAGING_DIR}/share/pkgconfig
 }
 
 do_install() {
index e69de29..748ec7c 100644 (file)
@@ -0,0 +1,31 @@
+include libtool-${PV}.oe
+#inherit cross
+SRC_URI_append = ' file://${FILESDIR}/libdir-la.patch;patch=1 \
+                  file://${FILESDIR}/sedvar.patch;patch=1 \
+                  file://${FILESDIR}/tag.patch;patch=1 \
+                  file://${FILESDIR}/libtoolize-staging.patch;patch=1 \
+                  file://${FILESDIR}/prefix.patch;patch=1 \
+                  file://${FILESDIR}/chmod.patch;patch=1'
+S = ${WORKDIR}/libtool-${PV}
+FILESDIR = ${TOPDIR}/libtool/libtool-${PV}
+
+prefix=${CROSS_DIR}
+exec_prefix=${prefix}
+
+EXTRA_OECONF_append = " --program-prefix=${TARGET_SYS}-"
+
+do_stage () {
+       oe_runmake install
+       install -d ${STAGING_DIR}/share/{libtool,aclocal}
+       install -m 0755 ${CROSS}libtool ${STAGING_BINDIR}/${CROSS}libtool
+       install -m 0755 libtoolize ${STAGING_BINDIR}/${CROSS}libtoolize
+       install -c config.guess ${STAGING_DIR}/share/libtool/${CROSS}config.guess
+       install -c config.sub ${STAGING_DIR}/share/libtool/${CROSS}config.sub
+       install -c -m 0644 ltmain.sh ${STAGING_DIR}/share/libtool/
+       install -c -m 0644 libtool.m4 ${STAGING_DIR}/share/aclocal/
+       install -c -m 0644 ltdl.m4 ${STAGING_DIR}/share/aclocal/
+}
+
+do_install () {
+       true
+}