blob: f88c8300dde9491a4ccf90e904a400ad35c87075 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/diffball/diffball-0.7.1.ebuild,v 1.1 2005/11/05 09:02:19 ferringb Exp $
IUSE="debug"
DESCRIPTION="Delta compression suite for using/generating binary patches"
HOMEPAGE="http://developer.berlios.de/projects/diffball/"
SRC_URI="http://download.berlios.de/diffball/${P}.tar.bz2"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86 ~ppc ~sparc ~alpha ~hppa ~mips ~amd64 ~ia64 ~ppc-macos"
DEPEND=">=sys-libs/zlib-1.1.4 >=app-arch/bzip2-1.0.2"
RESTRICT="nostrip strip"
src_compile() {
econf $(use_enable debug asserts)
emake || die "emake failed"
}
src_install() {
cd ${S}
make install DESTDIR="${D}" || die
dodoc AUTHORS ChangeLog README TODO
}
|