diff options
author | Marcin Juszkiewicz <hrw@openembedded.org> | 2004-10-06 16:19:53 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openembedded.org> | 2004-10-06 16:19:53 +0000 |
commit | 58e8963674a28747dade497d8b63a1cbbc9c8338 (patch) | |
tree | d50fac16513ad69afefd812fa3b77130ba045c76 | |
parent | fd2bd390515ccad664e3891666a29097ccbaae0d (diff) |
metakit, beecrypt: make it build with uclibc
BKrev: 41641b29RV5NQ2ibJGv1pVN0yLmKiQ
-rw-r--r-- | portabase/beecrypt/config.m4 | 0 | ||||
-rw-r--r-- | portabase/beecrypt/gas.patch | 0 | ||||
-rw-r--r-- | portabase/beecrypt/m4.diff | 0 | ||||
-rw-r--r-- | portabase/beecrypt_3.1.0.oe | 35 | ||||
-rw-r--r-- | portabase/metakit_2.4.9.3.oe | 64 |
5 files changed, 99 insertions, 0 deletions
diff --git a/portabase/beecrypt/config.m4 b/portabase/beecrypt/config.m4 new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/portabase/beecrypt/config.m4 diff --git a/portabase/beecrypt/gas.patch b/portabase/beecrypt/gas.patch new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/portabase/beecrypt/gas.patch diff --git a/portabase/beecrypt/m4.diff b/portabase/beecrypt/m4.diff new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/portabase/beecrypt/m4.diff diff --git a/portabase/beecrypt_3.1.0.oe b/portabase/beecrypt_3.1.0.oe index e69de29bb2..e3d27c9771 100644 --- a/portabase/beecrypt_3.1.0.oe +++ b/portabase/beecrypt_3.1.0.oe @@ -0,0 +1,35 @@ +DESCRIPTION = "BeeCrypt is an ongoing project to provide a strong and fast cryptography \ +toolkit. Includes entropy sources, random generators, block ciphers, hash functions, \ +message authentication codes, multiprecision integer routines, and public key primitives." + +HOMEPAGE = "http://sourceforge.net/projects/beecrypt/" +LICENSE = "LGPL" +SRC_URI = "${SOURCEFORGE_MIRROR}/beecrypt/beecrypt-${PV}.tar.gz \ +file://config.m4 \ +file://gas.patch;patch=1 \ +file://m4.diff;patch=1" +PR = "r1" + +inherit autotools + +do_configure_prepend() { + +cp ${WORKDIR}/config.m4 ${S}/gas/ + +} + + +do_stage() { + +# oe_libinstall -a -C .libs libbeecrypt ${STAGING_LIBDIR} + cp .libs/libbeecrypt.a ${STAGING_LIBDIR}/ + install -d ${STAGING_INCDIR}/ + install -d ${STAGING_INCDIR}/beecrypt + for X in beecrypt.h beecrypt.api.h memchunk.h mpnumber.h beecrypt.gnu.h mp.h mpopt.h blockmode.h endianness.h + do + install -m 0644 ${X} ${STAGING_INCDIR}/beecrypt/${X} + done + +} + + diff --git a/portabase/metakit_2.4.9.3.oe b/portabase/metakit_2.4.9.3.oe index e69de29bb2..d1615e4768 100644 --- a/portabase/metakit_2.4.9.3.oe +++ b/portabase/metakit_2.4.9.3.oe @@ -0,0 +1,64 @@ +DESCRIPTION = "Metakit is an efficient embedded database library with a small \ +footprint. It fills the gap between flat-file, relational, object-oriented, and \ +tree-structured databases, supporting relational joins, serialization, nested structures,\ +and instant schema evolution." + +HOMEPAGE = "http://www.equi4.com/metakit.html" +SRC_URI = "http://www.equi4.com/pub/mk/metakit-${PV}.tar.gz \ + file://metakit-2.4.9.3.patch;patch=1" +PR = "r1" + +do_configure_prepend() { + + cp ${STAGING_DATADIR}/libtool/* ${S}/unix/scripts/ + +} +do_configure () { + + cd builds + ../unix/configure \ + --build=${BUILD_SYS} \ + --host=${HOST_SYS} \ + --target=${TARGET_SYS} \ + --prefix=${prefix} \ + --exec_prefix=${exec_prefix} \ + --bindir=${bindir} \ + --sbindir=${sbindir} \ + --libexecdir=${libexecdir} \ + --datadir=${datadir} \ + --sysconfdir=${sysconfdir} \ + --sharedstatedir=${sharedstatedir} \ + --localstatedir=${localstatedir} \ + --libdir=${libdir} \ + --includedir=${includedir} \ + --oldincludedir=${oldincludedir} \ + --infodir=${infodir} \ + --mandir=${mandir} \ + ${EXTRA_OECONF} \ + $@; + +} + + +do_stage() { +# oe_libinstall -a -C builds/.libs libmk4 ${STAGING_LIBDIR} + cp builds/.libs/libmk4.a ${STAGING_LIBDIR} + install -d ${STAGING_INCDIR}/ + for X in mk4.h mk4.inl + do + install -m 0644 include/${X} ${STAGING_INCDIR}/${X} + done + +} + + + +do_compile () { + cd builds + oe_runmake +} + +do_install() { + + : +} |