summaryrefslogtreecommitdiff
path: root/base-passwd
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2004-12-07 22:05:47 +0000
committerChris Larson <clarson@kergoth.com>2004-12-07 22:05:47 +0000
commita780643c4b6aa11e1a36965a69df7116477c7b4c (patch)
tree17e81e77bde19931facf9b30fa5b5981df796071 /base-passwd
parent88cce8db7ebf88ab9da2366a2ac21a5a723340b8 (diff)
Merge oe-devel@oe-devel.bkbits.net:packages.bb
into handhelds.org:/home/kergoth/code/packages.bb 2004/12/07 04:58:25-06:00 ti.com!kergoth More updates per the core rename. 2004/12/07 04:46:51-06:00 ti.com!kergoth Update soundtracker per the core rename. 2004/12/07 04:44:14-06:00 ti.com!kergoth Merge 2004/12/07 04:42:38-06:00 ti.com!kergoth Updates per the recent rename of the oe core from 'oe' to 'bitbake'. BKrev: 41b6293b91LRHSxMOt6WnrZVAdLbFw
Diffstat (limited to 'base-passwd')
-rw-r--r--base-passwd/base-passwd_3.5.7.bb0
-rw-r--r--base-passwd/base-passwd_3.5.7.oe54
2 files changed, 0 insertions, 54 deletions
diff --git a/base-passwd/base-passwd_3.5.7.bb b/base-passwd/base-passwd_3.5.7.bb
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/base-passwd/base-passwd_3.5.7.bb
diff --git a/base-passwd/base-passwd_3.5.7.oe b/base-passwd/base-passwd_3.5.7.oe
deleted file mode 100644
index c2ef323de4..0000000000
--- a/base-passwd/base-passwd_3.5.7.oe
+++ /dev/null
@@ -1,54 +0,0 @@
-DESCRIPTION = "Base system password/group files."
-SECTION = "base"
-PR="r1"
-LICENSE = "GPL"
-
-SRC_URI = "${DEBIAN_MIRROR}/main/b/base-passwd/base-passwd_${PV}.tar.gz \
- file://configure.patch;patch=1 \
- file://nobash.patch;patch=1"
-
-inherit autotools
-
-
-do_install () {
- install -d -m 755 ${D}/${sbindir}
- install -p -m 755 update-passwd ${D}/${sbindir}/
- install -d -m 755 \
- ${D}/${mandir}/man8 ${D}/${mandir}/pl/man8
- install -p -m 644 man/update-passwd.8 \
- ${D}/${mandir}/man8/
- install -p -m 644 man/update-passwd.pl.8 \
- ${D}/${mandir}/pl/man8/update-passwd.8
- gzip -9 ${D}/${mandir}/man8/* \
- ${D}/${mandir}/pl/man8/*
- install -d -m 755 ${D}/${datadir}/base-passwd
- install -p -m 644 passwd.master \
- ${D}/${datadir}/base-passwd/
- install -p -m 644 group.master \
- ${D}/${datadir}/base-passwd/
-
- install -d -m 755 ${D}/${docdir}/${P}
- install -p -m 644 debian/changelog ${D}/${docdir}/${P}/
- gzip -9 ${D}/${docdir}/${P}/*
- install -p -m 644 README ${D}/${docdir}/${P}/
- install -p -m 644 debian/copyright ${D}/${docdir}/${P}/
-}
-
-
-do_install_append_ramses() {
- echo "0:Jn6tcg/qjqvUE:0:0:root:/root:/bin/sh" >>${D}/${datadir}/base-passwd/passwd.master
-}
-
-
-pkg_postinst () {
- set -e
-
- if [ ! -e $D/${sysconfdir}/passwd ] ; then
- cp $D/${datadir}/base-passwd/passwd.master $D/${sysconfdir}/passwd
- fi
-
- if [ ! -e $D/${sysconfdir}/group ] ; then
- cp $D/${datadir}/base-passwd/group.master $D/${sysconfdir}/group
- fi
- exit 0
-}