diff options
author | Maik Schreiber <blizzy@gentoo.org> | 2002-12-10 21:38:46 +0000 |
---|---|---|
committer | Maik Schreiber <blizzy@gentoo.org> | 2002-12-10 21:38:46 +0000 |
commit | 6f346422ca83fc43976f80118bbdbac17894f5c5 (patch) | |
tree | 63dcc08d2afaca9a273e8ca8b32f05aaa94d146d /net-misc | |
parent | remove pre-releases (diff) | |
download | historical-6f346422ca83fc43976f80118bbdbac17894f5c5.tar.gz historical-6f346422ca83fc43976f80118bbdbac17894f5c5.tar.bz2 historical-6f346422ca83fc43976f80118bbdbac17894f5c5.zip |
new 2002-11-05 snapshot of net-misc/rsync
Diffstat (limited to 'net-misc')
-rw-r--r-- | net-misc/rsync/ChangeLog | 7 | ||||
-rw-r--r-- | net-misc/rsync/files/digest-rsync-2.5.6_pre20021105 | 1 | ||||
-rw-r--r-- | net-misc/rsync/rsync-2.5.6_pre20021105.ebuild | 61 |
3 files changed, 68 insertions, 1 deletions
diff --git a/net-misc/rsync/ChangeLog b/net-misc/rsync/ChangeLog index 23bddfd3e1b1..511f7aee8d64 100644 --- a/net-misc/rsync/ChangeLog +++ b/net-misc/rsync/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-misc/rsync # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/net-misc/rsync/ChangeLog,v 1.9 2002/12/09 04:33:19 manson Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/rsync/ChangeLog,v 1.10 2002/12/10 21:38:46 blizzy Exp $ + +*rsync-2.5.6_pre20021105 (10 Dec 2002) + + 10 Dec 2002; Maik Schreiber <blizzy@gentoo.org> : New upstream snapshot. + Seems to be stable for several months now (see rsync mailing list). \* Autoupdate keywords (12-6-02) 06 Dec 2002; Rodney Rees <manson@gentoo.org> changed sparc ~sparc keywords diff --git a/net-misc/rsync/files/digest-rsync-2.5.6_pre20021105 b/net-misc/rsync/files/digest-rsync-2.5.6_pre20021105 new file mode 100644 index 000000000000..f1e52f8ae562 --- /dev/null +++ b/net-misc/rsync/files/digest-rsync-2.5.6_pre20021105 @@ -0,0 +1 @@ +MD5 113d4b942000e46946a3bdba27e069a3 rsync-2.5.6_pre20021105.tar.bz2 368755 diff --git a/net-misc/rsync/rsync-2.5.6_pre20021105.ebuild b/net-misc/rsync/rsync-2.5.6_pre20021105.ebuild new file mode 100644 index 000000000000..9bdf8391f2ae --- /dev/null +++ b/net-misc/rsync/rsync-2.5.6_pre20021105.ebuild @@ -0,0 +1,61 @@ +# Copyright 1999-2002 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_pre20021105.ebuild,v 1.1 2002/12/10 21:38:46 blizzy Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="File transfer program to keep remote files into sync" +SRC_URI="http://www.gentoo.org/~blizzy/${PF}.tar.bz2" +HOMEPAGE="http://rsync.samba.org" +KEYWORDS="~x86 ~ppc ~sparc ~sparc64 ~alpha" +LICENSE="GPL-2" +SLOT="0" + +DEPEND="virtual/glibc" + +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 +} |