CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
rsync: Initial import (verified compilation).
authorVictor Martinez <pitillo@ono.com>
Sun, 14 Mar 2010 11:12:07 +0000 (11:12 +0000)
committerVictor Martinez <pitillo@ono.com>
Sun, 14 Mar 2010 11:12:07 +0000 (11:12 +0000)
rsync/.footprint [new file with mode: 0644]
rsync/.md5sum [new file with mode: 0644]
rsync/Pkgfile [new file with mode: 0644]

diff --git a/rsync/.footprint b/rsync/.footprint
new file mode 100644 (file)
index 0000000..dbb4683
--- /dev/null
@@ -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 (file)
index 0000000..25d5822
--- /dev/null
@@ -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 (file)
index 0000000..ca1b8bc
--- /dev/null
@@ -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
+}