diff options
author | Achim Gottinger <achim@gentoo.org> | 2000-08-22 17:57:50 +0000 |
---|---|---|
committer | Achim Gottinger <achim@gentoo.org> | 2000-08-22 17:57:50 +0000 |
commit | 5dd5bac62933158dc3df1ed1cd74ff60ab25da02 (patch) | |
tree | 6377b875f84a9fa199297e415348366d2b07e096 /net-misc | |
parent | *** empty log message *** (diff) | |
download | historical-5dd5bac62933158dc3df1ed1cd74ff60ab25da02.tar.gz historical-5dd5bac62933158dc3df1ed1cd74ff60ab25da02.tar.bz2 historical-5dd5bac62933158dc3df1ed1cd74ff60ab25da02.zip |
*** empty log message ***
Diffstat (limited to 'net-misc')
-rw-r--r-- | net-misc/rsync/files/digest-rsync-2.4.5 | 1 | ||||
-rw-r--r-- | net-misc/rsync/rsync-2.4.5.ebuild | 32 |
2 files changed, 33 insertions, 0 deletions
diff --git a/net-misc/rsync/files/digest-rsync-2.4.5 b/net-misc/rsync/files/digest-rsync-2.4.5 new file mode 100644 index 000000000000..a2a8d16398bd --- /dev/null +++ b/net-misc/rsync/files/digest-rsync-2.4.5 @@ -0,0 +1 @@ +MD5 d8397f98cce56a090e9b3893ca451d62 rsync-2.4.5.tar.gz diff --git a/net-misc/rsync/rsync-2.4.5.ebuild b/net-misc/rsync/rsync-2.4.5.ebuild new file mode 100644 index 000000000000..f59c3061c98f --- /dev/null +++ b/net-misc/rsync/rsync-2.4.5.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Achim Gottinger <achim@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/net-misc/rsync/rsync-2.4.5.ebuild,v 1.1 2000/08/22 17:57:50 achim Exp $ + +P=rsync-2.4.5 +A=${P}.tar.gz +S=${WORKDIR}/${P} +DESCRIPTION="File transfer program to keep remote files into sync" +SRC_URI="http://rsync.samba.org/ftp/rsync/${A}" +HOMEPAGE="http://rsync.samba.org" + + +src_compile() { + + cd ${S} + ./configure --prefix=/usr --sysconfdir=/etc/rsync --host=${CHOST} + make + +} + +src_install () { + + cd ${S} + make prefix=${D}/usr install + prepman + dodir /etc/rsync + dodoc COPYING README + +} + + |