diff options
author | 2007-11-10 10:23:17 +0000 | |
---|---|---|
committer | 2007-11-10 10:23:17 +0000 | |
commit | 5b485f3cbf06f0057b0507897fa1f24b1f87943a (patch) | |
tree | 6ed1f228bcda7cda60a1bc2c7203eba7f9512754 /sys-fs/udev/udev-111-r3.ebuild | |
parent | Stable on ppc64; bug #196735 (diff) | |
download | gentoo-2-5b485f3cbf06f0057b0507897fa1f24b1f87943a.tar.gz gentoo-2-5b485f3cbf06f0057b0507897fa1f24b1f87943a.tar.bz2 gentoo-2-5b485f3cbf06f0057b0507897fa1f24b1f87943a.zip |
Remove try to apply non-existant patch. Fixed quoting.
(Portage version: 2.1.3.19)
Diffstat (limited to 'sys-fs/udev/udev-111-r3.ebuild')
-rw-r--r-- | sys-fs/udev/udev-111-r3.ebuild | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/sys-fs/udev/udev-111-r3.ebuild b/sys-fs/udev/udev-111-r3.ebuild index ad128003c7ae..310ee2d09a95 100644 --- a/sys-fs/udev/udev-111-r3.ebuild +++ b/sys-fs/udev/udev-111-r3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/udev/udev-111-r3.ebuild,v 1.2 2007/07/13 05:15:33 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/udev/udev-111-r3.ebuild,v 1.3 2007/11/10 10:23:17 zzam Exp $ inherit eutils flag-o-matic multilib toolchain-funcs @@ -34,8 +34,8 @@ src_unpack() { cd "${S}" # patches go here... - epatch ${FILESDIR}/${PN}-104-peristent-net-disable-xen.patch - EPATCH_OPTS="-p1" epatch ${FILESDIR}/${PN}-110-root-link-1.diff + epatch "${FILESDIR}"/${PN}-104-peristent-net-disable-xen.patch + EPATCH_OPTS="-p1" epatch "${FILESDIR}"/${PN}-110-root-link-1.diff # No need to clutter the logs ... sed -ie '/^DEBUG/ c\DEBUG = false' Makefile @@ -145,7 +145,7 @@ src_install() { # Our udev config file insinto /etc/udev - newins ${FILESDIR}/udev.conf.post_108 udev.conf + newins "${FILESDIR}"/udev.conf.post_108 udev.conf # Our rules files insinto /etc/udev/rules.d/ @@ -194,8 +194,8 @@ src_install() { newdoc extras/volume_id/README README_volume_id insinto /etc/modprobe.d - newins ${FILESDIR}/blacklist-110 blacklist - doins ${FILESDIR}/pnp-aliases + newins "${FILESDIR}"/blacklist-110 blacklist + doins "${FILESDIR}"/pnp-aliases # convert /lib/udev to real used dir sed_helper_dir "${D}"/etc/modprobe.d/* @@ -204,7 +204,7 @@ src_install() { # s390 does not has persistent mac addresses # and we only have persistence rules for mac. # For now just remove the rules file. - rm ${D}/etc/udev/rules.d/75-persistent-net-generator.rules + rm "${D}"/etc/udev/rules.d/75-persistent-net-generator.rules fi } @@ -218,25 +218,25 @@ pkg_preinst() { if [ -f "${ROOT}/etc/udev/udev.config" -a \ ! -f "${ROOT}/etc/udev/udev.rules" ] then - mv -f ${ROOT}/etc/udev/udev.config ${ROOT}/etc/udev/udev.rules + mv -f "${ROOT}"/etc/udev/udev.config "${ROOT}"/etc/udev/udev.rules fi # delete the old udev.hotplug symlink if it is present if [ -h "${ROOT}/etc/hotplug.d/default/udev.hotplug" ] then - rm -f ${ROOT}/etc/hotplug.d/default/udev.hotplug + rm -f "${ROOT}"/etc/hotplug.d/default/udev.hotplug fi # delete the old wait_for_sysfs.hotplug symlink if it is present if [ -h "${ROOT}/etc/hotplug.d/default/05-wait_for_sysfs.hotplug" ] then - rm -f ${ROOT}/etc/hotplug.d/default/05-wait_for_sysfs.hotplug + rm -f "${ROOT}"/etc/hotplug.d/default/05-wait_for_sysfs.hotplug fi # delete the old wait_for_sysfs.hotplug symlink if it is present if [ -h "${ROOT}/etc/hotplug.d/default/10-udev.hotplug" ] then - rm -f ${ROOT}/etc/hotplug.d/default/10-udev.hotplug + rm -f "${ROOT}"/etc/hotplug.d/default/10-udev.hotplug fi # is there a stale coldplug initscript? (CONFIG_PROTECT leaves it behind) @@ -279,7 +279,7 @@ pkg_postinst() { then ewarn "Deleting stray 40-scsi-hotplug.rules" ewarn "installed by sys-fs/udev-103-r3" - rm -f ${ROOT}/etc/udev/rules.d/40-scsi-hotplug.rules + rm -f "${ROOT}"/etc/udev/rules.d/40-scsi-hotplug.rules fi fi @@ -296,7 +296,7 @@ pkg_postinst() { if has_version "<sys-fs/udev-106-r5"; then if [[ -e ${ROOT}/etc/udev/rules.d/95-net.rules ]]; then - rm -f ${ROOT}/etc/udev/rules.d/95-net.rules + rm -f "${ROOT}"/etc/udev/rules.d/95-net.rules fi fi |