v86d_0.1.10.bb 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  1. SUMMARY = "User support binary for the uvesafb kernel module"
  2. HOMEPAGE = "http://dev.gentoo.org/~spock/projects/uvesafb/"
  3. # the copyright info is at the bottom of README, expect break
  4. LICENSE = "GPLv2"
  5. LIC_FILES_CHKSUM = "file://README;md5=94ac1971e4f2309dc322d598e7b1f7dd"
  6. DEPENDS = "virtual/kernel"
  7. RRECOMMENDS_${PN} = "kernel-module-uvesafb"
  8. PR = "r2"
  9. SRC_URI = "http://snapshot.debian.org/archive/debian/20110427T035506Z/pool/main/v/${BPN}/${BPN}_${PV}.orig.tar.gz \
  10. file://Update-x86emu-from-X.org.patch \
  11. file://ar-from-env.patch \
  12. file://Support-for-cross-compilation.patch \
  13. "
  14. SRC_URI[md5sum] = "889686ec8424468fe0d205742e77a4c2"
  15. SRC_URI[sha256sum] = "93575c82e4307d8c4c370ec6b767f5cf87e527b2378146d652a6d8e25d5bdbc5"
  16. PACKAGE_ARCH = "${MACHINE_ARCH}"
  17. COMPATIBLE_HOST = '(i.86|x86_64).*-linux'
  18. do_configure () {
  19. TARGET_ARCH="${TARGET_ARCH}" ./configure --with-x86emu
  20. }
  21. do_compile () {
  22. KDIR="${STAGING_DIR_HOST}/usr" make
  23. }
  24. do_install () {
  25. install -d ${D}${base_sbindir}
  26. install v86d ${D}${base_sbindir}/
  27. }