diff options
author | Ned Ludd <solar@gentoo.org> | 2004-07-23 22:26:09 +0000 |
---|---|---|
committer | Ned Ludd <solar@gentoo.org> | 2004-07-23 22:26:09 +0000 |
commit | 155a76a54c3fc36b5887be34f4f43ca3797e81b7 (patch) | |
tree | 54f16ecba02fa341992085ee3126bcf8f174e666 /sys-apps/baselayout-lite | |
parent | stable on amd64 (Manifest recommit) (diff) | |
download | gentoo-2-155a76a54c3fc36b5887be34f4f43ca3797e81b7.tar.gz gentoo-2-155a76a54c3fc36b5887be34f4f43ca3797e81b7.tar.bz2 gentoo-2-155a76a54c3fc36b5887be34f4f43ca3797e81b7.zip |
Moved device node creation to src_install() so that we can get the device nods into a binary package which can then be installed on a host which does not have python/portage etc.
Diffstat (limited to 'sys-apps/baselayout-lite')
-rw-r--r-- | sys-apps/baselayout-lite/ChangeLog | 7 | ||||
-rw-r--r-- | sys-apps/baselayout-lite/Manifest | 2 | ||||
-rw-r--r-- | sys-apps/baselayout-lite/baselayout-lite-1.0_pre1.ebuild | 35 |
3 files changed, 33 insertions, 11 deletions
diff --git a/sys-apps/baselayout-lite/ChangeLog b/sys-apps/baselayout-lite/ChangeLog index 658cda477c62..38148abf86b7 100644 --- a/sys-apps/baselayout-lite/ChangeLog +++ b/sys-apps/baselayout-lite/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-apps/baselayout-lite # Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/baselayout-lite/ChangeLog,v 1.3 2004/06/24 21:59:22 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/baselayout-lite/ChangeLog,v 1.4 2004/07/23 22:26:09 solar Exp $ + + 23 Jul 2004; <solar@gentoo.org> baselayout-lite-1.0_pre1.ebuild: + Moved device node creation to src_install() so that we can get the device nods + into a binary package which can then be installed on a host which does not + have python/portage etc. 15 Jun 2004; <solar@gentoo.org> baselayout-lite-1.0_pre1.ebuild: remove unneeded /etc/nsswitch.conf with USE=uclibc diff --git a/sys-apps/baselayout-lite/Manifest b/sys-apps/baselayout-lite/Manifest index 1690ed288772..8c33cb12e84c 100644 --- a/sys-apps/baselayout-lite/Manifest +++ b/sys-apps/baselayout-lite/Manifest @@ -1,4 +1,4 @@ -MD5 42156be6c0d3ea8f216e6c86021b3c47 baselayout-lite-1.0_pre1.ebuild 1526 +MD5 124e7195230bd18c1805651e544a4e46 baselayout-lite-1.0_pre1.ebuild 2068 MD5 960c1f4c6e10cb63f2a9bdd836a6177b ChangeLog 569 MD5 80eb89a0e028f94140bee79817433941 metadata.xml 367 MD5 865feeaee968ccbfa160d6b31ea179e1 files/digest-baselayout-lite-1.0_pre1 75 diff --git a/sys-apps/baselayout-lite/baselayout-lite-1.0_pre1.ebuild b/sys-apps/baselayout-lite/baselayout-lite-1.0_pre1.ebuild index 40a728d83fb3..87ce20847643 100644 --- a/sys-apps/baselayout-lite/baselayout-lite-1.0_pre1.ebuild +++ b/sys-apps/baselayout-lite/baselayout-lite-1.0_pre1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/baselayout-lite/baselayout-lite-1.0_pre1.ebuild,v 1.4 2004/06/24 21:59:22 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/baselayout-lite/baselayout-lite-1.0_pre1.ebuild,v 1.5 2004/07/23 22:26:09 solar Exp $ IUSE="build bootstrap uclibc" @@ -11,25 +11,32 @@ LICENSE="GPL-2" SLOT="0" KEYWORDS="-*" +#PROVIDE="virtual/baselayout" +#DEPEND="!virtual/baselayout" + S="${WORKDIR}/${PN}" src_install() { - keepdir /bin /etc /etc/init.d /home /lib /sbin /usr /var /proc /root /mnt + keepdir /bin /etc /etc/init.d /home /lib /sbin /usr /var /root /mnt + + # (Jul 23 2004 -solar) + # This fails a when merging if /proc is already mounted. We + # could postinst it but 99% of the time we only are building + # this port as a package via emerge -B + #keepdir /proc insinto /etc doins ${S}/{fstab,group,nsswitch.conf,passwd,profile.env,protocols,shells} doins ${S}/init/inittab + use uclibc && rm -f ${D}/etc/nsswitch.conf exeinto /etc/init.d doexe ${S}/init/rc[SK] -} -pkg_postinst() { - # Doing device node creation here, since portage doesnt record - # device nodes in CONTENTS + mkdir -p ${D}/dev - cd ${ROOT}/dev + cd ${D}/dev || die einfo "Making device nodes (this could take a minute or so...)" MAKEDEV std @@ -37,13 +44,16 @@ pkg_postinst() { for i in 0 1 2 3 4; do mknod -m 0660 hda${i/0} b 3 ${i} - chown root:disk hda${i/0} + mknod -m 0660 sda${i/0} b 8 ${i} + chown root:disk hda${i/0} sda${i/0} mknod -m 0600 tty${i} c 4 ${i} chown root:tty tty${i} done MAKEDEV ttyS0 +} +pkg_postinst() { # Touching /etc/passwd and /etc/shadow after install can be fatal, as many # new users do not update them properly. thus remove all ._cfg files if # we are not busy with a build. @@ -52,5 +62,12 @@ pkg_postinst() { ewarn "Removing invalid backup copies of critical config files..." rm -f ${ROOT}/etc/._cfg????_{passwd,shadow} fi -} + # Doing device node creation here, since portage doesnt record + # device nodes in CONTENTS + + # (Jul 23 2004 -solar) + # Moved device node creation to src_install() so that we can get + # the device nods into a binary package which can then be + # installed on a host which does not have python/portage etc. +} |