diff options
author | Denys Dmytriyenko <denis@denix.org> | 2009-03-17 14:32:59 -0400 |
---|---|---|
committer | Denys Dmytriyenko <denis@denix.org> | 2009-03-17 14:32:59 -0400 |
commit | 709c4d66e0b107ca606941b988bad717c0b45d9b (patch) | |
tree | 37ee08b1eb308f3b2b6426d5793545c38396b838 /packages/rsync | |
parent | fa6cd5a3b993f16c27de4ff82b42684516d433ba (diff) |
rename packages/ to recipes/ per earlier agreement
See links below for more details:
http://thread.gmane.org/gmane.comp.handhelds.openembedded/21326
http://thread.gmane.org/gmane.comp.handhelds.openembedded/21816
Signed-off-by: Denys Dmytriyenko <denis@denix.org>
Acked-by: Mike Westerhof <mwester@dls.net>
Acked-by: Philip Balister <philip@balister.org>
Acked-by: Khem Raj <raj.khem@gmail.com>
Acked-by: Marcin Juszkiewicz <hrw@openembedded.org>
Acked-by: Koen Kooi <koen@openembedded.org>
Acked-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
Diffstat (limited to 'packages/rsync')
-rw-r--r-- | packages/rsync/files/m4.patch | 33 | ||||
-rw-r--r-- | packages/rsync/files/rsyncd.conf | 15 | ||||
-rw-r--r-- | packages/rsync/rsync.inc | 18 | ||||
-rw-r--r-- | packages/rsync/rsync_2.6.9.bb | 5 | ||||
-rw-r--r-- | packages/rsync/rsync_3.0.0.bb | 12 |
5 files changed, 0 insertions, 83 deletions
diff --git a/packages/rsync/files/m4.patch b/packages/rsync/files/m4.patch deleted file mode 100644 index 9279e0e354..0000000000 --- a/packages/rsync/files/m4.patch +++ /dev/null @@ -1,33 +0,0 @@ ---- /dev/null 2008-03-14 20:41:13.712070199 -0500 -+++ rsync-3.0.0/m4/have_type.m4 2008-03-15 03:28:57.000000000 -0500 -@@ -0,0 +1,30 @@ -+dnl $Id: have-type.m4 14166 2004-08-26 12:35:42Z joda $ -+dnl -+dnl check for existance of a type -+ -+dnl AC_HAVE_TYPE(TYPE,INCLUDES) -+AC_DEFUN([AC_HAVE_TYPE], [ -+AC_REQUIRE([AC_HEADER_STDC]) -+cv=`echo "$1" | sed 'y%./+- %__p__%'` -+AC_MSG_CHECKING(for $1) -+AC_CACHE_VAL([ac_cv_type_$cv], -+AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ -+#include <sys/types.h> -+#if STDC_HEADERS -+#include <stdlib.h> -+#include <stddef.h> -+#endif -+$2]], -+[[$1 foo;]])], -+[eval "ac_cv_type_$cv=yes"], -+[eval "ac_cv_type_$cv=no"]))dnl -+ac_foo=`eval echo \\$ac_cv_type_$cv` -+AC_MSG_RESULT($ac_foo) -+if test "$ac_foo" = yes; then -+ ac_tr_hdr=HAVE_`echo $1 | sed 'y%abcdefghijklmnopqrstuvwxyz./- %ABCDEFGHIJKLMNOPQRSTUVWXYZ____%'` -+if false; then -+ AC_CHECK_TYPES($1) -+fi -+ AC_DEFINE_UNQUOTED($ac_tr_hdr, 1, [Define if you have type `$1']) -+fi -+]) diff --git a/packages/rsync/files/rsyncd.conf b/packages/rsync/files/rsyncd.conf deleted file mode 100644 index 845f5b33f5..0000000000 --- a/packages/rsync/files/rsyncd.conf +++ /dev/null @@ -1,15 +0,0 @@ -# /etc/rsyncd.conf - -# Minimal configuration file for rsync daemon -# See rsync(1) and rsyncd.conf(5) man pages for help - -# This file is required by rsync --daemon -pid file = /var/run/rsyncd.pid -use chroot = yes -read only = yes - -# Simple example for enabling your own local rsync server -#[everything] -# path = / -# comment = Everything except /etc exposed -# exclude = /etc diff --git a/packages/rsync/rsync.inc b/packages/rsync/rsync.inc deleted file mode 100644 index 75f4c46303..0000000000 --- a/packages/rsync/rsync.inc +++ /dev/null @@ -1,18 +0,0 @@ -DESCRIPTION = "A file-synchronization tool" -HOMEPAGE = "http://www.samba.org/rsync" -SECTION = "console/network" -LICENSE = "GPL" -PRIORITY = "optional" -DEPENDS += "popt" - -inherit autotools - -SRC_URI = "http://rsync.samba.org/ftp/rsync/src/rsync-${PV}.tar.gz" - -EXTRA_OEMAKE='STRIP=""' - -do_install_append() { - install -d ${D}/etc - install -m 0644 ${WORKDIR}/rsyncd.conf ${D}/etc -} - diff --git a/packages/rsync/rsync_2.6.9.bb b/packages/rsync/rsync_2.6.9.bb deleted file mode 100644 index 77cb0b2b67..0000000000 --- a/packages/rsync/rsync_2.6.9.bb +++ /dev/null @@ -1,5 +0,0 @@ -require rsync.inc - -PR = "r3" - -SRC_URI += "file://rsyncd.conf" diff --git a/packages/rsync/rsync_3.0.0.bb b/packages/rsync/rsync_3.0.0.bb deleted file mode 100644 index cd8a986f8f..0000000000 --- a/packages/rsync/rsync_3.0.0.bb +++ /dev/null @@ -1,12 +0,0 @@ -require rsync.inc - -PR = "r1" - -SRC_URI += "\ - file://m4.patch;patch=1 \ - file://rsyncd.conf \ -" - -do_compile_prepend() { - sed -i "s/conf_stop make_stop//" Makefile -} |