diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-07-09 19:41:00 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-07-09 19:41:00 +0000 |
commit | b948b2b71f1b8b016f0ab5d9af498022b326c3c7 (patch) | |
tree | a0bdc11b8969dda83102eb5367c05a4202cece04 /net-misc | |
parent | Initial commit. (Manifest recommit) (diff) | |
download | gentoo-2-b948b2b71f1b8b016f0ab5d9af498022b326c3c7.tar.gz gentoo-2-b948b2b71f1b8b016f0ab5d9af498022b326c3c7.tar.bz2 gentoo-2-b948b2b71f1b8b016f0ab5d9af498022b326c3c7.zip |
prune old 2.6.2 releases
Diffstat (limited to 'net-misc')
-rw-r--r-- | net-misc/rsync/files/digest-rsync-2.6.2 | 1 | ||||
-rw-r--r-- | net-misc/rsync/files/digest-rsync-2.6.2-r1 | 2 | ||||
-rw-r--r-- | net-misc/rsync/files/digest-rsync-2.6.2-r2 | 2 | ||||
-rw-r--r-- | net-misc/rsync/rsync-2.6.2-r1.ebuild | 72 | ||||
-rw-r--r-- | net-misc/rsync/rsync-2.6.2-r2.ebuild | 68 | ||||
-rw-r--r-- | net-misc/rsync/rsync-2.6.2.ebuild | 74 |
6 files changed, 0 insertions, 219 deletions
diff --git a/net-misc/rsync/files/digest-rsync-2.6.2 b/net-misc/rsync/files/digest-rsync-2.6.2 deleted file mode 100644 index 317f5a74ef7a..000000000000 --- a/net-misc/rsync/files/digest-rsync-2.6.2 +++ /dev/null @@ -1 +0,0 @@ -MD5 bcacd9a9108a9e4760832212ec3d658d rsync-2.6.2.tar.gz 515402 diff --git a/net-misc/rsync/files/digest-rsync-2.6.2-r1 b/net-misc/rsync/files/digest-rsync-2.6.2-r1 deleted file mode 100644 index c6e03ea0dd43..000000000000 --- a/net-misc/rsync/files/digest-rsync-2.6.2-r1 +++ /dev/null @@ -1,2 +0,0 @@ -MD5 bcacd9a9108a9e4760832212ec3d658d rsync-2.6.2.tar.gz 515402 -MD5 5b33440e8a22a85b6d00aa86bc4ee508 rsync-2.6.2-acl.diff.bz2 30505 diff --git a/net-misc/rsync/files/digest-rsync-2.6.2-r2 b/net-misc/rsync/files/digest-rsync-2.6.2-r2 deleted file mode 100644 index c6e03ea0dd43..000000000000 --- a/net-misc/rsync/files/digest-rsync-2.6.2-r2 +++ /dev/null @@ -1,2 +0,0 @@ -MD5 bcacd9a9108a9e4760832212ec3d658d rsync-2.6.2.tar.gz 515402 -MD5 5b33440e8a22a85b6d00aa86bc4ee508 rsync-2.6.2-acl.diff.bz2 30505 diff --git a/net-misc/rsync/rsync-2.6.2-r1.ebuild b/net-misc/rsync/rsync-2.6.2-r1.ebuild deleted file mode 100644 index 960455407226..000000000000 --- a/net-misc/rsync/rsync-2.6.2-r1.ebuild +++ /dev/null @@ -1,72 +0,0 @@ -# Copyright 1999-2004 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/rsync/rsync-2.6.2-r1.ebuild,v 1.11 2004/07/01 21:50:14 squinky86 Exp $ - -inherit eutils flag-o-matic gcc - -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 - acl? ( http://www.saout.de/misc/${P}-acl.diff.bz2 )" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="x86 ppc sparc mips alpha arm hppa amd64 ~ia64 ppc64 s390" -IUSE="build static acl" - -RDEPEND="virtual/libc - !build? ( >=dev-libs/popt-1.5 )" -DEPEND="${RDEPEND} - >=sys-apps/sed-4 - acl? ( sys-apps/acl )" - -src_unpack() { - unpack "${P}.tar.gz" - cd ${S} - use acl && epatch ${DISTDIR}/${P}-acl.diff.bz2 - - # change confdir to /etc/rsync rather than just /etc (the --sysconfdir - # configure option doesn't work - sed -i \ - -e 's|/etc/rsyncd.conf|/etc/rsync/rsyncd.conf|g' \ - rsync.h \ - || die "sed rsync.h failed" - # yes, updating the man page is very important. - sed -i \ - -e 's|/etc/rsyncd|/etc/rsync/rsyncd|g' \ - rsyncd.conf.5 \ - || die "sed rsyncd.conf.5 failed" -} - -src_compile() { - [ "`gcc-version`" == "2.95" ] && append-ldflags -lpthread - use static && append-ldflags -static - export LDFLAGS - econf \ - $(use_with build included-popt) \ - $(use_with acl acl-support) \ - || die - emake || die "emake failed" -} - -src_install() { - make DESTDIR="${D}" install || die "make install failed" - insinto /etc/conf.d && newins "${FILESDIR}/rsyncd.conf.d" rsyncd - exeinto /etc/init.d && newexe "${FILESDIR}/rsyncd.init.d" rsyncd - if ! use build ; then - dodir /etc/rsync - dodoc NEWS OLDNEWS README TODO tech_report.tex - if [ ! -e /etc/rsync/rsyncd.conf ] ; then - insinto /etc/rsync - doins "${FILESDIR}/rsyncd.conf" - fi - else - rm -rf "${D}/usr/share" - fi -} - -pkg_postinst() { - ewarn "Please make sure you do NOT disable the rsync server running" - ewarn "in a chroot. Please check /etc/rsync/rsyncd.conf and make sure" - ewarn "it says: use chroot = yes" -} diff --git a/net-misc/rsync/rsync-2.6.2-r2.ebuild b/net-misc/rsync/rsync-2.6.2-r2.ebuild deleted file mode 100644 index 8259f141eedb..000000000000 --- a/net-misc/rsync/rsync-2.6.2-r2.ebuild +++ /dev/null @@ -1,68 +0,0 @@ -# Copyright 1999-2004 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/rsync/rsync-2.6.2-r2.ebuild,v 1.3 2004/07/01 21:50:14 squinky86 Exp $ - -inherit eutils flag-o-matic gcc - -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 - acl? ( http://www.saout.de/misc/${P}-acl.diff.bz2 )" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="x86 ppc sparc mips alpha arm hppa amd64 ~ia64 ppc64 s390" -IUSE="build static acl" - -RDEPEND="virtual/libc - !build? ( >=dev-libs/popt-1.5 )" -DEPEND="${RDEPEND} - >=sys-apps/sed-4 - acl? ( sys-apps/acl )" - -src_unpack() { - unpack "${P}.tar.gz" - cd ${S} - use acl && epatch ${DISTDIR}/${P}-acl.diff.bz2 - - # change confdir to /etc/rsync rather than just /etc (the --sysconfdir - # yes, updating the man page is very important. - sed -i \ - -e 's|/etc/rsyncd|/etc/rsync/rsyncd|g' \ - rsyncd.conf.5 \ - || die "sed rsyncd.conf.5 failed" -} - -src_compile() { - [ "`gcc-version`" == "2.95" ] && append-ldflags -lpthread - use static && append-ldflags -static - export LDFLAGS - econf \ - $(use_with build included-popt) \ - $(use_with acl acl-support) \ - --with-rsyncd-conf=/etc/rsync/rsyncd.conf \ - || die - emake || die "emake failed" -} - -src_install() { - make DESTDIR="${D}" install || die "make install failed" - insinto /etc/conf.d && newins "${FILESDIR}/rsyncd.conf.d" rsyncd - exeinto /etc/init.d && newexe "${FILESDIR}/rsyncd.init.d" rsyncd - if ! use build ; then - dodir /etc/rsync - dodoc NEWS OLDNEWS README TODO tech_report.tex - if [ ! -e /etc/rsync/rsyncd.conf ] ; then - insinto /etc/rsync - doins "${FILESDIR}/rsyncd.conf" - fi - else - rm -rf "${D}/usr/share" - fi -} - -pkg_postinst() { - ewarn "Please make sure you do NOT disable the rsync server running" - ewarn "in a chroot. Please check /etc/rsync/rsyncd.conf and make sure" - ewarn "it says: use chroot = yes" -} diff --git a/net-misc/rsync/rsync-2.6.2.ebuild b/net-misc/rsync/rsync-2.6.2.ebuild deleted file mode 100644 index a29b36323a23..000000000000 --- a/net-misc/rsync/rsync-2.6.2.ebuild +++ /dev/null @@ -1,74 +0,0 @@ -# Copyright 1999-2004 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/rsync/rsync-2.6.2.ebuild,v 1.10 2004/07/01 21:50:14 squinky86 Exp $ - -inherit eutils flag-o-matic gcc - -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" -# ACL patches need to be forward ported again. -# acl? ( http://www.saout.de/misc/${PN}-2.6.0-acl.diff.bz2 )" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~x86 ~ppc sparc mips ~alpha ~arm hppa ~amd64 ~ia64 ppc64 s390" -# IUSE="build static acl" -IUSE="build static" - -RDEPEND="virtual/libc - !build? ( >=dev-libs/popt-1.5 )" -DEPEND="${RDEPEND} - >=sys-apps/sed-4 - acl? ( sys-apps/acl )" - -src_unpack() { - unpack "${P}.tar.gz" - cd ${S} - #use acl && epatch ${DISTDIR}/${PN}-2.6.0-acl.diff.bz2 - - # change confdir to /etc/rsync rather than just /etc (the --sysconfdir - # configure option doesn't work - sed -i \ - -e 's|/etc/rsyncd.conf|/etc/rsync/rsyncd.conf|g' \ - rsync.h \ - || die "sed rsync.h failed" - # yes, updating the man page is very important. - sed -i \ - -e 's|/etc/rsyncd|/etc/rsync/rsyncd|g' \ - rsyncd.conf.5 \ - || die "sed rsyncd.conf.5 failed" -} - -src_compile() { - [ "`gcc-version`" == "2.95" ] && append-ldflags -lpthread - use static && append-ldflags -static - export LDFLAGS - econf \ - $(use_with build included-popt) \ - $(use_with acl acl-support) \ - || die - emake || die "emake failed" -} - -src_install() { - make DESTDIR="${D}" install || die "make install failed" - insinto /etc/conf.d && newins "${FILESDIR}/rsyncd.conf.d" rsyncd - exeinto /etc/init.d && newexe "${FILESDIR}/rsyncd.init.d" rsyncd - if ! use build ; then - dodir /etc/rsync - dodoc NEWS OLDNEWS README TODO tech_report.tex - if [ ! -e /etc/rsync/rsyncd.conf ] ; then - insinto /etc/rsync - doins "${FILESDIR}/rsyncd.conf" - fi - else - rm -rf "${D}/usr/share" - fi -} - -pkg_postinst() { - ewarn "Please make sure you do NOT disable the rsync server running" - ewarn "in a chroot. Please check /etc/rsync/rsyncd.conf and make sure" - ewarn "it says: use chroot = yes" -} |