diff options
Diffstat (limited to 'ipkg/ipkg_0.99.121.oe')
-rw-r--r-- | ipkg/ipkg_0.99.121.oe | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/ipkg/ipkg_0.99.121.oe b/ipkg/ipkg_0.99.121.oe deleted file mode 100644 index dee970df41..0000000000 --- a/ipkg/ipkg_0.99.121.oe +++ /dev/null @@ -1,43 +0,0 @@ -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 - echo -e "#!/bin/sh\nipkg-cl configure\nrm -f \$0" > ${IMAGE_ROOTFS}/${sysconfdir}/rcS.d/S98configure - chmod 0755 ${IMAGE_ROOTFS}/${sysconfdir}/rcS.d/S98configure -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 -} |