diff options
author | Chris Larson <clarson@kergoth.com> | 2004-12-07 22:05:47 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-12-07 22:05:47 +0000 |
commit | a780643c4b6aa11e1a36965a69df7116477c7b4c (patch) | |
tree | 17e81e77bde19931facf9b30fa5b5981df796071 /libffi/libffi_2.0+gcc3.4.1.oe | |
parent | 88cce8db7ebf88ab9da2366a2ac21a5a723340b8 (diff) |
Merge oe-devel@oe-devel.bkbits.net:packages.bb
into handhelds.org:/home/kergoth/code/packages.bb
2004/12/07 04:58:25-06:00 ti.com!kergoth
More updates per the core rename.
2004/12/07 04:46:51-06:00 ti.com!kergoth
Update soundtracker per the core rename.
2004/12/07 04:44:14-06:00 ti.com!kergoth
Merge
2004/12/07 04:42:38-06:00 ti.com!kergoth
Updates per the recent rename of the oe core from 'oe' to 'bitbake'.
BKrev: 41b6293b91LRHSxMOt6WnrZVAdLbFw
Diffstat (limited to 'libffi/libffi_2.0+gcc3.4.1.oe')
-rw-r--r-- | libffi/libffi_2.0+gcc3.4.1.oe | 65 |
1 files changed, 0 insertions, 65 deletions
diff --git a/libffi/libffi_2.0+gcc3.4.1.oe b/libffi/libffi_2.0+gcc3.4.1.oe deleted file mode 100644 index 2708d0f31d..0000000000 --- a/libffi/libffi_2.0+gcc3.4.1.oe +++ /dev/null @@ -1,65 +0,0 @@ -SECTION = "libs" -DESCRIPTION = "Foreign Function Interface library" -LICENSE = "libffi" -PRIORITY = "optional" -MAINTAINER = "Rene Wagner <reenoo@gmx.de>" - -inherit autotools gettext - -PACKAGES = "${PN} ${PN}-dev" - -FILES_${PN} = "${libdir}/libffi.so.*" - -FILES_${PN}-dev = "${includedir}/ffi* \ - ${libdir}/libffi.a \ - ${libdir}/libffi.la \ - ${libdir}/libffi.so" - -GCC_VER = "${@oe.data.getVar('PV',d,1).split('gcc')[1]}" - -SRC_URI = "${GNU_MIRROR}/gcc/gcc-${GCC_VER}/gcc-${GCC_VER}.tar.bz2 \ - file://soname.patch;patch=1" - -MIRRORS_prepend () { -${GNU_MIRROR}/gcc/ http://gcc.get-software.com/releases/ -${GNU_MIRROR}/gcc/ http://mirrors.rcn.net/pub/sourceware/gcc/releases/ -} - -S = "${WORKDIR}/gcc-${GCC_VER}/libffi" -B = "${S}/build.${HOST_SYS}.${TARGET_SYS}" - -EXTRA_OECONF = "--with-gnu-ld \ - --enable-shared \ - --enable-target-optspace \ - --enable-languages=c,c++,f77 \ - --enable-threads=posix \ - --enable-multilib \ - --enable-c99 \ - --enable-long-long \ - --enable-symvers=gnu \ - --program-prefix=${TARGET_PREFIX} \ - ${EXTRA_OECONF_PATHS}" - -EXTRA_OECONF_PATHS = "--with-local-prefix=${prefix}/local \ - --with-gxx-include-dir=${includedir}/c++/${PV}" - -do_configure () { - (cd ${S}/.. && gnu-configize) || die "failure running gnu-configize" - oe_runconf -} - -do_install_append() { - # follow debian and move this to $includedir - mv ${D}/${libdir}/gcc/arm-linux/3.4.1/include/libffi/ffitarget.h ${D}/${includedir}/ -} - -ffi_include = "ffi.h ffitarget.h" - -do_stage () { - oe_libinstall -so -C .libs libffi ${STAGING_LIBDIR} - - mkdir -p ${STAGING_INCDIR}/ - for i in ${ffi_include}; do - install -m 0644 include/$i ${STAGING_INCDIR}/ - done -} |