blob: b2f891809e78571a350e57376d9341b2c43f81a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Copyright 2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License
# $Header: /var/cvsroot/gentoo-x86/sys-apps/deltup/deltup-0.3.5.ebuild,v 1.2 2003/06/21 21:19:39 drobbins Exp $
S=${WORKDIR}/${P}
DESCRIPTION="Patch system for Gentoo sources. Retains MD5 codes"
HOMEPAGE="http://deltup.sourceforge.net"
SRC_URI="mirror://sourceforge/deltup/${P}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 amd64 ~ppc ~sparc ~alpha ~mips ~hppa ~arm"
DEPEND=">=dev-util/xdelta-1.1.3
>=sys-apps/bzip2-1.0.0"
src_install () {
make DESTDIR=${D} install || die
dodoc README ChangeLog
doman deltup.1
}
|