diff options
author | Karl Trygve Kalleberg <karltk@gentoo.org> | 2002-04-13 21:10:36 +0000 |
---|---|---|
committer | Karl Trygve Kalleberg <karltk@gentoo.org> | 2002-04-13 21:10:36 +0000 |
commit | 215b681a73b4a2ecd6165ee9dc9bac4b98c988f6 (patch) | |
tree | 563e099714215333a4e2b164b40a6f5fa0e6bed8 /dev-util/fhist | |
parent | Fixes #882 (diff) | |
download | gentoo-2-215b681a73b4a2ecd6165ee9dc9bac4b98c988f6.tar.gz gentoo-2-215b681a73b4a2ecd6165ee9dc9bac4b98c988f6.tar.bz2 gentoo-2-215b681a73b4a2ecd6165ee9dc9bac4b98c988f6.zip |
Fixes #958
Diffstat (limited to 'dev-util/fhist')
-rw-r--r-- | dev-util/fhist/ChangeLog | 21 | ||||
-rw-r--r-- | dev-util/fhist/fhist-1.8.ebuild | 34 | ||||
-rw-r--r-- | dev-util/fhist/files/digest-fhist-1.8 | 1 |
3 files changed, 56 insertions, 0 deletions
diff --git a/dev-util/fhist/ChangeLog b/dev-util/fhist/ChangeLog new file mode 100644 index 000000000000..4b807678606f --- /dev/null +++ b/dev-util/fhist/ChangeLog @@ -0,0 +1,21 @@ +# ChangeLog for dev-util/fhist +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL +# $Header: /var/cvsroot/gentoo-x86/dev-util/fhist/ChangeLog,v 1.1 2002/04/13 21:10:35 karltk Exp $ + +*fhist-1.8 (13 Apr 2002) + + 13 Apr 2002; Karl Trygve Kalleberg <karltk@gentoo.org> fhist-1.8.ebuild files/digest-fhist-1.8 : + + The FHist package contains 3 utilities, a file history tool ``fhist'', a + file comparison tool ``fcomp'', and a file merging tool ``fmerge''. All + three are bundled together, because they all use the same minimal-difference + algorithm. + + The history tool presented here, fhist, is a minimal history tool. It + provides no locking or branching. This can be useful in contexts where the + configuration management or change control be being provided by some other + tool. + + The history tool, fhist is able to handle binary files. The file comparison + tool, fcomp, usually does a line-for-line plain-text comparison, however it + is also capable of a byte-for-byte binary comparison. diff --git a/dev-util/fhist/fhist-1.8.ebuild b/dev-util/fhist/fhist-1.8.ebuild new file mode 100644 index 000000000000..b646eff55ca6 --- /dev/null +++ b/dev-util/fhist/fhist-1.8.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author: Peter Maxwell <peter@biolateral.com.au> +# $Header:# + +S=${WORKDIR}/${P} +DESCRIPTION="File history and comparison tools" +SRC_URI="http://www.canb.auug.org.au/~millerp/${P}.tar.gz" +HOMEPAGE="http://www.canb.auug.org.au/~millerp/fhist.html" + +DEPEND="sys-devel/gettext sys-apps/groff sys-devel/bison" +RDEPEND="" + +src_compile() { + ./configure \ + --prefix=/usr \ + --mandir=/usr/share/man || die "./configure failed" + make clean + make || die +} + +src_install () { + make RPM_BUILD_ROOT=${D} install || die + + dodoc lib/en/*.txt + dodoc lib/en/*.ps + + # remove duplicate docs etc. + rm -r ${D}/usr/share/fhist + + # move message catalogs into the usual gentoo place + mkdir ${D}/usr/share/locale + mv ${D}/usr/lib/fhist/en ${D}/usr/share/locale/ +} diff --git a/dev-util/fhist/files/digest-fhist-1.8 b/dev-util/fhist/files/digest-fhist-1.8 new file mode 100644 index 000000000000..4e07d176ac8b --- /dev/null +++ b/dev-util/fhist/files/digest-fhist-1.8 @@ -0,0 +1 @@ +MD5 0a1902df9fd68f48befd47cd84e2f63b fhist-1.8.tar.gz 242740 |