diff options
Diffstat (limited to 'dev-util/bsdiff/bsdiff-4.2.ebuild')
-rw-r--r-- | dev-util/bsdiff/bsdiff-4.2.ebuild | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/dev-util/bsdiff/bsdiff-4.2.ebuild b/dev-util/bsdiff/bsdiff-4.2.ebuild new file mode 100644 index 000000000000..eee9eee22260 --- /dev/null +++ b/dev-util/bsdiff/bsdiff-4.2.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/bsdiff/bsdiff-4.2.ebuild,v 1.1 2004/11/10 23:01:10 ferringb Exp $ + +IUSE="" + +DESCRIPTION="bsdiff: Binary Differencer using a suffix alg" +HOMEPAGE="http://www.daemonology.net/bsdiff/" +SRC_URI="http://www.daemonology.net/bsdiff/${P}.tar.gz" + +SLOT="0" +LICENSE="BSD-protection" +KEYWORDS="~x86 ~ppc ~sparc ~alpha ~hppa ~mips ~amd64 ~ia64" + +DEPEND="app-arch/bzip2" + +src_compile() { + BZIP=`which bzip2` + cd ${S} + gcc bsdiff.c -o bsdiff -DBZIP2=\"${BZIP}\" + gcc bspatch.c -o bspatch -DBZIP2=\"${BZIP}\" +} + +src_install() { + insinto /usr + dobin ${S}/bs{diff,patch} + doman ${S}/bs{diff,patch}.1 +} |