diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-06-11 04:18:33 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-06-11 04:18:33 +0000 |
commit | f00d697cc32a4f140565f6e1439566e67a8b4005 (patch) | |
tree | 28ca82cadb617e768743a1385ecc48099559d1be /net-misc/rsync | |
parent | old (diff) | |
download | gentoo-2-f00d697cc32a4f140565f6e1439566e67a8b4005.tar.gz gentoo-2-f00d697cc32a4f140565f6e1439566e67a8b4005.tar.bz2 gentoo-2-f00d697cc32a4f140565f6e1439566e67a8b4005.zip |
Version bump.
(Portage version: 2.0.51.22-r1)
Diffstat (limited to 'net-misc/rsync')
-rw-r--r-- | net-misc/rsync/ChangeLog | 7 | ||||
-rw-r--r-- | net-misc/rsync/files/digest-rsync-2.6.5 | 1 | ||||
-rw-r--r-- | net-misc/rsync/rsync-2.6.5.ebuild | 73 |
3 files changed, 80 insertions, 1 deletions
diff --git a/net-misc/rsync/ChangeLog b/net-misc/rsync/ChangeLog index 564cec6d4837..6c206ba90856 100644 --- a/net-misc/rsync/ChangeLog +++ b/net-misc/rsync/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-misc/rsync # Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/rsync/ChangeLog,v 1.78 2005/05/31 17:05:33 wolf31o2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/rsync/ChangeLog,v 1.79 2005/06/11 04:18:33 vapier Exp $ + +*rsync-2.6.5 (11 Jun 2005) + + 11 Jun 2005; Mike Frysinger <vapier@gentoo.org> +rsync-2.6.5.ebuild: + Version bump. *rsync-2.6.0-r5 (31 May 2005) diff --git a/net-misc/rsync/files/digest-rsync-2.6.5 b/net-misc/rsync/files/digest-rsync-2.6.5 new file mode 100644 index 000000000000..0f0da816aa0b --- /dev/null +++ b/net-misc/rsync/files/digest-rsync-2.6.5 @@ -0,0 +1 @@ +MD5 3691cdf1540d0649ba679edce6bae8fc rsync-2.6.5.tar.gz 643388 diff --git a/net-misc/rsync/rsync-2.6.5.ebuild b/net-misc/rsync/rsync-2.6.5.ebuild new file mode 100644 index 000000000000..90f080d85520 --- /dev/null +++ b/net-misc/rsync/rsync-2.6.5.ebuild @@ -0,0 +1,73 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/rsync/rsync-2.6.5.ebuild,v 1.1 2005/06/11 04:18:33 vapier Exp $ + +inherit eutils flag-o-matic toolchain-funcs + +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" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" +IUSE="build static acl ipv6" + +RDEPEND="!build? ( >=dev-libs/popt-1.5 ) + acl? ( sys-apps/acl )" +DEPEND="${RDEPEND} + >=sys-apps/portage-2.0.51" + +S=${WORKDIR}/${P/_/} + +src_unpack() { + unpack ${P/_/}.tar.gz + cd "${S}" + if use acl ; then + epatch patches/acls.diff + autoconf || die "autoconf" + autoheader || die "autoheader" + fi +} + +src_compile() { + [[ $(gcc-version) == "2.95" ]] && append-ldflags -lpthread + use static && append-ldflags -static + + econf \ + $(use_with build included-popt) \ + $(use_with acl acl-support) \ + $(use_enable ipv6) \ + --with-rsyncd-conf=/etc/rsyncd.conf \ + || die + emake || die "emake failed" +} + +pkg_preinst() { + if [[ -e ${ROOT}/etc/rsync/rsyncd.conf ]] && [[ ! -e ${ROOT}/etc/rsyncd.conf ]] ; then + mv "${ROOT}"/etc/rsync/rsyncd.conf "${ROOT}"/etc/rsyncd.conf + rm -f "${ROOT}"/etc/rsync/.keep + rmdir "${ROOT}"/etc/rsync >& /dev/null + fi +} + +src_install() { + make DESTDIR="${D}" install || die "make install failed" + newconfd "${FILESDIR}"/rsyncd.conf.d rsyncd + newinitd "${FILESDIR}"/rsyncd.init.d rsyncd + if ! use build ; then + dodoc NEWS OLDNEWS README TODO tech_report.tex + insinto /etc + doins "${FILESDIR}"/rsyncd.conf + else + rm -r "${D}"/usr/share + fi +} + +pkg_postinst() { + ewarn "The rsyncd.conf file has been moved for you to /etc/rsyncd.conf" + echo + ewarn "Please make sure you do NOT disable the rsync server running" + ewarn "in a chroot. Please check /etc/rsyncd.conf and make sure" + ewarn "it says: use chroot = yes" +} |