diff options
author | Hasan Khalil <gongloo@gentoo.org> | 2005-08-06 21:07:53 +0000 |
---|---|---|
committer | Hasan Khalil <gongloo@gentoo.org> | 2005-08-06 21:07:53 +0000 |
commit | 8bc74d1d3f26f073f388d20a50bba211c2bb5a66 (patch) | |
tree | 0c57a523bed4f4d76230c131d86a1772aa4a76e7 /dev-util/ccache | |
parent | fixed url (diff) | |
download | gentoo-2-8bc74d1d3f26f073f388d20a50bba211c2bb5a66.tar.gz gentoo-2-8bc74d1d3f26f073f388d20a50bba211c2bb5a66.tar.bz2 gentoo-2-8bc74d1d3f26f073f388d20a50bba211c2bb5a66.zip |
Fixes for ccache dir on ppc-macos.
(Portage version: 2.0.51.19)
Diffstat (limited to 'dev-util/ccache')
-rw-r--r-- | dev-util/ccache/ChangeLog | 5 | ||||
-rw-r--r-- | dev-util/ccache/ccache-2.3.ebuild | 11 | ||||
-rw-r--r-- | dev-util/ccache/ccache-2.4.ebuild | 11 |
3 files changed, 20 insertions, 7 deletions
diff --git a/dev-util/ccache/ChangeLog b/dev-util/ccache/ChangeLog index 825a823b541d..4278fde737f0 100644 --- a/dev-util/ccache/ChangeLog +++ b/dev-util/ccache/ChangeLog @@ -1,10 +1,13 @@ # ChangeLog for dev-util/ccache # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/ccache/ChangeLog,v 1.39 2005/07/17 15:22:03 matsuu Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/ccache/ChangeLog,v 1.40 2005/08/06 21:07:53 gongloo Exp $ 17 Jul 2005; MATSUU Takuto <matsuu@gentoo.org> ccache-2.3.ebuild: Stable on sh. + 06 Aug 2005; <gongloo@gentoo.org> ccache-2.3.ebuild, ccache-2.4.ebuild: + Fixes for ccache dir on ppc-macos. + 30 Mar 2005; Michael Hanselmann <hansmi@gentoo.org> ccache-2.3.ebuild: Stable on ppc. diff --git a/dev-util/ccache/ccache-2.3.ebuild b/dev-util/ccache/ccache-2.3.ebuild index 3e87d8d3f5b4..30353d49246b 100644 --- a/dev-util/ccache/ccache-2.3.ebuild +++ b/dev-util/ccache/ccache-2.3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/ccache/ccache-2.3.ebuild,v 1.21 2005/07/17 15:22:03 matsuu Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/ccache/ccache-2.3.ebuild,v 1.22 2005/08/06 21:07:53 gongloo Exp $ DESCRIPTION="fast compiler cache" HOMEPAGE="http://ccache.samba.org/" @@ -31,8 +31,13 @@ src_install() { doexe ${FILESDIR}/ccache-config diropts -m0700 - dodir /root/.ccache - keepdir /root/.ccache + if use ppc-macos; then + dodir /var/root/.ccache + keepdir /var/root/.ccache + else + dodir /root/.ccache + keepdir /root/.ccache + fi } pkg_preinst() { diff --git a/dev-util/ccache/ccache-2.4.ebuild b/dev-util/ccache/ccache-2.4.ebuild index 1acfebd204e8..e4147b3ecf3a 100644 --- a/dev-util/ccache/ccache-2.4.ebuild +++ b/dev-util/ccache/ccache-2.4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/ccache/ccache-2.4.ebuild,v 1.1 2005/03/09 09:54:51 ferringb Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/ccache/ccache-2.4.ebuild,v 1.2 2005/08/06 21:07:53 gongloo Exp $ DESCRIPTION="fast compiler cache" HOMEPAGE="http://ccache.samba.org/" @@ -30,8 +30,13 @@ src_install() { doexe ${FILESDIR}/ccache-config diropts -m0700 - dodir /root/.ccache - keepdir /root/.ccache + if use ppc-macos; then + dodir /var/root/.ccache + keepdir /var/root/.ccache + else + dodir /root/.ccache + keepdir /root/.ccache + fi } pkg_preinst() { |