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 /libelf/libelf_0.8.3.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 'libelf/libelf_0.8.3.oe')
-rw-r--r-- | libelf/libelf_0.8.3.oe | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/libelf/libelf_0.8.3.oe b/libelf/libelf_0.8.3.oe deleted file mode 100644 index 7f36f23e31..0000000000 --- a/libelf/libelf_0.8.3.oe +++ /dev/null @@ -1,33 +0,0 @@ -SECTION = "libs" -MAINTAINER = "Chris Larson <kergoth@handhelds.org>" -DESCRIPTION = "an ELF object file access library \ -The elf library provides routines to access, and manipulate, Elf object \ -files. It is still not complete, but is required for a number of programs, \ -such as Eli (a state of the art compiler generation system), and Elk (the \ -Extension Language Kit - an implementation of the Scheme programming \ -language.)" - -SRC_URI = "http://www.stud.uni-hannover.de/~michael/software/libelf-${PV}.tar.gz" - -inherit autotools - -do_configure_prepend () { - if test ! -e acinclude.m4; then - cp aclocal.m4 acinclude.m4 - fi -} - -do_install () { - oe_runmake 'prefix=${D}${prefix}' 'exec_prefix=${D}${exec_prefix}' \ - 'libdir=${D}${libdir}' 'includedir=${D}${includedir}' \ - install -} - -do_stage () { - oe_libinstall -so -C lib libelf ${STAGING_LIBDIR}/ - install -d ${STAGING_INCDIR}/libelf - for i in libelf.h nlist.h gelf.h sys_elf.h; do - install -m 0644 lib/$i ${STAGING_INCDIR}/libelf/ - done - make includedir=${STAGING_INCDIR} install-compat -} |