* [ptxdist] [PATCH] wavemon: New package
@ 2013-02-05 20:34 Bernhard Walle
2013-02-07 17:43 ` Michael Olbrich
0 siblings, 1 reply; 4+ messages in thread
From: Bernhard Walle @ 2013-02-05 20:34 UTC (permalink / raw)
To: ptxdist
Signed-off-by: Bernhard Walle <bernhard@bwalle.de>
---
rules/wavemon.in | 11 +++++++++++
rules/wavemon.make | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 63 insertions(+)
create mode 100644 rules/wavemon.in
create mode 100644 rules/wavemon.make
diff --git a/rules/wavemon.in b/rules/wavemon.in
new file mode 100644
index 0000000..23d9189
--- /dev/null
+++ b/rules/wavemon.in
@@ -0,0 +1,11 @@
+## SECTION=networking
+
+config WAVEMON
+ tristate
+ prompt "wavemon"
+ select LIBC_M
+ select NCURSES
+ help
+ Ncurses-based monitoring application for wireless network devices
+
+# vim: set ft=kconfig sw=8 ts=8 noet:
diff --git a/rules/wavemon.make b/rules/wavemon.make
new file mode 100644
index 0000000..fa57113
--- /dev/null
+++ b/rules/wavemon.make
@@ -0,0 +1,52 @@
+# -*-makefile-*-
+#
+# Copyright (C) 2013 by Bernhard Walle <bernhard@bwalle.de>
+#
+# See CREDITS for details about who has contributed to this project.
+#
+# For further information about the PTXdist project and license conditions
+# see the README file.
+#
+
+#
+# We provide this package
+#
+PACKAGES-$(PTXCONF_WAVEMON) += wavemon
+
+#
+# Paths and names
+#
+WAVEMON_VERSION := 0.7.5
+WAVEMON_MD5 := 77d4a0f099ca98cf98a915adc70694ba
+WAVEMON := wavemon-$(WAVEMON_VERSION)
+WAVEMON_SUFFIX := tar.bz2
+WAVEMON_URL := http://eden-feed.erg.abdn.ac.uk/wavemon/stable-releases//$(WAVEMON).$(WAVEMON_SUFFIX)
+WAVEMON_SOURCE := $(SRCDIR)/$(WAVEMON).$(WAVEMON_SUFFIX)
+WAVEMON_DIR := $(BUILDDIR)/$(WAVEMON)
+WAVEMON_LICENSE := GPL
+
+#
+# autoconf
+#
+WAVEMON_CONF_TOOL := autoconf
+
+# ----------------------------------------------------------------------------
+# Target-Install
+# ----------------------------------------------------------------------------
+
+$(STATEDIR)/wavemon.targetinstall:
+ @$(call targetinfo)
+
+ @$(call install_init, wavemon)
+ @$(call install_fixup, wavemon,PRIORITY,optional)
+ @$(call install_fixup, wavemon,SECTION,base)
+ @$(call install_fixup, wavemon,AUTHOR,"Bernhard Walle <bernhard@bwalle.de>")
+ @$(call install_fixup, wavemon,DESCRIPTION,missing)
+
+ @$(call install_copy, wavemon, 0, 0, 0755, -, /usr/bin/wavemon)
+
+ @$(call install_finish, wavemon)
+
+ @$(call touch)
+
+# vim: syntax=make
--
1.8.1.2
--
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [ptxdist] [PATCH] wavemon: New package
2013-02-05 20:34 [ptxdist] [PATCH] wavemon: New package Bernhard Walle
@ 2013-02-07 17:43 ` Michael Olbrich
2013-02-11 18:31 ` Bernhard Walle
0 siblings, 1 reply; 4+ messages in thread
From: Michael Olbrich @ 2013-02-07 17:43 UTC (permalink / raw)
To: ptxdist
On Tue, Feb 05, 2013 at 09:34:29PM +0100, Bernhard Walle wrote:
> Signed-off-by: Bernhard Walle <bernhard@bwalle.de>
> ---
> rules/wavemon.in | 11 +++++++++++
> rules/wavemon.make | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++
> 2 files changed, 63 insertions(+)
> create mode 100644 rules/wavemon.in
> create mode 100644 rules/wavemon.make
>
> diff --git a/rules/wavemon.in b/rules/wavemon.in
> new file mode 100644
> index 0000000..23d9189
> --- /dev/null
> +++ b/rules/wavemon.in
> @@ -0,0 +1,11 @@
> +## SECTION=networking
> +
> +config WAVEMON
> + tristate
> + prompt "wavemon"
> + select LIBC_M
> + select NCURSES
> + help
> + Ncurses-based monitoring application for wireless network devices
> +
> +# vim: set ft=kconfig sw=8 ts=8 noet:
> diff --git a/rules/wavemon.make b/rules/wavemon.make
> new file mode 100644
> index 0000000..fa57113
> --- /dev/null
> +++ b/rules/wavemon.make
> @@ -0,0 +1,52 @@
> +# -*-makefile-*-
> +#
> +# Copyright (C) 2013 by Bernhard Walle <bernhard@bwalle.de>
> +#
> +# See CREDITS for details about who has contributed to this project.
> +#
> +# For further information about the PTXdist project and license conditions
> +# see the README file.
> +#
> +
> +#
> +# We provide this package
> +#
> +PACKAGES-$(PTXCONF_WAVEMON) += wavemon
> +
> +#
> +# Paths and names
> +#
> +WAVEMON_VERSION := 0.7.5
> +WAVEMON_MD5 := 77d4a0f099ca98cf98a915adc70694ba
> +WAVEMON := wavemon-$(WAVEMON_VERSION)
> +WAVEMON_SUFFIX := tar.bz2
> +WAVEMON_URL := http://eden-feed.erg.abdn.ac.uk/wavemon/stable-releases//$(WAVEMON).$(WAVEMON_SUFFIX)
> +WAVEMON_SOURCE := $(SRCDIR)/$(WAVEMON).$(WAVEMON_SUFFIX)
> +WAVEMON_DIR := $(BUILDDIR)/$(WAVEMON)
> +WAVEMON_LICENSE := GPL
> +
keep the prepare Header here.
and you need to add ac_cv_lib_cap_cap_get_flag=no to WAVEMON_CONF_ENV, to
make sure it's not accidentally used. Maybe conditionally with an option
selecting libcap if you like.
Michael
> +#
> +# autoconf
> +#
> +WAVEMON_CONF_TOOL := autoconf
> +
> +# ----------------------------------------------------------------------------
> +# Target-Install
> +# ----------------------------------------------------------------------------
> +
> +$(STATEDIR)/wavemon.targetinstall:
> + @$(call targetinfo)
> +
> + @$(call install_init, wavemon)
> + @$(call install_fixup, wavemon,PRIORITY,optional)
> + @$(call install_fixup, wavemon,SECTION,base)
> + @$(call install_fixup, wavemon,AUTHOR,"Bernhard Walle <bernhard@bwalle.de>")
> + @$(call install_fixup, wavemon,DESCRIPTION,missing)
> +
> + @$(call install_copy, wavemon, 0, 0, 0755, -, /usr/bin/wavemon)
> +
> + @$(call install_finish, wavemon)
> +
> + @$(call touch)
> +
> +# vim: syntax=make
> --
> 1.8.1.2
>
>
> --
> ptxdist mailing list
> ptxdist@pengutronix.de
>
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
--
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 4+ messages in thread
* [ptxdist] [PATCH] wavemon: New package
2013-02-07 17:43 ` Michael Olbrich
@ 2013-02-11 18:31 ` Bernhard Walle
2013-02-13 9:59 ` Michael Olbrich
0 siblings, 1 reply; 4+ messages in thread
From: Bernhard Walle @ 2013-02-11 18:31 UTC (permalink / raw)
To: ptxdist
Signed-off-by: Bernhard Walle <bernhard@bwalle.de>
---
rules/wavemon.in | 11 ++++++++++
rules/wavemon.make | 60 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 71 insertions(+)
create mode 100644 rules/wavemon.in
create mode 100644 rules/wavemon.make
diff --git a/rules/wavemon.in b/rules/wavemon.in
new file mode 100644
index 0000000..23d9189
--- /dev/null
+++ b/rules/wavemon.in
@@ -0,0 +1,11 @@
+## SECTION=networking
+
+config WAVEMON
+ tristate
+ prompt "wavemon"
+ select LIBC_M
+ select NCURSES
+ help
+ Ncurses-based monitoring application for wireless network devices
+
+# vim: set ft=kconfig sw=8 ts=8 noet:
diff --git a/rules/wavemon.make b/rules/wavemon.make
new file mode 100644
index 0000000..be92600
--- /dev/null
+++ b/rules/wavemon.make
@@ -0,0 +1,60 @@
+# -*-makefile-*-
+#
+# Copyright (C) 2013 by Bernhard Walle <bernhard@bwalle.de>
+#
+# See CREDITS for details about who has contributed to this project.
+#
+# For further information about the PTXdist project and license conditions
+# see the README file.
+#
+
+#
+# We provide this package
+#
+PACKAGES-$(PTXCONF_WAVEMON) += wavemon
+
+#
+# Paths and names
+#
+WAVEMON_VERSION := 0.7.5
+WAVEMON_MD5 := 77d4a0f099ca98cf98a915adc70694ba
+WAVEMON := wavemon-$(WAVEMON_VERSION)
+WAVEMON_SUFFIX := tar.bz2
+WAVEMON_URL := http://eden-feed.erg.abdn.ac.uk/wavemon/stable-releases//$(WAVEMON).$(WAVEMON_SUFFIX)
+WAVEMON_SOURCE := $(SRCDIR)/$(WAVEMON).$(WAVEMON_SUFFIX)
+WAVEMON_DIR := $(BUILDDIR)/$(WAVEMON)
+WAVEMON_LICENSE := GPL
+
+# ----------------------------------------------------------------------------
+# Prepare
+# ----------------------------------------------------------------------------
+
+WAVEMON_CONF_ENV := \
+ $(CROSS_ENV) \
+ ac_cv_lib_cap_cap_get_flag=no
+
+#
+# autoconf
+#
+WAVEMON_CONF_TOOL := autoconf
+
+# ----------------------------------------------------------------------------
+# Target-Install
+# ----------------------------------------------------------------------------
+
+$(STATEDIR)/wavemon.targetinstall:
+ @$(call targetinfo)
+
+ @$(call install_init, wavemon)
+ @$(call install_fixup, wavemon,PRIORITY,optional)
+ @$(call install_fixup, wavemon,SECTION,base)
+ @$(call install_fixup, wavemon,AUTHOR,"Bernhard Walle <bernhard@bwalle.de>")
+ @$(call install_fixup, wavemon,DESCRIPTION,missing)
+
+ @$(call install_copy, wavemon, 0, 0, 0755, -, /usr/bin/wavemon)
+
+ @$(call install_finish, wavemon)
+
+ @$(call touch)
+
+# vim: syntax=make
--
1.8.1.3
--
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [ptxdist] [PATCH] wavemon: New package
2013-02-11 18:31 ` Bernhard Walle
@ 2013-02-13 9:59 ` Michael Olbrich
0 siblings, 0 replies; 4+ messages in thread
From: Michael Olbrich @ 2013-02-13 9:59 UTC (permalink / raw)
To: ptxdist
On Mon, Feb 11, 2013 at 07:31:26PM +0100, Bernhard Walle wrote:
> Signed-off-by: Bernhard Walle <bernhard@bwalle.de>
Tnx. Applied.
Michael
> ---
> rules/wavemon.in | 11 ++++++++++
> rules/wavemon.make | 60 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
> 2 files changed, 71 insertions(+)
> create mode 100644 rules/wavemon.in
> create mode 100644 rules/wavemon.make
>
> diff --git a/rules/wavemon.in b/rules/wavemon.in
> new file mode 100644
> index 0000000..23d9189
> --- /dev/null
> +++ b/rules/wavemon.in
> @@ -0,0 +1,11 @@
> +## SECTION=networking
> +
> +config WAVEMON
> + tristate
> + prompt "wavemon"
> + select LIBC_M
> + select NCURSES
> + help
> + Ncurses-based monitoring application for wireless network devices
> +
> +# vim: set ft=kconfig sw=8 ts=8 noet:
> diff --git a/rules/wavemon.make b/rules/wavemon.make
> new file mode 100644
> index 0000000..be92600
> --- /dev/null
> +++ b/rules/wavemon.make
> @@ -0,0 +1,60 @@
> +# -*-makefile-*-
> +#
> +# Copyright (C) 2013 by Bernhard Walle <bernhard@bwalle.de>
> +#
> +# See CREDITS for details about who has contributed to this project.
> +#
> +# For further information about the PTXdist project and license conditions
> +# see the README file.
> +#
> +
> +#
> +# We provide this package
> +#
> +PACKAGES-$(PTXCONF_WAVEMON) += wavemon
> +
> +#
> +# Paths and names
> +#
> +WAVEMON_VERSION := 0.7.5
> +WAVEMON_MD5 := 77d4a0f099ca98cf98a915adc70694ba
> +WAVEMON := wavemon-$(WAVEMON_VERSION)
> +WAVEMON_SUFFIX := tar.bz2
> +WAVEMON_URL := http://eden-feed.erg.abdn.ac.uk/wavemon/stable-releases//$(WAVEMON).$(WAVEMON_SUFFIX)
> +WAVEMON_SOURCE := $(SRCDIR)/$(WAVEMON).$(WAVEMON_SUFFIX)
> +WAVEMON_DIR := $(BUILDDIR)/$(WAVEMON)
> +WAVEMON_LICENSE := GPL
> +
> +# ----------------------------------------------------------------------------
> +# Prepare
> +# ----------------------------------------------------------------------------
> +
> +WAVEMON_CONF_ENV := \
> + $(CROSS_ENV) \
> + ac_cv_lib_cap_cap_get_flag=no
> +
> +#
> +# autoconf
> +#
> +WAVEMON_CONF_TOOL := autoconf
> +
> +# ----------------------------------------------------------------------------
> +# Target-Install
> +# ----------------------------------------------------------------------------
> +
> +$(STATEDIR)/wavemon.targetinstall:
> + @$(call targetinfo)
> +
> + @$(call install_init, wavemon)
> + @$(call install_fixup, wavemon,PRIORITY,optional)
> + @$(call install_fixup, wavemon,SECTION,base)
> + @$(call install_fixup, wavemon,AUTHOR,"Bernhard Walle <bernhard@bwalle.de>")
> + @$(call install_fixup, wavemon,DESCRIPTION,missing)
> +
> + @$(call install_copy, wavemon, 0, 0, 0755, -, /usr/bin/wavemon)
> +
> + @$(call install_finish, wavemon)
> +
> + @$(call touch)
> +
> +# vim: syntax=make
> --
> 1.8.1.3
>
>
> --
> ptxdist mailing list
> ptxdist@pengutronix.de
>
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
--
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2013-02-13 9:59 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-02-05 20:34 [ptxdist] [PATCH] wavemon: New package Bernhard Walle
2013-02-07 17:43 ` Michael Olbrich
2013-02-11 18:31 ` Bernhard Walle
2013-02-13 9:59 ` Michael Olbrich
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox