Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot]  [PATCH 1/2] New package: bwm-ng
@ 2011-04-21  2:29 keguang.zhang at gmail.com
  2011-04-21  9:56 ` Peter Korsgaard
  0 siblings, 1 reply; 2+ messages in thread
From: keguang.zhang at gmail.com @ 2011-04-21  2:29 UTC (permalink / raw)
  To: buildroot

From: Kelvin Cheung <keguang.zhang@gmail.com>

Add new package: bwm-ng

Bandwidth Monitor NG is a small and console-based live network and
disk-io bandwidth monitor for Linux, BSD, Solaris, Mac OS X and others.

Signed-off-by: Kelvin Cheung <keguang.zhang@gmail.com>
---
 package/Config.in        |    1 +
 package/bwm-ng/Config.in |    7 +++++++
 package/bwm-ng/bwm-ng.mk |   16 ++++++++++++++++
 3 files changed, 24 insertions(+), 0 deletions(-)
 create mode 100644 package/bwm-ng/Config.in
 create mode 100644 package/bwm-ng/bwm-ng.mk

diff --git a/package/Config.in b/package/Config.in
index 014c2c0..0db0cd6 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -150,6 +150,7 @@ endmenu
 
 menu "Hardware handling"
 source "package/acpid/Config.in"
+source "package/bwm-ng/Config.in"
 source "package/cdrkit/Config.in"
 source "package/cramfs/Config.in"
 source "package/dbus/Config.in"
diff --git a/package/bwm-ng/Config.in b/package/bwm-ng/Config.in
new file mode 100644
index 0000000..f2f8b12
--- /dev/null
+++ b/package/bwm-ng/Config.in
@@ -0,0 +1,7 @@
+config BR2_PACKAGE_BWM_NG
+	bool "bwm-ng"
+	help
+	  Bandwidth Monitor NG is a small and console-based live network and
+	  disk-io bandwidth monitor for Linux, BSD, Solaris, Mac OS X and others.
+
+	  http://sourceforge.net/projects/bwmng/
diff --git a/package/bwm-ng/bwm-ng.mk b/package/bwm-ng/bwm-ng.mk
new file mode 100644
index 0000000..7fd5b38
--- /dev/null
+++ b/package/bwm-ng/bwm-ng.mk
@@ -0,0 +1,16 @@
+#############################################################
+#
+# bwm-ng
+#
+#############################################################
+BWM_NG_VERSION:=0.6
+BWM_NG:=bwm-ng-$(BWM_NG_VERSION).tar.gz
+BWM_NG_SITE:=http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/project/bwmng/bwmng/0.6/
+BWM_NG_CONF_OPT = --with-procnetdev --with-diskstats
+
+ifeq ($(BR2_PACKAGE_NCURSES),y)
+BWM_NG_CONF_OPT += --with-ncurses
+BWM_NG_DEPENDENCIES += ncurses
+endif
+
+$(eval $(call AUTOTARGETS,package,bwm-ng))
-- 
1.7.1

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [Buildroot] [PATCH 1/2] New package: bwm-ng
  2011-04-21  2:29 [Buildroot] [PATCH 1/2] New package: bwm-ng keguang.zhang at gmail.com
@ 2011-04-21  9:56 ` Peter Korsgaard
  0 siblings, 0 replies; 2+ messages in thread
From: Peter Korsgaard @ 2011-04-21  9:56 UTC (permalink / raw)
  To: buildroot

>>>>> "keguang" == keguang zhang <keguang.zhang@gmail.com> writes:

 keguang> From: Kelvin Cheung <keguang.zhang@gmail.com>
 keguang> Add new package: bwm-ng

 keguang> Bandwidth Monitor NG is a small and console-based live network and
 keguang> disk-io bandwidth monitor for Linux, BSD, Solaris, Mac OS X and others.

Thanks, committed with minor tweaks (see below)

 keguang> Signed-off-by: Kelvin Cheung <keguang.zhang@gmail.com>
 keguang> ---
 keguang>  package/Config.in        |    1 +
 keguang>  package/bwm-ng/Config.in |    7 +++++++
 keguang>  package/bwm-ng/bwm-ng.mk |   16 ++++++++++++++++
 keguang>  3 files changed, 24 insertions(+), 0 deletions(-)
 keguang>  create mode 100644 package/bwm-ng/Config.in
 keguang>  create mode 100644 package/bwm-ng/bwm-ng.mk

 keguang> diff --git a/package/Config.in b/package/Config.in
 keguang> index 014c2c0..0db0cd6 100644
 keguang> --- a/package/Config.in
 keguang> +++ b/package/Config.in
 keguang> @@ -150,6 +150,7 @@ endmenu
 
 keguang>  menu "Hardware handling"
 keguang>  source "package/acpid/Config.in"
 keguang> +source "package/bwm-ng/Config.in"
 keguang>  source "package/cdrkit/Config.in"
 keguang>  source "package/cramfs/Config.in"
 keguang>  source "package/dbus/Config.in"
 keguang> diff --git a/package/bwm-ng/Config.in b/package/bwm-ng/Config.in
 keguang> new file mode 100644
 keguang> index 0000000..f2f8b12
 keguang> --- /dev/null
 keguang> +++ b/package/bwm-ng/Config.in
 keguang> @@ -0,0 +1,7 @@
 keguang> +config BR2_PACKAGE_BWM_NG
 keguang> +	bool "bwm-ng"
 keguang> +	help
 keguang> +	  Bandwidth Monitor NG is a small and console-based live network and
 keguang> +	  disk-io bandwidth monitor for Linux, BSD, Solaris, Mac OS X and others.

Lines too long. Config.in files shouldn't exceed 70 chars, so they
display properly in menuconfig on a std 80x24 term.

 keguang> +
 keguang> +	  http://sourceforge.net/projects/bwmng/
 keguang> diff --git a/package/bwm-ng/bwm-ng.mk b/package/bwm-ng/bwm-ng.mk
 keguang> new file mode 100644
 keguang> index 0000000..7fd5b38
 keguang> --- /dev/null
 keguang> +++ b/package/bwm-ng/bwm-ng.mk
 keguang> @@ -0,0 +1,16 @@
 keguang> +#############################################################
 keguang> +#
 keguang> +# bwm-ng
 keguang> +#
 keguang> +#############################################################
 keguang> +BWM_NG_VERSION:=0.6
 keguang> +BWM_NG:=bwm-ng-$(BWM_NG_VERSION).tar.gz

Unused.

 keguang> +BWM_NG_SITE:=http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/project/bwmng/bwmng/0.6/

It would be good to use BWM_BG_VERSION here as well.

You have a mix of ':=' and '='. We normally use '=' unless there's
special needs.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2011-04-21  9:56 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-04-21  2:29 [Buildroot] [PATCH 1/2] New package: bwm-ng keguang.zhang at gmail.com
2011-04-21  9:56 ` Peter Korsgaard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox