summaryrefslogtreecommitdiff
path: root/devel/patchutils/Makefile
AgeCommit message (Collapse)AuthorFilesLines
2006-10-15Fixed path to the bash interpreter. Added dependency to bash.rillig1-5/+4
PKGREVISION++.
2006-06-17Updated patchutils to 0.2.31.rillig1-4/+8
Changes: - Several small bug fixes.
2005-10-23Fixed pkglint warning.rillig1-2/+2
WARN: Makefile:19: CONFIGURE_ARGS should be modified using "+=".
2005-07-16Get rid of USE_PERL5. The new way to express needing the Perl executablejlam1-2/+2
around at either build-time or at run-time is: USE_TOOLS+= perl # build-time USE_TOOLS+= perl:run # run-time Also remove some places where perl5/buildlink3.mk was being included by a package Makefile, but all that the package wanted was the Perl executable.
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2005-01-01Bump PKGREVISION because the previous binary package may contain aminskim1-1/+2
wrong path to the perl executable.
2004-07-24initial import of patchutils-0.2.30recht1-0/+21
Patchutils is a small collection of programs that operate on patch files. Interdiff generates an incremental patch from two patches against a common source. For example, if you have applied a pre-patch to a source tree, and wish to apply another pre-patch (which is against the same original source tree), you can use interdiff to generate the patch that you need to apply. You can also use this to review changes between two pre-patches. Combinediff generates a single patch from two incremental patches, allowing you to merge patches together. The resulting patch file only alters each file once. Filterdiff will select the portions of a patch file that apply to files matching (or, alternatively, not matching) a shell wildcard. Fixcvsdiff is for correcting the output of 'cvs diff'. Rediff corrects hand-edited patches, by comparing the original patch with the modified one and adjusting the offsets and counts. Lsdiff displays a short listing of affected files in a patch file, along with (optionally) the line numbers of the start of each patch. Splitdiff separates out patches from a patch file so that each new patch file only alters any given file once. In this way, a file containing several incremental patches can be split into individual incremental patches. Grepdiff displays a list of the files modified by a patch where the patch contains a given regular expression. Recountdiff fixes up counts and offsets in a unified diff. Unwrapdiff fixes word-wrapped unified diffs.