blob: 654372f432fb9a5ffbd3f649da846dfab6288545 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-arch/tarsync/tarsync-0.1.ebuild,v 1.1 2005/05/24 12:43:44 ferringb Exp $
DESCRIPTION="Delta compression suite for using/generating binary patches"
HOMEPAGE="http://dev.gentoo.org/~ferringb/"
SRC_URI="http://dev.gentoo.org/~ferringb/${P}.tar.bz2"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86"
S="${WORKDIR}/${PN}"
DEPEND=">=sys-libs/zlib-1.1.4
>=app-arch/bzip2-1.0.2"
src_compile() {
emake tarsync || die "emake failed"
}
src_install() {
cd ${S}
einstall || die
}
|