From c59bbf6ac0bfdcc9a258db32731fb1777ee3e76c Mon Sep 17 00:00:00 2001 From: Scott McCreary Date: Tue, 27 Aug 2013 22:10:07 -0700 Subject: [PATCH] Added recipe for ccache-3.1.9, removed earlier versions. --- dev-util/ccache/ccache-3.0.1.recipe | 23 ------------------ dev-util/ccache/ccache-3.1.4.recipe | 24 ------------------- dev-util/ccache/ccache-3.1.7.recipe | 24 ------------------- dev-util/ccache/ccache-3.1.9.recipe | 37 +++++++++++++++++++++++++++++ 4 files changed, 37 insertions(+), 71 deletions(-) delete mode 100644 dev-util/ccache/ccache-3.0.1.recipe delete mode 100644 dev-util/ccache/ccache-3.1.4.recipe delete mode 100644 dev-util/ccache/ccache-3.1.7.recipe create mode 100644 dev-util/ccache/ccache-3.1.9.recipe diff --git a/dev-util/ccache/ccache-3.0.1.recipe b/dev-util/ccache/ccache-3.0.1.recipe deleted file mode 100644 index c0b966fdc..000000000 --- a/dev-util/ccache/ccache-3.0.1.recipe +++ /dev/null @@ -1,23 +0,0 @@ -DESCRIPTION="ccache is a fast compiler cache." -HOMEPAGE="http://ccache.samba.org/" -SRC_URI="http://samba.org/ftp/ccache/ccache-3.0.1.tar.bz2" -REVISION="1" -STATUS_HAIKU="stable" -DEPEND="" -CHECKSUM_MD5="223449f7891e5d6a15b25100eca5cca4" -BUILD() -{ - cd ccache-3.0.1 - ./configure --prefix=`finddir B_COMMON_DIRECTORY` \ - --mandir=`finddir B_COMMON_DOCUMENTATION_DIRECTORY`/man - make -} -INSTALL() -{ - cd ccache-3.0.1 - make install -} - -LICENSE="GNU GPL v3" -COPYRIGHT="2002-2007 Andrew Tridgell - 2009-2010 Joel Rosdahl" diff --git a/dev-util/ccache/ccache-3.1.4.recipe b/dev-util/ccache/ccache-3.1.4.recipe deleted file mode 100644 index 430dbcedc..000000000 --- a/dev-util/ccache/ccache-3.1.4.recipe +++ /dev/null @@ -1,24 +0,0 @@ -DESCRIPTION="ccache is a fast compiler cache." -HOMEPAGE="http://ccache.samba.org/" -SRC_URI="http://samba.org/ftp/ccache/ccache-3.1.4.tar.bz2" -REVISION="1" -STATUS_HAIKU="stable" -DEPEND="" -CHECKSUM_MD5="676fda8a9a5e02574435c32b22942abd" -BUILD() -{ - cd ccache-3.1.4 - sed -i 's/\-lm//g' Ma* - ./configure --prefix=`finddir B_COMMON_DIRECTORY` \ - --mandir=`finddir B_COMMON_DOCUMENTATION_DIRECTORY`/man - make -} -INSTALL() -{ - cd ccache-3.1.4 - make install -} - -LICENSE="GNU GPL v3" -COPYRIGHT="2002-2007 Andrew Tridgell - 2009-2011 Joel Rosdahl" diff --git a/dev-util/ccache/ccache-3.1.7.recipe b/dev-util/ccache/ccache-3.1.7.recipe deleted file mode 100644 index a999d612c..000000000 --- a/dev-util/ccache/ccache-3.1.7.recipe +++ /dev/null @@ -1,24 +0,0 @@ -DESCRIPTION="ccache is a fast compiler cache." -HOMEPAGE="http://ccache.samba.org/" -SRC_URI="http://samba.org/ftp/ccache/ccache-3.1.7.tar.bz2" -REVISION="1" -STATUS_HAIKU="stable" -DEPEND="" -CHECKSUM_MD5="82257745eac54826527946e9e3d046f4" -BUILD() -{ - cd ccache-3.1.7 - sed -i 's/\-lm//g' Ma* - ./configure --prefix=`finddir B_COMMON_DIRECTORY` \ - --mandir=`finddir B_COMMON_DOCUMENTATION_DIRECTORY`/man - make -} -INSTALL() -{ - cd ccache-3.1.7 - make install -} - -LICENSE="GNU GPL v3" -COPYRIGHT="2002-2007 Andrew Tridgell - 2009-2012 Joel Rosdahl" diff --git a/dev-util/ccache/ccache-3.1.9.recipe b/dev-util/ccache/ccache-3.1.9.recipe new file mode 100644 index 000000000..3ab1af323 --- /dev/null +++ b/dev-util/ccache/ccache-3.1.9.recipe @@ -0,0 +1,37 @@ +SUMMARY="ccache is a fast compiler cache." +DESCRIPTION="ccache is a compiler cache. It speeds up recompilation by caching previous compilations and detecting when same compilation is being done again. Supported languages are C, C++, Objective-C and Objective-C++." +HOMEPAGE="http://ccache.samba.org/" +SRC_URI="http://samba.org/ftp/ccache/ccache-3.1.9.tar.bz2" +REVISION="1" + +LICENSE="GNU GPL v3" +COPYRIGHT="2002-2007 Andrew Tridgell + 2009-2013 Joel Rosdahl" + +CHECKSUM_MD5="65f48376a91d3651d6527ca568858be8" + +ARCHITECTURES="x86 x86_gcc2" +PROVIDES=" + cmd:ccache + " +REQUIRES=" + lib:libroot >= $haikuVersion + lib:libz >= 1 + " +BUILD_REQUIRES=" + " +BUILD_PREREQUIRES=" + cmd:gcc + cmd:make + " + +BUILD() +{ + runConfigure ./configure + make $jobArgs +} + +INSTALL() +{ + make install +}