* [Buildroot] svn commit: trunk/buildroot/package/rsync
@ 2008-08-20 14:15 jacmet at uclibc.org
0 siblings, 0 replies; 6+ messages in thread
From: jacmet at uclibc.org @ 2008-08-20 14:15 UTC (permalink / raw)
To: buildroot
Author: jacmet
Date: 2008-08-20 07:15:10 -0700 (Wed, 20 Aug 2008)
New Revision: 23118
Log:
rsync: convert to Makefile.autotools.in format
Modified:
trunk/buildroot/package/rsync/rsync.mk
Changeset:
Modified: trunk/buildroot/package/rsync/rsync.mk
===================================================================
--- trunk/buildroot/package/rsync/rsync.mk 2008-08-20 08:50:02 UTC (rev 23117)
+++ trunk/buildroot/package/rsync/rsync.mk 2008-08-20 14:15:10 UTC (rev 23118)
@@ -3,57 +3,17 @@
# rsync
#
#############################################################
+
RSYNC_VERSION:=2.6.9
RSYNC_SOURCE:=rsync-$(RSYNC_VERSION).tar.gz
RSYNC_SITE:=http://rsync.samba.org/ftp/rsync/src
-RSYNC_DIR:=$(BUILD_DIR)/rsync-$(RSYNC_VERSION)
-RSYNC_CAT:=$(ZCAT)
-RSYNC_BINARY:=rsync
-RSYNC_TARGET_BINARY:=usr/bin/rsync
+RSYNC_AUTORECONF:=no
+RSYNC_INSTALL_STAGING:=NO
+RSYNC_INSTALL_TARGET:=YES
+RSYNC_INSTALL_TARGET_OPT:=DESTDIR=$(TARGET_DIR) INSTALLCMD='./install-sh -c' \
+ STRIPPROG="$(TARGET_STRIP)" install-strip
+RSYNC_CONF_OPT:=--with-included-popt
-$(DL_DIR)/$(RSYNC_SOURCE):
- $(WGET) -P $(DL_DIR) $(RSYNC_SITE)/$(RSYNC_SOURCE)
+RSYNC_DEPENDENCIES:=uclibc
-rsync-source: $(DL_DIR)/$(RSYNC_SOURCE)
-
-$(RSYNC_DIR)/.unpacked: $(DL_DIR)/$(RSYNC_SOURCE)
- $(RSYNC_CAT) $(DL_DIR)/$(RSYNC_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
- toolchain/patch-kernel.sh $(RSYNC_DIR) package/rsync/ rsync\*.patch
- $(CONFIG_UPDATE) $(RSYNC_DIR)
- touch $@
-
-$(RSYNC_DIR)/.configured: $(RSYNC_DIR)/.unpacked
- (cd $(RSYNC_DIR); rm -rf config.cache; \
- $(TARGET_CONFIGURE_OPTS) \
- $(TARGET_CONFIGURE_ARGS) \
- ./configure \
- --target=$(GNU_TARGET_NAME) \
- --host=$(GNU_TARGET_NAME) \
- --build=$(GNU_HOST_NAME) \
- --prefix=/usr \
- --with-included-popt \
- )
- touch $@
-
-$(RSYNC_DIR)/$(RSYNC_BINARY): $(RSYNC_DIR)/.configured
- $(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(RSYNC_DIR)
-
-$(TARGET_DIR)/$(RSYNC_TARGET_BINARY): $(RSYNC_DIR)/$(RSYNC_BINARY)
- install -D $(RSYNC_DIR)/$(RSYNC_BINARY) $(TARGET_DIR)/$(RSYNC_TARGET_BINARY)
-
-rsync: uclibc $(TARGET_DIR)/$(RSYNC_TARGET_BINARY)
-
-rsync-clean:
- rm -f $(TARGET_DIR)/$(RSYNC_TARGET_BINARY)
- -$(MAKE) -C $(RSYNC_DIR) clean
-
-rsync-dirclean:
- rm -rf $(RSYNC_DIR)
-#############################################################
-#
-# Toplevel Makefile options
-#
-#############################################################
-ifeq ($(strip $(BR2_PACKAGE_RSYNC)),y)
-TARGETS+=rsync
-endif
+$(eval $(call AUTOTARGETS,package,rsync))
^ permalink raw reply [flat|nested] 6+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/rsync
@ 2009-01-03 8:04 nkukard at uclibc.org
0 siblings, 0 replies; 6+ messages in thread
From: nkukard at uclibc.org @ 2009-01-03 8:04 UTC (permalink / raw)
To: buildroot
Author: nkukard
Date: 2009-01-03 08:04:21 +0000 (Sat, 03 Jan 2009)
New Revision: 24664
Log:
rsync doesn't support install-exec, override RSYNC_INSTALL_TARGET_OPT to install non-stripped
Modified:
trunk/buildroot/package/rsync/rsync.mk
Changeset:
Modified: trunk/buildroot/package/rsync/rsync.mk
===================================================================
--- trunk/buildroot/package/rsync/rsync.mk 2009-01-03 01:06:36 UTC (rev 24663)
+++ trunk/buildroot/package/rsync/rsync.mk 2009-01-03 08:04:21 UTC (rev 24664)
@@ -10,8 +10,11 @@
RSYNC_AUTORECONF:=no
RSYNC_INSTALL_STAGING:=NO
RSYNC_INSTALL_TARGET:=YES
-ifeq ($(BR2_ENABLE_DEBUG),)
+ifeq ($(BR2_ENABLE_DEBUG),y)
RSYNC_INSTALL_TARGET_OPT:=DESTDIR=$(TARGET_DIR) INSTALLCMD='./install-sh -c' \
+ install
+else
+RSYNC_INSTALL_TARGET_OPT:=DESTDIR=$(TARGET_DIR) INSTALLCMD='./install-sh -c' \
STRIPPROG="$(TARGET_STRIP)" install-strip
endif
RSYNC_CONF_OPT:=--with-included-popt
^ permalink raw reply [flat|nested] 6+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/rsync
@ 2008-08-20 14:15 jacmet at uclibc.org
0 siblings, 0 replies; 6+ messages in thread
From: jacmet at uclibc.org @ 2008-08-20 14:15 UTC (permalink / raw)
To: buildroot
Author: jacmet
Date: 2008-08-20 07:15:15 -0700 (Wed, 20 Aug 2008)
New Revision: 23119
Log:
rsync: bump version
Modified:
trunk/buildroot/package/rsync/rsync.mk
Changeset:
Modified: trunk/buildroot/package/rsync/rsync.mk
===================================================================
--- trunk/buildroot/package/rsync/rsync.mk 2008-08-20 14:15:10 UTC (rev 23118)
+++ trunk/buildroot/package/rsync/rsync.mk 2008-08-20 14:15:15 UTC (rev 23119)
@@ -4,7 +4,7 @@
#
#############################################################
-RSYNC_VERSION:=2.6.9
+RSYNC_VERSION:=3.0.3
RSYNC_SOURCE:=rsync-$(RSYNC_VERSION).tar.gz
RSYNC_SITE:=http://rsync.samba.org/ftp/rsync/src
RSYNC_AUTORECONF:=no
^ permalink raw reply [flat|nested] 6+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/rsync
@ 2008-03-10 16:17 ninevoltz at uclibc.org
0 siblings, 0 replies; 6+ messages in thread
From: ninevoltz at uclibc.org @ 2008-03-10 16:17 UTC (permalink / raw)
To: buildroot
Author: ninevoltz
Date: 2008-03-10 09:17:26 -0700 (Mon, 10 Mar 2008)
New Revision: 21283
Log:
cheanged rsync download url
Modified:
trunk/buildroot/package/rsync/rsync.mk
Changeset:
Modified: trunk/buildroot/package/rsync/rsync.mk
===================================================================
--- trunk/buildroot/package/rsync/rsync.mk 2008-03-10 15:22:43 UTC (rev 21282)
+++ trunk/buildroot/package/rsync/rsync.mk 2008-03-10 16:17:26 UTC (rev 21283)
@@ -5,7 +5,7 @@
#############################################################
RSYNC_VERSION:=2.6.9
RSYNC_SOURCE:=rsync-$(RSYNC_VERSION).tar.gz
-RSYNC_SITE:=http://rsync.samba.org/ftp/rsync/
+RSYNC_SITE:=http://rsync.samba.org/ftp/rsync/src
RSYNC_DIR:=$(BUILD_DIR)/rsync-$(RSYNC_VERSION)
RSYNC_CAT:=$(ZCAT)
RSYNC_BINARY:=rsync
^ permalink raw reply [flat|nested] 6+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/rsync
@ 2008-03-06 18:22 ninevoltz at uclibc.org
0 siblings, 0 replies; 6+ messages in thread
From: ninevoltz at uclibc.org @ 2008-03-06 18:22 UTC (permalink / raw)
To: buildroot
Author: ninevoltz
Date: 2008-03-06 10:22:48 -0800 (Thu, 06 Mar 2008)
New Revision: 21223
Log:
cleanup rsync makefile
Modified:
trunk/buildroot/package/rsync/rsync.mk
Changeset:
Modified: trunk/buildroot/package/rsync/rsync.mk
===================================================================
--- trunk/buildroot/package/rsync/rsync.mk 2008-03-06 18:22:31 UTC (rev 21222)
+++ trunk/buildroot/package/rsync/rsync.mk 2008-03-06 18:22:48 UTC (rev 21223)
@@ -20,7 +20,7 @@
$(RSYNC_CAT) $(DL_DIR)/$(RSYNC_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
toolchain/patch-kernel.sh $(RSYNC_DIR) package/rsync/ rsync\*.patch
$(CONFIG_UPDATE) $(RSYNC_DIR)
- touch $(RSYNC_DIR)/.unpacked
+ touch $@
$(RSYNC_DIR)/.configured: $(RSYNC_DIR)/.unpacked
(cd $(RSYNC_DIR); rm -rf config.cache; \
@@ -33,7 +33,7 @@
--prefix=/usr \
--with-included-popt \
)
- touch $(RSYNC_DIR)/.configured
+ touch $@
$(RSYNC_DIR)/$(RSYNC_BINARY): $(RSYNC_DIR)/.configured
$(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(RSYNC_DIR)
^ permalink raw reply [flat|nested] 6+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/rsync
@ 2006-11-20 16:40 aldot at uclibc.org
0 siblings, 0 replies; 6+ messages in thread
From: aldot at uclibc.org @ 2006-11-20 16:40 UTC (permalink / raw)
To: buildroot
Author: aldot
Date: 2006-11-20 08:40:19 -0800 (Mon, 20 Nov 2006)
New Revision: 16591
Log:
- bump version
Modified:
trunk/buildroot/package/rsync/rsync.mk
Changeset:
Modified: trunk/buildroot/package/rsync/rsync.mk
===================================================================
--- trunk/buildroot/package/rsync/rsync.mk 2006-11-20 16:33:05 UTC (rev 16590)
+++ trunk/buildroot/package/rsync/rsync.mk 2006-11-20 16:40:19 UTC (rev 16591)
@@ -3,7 +3,7 @@
# rsync
#
#############################################################
-RSYNC_VER:=2.6.8
+RSYNC_VER:=2.6.9
RSYNC_SOURCE:=rsync-$(RSYNC_VER).tar.gz
RSYNC_SITE:=http://rsync.samba.org/ftp/rsync/
RSYNC_DIR:=$(BUILD_DIR)/rsync-$(RSYNC_VER)
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2009-01-03 8:04 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-08-20 14:15 [Buildroot] svn commit: trunk/buildroot/package/rsync jacmet at uclibc.org
-- strict thread matches above, loose matches on Subject: below --
2009-01-03 8:04 nkukard at uclibc.org
2008-08-20 14:15 jacmet at uclibc.org
2008-03-10 16:17 ninevoltz at uclibc.org
2008-03-06 18:22 ninevoltz at uclibc.org
2006-11-20 16:40 aldot at uclibc.org
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox