summaryrefslogtreecommitdiffstats
path: root/meta/packages/rsync/rsync_2.6.9.bb
diff options
context:
space:
mode:
authorQing He <qing.he@intel.com>2010-07-06 16:56:06 +0800
committerRichard Purdie <rpurdie@linux.intel.com>2010-07-16 16:25:17 +0100
commit549a171917447103dece54e9e9a3be16fe547905 (patch)
treeb712380760f05db3295e3079b5e02fb1ec00c6fe /meta/packages/rsync/rsync_2.6.9.bb
parentdd05d05044017fb46b70f46503c76212aa606a9e (diff)
downloadpoky-549a171917447103dece54e9e9a3be16fe547905.tar.gz
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_2.6.9.bb')
-rw-r--r--meta/packages/rsync/rsync_2.6.9.bb20
1 files changed, 3 insertions, 17 deletions
diff --git a/meta/packages/rsync/rsync_2.6.9.bb b/meta/packages/rsync/rsync_2.6.9.bb
index 2b0275b292..a9b5c86d8f 100644
--- a/meta/packages/rsync/rsync_2.6.9.bb
+++ b/meta/packages/rsync/rsync_2.6.9.bb
@@ -1,20 +1,6 @@
1DESCRIPTION = "A file-synchronization tool" 1require rsync.inc
2HOMEPAGE = "http://rsync.samba.org/"
3BUGTRACKER = "http://rsync.samba.org/bugzilla.html"
4SECTION = "console/network"
5PRIORITY = "optional"
6 2
7# GPLv2+ (<< 3.0.0), GPLv3+ (>= 3.0.0)
8LICENSE = "GPLv2+" 3LICENSE = "GPLv2+"
4LIC_FILES_CHKSUM = "file://COPYING;md5=6d5a9d4c4d3af25cd68fd83e8a8cb09c"
9 5
10SRC_URI = "http://rsync.samba.org/ftp/rsync/src/rsync-${PV}.tar.gz \ 6PR = "r1"
11 file://rsyncd.conf"
12
13inherit autotools
14
15do_install_append() {
16 install -d ${D}/etc
17 install -m 0644 ${WORKDIR}/rsyncd.conf ${D}/etc
18}
19
20EXTRA_OEMAKE='STRIP=""'