DESCRIPTION = "TinyLogin is a suite of tiny UNIX \ utilities for handling logins, user authentication, \ changing passwords, and otherwise maintaining users \ and groups on an embedded system." HOMEPAGE = "http://tinylogin.busybox.net/" SECTION = "base" LICENSE = "GPLv2+|NewBSD" PR = "r7" #SRC_URI = "http://tinylogin.busybox.net/downloads/tinylogin-${PV}.tar.bz2 \ SRC_URI = "http://limpens.net/trac/at91-kit-trac/export/4/trunk/sources/tinylogin-${PV}.tar.bz2 \ file://cvs-20040608.patch \ file://add-system.patch \ file://adduser-empty_pwd.patch \ file://remove-index.patch" EXTRA_OEMAKE = "" do_compile () { oe_runmake 'CC=${CC}' 'CROSS=${HOST_PREFIX}' } do_install () { install -d ${D}${base_bindir} install -m 4755 tinylogin ${D}${base_bindir}/tinylogin install -d ${D}${sysconfdir} install -m 0644 tinylogin.links ${D}${sysconfdir} } pkg_postinst_${PN} () { # If we are not making an image we create links for the utilities that doesn't exist # so the update-alternatives script will get the utilities it needs # (update-alternatives have no problem replacing links later anyway) if test "x$D" = "x"; then while read link; do if test ! -h "$link"; then case "$link" in /*/*/*) to="../../bin/tinylogin";; /bin/*) to="tinylogin";; /*/*) to="../bin/tinylogin";; esac; ln -s $to $link; fi; done