1
0
mirror of https://git.yoctoproject.org/poky synced 2026-06-03 13:49:49 +00:00

Rename /openembedded/ -> /meta/

git-svn-id: https://svn.o-hand.com/repos/poky/trunk@530 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Richard Purdie
2006-07-21 10:10:31 +00:00
parent 2cf0eadf9f
commit b2f192faab
1725 changed files with 6 additions and 6 deletions
@@ -0,0 +1,23 @@
#
# Patch managed by http://www.mn-logistik.de/unsupported/pxa250/patcher
#
--- base-passwd/configure.in~configure
+++ base-passwd/configure.in
@@ -1,5 +1,6 @@
dnl Initialize the autoconf process
-AC_INIT(update-passwd.c)
+AC_INIT
+AC_CONFIG_SRCDIR([update-passwd.c])
AC_CONFIG_HEADER(config.h)
AC_PREFIX_DEFAULT(/usr)
@@ -12,5 +13,6 @@
AC_CHECK_FUNCS(putgrent)
dnl Finally output everything
-AC_OUTPUT(Makefile)
+AC_CONFIG_FILES([Makefile])
+AC_OUTPUT
@@ -0,0 +1,8 @@
--- base-passwd/group.master.orig 2005-07-08 06:36:07.717990112 +0200
+++ base-passwd/group.master 2005-07-08 06:36:32.000000000 +0200
@@ -36,4 +36,5 @@
staff:*:50:
games:*:60:
users:*:100:
+mysql:*:64001:
nogroup:*:65534:
@@ -0,0 +1,13 @@
#
# Patch managed by http://www.mn-logistik.de/unsupported/pxa250/patcher
#
--- base-passwd/passwd.master~nobash
+++ base-passwd/passwd.master
@@ -1,4 +1,4 @@
-root::0:0:root:/root:/bin/bash
+root::0:0:root:/root:/bin/sh
daemon:*:1:1:daemon:/usr/sbin:/bin/sh
bin:*:2:2:bin:/bin:/bin/sh
sys:*:3:3:sys:/dev:/bin/sh
@@ -0,0 +1,8 @@
--- base-passwd/passwd.master.orig 2005-07-08 06:26:22.000000000 +0200
+++ base-passwd/passwd.master 2005-07-08 06:31:58.000000000 +0200
@@ -1,4 +1,4 @@
-root::0:0:root:/root:/bin/sh
+root::0:0:root:/home/root:/bin/sh
daemon:*:1:1:daemon:/usr/sbin:/bin/sh
bin:*:2:2:bin:/bin:/bin/sh
sys:*:3:3:sys:/dev:/bin/sh
@@ -0,0 +1,59 @@
DESCRIPTION = "Base system password/group files."
SECTION = "base"
PR = "r2"
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 \
file://root-home.patch;patch=1 \
file://mysql.patch;patch=1"
S = "${WORKDIR}/base-passwd"
inherit autotools
FILES_${PN}-doc += "${docdir}"
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}/${PN}
install -p -m 644 debian/changelog ${D}${docdir}/${PN}/
gzip -9 ${D}${docdir}/${PN}/*
install -p -m 644 README ${D}${docdir}/${PN}/
install -p -m 644 debian/copyright ${D}${docdir}/${PN}/
}
do_install_append_openmn() {
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
}