blob: c56dc43733d7213f508af02c8af872c3bd92495d (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2
# Author Justin <justin@skiingyac.com>
# $Header: /var/cvsroot/gentoo-x86/net-libs/librsync/librsync-0.9.5.ebuild,v 1.2 2002/05/27 17:27:39 drobbins Exp $
S=${WORKDIR}/${P}
DESCRIPTION="Flexible remote checksum-based differencing"
SRC_URI="mirror://sourceforge/rproxy/${P}.tar.gz"
HOMEPAGE="http://www.sourceforge.net/projects/rproxy/"
DEPEND="virtual/glibc"
src_compile() {
./configure --prefix=/usr --host=${CHOST} || die
emake || die
}
src_install () {
make prefix=${D}/usr \
mandir=${D}/usr/share/man \
install || die
dodoc COPYING NEWS INSTALL AUTHORS THANKS README TODO
}
|