diff options
author | Qing He <qing.he@intel.com> | 2010-07-06 16:56:06 +0800 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-07-16 16:25:17 +0100 |
commit | 549a171917447103dece54e9e9a3be16fe547905 (patch) | |
tree | b712380760f05db3295e3079b5e02fb1ec00c6fe /meta/packages/rsync/rsync.inc | |
parent | dd05d05044017fb46b70f46503c76212aa606a9e (diff) | |
download | openembedded-core-549a171917447103dece54e9e9a3be16fe547905.tar.gz openembedded-core-549a171917447103dece54e9e9a3be16fe547905.tar.bz2 openembedded-core-549a171917447103dece54e9e9a3be16fe547905.zip |
rsync: upgrade to version 3.0.7
from 2.6.9
2.6.9 is also preserved as the last known GPL2 version
changes:
- 3.0.7 has some new change to the autotools scripts, it uses
and configure.sh and checks its existence in Makefile, adapt
this by adding do_configure_{prepend,append}
- aclocal.m4 now also contains custom m4 macros, add acinclude.m4
in the files/
- add popt as build dependency. Besides, rsync can also link to
libacl and libattr. Possibly need to add them in the future, for
now, document the dependency
Signed-off-by: Qing He <qing.he@intel.com>
Diffstat (limited to 'meta/packages/rsync/rsync.inc')
-rw-r--r-- | meta/packages/rsync/rsync.inc | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/meta/packages/rsync/rsync.inc b/meta/packages/rsync/rsync.inc new file mode 100644 index 0000000000..fdc7e37cf6 --- /dev/null +++ b/meta/packages/rsync/rsync.inc @@ -0,0 +1,24 @@ +DESCRIPTION = "A file-synchronization tool" +HOMEPAGE = "http://rsync.samba.org/" +BUGTRACKER = "http://rsync.samba.org/bugzilla.html" +SECTION = "console/network" +PRIORITY = "optional" + +# GPLv2+ (<< 3.0.0), GPLv3+ (>= 3.0.0) +LICENSE = "GPLv3+" +LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504" + +# needs to add acl and attr +DEPENDS = "popt" + +SRC_URI = "http://rsync.samba.org/ftp/rsync/src/rsync-${PV}.tar.gz \ + file://rsyncd.conf" + +inherit autotools + +do_install_append() { + install -d ${D}/etc + install -m 0644 ${WORKDIR}/rsyncd.conf ${D}/etc +} + +EXTRA_OEMAKE='STRIP=""' |