diff options
author | Martin Holzer <mholzer@gentoo.org> | 2003-10-17 19:30:21 +0000 |
---|---|---|
committer | Martin Holzer <mholzer@gentoo.org> | 2003-10-17 19:30:21 +0000 |
commit | 0f70a041fe335ef29c7f12aebae4ea8bba962eaa (patch) | |
tree | e35c68a1a44fa91efb099f4538a7bfece6f2da07 /dev-util/ccache | |
parent | x86 stable. (diff) | |
download | historical-0f70a041fe335ef29c7f12aebae4ea8bba962eaa.tar.gz historical-0f70a041fe335ef29c7f12aebae4ea8bba962eaa.tar.bz2 historical-0f70a041fe335ef29c7f12aebae4ea8bba962eaa.zip |
cleanup
Diffstat (limited to 'dev-util/ccache')
-rw-r--r-- | dev-util/ccache/Manifest | 8 | ||||
-rw-r--r-- | dev-util/ccache/ccache-1.9-r1.ebuild | 75 | ||||
-rw-r--r-- | dev-util/ccache/ccache-1.9-r2.ebuild | 51 | ||||
-rw-r--r-- | dev-util/ccache/ccache-2.1.1-r2.ebuild | 70 | ||||
-rw-r--r-- | dev-util/ccache/ccache-2.1.1.ebuild | 56 | ||||
-rw-r--r-- | dev-util/ccache/files/digest-ccache-1.9-r1 | 1 | ||||
-rw-r--r-- | dev-util/ccache/files/digest-ccache-1.9-r2 | 1 | ||||
-rw-r--r-- | dev-util/ccache/files/digest-ccache-2.1.1 | 1 | ||||
-rw-r--r-- | dev-util/ccache/files/digest-ccache-2.1.1-r2 | 1 |
9 files changed, 0 insertions, 264 deletions
diff --git a/dev-util/ccache/Manifest b/dev-util/ccache/Manifest index 389090170508..bb9aca98fad3 100644 --- a/dev-util/ccache/Manifest +++ b/dev-util/ccache/Manifest @@ -1,14 +1,6 @@ MD5 176f15df61dabb38d2d7ff9761d233ad ChangeLog 3468 -MD5 5d69da54809d2eb42b58906cc20f4de8 ccache-1.9-r1.ebuild 1823 -MD5 a703017f585f47441e2e399c7ad18be1 ccache-1.9-r2.ebuild 1626 -MD5 ad6a03c5f52927d2fad39f24fc201bf0 ccache-2.1.1-r2.ebuild 2118 -MD5 e9b8da93c11a27fafb3c2ea2f930e9e8 ccache-2.1.1.ebuild 1762 MD5 5e8e026be7c75dfebc5b773d5cbe3fb9 ccache-2.2.ebuild 2133 MD5 b7dd437b527cea2f0b888081452d5419 ccache-2.3.ebuild 2158 MD5 3a5de45f5094320a0ce4eb5201506042 files/ccache-config 1554 -MD5 7711e62922507dc2cf36bb4b4adcbe65 files/digest-ccache-1.9-r1 61 -MD5 f55909c2215596543828d9a2f5aaaac1 files/digest-ccache-1.9-r2 60 -MD5 fe7cbea03762b77cfac899c6ef5e6cdc files/digest-ccache-2.1.1 63 -MD5 fe7cbea03762b77cfac899c6ef5e6cdc files/digest-ccache-2.1.1-r2 63 MD5 0dfb58c5d312454e0c766c14f3d76dad files/digest-ccache-2.2 61 MD5 6bbfd5ad2a75fbaf4b4a5e42fc61270a files/digest-ccache-2.3 61 diff --git a/dev-util/ccache/ccache-1.9-r1.ebuild b/dev-util/ccache/ccache-1.9-r1.ebuild deleted file mode 100644 index 4c122feae3f7..000000000000 --- a/dev-util/ccache/ccache-1.9-r1.ebuild +++ /dev/null @@ -1,75 +0,0 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/ccache/ccache-1.9-r1.ebuild,v 1.9 2003/09/06 08:39:20 msterret Exp $ - -DESCRIPTION="ccache is a fast compiler cache. It is used as a front end to your -compiler to safely cache compilation output. When the same code is compiled -again the cached output is used giving a significant speedup." -SRC_URI="http://ccache.samba.org/ftp/ccache/${P}.tar.gz" -HOMEPAGE="http://ccache.samba.org/" - -SLOT="0" -LICENSE="GPL-2" -KEYWORDS="x86 ppc sparc mips" - -# Note: this version is designed to be auto-detected and used if you happen to have Portage -# 2.0.6+ installed. - -src_compile() { - ./configure --prefix=${D}/usr || die - make || die -} - -src_install () { - exeinto /usr/bin/ccache - doexe ccache - doman ccache.1 - dodoc COPYING README - -} - -pkg_postinst() { - cd /usr/bin/ccache - - if([ -e /usr/bin/gcc ]) then - ln -s ccache gcc - fi - - if([ -e /usr/bin/cc ]) then - ln -s ccache cc - fi - - if([ -e /usr/bin/c++ ]) then - ln -s ccache c++ - fi - - if([ -e /usr/bin/g++ ]) then - ln -s ccache g++ - fi - - if([ -e /usr/bin/${CHOST}-gcc ]) then - ln -s ccache ${CHOST}-gcc - fi - - if([ -e /usr/bin/${CHOST}-c++ ]) then - ln -s ccache ${CHOST}-c++ - fi - - if([ -e /usr/bin/${CHOST}-g++ ]) then - ln -s ccache ${CHOST}-g++ - fi - - if [ ! -d ${ROOT}root/.ccache ] - then - install -d -m0700 ${ROOT}root/.ccache - fi - - - einfo "To use ccache with **non-Portage** C compiling, add /usr/bin/ccache to your path before /usr/bin." - einfo "Portage 2.0.6+ will automatically take advantage of ccache with no additional steps." - einfo "If this is your first install of ccache, type something like this to set a maximum" - einfo "cache size of 2GB (or whatever you desire):" - einfo "# /usr/bin/ccache/ccache -M 2G" -} - - diff --git a/dev-util/ccache/ccache-1.9-r2.ebuild b/dev-util/ccache/ccache-1.9-r2.ebuild deleted file mode 100644 index ffbae48cccb1..000000000000 --- a/dev-util/ccache/ccache-1.9-r2.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/ccache/ccache-1.9-r2.ebuild,v 1.4 2003/09/06 08:39:20 msterret Exp $ - -DESCRIPTION="ccache is a fast compiler cache. It is used as a front end to your -compiler to safely cache compilation output. When the same code is compiled -again the cached output is used giving a significant speedup." -SRC_URI="http://ccache.samba.org/ftp/ccache/${P}.tar.gz" -HOMEPAGE="http://ccache.samba.org/" - -SLOT="0" -LICENSE="GPL-2" -KEYWORDS="x86 ppc sparc alpha hppa" - -# Note: this version is designed to be auto-detected and used if -# you happen to have Portage 2.0.6+ installed. - -src_compile() { - ./configure --prefix=${D}/usr || die - make || die -} - -src_install () { - exeinto /usr/bin/ccache - doexe ccache - doman ccache.1 - dodoc COPYING README -} - -pkg_postinst() { - cd /usr/bin/ccache - - # Search the PATH now that gcc doesn't live in /usr/bin - einfo "Scanning for compiler front-ends" - for a in gcc cc c++ g++ ${CHOST}-gcc ${CHOST}-c++ ${CHOST}-g++; do - type -ap ${a} && ln -s ccache ${a} - done - - if [ ! -d ${ROOT}root/.ccache ] - then - install -d -m0700 ${ROOT}root/.ccache - fi - - einfo "To use ccache with **non-Portage** C compiling, add" - einfo "/usr/bin/ccache to your path before /usr/bin. Portage 2.0.6+" - einfo "will automatically take advantage of ccache with no additional" - einfo "steps. If this is your first install of ccache, type something" - einfo "like this to set a maximum cache size of 2GB (or whatever you" - einfo "desire):" - einfo "# /usr/bin/ccache/ccache -M 2G" -} diff --git a/dev-util/ccache/ccache-2.1.1-r2.ebuild b/dev-util/ccache/ccache-2.1.1-r2.ebuild deleted file mode 100644 index 915b7806c96e..000000000000 --- a/dev-util/ccache/ccache-2.1.1-r2.ebuild +++ /dev/null @@ -1,70 +0,0 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/ccache/ccache-2.1.1-r2.ebuild,v 1.6 2003/09/06 20:32:23 msterret Exp $ - -DESCRIPTION="ccache is a fast compiler cache. It is used as a front end to your -compiler to safely cache compilation output. When the same code is compiled -again the cached output is used giving a significant speedup." -SRC_URI="http://ccache.samba.org/ftp/ccache/${P}.tar.gz" -HOMEPAGE="http://ccache.samba.org/" - -IUSE="" -SLOT="0" -LICENSE="GPL-2" -KEYWORDS="x86 ppc ~sparc ~alpha arm" -DEPEND="virtual/glibc \ - >=sys-apps/portage-2.0.46-r11" - -# Note: this version is designed to be auto-detected and used if -# you happen to have Portage 2.0.X+ installed. - -src_compile() { - econf || die - emake || die -} - -src_install () { - exeinto /usr/bin - doexe ccache - doman ccache.1 - dodoc COPYING README - - diropts -m0755 - dodir /usr/lib/ccache/bin - keepdir /usr/lib/ccache/bin - - exeinto /usr/bin - doexe ${FILESDIR}/ccache-config - - diropts -m0700 - dodir /root/.ccache - keepdir /root/.ccache -} - -pkg_preinst() { - # Portage doesn't handle replacing a non-empty dir with a file! - [ -e /usr/bin/ccache ] && rm -rf /usr/bin/ccache - [ -e /usr/bin/ccache.backup ] && rm -rf /usr/bin/ccache.backup -} - -pkg_postinst() { - - if [ "${ROOT}" = "/" ]; then - einfo "Scanning for compiler front-ends..." - /usr/bin/ccache-config --install-links - /usr/bin/ccache-config --install-links ${CHOST} - else - ewarn "Install is incomplete; you must run the following commands:" - ewarn " # ccache-config --install-links" - ewarn " # ccache-config --install-links ${CHOST}" - ewarn "after booting or chrooting to ${ROOT} to complete installation." - fi - - einfo "To use ccache with **non-Portage** C compiling, add" - einfo "/usr/lib/ccache/bin to your path before /usr/bin. Portage 2.0.X+" - einfo "will automatically take advantage of ccache with no additional" - einfo "steps. If this is your first install of ccache, type something" - einfo "like this to set a maximum cache size of 2GB (or similar):" - einfo "# ccache -M 2G" -} - diff --git a/dev-util/ccache/ccache-2.1.1.ebuild b/dev-util/ccache/ccache-2.1.1.ebuild deleted file mode 100644 index 1f3135365e18..000000000000 --- a/dev-util/ccache/ccache-2.1.1.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/ccache/ccache-2.1.1.ebuild,v 1.7 2003/09/06 08:39:20 msterret Exp $ - -DESCRIPTION="ccache is a fast compiler cache. It is used as a front end to your -compiler to safely cache compilation output. When the same code is compiled -again the cached output is used giving a significant speedup." -SRC_URI="http://ccache.samba.org/ftp/ccache/${P}.tar.gz" -HOMEPAGE="http://ccache.samba.org/" - -SLOT="0" -LICENSE="GPL-2" -KEYWORDS="x86 ppc ~sparc ~alpha ~hppa" - -# Note: this version is designed to be auto-detected and used if -# you happen to have Portage 2.0.6+ installed. - -src_compile() { - ./configure --prefix=${D}/usr || die - make || die -} - -src_install () { - exeinto /usr/bin/ccache - doexe ccache - doman ccache.1 - dodoc COPYING README -} - -pkg_preinst() { - [ -e /usr/bin/ccache ] && rm -rf /usr/bin/ccache - [ -e /usr/bin/ccache.backup ] && rm -rf /usr/bin/ccache.backup -} - -pkg_postinst() { - cd /usr/bin/ccache - - # Search the PATH now that gcc doesn't live in /usr/bin - einfo "Scanning for compiler front-ends" - for a in gcc cc c++ g++ ${CHOST}-gcc ${CHOST}-c++ ${CHOST}-g++; do - type -ap ${a} && ln -sf ccache ${a} - done - - if [ ! -d ${ROOT}root/.ccache ] - then - install -d -m0700 ${ROOT}root/.ccache - fi - - einfo "To use ccache with **non-Portage** C compiling, add" - einfo "/usr/bin/ccache to your path before /usr/bin. Portage 2.0.6+" - einfo "will automatically take advantage of ccache with no additional" - einfo "steps. If this is your first install of ccache, type something" - einfo "like this to set a maximum cache size of 2GB (or whatever you" - einfo "desire):" - einfo "# /usr/bin/ccache/ccache -M 2G" -} diff --git a/dev-util/ccache/files/digest-ccache-1.9-r1 b/dev-util/ccache/files/digest-ccache-1.9-r1 deleted file mode 100644 index a561ea71b898..000000000000 --- a/dev-util/ccache/files/digest-ccache-1.9-r1 +++ /dev/null @@ -1 +0,0 @@ -MD5 8e73f607accc13da52934303140d555e ccache-1.9.tar.gz 62583 diff --git a/dev-util/ccache/files/digest-ccache-1.9-r2 b/dev-util/ccache/files/digest-ccache-1.9-r2 deleted file mode 100644 index e27537e953a8..000000000000 --- a/dev-util/ccache/files/digest-ccache-1.9-r2 +++ /dev/null @@ -1 +0,0 @@ -MD5 8e73f607accc13da52934303140d555e ccache-1.9.tar.gz 6258 diff --git a/dev-util/ccache/files/digest-ccache-2.1.1 b/dev-util/ccache/files/digest-ccache-2.1.1 deleted file mode 100644 index 20fb0b9e7dc7..000000000000 --- a/dev-util/ccache/files/digest-ccache-2.1.1 +++ /dev/null @@ -1 +0,0 @@ -MD5 0d1f3cd50556effcc0e50565dc2ab345 ccache-2.1.1.tar.gz 78121 diff --git a/dev-util/ccache/files/digest-ccache-2.1.1-r2 b/dev-util/ccache/files/digest-ccache-2.1.1-r2 deleted file mode 100644 index 20fb0b9e7dc7..000000000000 --- a/dev-util/ccache/files/digest-ccache-2.1.1-r2 +++ /dev/null @@ -1 +0,0 @@ -MD5 0d1f3cd50556effcc0e50565dc2ab345 ccache-2.1.1.tar.gz 78121 |