29 lines
898 B
Bash
29 lines
898 B
Bash
# Copyright 1999-2010 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-util/bsdiff/bsdiff-4.3-r1.ebuild,v 1.13 2010/10/19 05:17:27 leio Exp $
|
|
|
|
inherit toolchain-funcs flag-o-matic
|
|
|
|
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-2"
|
|
KEYWORDS="alpha amd64 hppa ia64 ~mips ppc sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos"
|
|
|
|
DEPEND="app-arch/bzip2"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
src_compile() {
|
|
append-lfs-flags
|
|
$(tc-getCC) ${CFLAGS} ${LDFLAGS} -o bsdiff bsdiff.c -lbz2 || die "failed compiling bsdiff"
|
|
$(tc-getCC) ${CFLAGS} ${LDFLAGS} -o bspatch bspatch.c -lbz2 || die "failed compiling bspatch"
|
|
}
|
|
|
|
src_install() {
|
|
dobin bs{diff,patch}
|
|
doman bs{diff,patch}.1
|
|
}
|