| 1 |
idl0r |
1.1 |
# Copyright 1999-2012 Gentoo Foundation |
| 2 |
|
|
# Distributed under the terms of the GNU General Public License v2 |
| 3 |
johu |
1.9 |
# $Header: /var/cvsroot/gentoo-x86/net-misc/rsync/rsync-3.0.9-r2.ebuild,v 1.8 2012/08/19 12:11:16 blueness Exp $ |
| 4 |
idl0r |
1.1 |
|
| 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 |
johu |
1.9 |
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 |
idl0r |
1.1 |
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 |
vapier |
1.4 |
touch proto.h-tstamp #421625 |
| 42 |
idl0r |
1.1 |
} |
| 43 |
|
|
|
| 44 |
|
|
src_install() { |
| 45 |
grobian |
1.5 |
emake DESTDIR="${D}" install |
| 46 |
idl0r |
1.1 |
newconfd "${FILESDIR}"/rsyncd.conf.d rsyncd |
| 47 |
|
|
newinitd "${FILESDIR}"/rsyncd.init.d-r1 rsyncd |
| 48 |
|
|
dodoc NEWS OLDNEWS README TODO tech_report.tex |
| 49 |
|
|
insinto /etc |
| 50 |
|
|
newins "${FILESDIR}"/rsyncd.conf-3.0.9-r1 rsyncd.conf |
| 51 |
|
|
|
| 52 |
|
|
insinto /etc/logrotate.d |
| 53 |
|
|
newins "${FILESDIR}"/rsyncd.logrotate rsyncd |
| 54 |
|
|
|
| 55 |
|
|
insinto /etc/xinetd.d |
| 56 |
|
|
newins "${FILESDIR}"/rsyncd.xinetd-3.0.9-r1 rsyncd |
| 57 |
|
|
|
| 58 |
|
|
# Install the useful contrib scripts |
| 59 |
|
|
exeinto /usr/share/rsync |
| 60 |
|
|
doexe support/* |
| 61 |
|
|
rm -f "${ED}"/usr/share/rsync/{Makefile*,*.c} |
| 62 |
|
|
|
| 63 |
|
|
eprefixify "${ED}"/etc/{,xinetd.d}/rsyncd* |
| 64 |
|
|
} |
| 65 |
|
|
|
| 66 |
|
|
pkg_postinst() { |
| 67 |
|
|
if egrep -qis '^[[:space:]]use chroot[[:space:]]*=[[:space:]]*(no|0|false)' \ |
| 68 |
|
|
"${EROOT}"/etc/rsyncd.conf "${EROOT}"/etc/rsync/rsyncd.conf ; then |
| 69 |
|
|
ewarn "You have disabled chroot support in your rsyncd.conf. This" |
| 70 |
|
|
ewarn "is a security risk which you should fix. Please check your" |
| 71 |
|
|
ewarn "/etc/rsyncd.conf file and fix the setting 'use chroot'." |
| 72 |
|
|
fi |
| 73 |
|
|
} |