From 69883e2d46dd48d32f4380a0a7daa5c9b34038f7 Mon Sep 17 00:00:00 2001 From: "Joseph R. Prostko" Date: Sat, 14 Mar 2015 10:57:34 -0400 Subject: [PATCH] Add recipe for Fossil 1.32 * This addresses the "Ryerson student project problem" regression * As a result, former recipes will all be removed once a 1.32 build is done --- dev-vcs/fossil/fossil-1.32.recipe | 53 +++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 dev-vcs/fossil/fossil-1.32.recipe diff --git a/dev-vcs/fossil/fossil-1.32.recipe b/dev-vcs/fossil/fossil-1.32.recipe new file mode 100644 index 000000000..e811c6edf --- /dev/null +++ b/dev-vcs/fossil/fossil-1.32.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, \ +distributed wiki, and a distributed blog mechanism 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-1.32.tar.gz" +CHECKSUM_SHA256="cd79c333eb9e86fbb8c17bf5cdf31c387e4ab768eede623aed21adfdbcad686e" +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 + openssl >= 1.0.0 + " +BUILD_REQUIRES=" + haiku_devel + devel:libz >= 1.2.3 + openssl_devel >= 1.0.0 + " +# tests require cmd:tclsh +BUILD_PREREQUIRES=" + cmd:make + cmd:gcc + " + +BUILD() +{ + ./configure --prefix=$prefix + make +} + +INSTALL() +{ + make install +} + +TEST() +{ + make test +}