Files
haikuports/sys-apps/diffutils/diffutils-3.3.recipe
Alexander von Gluck IV d97a2aabd9 all: Don't use portVersionedName for SOURCE_DIR
* portVersionedName contains the secondary architecture,
  so using it means secondary package builds fail.
  example: $portVersionedName is libwow_x86-0.0.0 when
  doing an x86 build on x86_gcc2
2013-12-25 17:52:56 -06:00

67 lines
1.6 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
SUMMARY="Several programs for finding differences between files."
DESCRIPTION="
You can use the diff command to show differences between two files, or
each corresponding file in two directories. diff outputs differences
between files line by line in any of several formats, selectable by
command line options. This set of differences is often called a diff
or patch.
You can use the cmp command to show the offsets and line numbers where
two files differ. cmp can also show all the characters that differ
between the two files, side by side.
You can use the diff3 command to show differences among three files.
When two people have made independent changes to a common original,
diff3 can report the differences between the original and the two
changed versions, and can produce a merged file that contains both
persons' changes together with warnings about conflicts.
You can use the sdiff command to merge two files interactively.
"
LICENSE="GNU GPL v3"
COPYRIGHT="1992-2013 Free Software Foundation, Inc."
HOMEPAGE="http://www.gnu.org/software/diffutils/"
SRC_URI="http://ftp.gnu.org/pub/gnu/diffutils/diffutils-3.3.tar.xz"
CHECKSUM_MD5="99180208ec2a82ce71f55b0d7389f1b3"
REVISION="2"
ARCHITECTURES="x86 x86_gcc2"
PROVIDES="
diffutils = $portVersion
cmd:diff = $portVersion
cmd:cmp = $portVersion
cmd:diff3 = $portVersion
cmd:sdiff = $portVersion
"
REQUIRES="
haiku >= $haikuVersion
"
BUILD_PREREQUIRES="
haiku_devel >= $haikuVersion
cmd:make
cmd:gcc
"
PATCHES="diffutils-3.3.patchset"
BUILD()
{
runConfigure ./configure \
--disable-gcc-warnings
make
}
INSTALL()
{
make install
rm $libDir/charset.alias
}
TEST()
{
make check
}