diff options
author | Chris Larson <clarson@kergoth.com> | 2004-05-29 17:11:04 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-05-29 17:11:04 +0000 |
commit | 087629f4afb009d0eceec99db1e2ae45c1cf507e (patch) | |
tree | b33e81f2007fd813d64b11c6b513e6ebdc493e7b /ipkg | |
parent | 57805d1d4e115d1901fa432d0dcb49807a38233b (diff) |
Cleanup pass - remove remnant virtual/libc items from DEPENDS.
BKrev: 40b8c428TTv4Isw4YZOO0-X8vxwV2g
Diffstat (limited to 'ipkg')
-rw-r--r-- | ipkg/ipkg_0.99.121.oe | 1 | ||||
-rw-r--r-- | ipkg/ipkg_0.99.124.oe | 44 |
2 files changed, 44 insertions, 1 deletions
diff --git a/ipkg/ipkg_0.99.121.oe b/ipkg/ipkg_0.99.121.oe index 335dc4e20d..f6204d18d8 100644 --- a/ipkg/ipkg_0.99.121.oe +++ b/ipkg/ipkg_0.99.121.oe @@ -2,7 +2,6 @@ DESCRIPTION = "Itsy Package Manager" DESCRIPTION_libipkg = "Itsy Package Manager Library" LICENSE = "GPL" PROVIDES = "virtual/ipkg libipkg" -DEPENDS = "virtual/libc" PR = "r1" PACKAGES =+ "libipkg-dev libipkg " diff --git a/ipkg/ipkg_0.99.124.oe b/ipkg/ipkg_0.99.124.oe index e69de29bb2..f6204d18d8 100644 --- a/ipkg/ipkg_0.99.124.oe +++ b/ipkg/ipkg_0.99.124.oe @@ -0,0 +1,44 @@ +DESCRIPTION = "Itsy Package Manager" +DESCRIPTION_libipkg = "Itsy Package Manager Library" +LICENSE = "GPL" +PROVIDES = "virtual/ipkg libipkg" +PR = "r1" + +PACKAGES =+ "libipkg-dev libipkg " +FILES_libipkg-dev = "${libdir}/*.a ${libdir}/*.la ${libdir}/*.so" +FILES_libipkg = "${libdir}" +AUTO_LIBNAME_PKGS = "libipkg" + +SRC_URI = "cvs://anoncvs:anoncvs@cvs.handhelds.org/cvs;module=familiar/dist/ipkg;tag=${@'V' + oe.data.getVar('PV',d,1).replace('.', '-')} \ + file://varargs.patch;patch=1" +S = "${WORKDIR}/ipkg/C" + +inherit autotools + +pkg_postinst_ipkg () { +#!/bin/sh +if [ "x$D" != "x" ]; then + install -d ${IMAGE_ROOTFS}/${sysconfdir}/rcS.d + # this needs to happen after S35mountall so that /tmp is available + echo -e "#!/bin/sh\nipkg-cl configure\nrm -f \$0" > ${IMAGE_ROOTFS}/${sysconfdir}/rcS.d/S36configure + chmod 755 ${IMAGE_ROOTFS}/${sysconfdir}/rcS.d/S36configure +fi + +update-alternatives --install /usr/bin/ipkg ipkg /usr/bin/ipkg-cl 100 +} + +pkg_postrm_ipkg () { +#!/bin/sh +update-alternatives --remove ipkg /usr/bin/ipkg-cl +} + +do_stage() { + oe_libinstall -so libipkg ${STAGING_LIBDIR} + install -d ${STAGING_INCDIR}/replace/ + install -m 0644 replace/replace.h ${STAGING_INCDIR}/replace/ + install -d ${STAGING_INCDIR}/libipkg/ + for f in *.h + do + install -m 0644 $f ${STAGING_INCDIR}/libipkg/ + done +} |