From 709c4d66e0b107ca606941b988bad717c0b45d9b Mon Sep 17 00:00:00 2001 From: Denys Dmytriyenko Date: Tue, 17 Mar 2009 14:32:59 -0400 Subject: rename packages/ to recipes/ per earlier agreement See links below for more details: http://thread.gmane.org/gmane.comp.handhelds.openembedded/21326 http://thread.gmane.org/gmane.comp.handhelds.openembedded/21816 Signed-off-by: Denys Dmytriyenko Acked-by: Mike Westerhof Acked-by: Philip Balister Acked-by: Khem Raj Acked-by: Marcin Juszkiewicz Acked-by: Koen Kooi Acked-by: Frans Meulenbroeks --- recipes/libdes/libdes-4.01/cross-compile.patch | 35 ++++++++++++++++++++++++++ recipes/libdes/libdes_4.01.bb | 16 ++++++++++++ 2 files changed, 51 insertions(+) create mode 100644 recipes/libdes/libdes-4.01/cross-compile.patch create mode 100644 recipes/libdes/libdes_4.01.bb (limited to 'recipes/libdes') diff --git a/recipes/libdes/libdes-4.01/cross-compile.patch b/recipes/libdes/libdes-4.01/cross-compile.patch new file mode 100644 index 0000000000..23fb518246 --- /dev/null +++ b/recipes/libdes/libdes-4.01/cross-compile.patch @@ -0,0 +1,35 @@ + +# +# Patch managed by http://www.mn-logistik.de/unsupported/pxa250/patcher +# + +--- libdes/Makefile~cross-compile 1997-01-13 18:27:30.000000000 +0100 ++++ libdes/Makefile 2004-02-15 01:57:46.000000000 +0100 +@@ -42,10 +42,10 @@ + #DES_ENC=asm/dx86-sol.o # solaris format x86 + #DES_ENC=asm/dx86bsdi.o # bsdi format x86 + +-LIBDIR=/usr/local/lib +-BINDIR=/usr/local/bin +-INCDIR=/usr/local/include +-MANDIR=/usr/local/man ++LIBDIR=$(DESTDIR)/usr/lib ++BINDIR=$(DESTDIR)/usr/bin ++INCDIR=$(DESTDIR)/usr/include ++MANDIR=$(DESTDIR)/usr/man + MAN1=1 + MAN3=3 + SHELL=/bin/sh +@@ -94,10 +94,8 @@ + + $(DLIB): $(OBJS) + /bin/rm -f $(DLIB) +- ar cr $(DLIB) $(OBJS) +- -if test -s /bin/ranlib; then /bin/ranlib $(DLIB); \ +- else if test -s /usr/bin/ranlib; then /usr/bin/ranlib $(DLIB); \ +- else exit 0; fi; fi ++ $(AR) cr $(DLIB) $(OBJS) ++ $(RANLIB) $(DLIB) + + des_opts: des_opts.o libdes.a + $(CC) $(CFLAGS) -o des_opts des_opts.o libdes.a diff --git a/recipes/libdes/libdes_4.01.bb b/recipes/libdes/libdes_4.01.bb new file mode 100644 index 0000000000..4e81ff9fb6 --- /dev/null +++ b/recipes/libdes/libdes_4.01.bb @@ -0,0 +1,16 @@ +DESCRIPTION = "A DES encryption library" +SECTION = "libs" +PRIORITY = "optional" +LICENSE = "libdes" +SRC_URI = "http://www.agentpp.com/libdes-l-${PV}.tar.gz \ + file://cross-compile.patch;patch=1" +S = "${WORKDIR}/libdes" + +do_compile() { + oe_runmake libdes.a +} + +do_stage() { + oe_libinstall -a libdes ${STAGING_LIBDIR} + install -m 0644 ${S}/des.h ${STAGING_INCDIR}/ +} -- cgit v1.2.3