From dd90f3b640c218de8c7998c8fc92c731c2234dbc Mon Sep 17 00:00:00 2001 From: "Joseph R. Prostko" Date: Sat, 23 May 2015 15:17:26 -0400 Subject: [PATCH] Add recipe for Fossil 1.33 * Cleaned up the description * Utilized $portVersion in SRC_URI and SOURCE_DIR * SOURCE_DIR was needed due to changed extraction directory compared to 1.32 --- dev-vcs/fossil/fossil-1.33.recipe | 53 +++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 dev-vcs/fossil/fossil-1.33.recipe diff --git a/dev-vcs/fossil/fossil-1.33.recipe b/dev-vcs/fossil/fossil-1.33.recipe new file mode 100644 index 000000000..d882ec75f --- /dev/null +++ b/dev-vcs/fossil/fossil-1.33.recipe @@ -0,0 +1,53 @@ +SUMMARY="Simple, high-reliability, distributed software configuration management" +DESCRIPTION="Fossil is a distributed version control system like Git and \ +Mercurial, but Fossil also supports distributed bug tracking, wiki, and \ +technotes all in a single, integrated package. + +Additionally, Fossil also has a built-in and easy-to-use web interface that \ +simplifies project tracking and promotes situational awareness." +HOMEPAGE="http://www.fossil-scm.org/" +SRC_URI="https://www.fossil-scm.org/download/fossil-src-$portVersion.tar.gz" +CHECKSUM_SHA256="6295c48289456f09e86099988058a12148dbe0051b72d413b4dff7216d6a7f3e" +REVISION="1" +LICENSE="BSD (2-clause)" +COPYRIGHT="2007 D. Richard Hipp" + +ARCHITECTURES="x86_gcc2 x86 x86_64" + +PROVIDES=" + fossil = $portVersion + cmd:fossil = $portVersion + " +REQUIRES=" + haiku + lib:libz + lib:libssl + " +BUILD_REQUIRES=" + haiku_devel + devel:libz + devel:libssl + " +# tests require cmd:tclsh +BUILD_PREREQUIRES=" + cmd:make + cmd:gcc + " + +SOURCE_DIR="fossil-src-$portVersion" + +BUILD() +{ + ./configure --prefix=$prefix + make +} + +INSTALL() +{ + make install +} + +TEST() +{ + make test +}