* [Buildroot] svn commit: trunk/buildroot/package/ncftp
@ 2007-05-23 15:41 jacmet at uclibc.org
0 siblings, 0 replies; 8+ messages in thread
From: jacmet at uclibc.org @ 2007-05-23 15:41 UTC (permalink / raw)
To: buildroot
Author: jacmet
Date: 2007-05-23 08:41:48 -0700 (Wed, 23 May 2007)
New Revision: 18675
Log:
Strip binaries at install. Closes #1365
Modified:
trunk/buildroot/package/ncftp/ncftp.mk
Changeset:
Modified: trunk/buildroot/package/ncftp/ncftp.mk
===================================================================
--- trunk/buildroot/package/ncftp/ncftp.mk 2007-05-23 15:22:50 UTC (rev 18674)
+++ trunk/buildroot/package/ncftp/ncftp.mk 2007-05-23 15:41:48 UTC (rev 18675)
@@ -41,6 +41,7 @@
$(TARGET_DIR)/usr/bin/ncftp $(TARGET_DIR)/usr/bin/ncftp%: $(addprefix $(NCFTP_DIR)/bin/, $(NCFTP_TARGET_BINS))
$(INSTALL) -m 0755 $(NCFTP_DIR)/bin/$(notdir $@) $(TARGET_DIR)/usr/bin
+ $(STRIP) -s $@
ncftp: uclibc $(addprefix $(TARGET_DIR)/usr/bin/, $(NCFTP_TARGET_BINS))
^ permalink raw reply [flat|nested] 8+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/ncftp
@ 2007-10-19 16:25 vanokuten at uclibc.org
0 siblings, 0 replies; 8+ messages in thread
From: vanokuten at uclibc.org @ 2007-10-19 16:25 UTC (permalink / raw)
To: buildroot
Author: vanokuten
Date: 2007-10-19 09:25:23 -0700 (Fri, 19 Oct 2007)
New Revision: 20296
Log:
updated ncftp to 3.2.1 version, thanks to sushisan
Modified:
trunk/buildroot/package/ncftp/ncftp.mk
Changeset:
Modified: trunk/buildroot/package/ncftp/ncftp.mk
===================================================================
--- trunk/buildroot/package/ncftp/ncftp.mk 2007-10-18 23:27:46 UTC (rev 20295)
+++ trunk/buildroot/package/ncftp/ncftp.mk 2007-10-19 16:25:23 UTC (rev 20296)
@@ -3,7 +3,7 @@
# ncftp client
#
#############################################################
-NCFTP_VERSION:=3.2.0
+NCFTP_VERSION:=3.2.1
NCFTP_SOURCE:=ncftp-$(NCFTP_VERSION)-src.tar.bz2
NCFTP_SITE:=ftp://ftp.ncftp.com/ncftp
NCFTP_DIR:=$(BUILD_DIR)/ncftp-$(NCFTP_VERSION)
^ permalink raw reply [flat|nested] 8+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/ncftp
@ 2007-10-31 6:37 ulf at uclibc.org
0 siblings, 0 replies; 8+ messages in thread
From: ulf at uclibc.org @ 2007-10-31 6:37 UTC (permalink / raw)
To: buildroot
Author: ulf
Date: 2007-10-30 23:37:44 -0700 (Tue, 30 Oct 2007)
New Revision: 20345
Log:
Improve config for nCFTP
Modified:
trunk/buildroot/package/ncftp/Config.in
trunk/buildroot/package/ncftp/ncftp.mk
Changeset:
Modified: trunk/buildroot/package/ncftp/Config.in
===================================================================
--- trunk/buildroot/package/ncftp/Config.in 2007-10-31 06:36:04 UTC (rev 20344)
+++ trunk/buildroot/package/ncftp/Config.in 2007-10-31 06:37:44 UTC (rev 20345)
@@ -7,14 +7,37 @@
http://www.ncftp.com/ncftp/
-config BR2_PACKAGE_NCFTP_UTILS
- bool "install utils (ncftpput, ncftpget, ncftpls)"
+menu "ncFTP tools selection"
+ depends BR2_PACKAGE_NCFTP
+
+config BR2_PACKAGE_NCFTP_GET
+ bool "NcFTPGet - command-line utility program"
+ default y
+ depends BR2_PACKAGE_NCFTP
+
+config BR2_PACKAGE_NCFTP_PUT
+ bool "NcFTPPut - command-line utility program"
+ default y
+ depends BR2_PACKAGE_NCFTP
+
+config BR2_PACKAGE_NCFTP_LS
+ bool "NcFTPLs - command-line utility program"
+ default y
+ depends BR2_PACKAGE_NCFTP
+
+config BR2_PACKAGE_NCFTP_BATCH
+ bool "NcFTPBatch - background FTP program for individual users"
+ default y
+ depends BR2_PACKAGE_NCFTP
+
+config BR2_PACKAGE_NCFTP_SPOOLER
+ bool "NcFTPSpooler - spooler - not working properly"
default n
- depends on BR2_PACKAGE_NCFTP
- help
- This will also install:
- - NcFTPGet - command-line utility program
- - NcFTPPut - command-line utility program
- - NcFTPLs - command-line utility program
- - NcFTPBatch - background FTP program for individual users
- - NcFTPSpooler - background batch FTP service for systems
+ depends BR2_PACKAGE_NCFTP
+
+config BR2_PACKAGE_NCFTP_BOOKMARKS
+ bool "NcFTPBookmarks - not working properly"
+ default n
+ depends BR2_PACKAGE_NCFTP
+
+endmenu
Modified: trunk/buildroot/package/ncftp/ncftp.mk
===================================================================
--- trunk/buildroot/package/ncftp/ncftp.mk 2007-10-31 06:36:04 UTC (rev 20344)
+++ trunk/buildroot/package/ncftp/ncftp.mk 2007-10-31 06:37:44 UTC (rev 20345)
@@ -10,10 +10,31 @@
NCFTP_TARGET_BINS:=ncftp
-ifeq ($(strip $(BR2_PACKAGE_NCFTP_UTILS)),y)
-NCFTP_TARGET_BINS+=ncftpbatch ncftpbookmarks ncftpget ncftpls ncftpput
+ifeq ($(strip $(BR2_PACKAGE_NCFTP_GET)),y)
+NCFTP_TARGET_BINS+=ncftpget
endif
+ifeq ($(strip $(BR2_PACKAGE_NCFTP_PUT)),y)
+NCFTP_TARGET_BINS+=ncftpput
+endif
+
+ifeq ($(strip $(BR2_PACKAGE_NCFTP_LS)),y)
+NCFTP_TARGET_BINS+=ncftpls
+endif
+
+ifeq ($(strip $(BR2_PACKAGE_NCFTP_BATCH)),y)
+NCFTP_TARGET_BINS+=ncftpbatch
+endif
+
+ifeq ($(strip $(BR2_PACKAGE_NCFTP_SPOOLER)),y)
+#Someone needs to figure out what to do...
+NCFTP_TARGET_BINS+=
+endif
+
+ifeq ($(strip $(BR2_PACKAGE_NCFTP_BOOKMARKS)),y)
+NCFTP_TARGET_BINS+=ncftpbookmarks
+endif
+
ncftp-source: $(DL_DIR)/$(NCFTP_SOURCE)
$(DL_DIR)/$(NCFTP_SOURCE):
^ permalink raw reply [flat|nested] 8+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/ncftp
@ 2008-10-06 9:23 jacmet at uclibc.org
0 siblings, 0 replies; 8+ messages in thread
From: jacmet at uclibc.org @ 2008-10-06 9:23 UTC (permalink / raw)
To: buildroot
Author: jacmet
Date: 2008-10-06 02:23:08 -0700 (Mon, 06 Oct 2008)
New Revision: 23594
Log:
ncftp: bump version
Patch by Micha Nelissen
Modified:
trunk/buildroot/package/ncftp/ncftp.mk
Changeset:
Modified: trunk/buildroot/package/ncftp/ncftp.mk
===================================================================
--- trunk/buildroot/package/ncftp/ncftp.mk 2008-10-06 09:16:43 UTC (rev 23593)
+++ trunk/buildroot/package/ncftp/ncftp.mk 2008-10-06 09:23:08 UTC (rev 23594)
@@ -3,7 +3,7 @@
# ncftp client
#
#############################################################
-NCFTP_VERSION:=3.2.1
+NCFTP_VERSION:=3.2.2
NCFTP_SOURCE:=ncftp-$(NCFTP_VERSION)-src.tar.bz2
NCFTP_SITE:=ftp://ftp.ncftp.com/ncftp
NCFTP_DIR:=$(BUILD_DIR)/ncftp-$(NCFTP_VERSION)
^ permalink raw reply [flat|nested] 8+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/ncftp
@ 2009-01-25 8:18 ulf at uclibc.org
2009-01-25 14:28 ` Peter Korsgaard
0 siblings, 1 reply; 8+ messages in thread
From: ulf at uclibc.org @ 2009-01-25 8:18 UTC (permalink / raw)
To: buildroot
Author: ulf
Date: 2009-01-25 08:18:35 +0000 (Sun, 25 Jan 2009)
New Revision: 25013
Log:
Part of NcFTP depends on ncurses, create dependencies, if needed
Modified:
trunk/buildroot/package/ncftp/Config.in
trunk/buildroot/package/ncftp/ncftp.mk
Changeset:
Modified: trunk/buildroot/package/ncftp/Config.in
===================================================================
--- trunk/buildroot/package/ncftp/Config.in 2009-01-25 08:16:53 UTC (rev 25012)
+++ trunk/buildroot/package/ncftp/Config.in 2009-01-25 08:18:35 UTC (rev 25013)
@@ -30,11 +30,13 @@
depends on BR2_PACKAGE_NCFTP
config BR2_PACKAGE_NCFTP_SPOOLER
- bool "NcFTPSpooler - spooler - not working properly"
+ bool "NcFTPSpooler - spooler"
depends on BR2_PACKAGE_NCFTP
+ depends on BR2_PACKAGE_NCURSES
config BR2_PACKAGE_NCFTP_BOOKMARKS
- bool "NcFTPBookmarks - not working properly"
+ bool "NcFTPBookmarks"
depends on BR2_PACKAGE_NCFTP
+ depends on BR2_PACKAGE_NCURSES
endmenu
Modified: trunk/buildroot/package/ncftp/ncftp.mk
===================================================================
--- trunk/buildroot/package/ncftp/ncftp.mk 2009-01-25 08:16:53 UTC (rev 25012)
+++ trunk/buildroot/package/ncftp/ncftp.mk 2009-01-25 08:18:35 UTC (rev 25013)
@@ -26,15 +26,20 @@
NCFTP_TARGET_BINS+=ncftpbatch
endif
+ifeq ($(BR2_PACKAGE_NCURSES),y)
ifeq ($(BR2_PACKAGE_NCFTP_SPOOLER),y)
#Someone needs to figure out what to do...
NCFTP_TARGET_BINS+=
endif
+# only set if NCURSES is available
ifeq ($(BR2_PACKAGE_NCFTP_BOOKMARKS),y)
NCFTP_TARGET_BINS+=ncftpbookmarks
endif
+NCFTP_DEPS += ncurses
+endif
+
ncftp-source: $(DL_DIR)/$(NCFTP_SOURCE)
$(DL_DIR)/$(NCFTP_SOURCE):
@@ -64,7 +69,7 @@
$(INSTALL) -m 0755 $(NCFTP_DIR)/bin/$(notdir $@) $(TARGET_DIR)/usr/bin
$(STRIPCMD) $(STRIP_STRIP_ALL) $@
-ncftp: uclibc $(addprefix $(TARGET_DIR)/usr/bin/, $(NCFTP_TARGET_BINS))
+ncftp: uclibc $(NCFTP_DEPS) $(addprefix $(TARGET_DIR)/usr/bin/, $(NCFTP_TARGET_BINS))
ncftp-clean:
-$(MAKE) -C $(NCFTP_DIR) clean
^ permalink raw reply [flat|nested] 8+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/ncftp
2009-01-25 8:18 [Buildroot] svn commit: trunk/buildroot/package/ncftp ulf at uclibc.org
@ 2009-01-25 14:28 ` Peter Korsgaard
2009-01-25 21:17 ` Ulf Samuelsson
0 siblings, 1 reply; 8+ messages in thread
From: Peter Korsgaard @ 2009-01-25 14:28 UTC (permalink / raw)
To: buildroot
>>>>> "ulf" == ulf <ulf@uclibc.org> writes:
ulf> Author: ulf
ulf> Date: 2009-01-25 08:18:35 +0000 (Sun, 25 Jan 2009)
ulf> New Revision: 25013
ulf> Log:
ulf> Part of NcFTP depends on ncurses, create dependencies, if needed
ulf> Modified:
ulf> trunk/buildroot/package/ncftp/Config.in
ulf> trunk/buildroot/package/ncftp/ncftp.mk
ulf> Changeset:
ulf> Modified: trunk/buildroot/package/ncftp/Config.in
ulf> ===================================================================
ulf> --- trunk/buildroot/package/ncftp/Config.in 2009-01-25 08:16:53 UTC (rev 25012)
ulf> +++ trunk/buildroot/package/ncftp/Config.in 2009-01-25 08:18:35 UTC (rev 25013)
ulf> @@ -30,11 +30,13 @@
ulf> depends on BR2_PACKAGE_NCFTP
ulf> config BR2_PACKAGE_NCFTP_SPOOLER
ulf> - bool "NcFTPSpooler - spooler - not working properly"
ulf> + bool "NcFTPSpooler - spooler"
ulf> depends on BR2_PACKAGE_NCFTP
ulf> + depends on BR2_PACKAGE_NCURSES
Does this mean that the spooler thingy works?
ulf> +ifeq ($(BR2_PACKAGE_NCURSES),y)
ulf> ifeq ($(BR2_PACKAGE_NCFTP_SPOOLER),y)
ulf> #Someone needs to figure out what to do...
ulf> NCFTP_TARGET_BINS+=
ulf> endif
Aparently not. So why did you change the Config.in text?
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 8+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/ncftp
2009-01-25 14:28 ` Peter Korsgaard
@ 2009-01-25 21:17 ` Ulf Samuelsson
0 siblings, 0 replies; 8+ messages in thread
From: Ulf Samuelsson @ 2009-01-25 21:17 UTC (permalink / raw)
To: buildroot
s?n 2009-01-25 klockan 15:28 +0100 skrev Peter Korsgaard:
> >>>>> "ulf" == ulf <ulf@uclibc.org> writes:
>
> ulf> Author: ulf
> ulf> Date: 2009-01-25 08:18:35 +0000 (Sun, 25 Jan 2009)
> ulf> New Revision: 25013
>
> ulf> Log:
> ulf> Part of NcFTP depends on ncurses, create dependencies, if needed
>
> ulf> Modified:
> ulf> trunk/buildroot/package/ncftp/Config.in
> ulf> trunk/buildroot/package/ncftp/ncftp.mk
>
>
> ulf> Changeset:
> ulf> Modified: trunk/buildroot/package/ncftp/Config.in
> ulf> ===================================================================
> ulf> --- trunk/buildroot/package/ncftp/Config.in 2009-01-25 08:16:53 UTC (rev 25012)
> ulf> +++ trunk/buildroot/package/ncftp/Config.in 2009-01-25 08:18:35 UTC (rev 25013)
> ulf> @@ -30,11 +30,13 @@
> ulf> depends on BR2_PACKAGE_NCFTP
>
> ulf> config BR2_PACKAGE_NCFTP_SPOOLER
> ulf> - bool "NcFTPSpooler - spooler - not working properly"
> ulf> + bool "NcFTPSpooler - spooler"
> ulf> depends on BR2_PACKAGE_NCFTP
> ulf> + depends on BR2_PACKAGE_NCURSES
>
> Does this mean that the spooler thingy works?
>
> ulf> +ifeq ($(BR2_PACKAGE_NCURSES),y)
> ulf> ifeq ($(BR2_PACKAGE_NCFTP_SPOOLER),y)
> ulf> #Someone needs to figure out what to do...
> ulf> NCFTP_TARGET_BINS+=
> ulf> endif
>
> Aparently not. So why did you change the Config.in text?
>
Mistake then, it did not compile before
Now it compiles - I assumed that was the problem - will fix.
^ permalink raw reply [flat|nested] 8+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/ncftp
@ 2009-01-25 23:51 ulf at uclibc.org
0 siblings, 0 replies; 8+ messages in thread
From: ulf at uclibc.org @ 2009-01-25 23:51 UTC (permalink / raw)
To: buildroot
Author: ulf
Date: 2009-01-25 23:51:54 +0000 (Sun, 25 Jan 2009)
New Revision: 25034
Log:
reinstitute comment thaat spooler does not work
Modified:
trunk/buildroot/package/ncftp/Config.in
Changeset:
Modified: trunk/buildroot/package/ncftp/Config.in
===================================================================
--- trunk/buildroot/package/ncftp/Config.in 2009-01-25 23:47:47 UTC (rev 25033)
+++ trunk/buildroot/package/ncftp/Config.in 2009-01-25 23:51:54 UTC (rev 25034)
@@ -30,7 +30,7 @@
depends on BR2_PACKAGE_NCFTP
config BR2_PACKAGE_NCFTP_SPOOLER
- bool "NcFTPSpooler - spooler"
+ bool "NcFTPSpooler - spooler - not working properly"
depends on BR2_PACKAGE_NCFTP
depends on BR2_PACKAGE_NCURSES
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2009-01-25 23:51 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-01-25 8:18 [Buildroot] svn commit: trunk/buildroot/package/ncftp ulf at uclibc.org
2009-01-25 14:28 ` Peter Korsgaard
2009-01-25 21:17 ` Ulf Samuelsson
-- strict thread matches above, loose matches on Subject: below --
2009-01-25 23:51 ulf at uclibc.org
2008-10-06 9:23 jacmet at uclibc.org
2007-10-31 6:37 ulf at uclibc.org
2007-10-19 16:25 vanokuten at uclibc.org
2007-05-23 15:41 jacmet 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