blob: 675f34819f6afcc7ca6a52d11b5f81349a3688b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
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.4.ebuild,v 1.1 2005/04/06 00:14:39 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"
}
|