From: Victor Martinez Date: Sun, 14 Mar 2010 11:12:07 +0000 (+0000) Subject: rsync: Initial import (verified compilation). X-Git-Url: http://gitweb/?a=commitdiff_plain;h=0e08aba927647bfad25c01306921aad535a8f5ef;hp=28439a6c650fcb26c02da3a957417a659f01a865;p=crossrootfs.git rsync: Initial import (verified compilation). --- diff --git a/rsync/.footprint b/rsync/.footprint new file mode 100644 index 0000000..dbb4683 --- /dev/null +++ b/rsync/.footprint @@ -0,0 +1,18 @@ +drwxr-xr-x root/root etc/ +drwxr-xr-x root/root etc/ports/ +drwxr-xr-x root/root etc/ports/drivers/ +-rwxr-xr-x root/root etc/ports/drivers/rsync +drwxr-xr-x root/root etc/rc.d/ +-rwxr-xr-x root/root etc/rc.d/rsyncd +-rw-r--r-- root/root etc/rsyncd.conf +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/rsync +drwxr-xr-x root/root usr/man/ +drwxr-xr-x root/root usr/man/man1/ +-rw-r--r-- root/root usr/man/man1/rsync.1.gz +drwxr-xr-x root/root usr/man/man5/ +-rw-r--r-- root/root usr/man/man5/rsyncd.conf.5.gz +drwxr-xr-x root/root var/ +drwxr-xr-x root/root var/log/ +-rw-r--r-- root/root var/log/rsyncd.log (EMPTY) diff --git a/rsync/.md5sum b/rsync/.md5sum new file mode 100644 index 0000000..25d5822 --- /dev/null +++ b/rsync/.md5sum @@ -0,0 +1,4 @@ +b53525900817cf1ba7ad3a516ab5bfe9 rsync-3.0.7.tar.gz +f8dcfe5cf2afef1ea90107a6ff4540cd rsync.driver +a71995f22768c931c5649a1336d25ffb rsyncd +b4e95fa8c8f3ae13cfdf616abd6a3960 rsyncd.conf diff --git a/rsync/Pkgfile b/rsync/Pkgfile new file mode 100644 index 0000000..ca1b8bc --- /dev/null +++ b/rsync/Pkgfile @@ -0,0 +1,31 @@ +# Description: Utility for incremental file transfers over networks +# URL: http://rsync.samba.org +# Maintainer: CRUX System Team, core-ports at crux dot nu +# Arch Maintainer: CRUX-ARM System Team, crux-arm at mikeux dot dyndns dot org +# Depends on: dropbear + +name=rsync +version=3.0.7 +release=1 +source=(http://rsync.samba.org/ftp/$name/src/$name-$version.tar.gz \ + rsyncd.conf rsyncd rsync.driver) + +build () { + cd $name-$version + + ./configure --build=$CHOST \ + --host=$CTARGET \ + --prefix=/usr \ + --mandir=/usr/man \ + --with-rsh=ssh \ + --with-included-popt + + make + make DESTDIR=$PKG install + + install -d $PKG/etc/{rc.d,ports/drivers} $PKG/var/log + install -m 755 $SRC/rsyncd $PKG/etc/rc.d + install -m 644 $SRC/rsyncd.conf $PKG/etc + install -m 755 $SRC/rsync.driver $PKG/etc/ports/drivers/rsync + touch $PKG/var/log/rsyncd.log +}