Add dpkg, modified from upstream oe.

git-svn-id: https://svn.o-hand.com/repos/poky/trunk@696 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Chris Larson 2006-09-05 07:24:58 +00:00
parent f8b1e634eb
commit 8f47d85143
5 changed files with 97 additions and 0 deletions

View File

@ -0,0 +1,12 @@
require dpkg.inc
SRC_URI += "file://noman.patch;patch=1"
inherit native
inherit autotools gettext
EXTRA_OECONF = "--without-static-progs \
--without-dselect \
--with-start-stop-daemon \
--with-zlib \
--with-bz2lib \
--without-sgml-doc"

View File

@ -0,0 +1,10 @@
DESCRIPTION = "Package maintenance system for Debian."
LICENSE = "GPL"
SECTION = "base"
DEPENDS = "ncurses zlib"
MAINTAINER = "Chris Larson <kergoth@handhelds.org>"
SRC_URI = "${DEBIAN_MIRROR}/main/d/dpkg/dpkg_${PV}.tar.gz"
S = "${WORKDIR}/dpkg-${PV}"
PARALLEL_MAKE = ""

View File

@ -0,0 +1,11 @@
require dpkg.inc
DEPENDS += "bzip2"
inherit autotools gettext
EXTRA_OECONF = "--without-static-progs \
--without-dselect \
--with-start-stop-daemon \
--with-zlib \
--with-bz2lib \
--without-sgml-doc"

View File

@ -0,0 +1,48 @@
#
# Patch managed by http://www.holgerschurig.de/patcher.html
#
--- dpkg-1.10.23/configure.in~autofoo
+++ dpkg-1.10.23/configure.in
@@ -227,21 +227,36 @@
# OpenBSD passes AC_TRY_COMPILE for va_copy even though
# it doesn't seem to exist, which is odd. We need to use
# AC_TRY_RUN.
+#
+# If crosscompiling, use AC_TRY_COMPILE. -CL
AC_TRY_RUN([
#include <stdarg.h>
main(){
va_list v1,v2;
va_copy(v1, v2);
exit(0);}
-], [AC_MSG_RESULT(yes)
-AC_DEFINE(HAVE_VA_COPY,,[Whether the va_copy macro exists])],[AC_MSG_RESULT(no)
-AC_MSG_CHECKING([for va_list assignment copy])
+], [dpkg_cv_va_copy=yes], [dpkg_cv_va_copy=no],
AC_TRY_COMPILE([
#include <stdarg.h>
+main(){
+va_list v1,v2;
+va_copy(v1, v2);
+exit(0);}
+], [dpkg_cv_va_copy=yes], [dpkg_vc_va_copy=no]))
+
+if test "$dpkg_cv_va_copy" = "yes"; then
+ AC_MSG_RESULT(yes)
+ AC_DEFINE(HAVE_VA_COPY,,[Whether the va_copy macro exists])
+else
+ AC_MSG_RESULT(no)
+ AC_MSG_CHECKING([for va_list assignment copy])
+ AC_TRY_COMPILE([
+#include <stdarg.h>
],[
va_list v1,v2;
v1 = v2;
-], AC_MSG_RESULT(yes),AC_MSG_ERROR(no))])
+], AC_MSG_RESULT(yes), AC_MSG_ERROR(no))
+fi
DPKG_C_GCC_ATTRIBUTE([,,],supported,[int x],[,,],ATTRIB,[Define if function attributes a la GCC 2.5 and higher are available.],
DPKG_C_GCC_ATTRIBUTE(noreturn,noreturn,[int x],noreturn,NORETURN,[Define if nonreturning functions a la GCC 2.5 and higher are available.])

View File

@ -0,0 +1,16 @@
---
Makefile.am | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
--- dpkg-1.13.22.orig/Makefile.am
+++ dpkg-1.13.22/Makefile.am
@@ -15,8 +15,7 @@ SUBDIRS = \
utils \
scripts \
po \
- origins \
- man
+ origins
ACLOCAL_AMFLAGS = -I m4