diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-04-22 18:22:31 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-04-22 18:22:31 +0000 |
commit | 9957df0e6047896791bf7c4b8c251c857326b17e (patch) | |
tree | 43949341f07e430ffb42695795d90efaf2126347 /sys-apps/baselayout | |
parent | arm/s390/sh stable (diff) | |
download | gentoo-2-9957df0e6047896791bf7c4b8c251c857326b17e.tar.gz gentoo-2-9957df0e6047896791bf7c4b8c251c857326b17e.tar.bz2 gentoo-2-9957df0e6047896791bf7c4b8c251c857326b17e.zip |
misc touchups
(Portage version: 2.1_pre9-r1)
Diffstat (limited to 'sys-apps/baselayout')
-rw-r--r-- | sys-apps/baselayout/baselayout-1.12.0_pre18.ebuild | 28 |
1 files changed, 15 insertions, 13 deletions
diff --git a/sys-apps/baselayout/baselayout-1.12.0_pre18.ebuild b/sys-apps/baselayout/baselayout-1.12.0_pre18.ebuild index bedb02352803..e4f5bd726624 100644 --- a/sys-apps/baselayout/baselayout-1.12.0_pre18.ebuild +++ b/sys-apps/baselayout/baselayout-1.12.0_pre18.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/baselayout/baselayout-1.12.0_pre18.ebuild,v 1.1 2006/04/22 18:17:13 uberlord Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/baselayout/baselayout-1.12.0_pre18.ebuild,v 1.2 2006/04/22 18:22:31 vapier Exp $ inherit flag-o-matic eutils toolchain-funcs multilib @@ -76,17 +76,18 @@ create_dev_nodes() { # a generic option at this time, and the default 'generic' ends # up erroring out, because MAKEDEV internally doesn't know what # to use - arm) suffix=-arm ;; - alpha) suffix=-alpha ;; - amd64) suffix=-i386 ;; - hppa) suffix=-hppa ;; - ia64) suffix=-ia64 ;; - m68k) suffix=-m68k ;; - mips) suffix=-mips ;; - ppc*) suffix=-powerpc ;; - s390) suffix=-s390 ;; - sparc*) suffix=-sparc ;; - x86) suffix=-i386 ;; + arm*) suffix=-arm ;; + alpha) suffix=-alpha ;; + amd64) suffix=-i386 ;; + hppa) suffix=-hppa ;; + ia64) suffix=-ia64 ;; + m68k) suffix=-m68k ;; + mips*) suffix=-mips ;; + ppc*) suffix=-powerpc ;; + s390*) suffix=-s390 ;; + sh*) suffix=-sh ;; + sparc*) suffix=-sparc ;; + x86) suffix=-i386 ;; esac einfo "Using generic${suffix} to make $(tc-arch) device nodes..." @@ -427,6 +428,7 @@ pkg_postinst() { einfo "filesystems, for example /dev or /proc. That's okay!" source "${ROOT}"/usr/share/baselayout/mkdirs.sh source "${ROOT}"/usr/share/baselayout/mklinks.sh + echo # This could be done in src_install, which would have the benefit of # (1) devices.tar.bz2 would show up in CONTENTS @@ -461,7 +463,7 @@ pkg_postinst() { if [[ ! -e "${ROOT}/dev/.devfsd" && ! -e "${ROOT}/dev/.udev" ]]; then einfo "Populating /dev with device nodes..." cd ${ROOT}/dev || die - /bin/tar xjpf "${ROOT}/lib/udev-state/devices.tar.bz2" || die + tar xjpf "${ROOT}/lib/udev-state/devices.tar.bz2" || die fi fi |