diff options
author | nslu2-linux.adm@bkbits.net <nslu2-linux.adm@bkbits.net> | 2005-01-06 12:40:07 +0000 |
---|---|---|
committer | nslu2-linux.adm@bkbits.net <nslu2-linux.adm@bkbits.net> | 2005-01-06 12:40:07 +0000 |
commit | 7e7e835443a7df15afd82f5206a6530840c4e1fe (patch) | |
tree | 963db97ef781fd8fd9cbb1cdf51db2bbf9ee3e28 /packages/ipkg-utils | |
parent | 4e0b4942d5d6e22fe49b0987768690d6e4343764 (diff) |
Merge bk://oe-devel.bkbits.net/openembedded
into bkbits.net:/repos/n/nslu2-linux/openembedded
2005/01/06 12:55:40+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/01/05 23:53:47+01:00 uni-frankfurt.de!mickeyl
undo bogus
2005/01/05 20:14:50+01:00 uni-frankfurt.de!mickeyl
fix ipkg-utils date to last known working version
BKrev: 41dd31a7VyUlzoHTnBfPAD4f3wdf_Q
Diffstat (limited to 'packages/ipkg-utils')
-rw-r--r-- | packages/ipkg-utils/ipkg-utils_1.6cvs.bb | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/packages/ipkg-utils/ipkg-utils_1.6cvs.bb b/packages/ipkg-utils/ipkg-utils_1.6cvs.bb index e69de29bb2..a04e0d6809 100644 --- a/packages/ipkg-utils/ipkg-utils_1.6cvs.bb +++ b/packages/ipkg-utils/ipkg-utils_1.6cvs.bb @@ -0,0 +1,38 @@ +DESCRIPTION = "Itsy Package Manager utilities" +DEPENDS = "" +SECTION = "base" +PRIORITY = "optional" +MAINTAINER = "Chris Larson <kergoth@handhelds.org>" +LICENSE = "GPL" +CONFLICTS = "ipkg-link" +RDEPENDS = "python" +CVSDATE = "20041220" +PV_append = "${CVSDATE}" +PR = "r6" + +SRC_URI = "${HANDHELDS_CVS};module=ipkg-utils \ + file://fix-ipkg-link.patch;patch=1 \ + file://fix-ipkg-tar.patch;patch=1 " +SRC_URI_append_beagle = " file://fix-ipkg-link-beagle.patch;patch=1 " +S = "${WORKDIR}/ipkg-utils" + +INSTALL = "ipkg-build ipkg-deb-unbuild ipkg-unbuild ipkg-compare-versions ipkg-upload ipkg-make-index ipkg-link ipkg.py" + +do_compile() { + oe_runmake ipkg-compare-versions +} + +do_install() { + install -d ${D}${bindir} + for i in ${INSTALL} + do + install -m 0755 $i ${D}${bindir} + done +} + +#FIXME: ipkg-utils is not allowed to have packages or else a ipkg-native -> ipkg-utils -> ipkg-utils +# recursive dependency is triggered. This has been fixed by installing the ipkg-link script in +# a dedicated package. +#PACKAGES_prepend = "ipkg-link " +#FILES_ipkg-link = "${bindir}/ipkg-link" + |