From 0ed3a0c0b493e1bd8ab97764d39eb0b73fc31d81 Mon Sep 17 00:00:00 2001 From: Humdinger Date: Sun, 12 Nov 2023 18:12:17 +0100 Subject: [PATCH] ponpokodiff: new release v0.3.0 -> https://github.com/HaikuArchives/PonpokoDiff/releases/tag/v0.3.0 --- .../ponpokodiff/ponpokodiff-0.2.0.recipe | 46 ----------------- .../ponpokodiff/ponpokodiff-0.3.0.recipe | 49 +++++++++++++++++++ 2 files changed, 49 insertions(+), 46 deletions(-) delete mode 100644 haiku-apps/ponpokodiff/ponpokodiff-0.2.0.recipe create mode 100644 haiku-apps/ponpokodiff/ponpokodiff-0.3.0.recipe diff --git a/haiku-apps/ponpokodiff/ponpokodiff-0.2.0.recipe b/haiku-apps/ponpokodiff/ponpokodiff-0.2.0.recipe deleted file mode 100644 index 61f1e6cd0..000000000 --- a/haiku-apps/ponpokodiff/ponpokodiff-0.2.0.recipe +++ /dev/null @@ -1,46 +0,0 @@ -SUMMARY="A GUI-based diff application" -DESCRIPTION="PonpokoDiff is a graphical file comparison utility. \ -It can compare two files and show its differences graphically. \ -Currently, there's only minimal support for the comparison of folders. -PonpokoDiff can also be used as an external diff command of Subversion \ -(--diff-cmd)." -HOMEPAGE="https://github.com/HaikuArchives/PonpokoDiff" -COPYRIGHT="2008 PonpokoDiff Project Contributors" -LICENSE="MIT" -REVISION="7" -srcGitRev="534bbe74ccecda532529315db07769f1d7fe647e" -SOURCE_URI="https://github.com/HaikuArchives/PonpokoDiff/archive/$srcGitRev.tar.gz" -CHECKSUM_SHA256="99d88cecd955bb3279e241ef16e381816a057580428fd1552461bb3682b4a89b" -SOURCE_FILENAME="PonpokoDiff-$srcGitRev.tar.gz" -SOURCE_DIR="PonpokoDiff-$srcGitRev/source" - -ARCHITECTURES="all ?x86" - -PROVIDES=" - ponpokodiff = $portVersion - app:ponpokodiff = $portVersion - " -REQUIRES=" - haiku - " - -BUILD_REQUIRES=" - haiku_devel - " -BUILD_PREREQUIRES=" - makefile_engine - cmd:gcc - cmd:make - " - -BUILD() -{ - make $jobArgs OBJ_DIR=objects -} - -INSTALL() -{ - mkdir -p $appsDir - cp -a objects/PonpokoDiff $appsDir - addAppDeskbarSymlink $appsDir/PonpokoDiff -} diff --git a/haiku-apps/ponpokodiff/ponpokodiff-0.3.0.recipe b/haiku-apps/ponpokodiff/ponpokodiff-0.3.0.recipe new file mode 100644 index 000000000..00a150fea --- /dev/null +++ b/haiku-apps/ponpokodiff/ponpokodiff-0.3.0.recipe @@ -0,0 +1,49 @@ +SUMMARY="A tool to compare text files" +DESCRIPTION="PonpokoDiff is a graphical file comparison utility. \ +It compares two files and shows the differences graphically side-by-side. \ +Lines that differ are highlighted yellow, additional lines are green, \ +removed lines are red. + +You can select two files in Tracker and choose PonpokoDiff from the 'Open with...' \ +menu to compare them, or drag and drop files into the PonpokoDiff window. The app \ +automatically keeps track of renamed and moved files and offers to reload files \ +when their contents has changed." +HOMEPAGE="https://github.com/HaikuArchives/PonpokoDiff" +COPYRIGHT="2008-2023 HaikuArchives Team" +LICENSE="MIT" +REVISION="1" +SOURCE_URI="$HOMEPAGE/archive/v$portVersion.tar.gz" +CHECKSUM_SHA256="839aa4f15da415d55c3775e784366bf09f6a2a74773f02bc8f727c077c0df737" +SOURCE_DIR="PonpokoDiff-$portVersion" + +ARCHITECTURES="all" + +PROVIDES=" + ponpokodiff = $portVersion + app:PonpokoDiff = $portVersion + " +REQUIRES=" + haiku + " + +BUILD_REQUIRES=" + haiku_devel + " +BUILD_PREREQUIRES=" + makefile_engine + cmd:gcc + cmd:make + " + +BUILD() +{ + cd source + make $jobArgs +} + +INSTALL() +{ + mkdir -p $appsDir + cp -a PonpokoDiff $appsDir + addAppDeskbarSymlink $appsDir/PonpokoDiff +}