jpeg: revert deletion of do_stage() applied in 7170376c9b53df050cf818ffca4ea499b8aea5b9
authorRene Wagner <rw@handhelds.org>
Thu, 5 Jan 2006 19:51:50 +0000 (19:51 +0000)
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>
Thu, 5 Jan 2006 19:51:50 +0000 (19:51 +0000)
packages/jpeg/jpeg-native_6b.bb
packages/jpeg/jpeg_6b.bb

index 420cc9f..b617f1b 100644 (file)
@@ -5,5 +5,10 @@ FILESDIR = "${@os.path.dirname(bb.data.getVar('FILE',d,1))}/jpeg-${PV}"
 DEPENDS = ""
 
 do_stage() {
-       autotools_stage_all
+        install -m 644 jconfig.h ${STAGING_INCDIR}/jconfig.h
+        install -m 644 jpeglib.h ${STAGING_INCDIR}/jpeglib.h
+        install -m 644 jmorecfg.h ${STAGING_INCDIR}/jmorecfg.h
+        install -m 644 jerror.h ${STAGING_INCDIR}/jerror.h
+        install -m 644 jpegint.h ${STAGING_INCDIR}/jpegint.h
+        oe_libinstall -so libjpeg ${STAGING_LIBDIR}
 }
index 277cdfa..23e3ed8 100644 (file)
@@ -1,4 +1,4 @@
-PR = "r1"
+PR = "r2"
 SECTION = "libs"
 PRIORITY = "required"
 MAINTAINER = "Chris Larson <kergoth@handhelds.org>"
@@ -10,8 +10,7 @@ LICENSE ="jpeg"
 SRC_URI = "http://www.ijg.org/files/jpegsrc.v${PV}.tar.gz \
           file://debian.patch;patch=1 \
           file://ldflags.patch;patch=1 \
-          file://paths.patch;patch=1 \
-          file://install.patch;patch=1"
+          file://paths.patch;patch=1"
 S = "${WORKDIR}/jpeg-${PV}"
 
 inherit autotools 
@@ -22,5 +21,16 @@ EXTRA_OEMAKE='"LIBTOOL=${STAGING_BINDIR}/${HOST_SYS}-libtool"'
 CFLAGS_append = " -D_REENTRANT"
 
 do_stage() {
-       autotools_stage_all
+       install -m 644 jconfig.h ${STAGING_INCDIR}/jconfig.h
+       install -m 644 jpeglib.h ${STAGING_INCDIR}/jpeglib.h
+       install -m 644 jmorecfg.h ${STAGING_INCDIR}/jmorecfg.h
+       install -m 644 jerror.h ${STAGING_INCDIR}/jerror.h
+       install -m 644 jpegint.h ${STAGING_INCDIR}/jpegint.h
+       oe_libinstall -so libjpeg ${STAGING_LIBDIR}
+}
+
+do_install() {
+       install -d ${D}${bindir} ${D}${includedir} \
+                  ${D}${mandir}/man1 ${D}${libdir}
+       oe_runmake 'DESTDIR=${D}' install
 }