From cb82144c79b159a634275390a7ac55f639192d0c Mon Sep 17 00:00:00 2001 From: "nslu2-linux.adm@bkbits.net" Date: Wed, 23 Feb 2005 21:54:39 +0000 Subject: Merge bk://oe-devel.bkbits.net/openembedded into bkbits.net:/repos/n/nslu2-linux/openembedded 2005/02/23 15:31:35-06:00 ti.com!kergoth Apply fix to lame from Michael Kropfberg that ensures that the library packages get emitted. 2005/02/23 14:04:22-06:00 ti.com!kergoth Use the recent glibc snaps by default for the sh3 and sh4 target architectures. 2005/02/23 13:49:33-06:00 ti.com!kergoth Fix the unpleasant target path mangling in do_install in the uclibc builds to happen only when necessary (thereby unborking the uclibc build with default paths). 2005/02/23 13:30:16-06:00 ti.com!kergoth modutils: apply patch from Hermann Lacheiner to fix another missing /. 2005/02/23 12:36:57-06:00 ti.com!kergoth Add sh3 uclibc defconfigs for all the uclibc versions. 2005/02/23 12:27:56-06:00 ti.com!kergoth Merge oe-devel@oe-devel.bkbits.net:openembedded into odin.sc.ti.com:/home/kergoth/code/projects/oe/openembedded 2005/02/23 12:27:44-06:00 ti.com!kergoth module-init-tools: fix another bug caused by that rampant sed'ing. 2005/02/23 18:57:22+01:00 uni-frankfurt.de!mickeyl Merge bk://oe-devel@oe-devel.bkbits.net/openembedded into r2d2.tm.informatik.uni-frankfurt.de:/local/pkg/oe/packages 2005/02/23 18:57:02+01:00 uni-frankfurt.de!mickeyl introduce IPKGBUILDCMD to enable overwriting the ipkg-build command line arguments. tweak sharprom-compatible.conf to override IPKGBUILDCMD. thanksfully, ipkg-build still supports the outdated format 2005/02/23 10:32:16-06:00 ti.com!kergoth Merge oe-devel@oe-devel.bkbits.net:openembedded into odin.sc.ti.com:/home/kergoth/code/projects/oe/openembedded 2005/02/23 10:31:54-06:00 ti.com!kergoth Bump PR in the packages that were broken by the hokey sed from yesterday. 2005/02/23 17:14:56+01:00 uni-frankfurt.de!mickeyl misc opie files: use palmtopdir variable instead of hardcoding /opt/QtPalmtop/ 2005/02/23 17:05:25+01:00 uni-frankfurt.de!mickeyl Merge bk://oe-devel@oe-devel.bkbits.net/openembedded into gandalf.tm.informatik.uni-frankfurt.de:/local/pkg/oe/packages 2005/02/23 09:56:05-06:00 ti.com!kergoth Fixes per the overenthusiastic sed / removal I did yesterday. Thanks to Hermann Lacheiner and Holger Schurig for spotting a couple of them, this should fix the others. 2005/02/23 16:48:08+01:00 uni-frankfurt.de!mickeyl make the prism3-support package work BKrev: 421cfb9f-K6bfhnkhAVPJV_fqpHn7Q --- packages/apt/apt-package.inc | 4 ++-- packages/apt/apt_0.5.28.1.bb | 13 +++++++++++++ packages/apt/apt_0.6.25.bb | 11 +++++++++++ 3 files changed, 26 insertions(+), 2 deletions(-) (limited to 'packages/apt') diff --git a/packages/apt/apt-package.inc b/packages/apt/apt-package.inc index 03d64155c1..8c54741547 100644 --- a/packages/apt/apt-package.inc +++ b/packages/apt/apt-package.inc @@ -47,9 +47,9 @@ def get_commands_apt_doc(d, bb, manpages): dest = get_files_apt_doc(d, bb, m) dir = os.path.dirname(dest) if not dir in __dir_cache__: - s.append("install -d ${D}%s" % dir) + s.append("install -d ${D}/%s" % dir) __dir_cache__.append(dir) - s.append("install -m 0644 %s ${D}%s" % (m, dest)) + s.append("install -m 0644 %s ${D}/%s" % (m, dest)) return "\n".join(s) PACKAGES += "${PN}-utils ${PN}-utils-doc" diff --git a/packages/apt/apt_0.5.28.1.bb b/packages/apt/apt_0.5.28.1.bb index e69de29bb2..99f5ef63c7 100644 --- a/packages/apt/apt_0.5.28.1.bb +++ b/packages/apt/apt_0.5.28.1.bb @@ -0,0 +1,13 @@ +include apt.inc +PR = "r1" + +SRC_URI += "file://autofoo.patch;patch=1" + +inherit autotools gettext + +include apt-package.inc + +apt-manpages += "doc/vendors.list.5 \ + doc/fr/vendors.list.fr.5 \ + doc/es/vendors.list.es.5 \ + doc/de/apt.de.8" diff --git a/packages/apt/apt_0.6.25.bb b/packages/apt/apt_0.6.25.bb index e69de29bb2..a6f9f9e223 100644 --- a/packages/apt/apt_0.6.25.bb +++ b/packages/apt/apt_0.6.25.bb @@ -0,0 +1,11 @@ +include apt.inc + +PR = "r2" +SRC_URI += "file://autofoo.patch;patch=1" + +inherit autotools gettext + +include apt-package.inc + +FILES_${PN} += "${bindir}/apt-key" +apt-manpages += "doc/apt-key.8" -- cgit 1.2.3-korg