diff options
author | Matsuu Takuto <matsuu@gentoo.org> | 2008-10-27 21:37:06 +0000 |
---|---|---|
committer | Matsuu Takuto <matsuu@gentoo.org> | 2008-10-27 21:37:06 +0000 |
commit | 9645d41248301391770c29cebe22b17e84063637 (patch) | |
tree | 9752ec552edcc14f5a4b938577650cdeb4bc97a7 /sys-devel/distcc/distcc-2.18.3-r10.ebuild | |
parent | Don't assign a default to SITEFILE, since elisp-common.eclass doesn't use it. (diff) | |
download | gentoo-2-9645d41248301391770c29cebe22b17e84063637.tar.gz gentoo-2-9645d41248301391770c29cebe22b17e84063637.tar.bz2 gentoo-2-9645d41248301391770c29cebe22b17e84063637.zip |
Ditto.
(Portage version: 2.2_rc12/cvs/Linux 2.6.27-gentoo x86_64)
Diffstat (limited to 'sys-devel/distcc/distcc-2.18.3-r10.ebuild')
-rw-r--r-- | sys-devel/distcc/distcc-2.18.3-r10.ebuild | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sys-devel/distcc/distcc-2.18.3-r10.ebuild b/sys-devel/distcc/distcc-2.18.3-r10.ebuild index 8c7eebcc9ad1..f2a287893183 100644 --- a/sys-devel/distcc/distcc-2.18.3-r10.ebuild +++ b/sys-devel/distcc/distcc-2.18.3-r10.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/distcc/distcc-2.18.3-r10.ebuild,v 1.9 2008/08/17 03:24:18 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/distcc/distcc-2.18.3-r10.ebuild,v 1.10 2008/10/27 21:37:06 matsuu Exp $ # If you change this in any way please email lisa@gentoo.org and make an # entry in the ChangeLog (this means you spanky :P). (2004-04-11) Lisa Seelye @@ -39,13 +39,13 @@ RDEPEND=" src_unpack() { unpack ${A} - cd ${S} + cd "${S}" # -Wl,--as-needed to close bug #128605 - epatch ${FILESDIR}/distcc-as-needed.patch + epatch "${FILESDIR}/distcc-as-needed.patch" # See bug #75420 for more multilib stuff - epatch ${FILESDIR}/distcc-gentoo-multilib-r1.patch + epatch "${FILESDIR}/distcc-gentoo-multilib-r1.patch" einfo "Please report to bug #75420 success or failure of this patch." } @@ -98,7 +98,7 @@ src_install() { if use gnome || use gtk; then einfo "Renaming /usr/bin/distccmon-gnome to /usr/bin/distccmon-gui" einfo "This is to have a little sensability in naming schemes between distccmon programs" - mv ${D}/usr/bin/distccmon-gnome ${D}/usr/bin/distccmon-gui + mv "${D}/usr/bin/distccmon-gnome" "${D}/usr/bin/distccmon-gui" dosym /usr/bin/distccmon-gui /usr/bin/distccmon-gnome fi @@ -138,7 +138,7 @@ pkg_postinst() { ewarn "after booting or chrooting into ${ROOT}" fi einfo "Setting permissions on ${ROOT}var/run/distccd" - chown -R distcc:daemon ${ROOT}var/run/distccd + chown -R distcc:daemon "${ROOT}var/run/distccd" echo "" einfo "Tips on using distcc with Gentoo can be found at" |