summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAchim Gottinger <achim@gentoo.org>2001-04-30 11:40:12 +0000
committerAchim Gottinger <achim@gentoo.org>2001-04-30 11:40:12 +0000
commitc6866c69c60294d32ca8101a8a2733f89edee426 (patch)
treeff3e97cd0a99b499147ef68cd0247f162e0b73d4 /net-misc/rsync
parentCleanup (diff)
downloadhistorical-c6866c69c60294d32ca8101a8a2733f89edee426.tar.gz
historical-c6866c69c60294d32ca8101a8a2733f89edee426.tar.bz2
historical-c6866c69c60294d32ca8101a8a2733f89edee426.zip
Cleanup
Diffstat (limited to 'net-misc/rsync')
-rw-r--r--net-misc/rsync/files/digest-rsync-2.4.61
-rw-r--r--net-misc/rsync/files/digest-rsync-2.4.6-r11
-rw-r--r--net-misc/rsync/rsync-2.4.6-r1.ebuild43
3 files changed, 0 insertions, 45 deletions
diff --git a/net-misc/rsync/files/digest-rsync-2.4.6 b/net-misc/rsync/files/digest-rsync-2.4.6
deleted file mode 100644
index aba39e5e0aa3..000000000000
--- a/net-misc/rsync/files/digest-rsync-2.4.6
+++ /dev/null
@@ -1 +0,0 @@
-MD5 2ceb5e659f257c89569664c780b6fa6c rsync-2.4.6.tar.gz
diff --git a/net-misc/rsync/files/digest-rsync-2.4.6-r1 b/net-misc/rsync/files/digest-rsync-2.4.6-r1
deleted file mode 100644
index aba39e5e0aa3..000000000000
--- a/net-misc/rsync/files/digest-rsync-2.4.6-r1
+++ /dev/null
@@ -1 +0,0 @@
-MD5 2ceb5e659f257c89569664c780b6fa6c rsync-2.4.6.tar.gz
diff --git a/net-misc/rsync/rsync-2.4.6-r1.ebuild b/net-misc/rsync/rsync-2.4.6-r1.ebuild
deleted file mode 100644
index 68a1d1a43b17..000000000000
--- a/net-misc/rsync/rsync-2.4.6-r1.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# 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.6-r1.ebuild,v 1.1 2000/12/21 03:28:40 drobbins Exp $
-
-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"
-
-DEPEND=">=sys-libs/glibc-2.1.3"
-
-src_unpack() {
- unpack ${A}
- cd ${S}
-#change confdir to /etc/rsync rather than just /etc (the --sysconfdir configure option doesn't work
- cp rsync.h rsync.h.orig
- sed -e 's:RSYNCD_CONF "/etc/rsyncd.conf":RSYNCD_CONF "/etc/rsync/rsyncd.conf":g' rsync.h.orig > rsync.h
-#yes, updating the man page is very important.
- cp rsyncd.conf.5 rsyncd.conf.5.orig
- sed -e 's:/etc/rsyncd:/etc/rsync/rsyncd:g' rsyncd.conf.5.orig > rsyncd.conf.5
-}
-
-src_compile() {
-
- cd ${S}
- try ./configure --prefix=/usr --host=${CHOST}
- try make
-
-}
-
-src_install () {
-
- cd ${S}
- try make prefix=${D}/usr install
- prepman
- dodir /etc/rsync
- dodoc COPYING README
-
-}
-
-