diff options
author | Jamie Lenehan <lenehan@twibble.org> | 2006-05-27 23:04:46 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-05-27 23:04:46 +0000 |
commit | b5b559207bbe75633461df8a07f831022bfbd749 (patch) | |
tree | d0b286998297c13ef245f5c12bdfe0ae6253c1ec /packages/rsync | |
parent | 1561250669e6936528f37596e6ccbbcb7b4206cc (diff) |
rsync: Update SRC_URI for 2.6.7 and add 2.6.8. Closes bug# 947.
Diffstat (limited to 'packages/rsync')
-rw-r--r-- | packages/rsync/rsync_2.6.7.bb | 4 | ||||
-rw-r--r-- | packages/rsync/rsync_2.6.8.bb | 17 |
2 files changed, 19 insertions, 2 deletions
diff --git a/packages/rsync/rsync_2.6.7.bb b/packages/rsync/rsync_2.6.7.bb index 421dc76d48..e349a6eb4a 100644 --- a/packages/rsync/rsync_2.6.7.bb +++ b/packages/rsync/rsync_2.6.7.bb @@ -4,8 +4,8 @@ SECTION = "console/network" PRIORITY = "optional" PR = "r1" -SRC_URI = "http://rsync.samba.org/ftp/rsync/rsync-${PV}.tar.gz \ -file://rsyncd.conf" +SRC_URI = "http://rsync.samba.org/ftp/rsync/old-versions/rsync-${PV}.tar.gz \ + file://rsyncd.conf" inherit autotools diff --git a/packages/rsync/rsync_2.6.8.bb b/packages/rsync/rsync_2.6.8.bb new file mode 100644 index 0000000000..78e2d6eef7 --- /dev/null +++ b/packages/rsync/rsync_2.6.8.bb @@ -0,0 +1,17 @@ +LICENSE = "GPL" +DESCRIPTION = "A file-synchronization tool" +SECTION = "console/network" +PRIORITY = "optional" +PR = "r0" + +SRC_URI = "http://rsync.samba.org/ftp/rsync/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=""' |