| 1 |
# Copyright 1999-2012 Gentoo Foundation |
| 2 |
# Distributed under the terms of the GNU General Public License v2 |
| 3 |
# $Header: /var/cvsroot/gentoo-x86/net-misc/rsync/rsync-3.0.9-r2.ebuild,v 1.1 2012/03/22 22:01:21 idl0r Exp $ |
| 4 |
|
| 5 |
EAPI="4" |
| 6 |
|
| 7 |
inherit eutils flag-o-matic prefix |
| 8 |
|
| 9 |
DESCRIPTION="File transfer program to keep remote files into sync" |
| 10 |
HOMEPAGE="http://rsync.samba.org/" |
| 11 |
SRC_URI="http://rsync.samba.org/ftp/rsync/src/${P/_/}.tar.gz" |
| 12 |
|
| 13 |
LICENSE="GPL-3" |
| 14 |
SLOT="0" |
| 15 |
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" |
| 16 |
IUSE="acl iconv ipv6 static xattr" |
| 17 |
|
| 18 |
LIB_DEPEND="acl? ( virtual/acl[static-libs(+)] ) |
| 19 |
xattr? ( kernel_linux? ( sys-apps/attr[static-libs(+)] ) ) |
| 20 |
>=dev-libs/popt-1.5[static-libs(+)]" |
| 21 |
RDEPEND="!static? ( ${LIB_DEPEND//\[static-libs(+)]} ) |
| 22 |
iconv? ( virtual/libiconv )" |
| 23 |
DEPEND="${RDEPEND} |
| 24 |
static? ( ${LIB_DEPEND} )" |
| 25 |
|
| 26 |
S=${WORKDIR}/${P/_/} |
| 27 |
|
| 28 |
src_prepare() { |
| 29 |
epatch_user |
| 30 |
} |
| 31 |
|
| 32 |
src_configure() { |
| 33 |
use static && append-ldflags -static |
| 34 |
econf \ |
| 35 |
--without-included-popt \ |
| 36 |
$(use_enable acl acl-support) \ |
| 37 |
$(use_enable xattr xattr-support) \ |
| 38 |
$(use_enable ipv6) \ |
| 39 |
$(use_enable iconv) \ |
| 40 |
--with-rsyncd-conf="${EPREFIX}"/etc/rsyncd.conf |
| 41 |
} |
| 42 |
|
| 43 |
src_install() { |
| 44 |
emake DESTDIR="${D}" install |
| 45 |
newconfd "${FILESDIR}"/rsyncd.conf.d rsyncd |
| 46 |
newinitd "${FILESDIR}"/rsyncd.init.d-r1 rsyncd |
| 47 |
dodoc NEWS OLDNEWS README TODO tech_report.tex |
| 48 |
insinto /etc |
| 49 |
newins "${FILESDIR}"/rsyncd.conf-3.0.9-r1 rsyncd.conf |
| 50 |
|
| 51 |
insinto /etc/logrotate.d |
| 52 |
newins "${FILESDIR}"/rsyncd.logrotate rsyncd |
| 53 |
|
| 54 |
insinto /etc/xinetd.d |
| 55 |
newins "${FILESDIR}"/rsyncd.xinetd-3.0.9-r1 rsyncd |
| 56 |
|
| 57 |
# Install the useful contrib scripts |
| 58 |
exeinto /usr/share/rsync |
| 59 |
doexe support/* |
| 60 |
rm -f "${ED}"/usr/share/rsync/{Makefile*,*.c} |
| 61 |
|
| 62 |
eprefixify "${ED}"/etc/{,xinetd.d}/rsyncd* |
| 63 |
} |
| 64 |
|
| 65 |
pkg_postinst() { |
| 66 |
if egrep -qis '^[[:space:]]use chroot[[:space:]]*=[[:space:]]*(no|0|false)' \ |
| 67 |
"${EROOT}"/etc/rsyncd.conf "${EROOT}"/etc/rsync/rsyncd.conf ; then |
| 68 |
ewarn "You have disabled chroot support in your rsyncd.conf. This" |
| 69 |
ewarn "is a security risk which you should fix. Please check your" |
| 70 |
ewarn "/etc/rsyncd.conf file and fix the setting 'use chroot'." |
| 71 |
fi |
| 72 |
} |