diff options
author | Mike Frysinger <vapier@gentoo.org> | 2003-10-19 03:13:35 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2003-10-19 03:13:35 +0000 |
commit | 49dbd4318039654e57d0625d6192ab5f8078df33 (patch) | |
tree | a93a1759ee7bece89bc5763c4d60071094923a0a /net-misc/rsync | |
parent | dlt patch #27928 (diff) | |
download | gentoo-2-49dbd4318039654e57d0625d6192ab5f8078df33.tar.gz gentoo-2-49dbd4318039654e57d0625d6192ab5f8078df33.tar.bz2 gentoo-2-49dbd4318039654e57d0625d6192ab5f8078df33.zip |
old
Diffstat (limited to 'net-misc/rsync')
-rw-r--r-- | net-misc/rsync/files/digest-rsync-2.5.5-r1 | 1 | ||||
-rw-r--r-- | net-misc/rsync/files/digest-rsync-2.5.6-r2 | 2 | ||||
-rw-r--r-- | net-misc/rsync/rsync-2.5.5-r1.ebuild | 62 | ||||
-rw-r--r-- | net-misc/rsync/rsync-2.5.6-r2.ebuild | 63 |
4 files changed, 0 insertions, 128 deletions
diff --git a/net-misc/rsync/files/digest-rsync-2.5.5-r1 b/net-misc/rsync/files/digest-rsync-2.5.5-r1 deleted file mode 100644 index c93b80c18c14..000000000000 --- a/net-misc/rsync/files/digest-rsync-2.5.5-r1 +++ /dev/null @@ -1 +0,0 @@ -MD5 b34b5a5eed243fe18b667e2c1d34b3b6 rsync-2.5.5.tar.gz 398257 diff --git a/net-misc/rsync/files/digest-rsync-2.5.6-r2 b/net-misc/rsync/files/digest-rsync-2.5.6-r2 deleted file mode 100644 index de97f912b933..000000000000 --- a/net-misc/rsync/files/digest-rsync-2.5.6-r2 +++ /dev/null @@ -1,2 +0,0 @@ -MD5 ec39fcea433df4d6a3a4e0896c655535 rsync-2.5.6.tar.gz 584678 -MD5 a399e227a18ea3f2eb5aa2b401006d2d rsync-2.5.6-proxy-auth-1.patch 4353 diff --git a/net-misc/rsync/rsync-2.5.5-r1.ebuild b/net-misc/rsync/rsync-2.5.5-r1.ebuild deleted file mode 100644 index 195e26cbbbd0..000000000000 --- a/net-misc/rsync/rsync-2.5.5-r1.ebuild +++ /dev/null @@ -1,62 +0,0 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/rsync/rsync-2.5.5-r1.ebuild,v 1.12 2003/09/05 22:01:49 msterret Exp $ - -S=${WORKDIR}/${P} -DESCRIPTION="File transfer program to keep remote files into sync" -SRC_URI="http://rsync.samba.org/ftp/rsync/${P}.tar.gz" -HOMEPAGE="http://rsync.samba.org" -KEYWORDS="x86 ppc sparc alpha mips" -LICENSE="GPL-2" -SLOT="0" - -DEPEND="virtual/glibc - !build? ( >=dev-libs/popt-1.5 )" - -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() { - if [ -n "$(use build)" ]; then - POPTSETTING="--with-included-popt" - else - POPTSETTING="" - fi - ./configure --prefix=/usr --host=${CHOST} ${POPTSETTING} || die - if [ "`use static`" ] ; then - emake LDFLAGS="-static" || die - else - emake || die - fi -} - -src_install () { - make prefix=${D}/usr \ - mandir=${D}/usr/share/man \ - install || die - if [ -z "`use build`" ] - then - dodir /etc/rsync - dodoc COPYING NEWS OLDNEWS README TODO tech_report.tex - else - rm -rf ${D}/usr/share - fi -} - -pkg_postinst() { - if [ ! -d /etc/rsync ] - then - mkdir /etc/rsync - fi -} diff --git a/net-misc/rsync/rsync-2.5.6-r2.ebuild b/net-misc/rsync/rsync-2.5.6-r2.ebuild deleted file mode 100644 index 469b4347cc8a..000000000000 --- a/net-misc/rsync/rsync-2.5.6-r2.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/rsync/rsync-2.5.6-r2.ebuild,v 1.11 2003/09/05 22:01:49 msterret Exp $ - -inherit eutils - -DESCRIPTION="File transfer program to keep remote files into sync" -HOMEPAGE="http://rsync.samba.org/" -SRC_URI="http://rsync.samba.org/ftp/rsync/${P}.tar.gz - http://www.imada.sdu.dk/~bardur/personal/patches/${PN}-proxy-auth/${P}-proxy-auth-1.patch" - -LICENSE="GPL-2" -KEYWORDS="amd64 x86 ppc hppa arm sparc mips alpha" -SLOT="0" - -DEPEND="virtual/glibc - >=sys-apps/sed-4 - !build? ( >=dev-libs/popt-1.5 )" - -src_unpack() { - unpack ${A} - epatch ${DISTDIR}/${P}-proxy-auth-1.patch - cd ${S} - - # change confdir to /etc/rsync rather than just /etc (the --sysconfdir - # configure option doesn't work - sed -i 's|/etc/rsyncd.conf|/etc/rsync/rsyncd.conf|g' rsync.h - # yes, updating the man page is very important. - sed -i 's|/etc/rsyncd|/etc/rsync/rsyncd|g' rsyncd.conf.5 -} - -src_compile() { - [ -n "$(use build)" ] \ - && POPTSETTING="--with-included-popt" \ - || POPTSETTING="" - [ -z "${CC}" ] && CC=gcc - if [ "`${CC} -dumpversion | cut -d. -f1,2`" = "2.95" ] ; then - export LDFLAGS="${LDFLAGS} -lpthread" - fi - econf ${POPTSETTING} || die - use static && export LDFLAGS="${LDFLAGS} -static" - emake || die -} - -src_install() { - einstall || die - insinto /etc/conf.d && newins ${FILESDIR}/rsyncd.conf.d rsyncd - exeinto /etc/init.d && newexe ${FILESDIR}/rsyncd.init.d rsyncd - keepdir /etc/rsync - if [ -z "`use build`" ] ; then - dodir /etc/rsync - dodoc COPYING NEWS OLDNEWS README TODO tech_report.tex - else - rm -rf ${D}/usr/share - fi -} - -post_inst() { - einfo 'This patch enables usage of user:pass@proxy.foo:port' - einfo 'in the RSYNC_PROXY environment variable to support' - einfo 'the "Basic" proxy authentication scheme if you are' - einfo 'behind a password protected HTTP proxy.' -} |