67 lines
2.5 KiB
BlitzBasic
67 lines
2.5 KiB
BlitzBasic
|
SUMMARY = "Tools to change and administer password and group data"
|
||
|
DESCRIPTION = "Tools to change and administer password and group data"
|
||
|
HOMEPAGE = "http://pkg-shadow.alioth.debian.org"
|
||
|
BUGTRACKER = "https://alioth.debian.org/tracker/?group_id=30580"
|
||
|
SECTION = "base utils"
|
||
|
LICENSE = "BSD | Artistic"
|
||
|
LIC_FILES_CHKSUM = "file://COPYING;md5=08c553a87d4e51bbed50b20e0adcaede \
|
||
|
file://src/passwd.c;firstline=8;endline=30;md5=2899a045e90511d0e043b85a7db7e2fe"
|
||
|
|
||
|
PR = "r2"
|
||
|
|
||
|
SRC_URI = "http://pkg-shadow.alioth.debian.org/releases/${BPN}-${PV}.tar.bz2 \
|
||
|
file://shadow.automake-1.11.patch \
|
||
|
file://shadow-4.1.3-dots-in-usernames.patch \
|
||
|
file://shadow-4.1.4.2-env-reset-keep-locale.patch \
|
||
|
file://add_root_cmd_options.patch \
|
||
|
file://useradd.patch"
|
||
|
|
||
|
SRC_URI[md5sum] = "b8608d8294ac88974f27b20f991c0e79"
|
||
|
SRC_URI[sha256sum] = "633f5bb4ea0c88c55f3642c97f9d25cbef74f82e0b4cf8d54e7ad6f9f9caa778"
|
||
|
|
||
|
inherit autotools gettext native
|
||
|
|
||
|
EXTRA_OECONF += "--without-audit \
|
||
|
--without-libcrack \
|
||
|
--without-libpam \
|
||
|
--without-selinux"
|
||
|
|
||
|
do_install_append() {
|
||
|
# Enable CREATE_HOME by default.
|
||
|
sed -i 's/#CREATE_HOME/CREATE_HOME/g' ${D}${sysconfdir}/login.defs
|
||
|
|
||
|
# As we are on an embedded system, ensure the users mailbox is in
|
||
|
# ~/ not /var/spool/mail by default, as who knows where or how big
|
||
|
# /var is. The system MDA will set this later anyway.
|
||
|
sed -i 's/MAIL_DIR/#MAIL_DIR/g' ${D}${sysconfdir}/login.defs
|
||
|
sed -i 's/#MAIL_FILE/MAIL_FILE/g' ${D}${sysconfdir}/login.defs
|
||
|
|
||
|
# Disable checking emails.
|
||
|
sed -i 's/MAIL_CHECK_ENAB/#MAIL_CHECK_ENAB/g' ${D}${sysconfdir}/login.defs
|
||
|
|
||
|
# Now we don't have a mail system. Disable mail creation for now.
|
||
|
sed -i 's:/bin/bash:/bin/sh:g' ${D}${sysconfdir}/default/useradd
|
||
|
sed -i '/^CREATE_MAIL_SPOOL/ s:^:#:' ${D}${sysconfdir}/default/useradd
|
||
|
|
||
|
install -d ${D}${sbindir} ${D}${base_sbindir} ${D}${base_bindir}
|
||
|
for i in passwd chfn newgrp chsh ; do
|
||
|
mv ${D}${bindir}/$i ${D}${bindir}/$i.${PN}
|
||
|
done
|
||
|
|
||
|
mv ${D}${sbindir}/chpasswd ${D}${sbindir}/chpasswd.${PN}
|
||
|
}
|
||
|
|
||
|
pkg_postinst_${PN} () {
|
||
|
update-alternatives --install ${bindir}/passwd passwd passwd.${PN} 200
|
||
|
update-alternatives --install ${sbindir}/chpasswd chpasswd chpasswd.${PN} 200
|
||
|
update-alternatives --install ${bindir}/chfn chfn chfn.${PN} 200
|
||
|
update-alternatives --install ${bindir}/newgrp newgrp newgrp.${PN} 200
|
||
|
update-alternatives --install ${bindir}/chsh chsh chsh.${PN} 200
|
||
|
}
|
||
|
|
||
|
pkg_prerm_${PN} () {
|
||
|
for i in passwd chpasswd chfn newgrp chsh ; do
|
||
|
update-alternatives --remove $i $i.${PN}
|
||
|
done
|
||
|
}
|