Author: jhuntwork
Date: 2005-11-22 08:28:22 -0700 (Tue, 22 Nov 2005)
New Revision: 1135
Added:
trunk/packages/rsync/
trunk/packages/rsync/Makefile
Modified:
trunk/Makefile
trunk/etc/group
trunk/etc/passwd
trunk/packages/blfs-bootscripts/Makefile
Log:
Added rsync
Modified: trunk/Makefile
===================================================================
--- trunk/Makefile 2005-11-22 15:16:49 UTC (rev 1134)
+++ trunk/Makefile 2005-11-22 15:28:22 UTC (rev 1135)
@@ -273,7 +273,7 @@
ch-startup-notification chroot-gvim ch-xfce ch-vte ch-exo \
ch-XML-Parser ch-Terminal ch-irssi \
ch-xchat ch-wireless_tools ch-tcpwrappers ch-portmap ch-nfs-utils \
- ch-traceroute \
+ ch-traceroute ch-rsync \
ch-dialog ch-ncftp ch-pciutils ch-nALFS ch-device-mapper ch-LVM2 \
ch-dhcpcd ch-distcc ch-ppp ch-rp-pppoe ch-libaal ch-reiser4progs \
ch-squashfs ch-cpio ch-gdbm ch-mutt ch-msmtp ch-tin ch-mdadm ch-which \
Modified: trunk/etc/group
===================================================================
--- trunk/etc/group 2005-11-22 15:16:49 UTC (rev 1134)
+++ trunk/etc/group 2005-11-22 15:28:22 UTC (rev 1135)
@@ -15,4 +15,6 @@
usb:x:14:
cdrom:x:15:
mail:x:34:
+rsyncd:x:48:
+sshd:x:50:
nogroup:x:99:
Modified: trunk/etc/passwd
===================================================================
--- trunk/etc/passwd 2005-11-22 15:16:49 UTC (rev 1134)
+++ trunk/etc/passwd 2005-11-22 15:28:22 UTC (rev 1135)
@@ -1,3 +1,4 @@
root:x:0:0:root:/root:/bin/bash
+rsyncd:x:48:48:rsyncd:/home/rsync:/bin/false
sshd:x:50:50:sshd:/var/lib/sshd:/bin/false
nobody:x:99:99:nobody:/dev/null:/bin/false
Modified: trunk/packages/blfs-bootscripts/Makefile
===================================================================
--- trunk/packages/blfs-bootscripts/Makefile 2005-11-22 15:16:49 UTC (rev
1134)
+++ trunk/packages/blfs-bootscripts/Makefile 2005-11-22 15:28:22 UTC (rev
1135)
@@ -35,6 +35,7 @@
install -m754 blfs/init.d/nfs-server /etc/rc.d/init.d/
install -m754 blfs/init.d/nfs-client /etc/rc.d/init.d/
install -m754 blfs/init.d/iptables /etc/rc.d/init.d/
+ install -m754 blfs/init.d/rsync /etc/rc.d/init.d/
clean:
-rm -rf $(DIR)
Added: trunk/packages/rsync/Makefile
===================================================================
--- trunk/packages/rsync/Makefile 2005-11-22 15:16:49 UTC (rev 1134)
+++ trunk/packages/rsync/Makefile 2005-11-22 15:28:22 UTC (rev 1135)
@@ -0,0 +1,32 @@
+# rsync Makefile
+
+NM= rsync
+VRS= 2.6.6
+DIR= $(NM)-$(VRS)
+
+FILE= $(DIR).tar.bz2
+URL-$(FILE)= $(HTTPBLFS)/$(NM)/$(FILE)
+SHA-$(FILE)= 3596f480289513ec802335f1f7936022d876f912
+
+# Targets
+
+include $(ROOT)/scripts/functions
+
+chroot:
+ chroot "$(MP)" $(chenv-blfs) \
+ 'cd $(ROOT) && make ch-$(NM) $(chbash-post-bash)'
+
+stage2: Makefile $(FILE)
+ $(std_build)
+
+compile-stage2:
+ mkdir /home/rsync
+ chown rsyncd:rsyncd /home/rsync
+ ./configure --prefix=/usr
+ make $(PM)
+ make install
+
+clean:
+ -rm -rf $(DIR)
+
+.PHONY: clean chroot compile-stage2
--
http://linuxfromscratch.org/mailman/listinfo/livecd
FAQ: http://www.linuxfromscratch.org/faq/
Unsubscribe: See the above information page