* [Buildroot] [PATCH 1/2] ibrdtnd: new package
@ 2015-08-08 13:07 Tom Sparks
2015-08-08 13:07 ` [Buildroot] [PATCH 4/4] " Tom Sparks
2015-08-29 18:46 ` [Buildroot] [PATCH 1/2] " Thomas Petazzoni
0 siblings, 2 replies; 4+ messages in thread
From: Tom Sparks @ 2015-08-08 13:07 UTC (permalink / raw)
To: buildroot
Signed-off-by: Tom Sparks <tom_a_sparks@yahoo.com.au>
---
package/ibrdtnd/Config.in | 27 +++++++++++++++++++++++++++
package/ibrdtnd/ibrdtnd.mk | 30 ++++++++++++++++++++++++++++++
2 files changed, 57 insertions(+)
create mode 100644 package/ibrdtnd/Config.in
create mode 100644 package/ibrdtnd/ibrdtnd.mk
diff --git a/package/ibrdtnd/Config.in b/package/ibrdtnd/Config.in
new file mode 100644
index 0000000..9cd55f3
--- /dev/null
+++ b/package/ibrdtnd/Config.in
@@ -0,0 +1,27 @@
+config BR2_PACKAGE_IBRDTND
+ bool "ibrdtnd"
+ depends on BR2_INSTALL_LIBSTDCPP
+ depends on BR2_TOOLCHAIN_HAS_THREADS
+ select BR2_PACKAGE_IBRDTN
+ select BR2_PACKAGE_LIBDAEMON
+ select BR2_PACKAGE_LIBCURL
+ select BR2_PACKAGE_SQLITE
+ select BR2_PACKAGE_OPENSSL
+
+ help
+ IBR-DTN is a small dtn application that supports:
+ Bundle Protocol RFC 5050
+ Bundle Security Protocol RFC 6257
+
+ http://trac.ibr.cs.tu-bs.de/project-cm-2012-ibrdtn
+
+if BR2_PACKAGE_IBRDTND
+
+source "package/ibrcommon/Config.in"
+source "package/ibrdtn/Config.in"
+
+endif
+
+comment "ibrcommon needs a toolchain w/ C++, threads"
+ depends on !BR2_INSTALL_LIBSTDCPP
+ depends on !BR2_TOOLCHAIN_HAS_THREADS
\ No newline at end of file
diff --git a/package/ibrdtnd/ibrdtnd.mk b/package/ibrdtnd/ibrdtnd.mk
new file mode 100644
index 0000000..91a1de0
--- /dev/null
+++ b/package/ibrdtnd/ibrdtnd.mk
@@ -0,0 +1,30 @@
+################################################################################
+#
+# ibrdtnd
+#
+################################################################################
+
+IBRDTND_VERSION = 1.0.1
+IBRDTND_SOURCE = ibrdtnd-$(IBRDTND_VERSION).tar.gz
+IBRDTND_SITE = https://www.ibr.cs.tu-bs.de/projects/ibr-dtn/releases/
+IBRDTND_INSTALL_STAGING = YES
+IBRDTND_LICENSE = Apache-2.0
+IBRDTND_LICENSE_FILES = COPYING
+IBRDTND_CONF_OPTS = --with-curl --with-sqlite --with-tls
+IBRDTND_DEPENDENCIES = ibrdtn libdaemon libcurl sqlite openssl
+
+# While the configuration system uses autoconf, the Makefiles are
+# hand-written and do not use automake. Therefore, we have to hack
+# around their deficiencies by passing installation paths.
+IBRDTND_INSTALL_STAGING_OPTS = \
+ prefix=$(STAGING_DIR)/usr \
+ exec_prefix=$(STAGING_DIR)/usr \
+ PKG_DEVLIB_DIR=$(STAGING_DIR)/usr/lib \
+ install
+
+IBRDTND_INSTALL_TARGET_OPTS = \
+ prefix=$(TARGET_DIR)/usr \
+ exec_prefix=$(TARGET_DIR)/usr \
+ install
+
+$(eval $(autotools-package))
\ No newline at end of file
--
1.9.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH 4/4] ibrdtnd: new package
2015-08-08 13:07 [Buildroot] [PATCH 1/2] ibrdtnd: new package Tom Sparks
@ 2015-08-08 13:07 ` Tom Sparks
2015-08-29 16:19 ` Thomas Petazzoni
2015-08-29 18:46 ` [Buildroot] [PATCH 1/2] " Thomas Petazzoni
1 sibling, 1 reply; 4+ messages in thread
From: Tom Sparks @ 2015-08-08 13:07 UTC (permalink / raw)
To: buildroot
Signed-off-by: Tom Sparks <tom_a_sparks@yahoo.com.au>
---
package/Config.in | 1 +
1 file changed, 1 insertion(+)
diff --git a/package/Config.in b/package/Config.in
index 47d14d7..c901774 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -1221,6 +1221,7 @@ endif
source "package/hostapd/Config.in"
source "package/hplip/Config.in"
source "package/httping/Config.in"
+ source "package/ibrdtnd/Config.in"
if BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
source "package/ifplugd/Config.in"
endif
--
1.9.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH 4/4] ibrdtnd: new package
2015-08-08 13:07 ` [Buildroot] [PATCH 4/4] " Tom Sparks
@ 2015-08-29 16:19 ` Thomas Petazzoni
0 siblings, 0 replies; 4+ messages in thread
From: Thomas Petazzoni @ 2015-08-29 16:19 UTC (permalink / raw)
To: buildroot
Dear Tom Sparks,
On Sat, 8 Aug 2015 23:07:42 +1000, Tom Sparks wrote:
> Signed-off-by: Tom Sparks <tom_a_sparks@yahoo.com.au>
> ---
> package/Config.in | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/package/Config.in b/package/Config.in
> index 47d14d7..c901774 100644
> --- a/package/Config.in
> +++ b/package/Config.in
> @@ -1221,6 +1221,7 @@ endif
> source "package/hostapd/Config.in"
> source "package/hplip/Config.in"
> source "package/httping/Config.in"
> + source "package/ibrdtnd/Config.in"
> if BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
> source "package/ifplugd/Config.in"
> endif
This patch should have been part of the patch adding ibrdtnd/ibrdtnd.mk
and ibrdtnd/Config.in. Therefore, I've marked this patch as rejected,
and I will modify the patch really adding ibrdtnd so that it gets added
to package/Config.in.
Thanks!
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
^ permalink raw reply [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH 1/2] ibrdtnd: new package
2015-08-08 13:07 [Buildroot] [PATCH 1/2] ibrdtnd: new package Tom Sparks
2015-08-08 13:07 ` [Buildroot] [PATCH 4/4] " Tom Sparks
@ 2015-08-29 18:46 ` Thomas Petazzoni
1 sibling, 0 replies; 4+ messages in thread
From: Thomas Petazzoni @ 2015-08-29 18:46 UTC (permalink / raw)
To: buildroot
Dear Tom Sparks,
On Sat, 8 Aug 2015 23:07:41 +1000, Tom Sparks wrote:
> Signed-off-by: Tom Sparks <tom_a_sparks@yahoo.com.au>
> ---
> package/ibrdtnd/Config.in | 27 +++++++++++++++++++++++++++
> package/ibrdtnd/ibrdtnd.mk | 30 ++++++++++++++++++++++++++++++
> 2 files changed, 57 insertions(+)
> create mode 100644 package/ibrdtnd/Config.in
> create mode 100644 package/ibrdtnd/ibrdtnd.mk
I've applied your patch to the next branch, after doing numerous
changes:
[Thomas:
- add package to package/Config.in
- remove "select" on libdaemon, libcurl, sqlite and openssl from
Config.in, since those are optional dependency.
- add "select" on ibrcommon, since it is a mandatory dependency.
- remove bogus includes of package/ibrcommon/Config.in and
package/ibrdtn/Config.in, those are directly from
package/Config.in.
- fix Config.in comment dependency and indentation.
- remove INSTALL_STAGING = YES, since ibrdtnd does not install a
library.
- remove libdaemon, libcurl, sqlite and openssl as mandatory
dependencies, and handle them as optional dependencies.
- add ibrcommon in the dependencies (even if ibrdtn already depends
on it)
- remove custom INSTALL_STAGING_OPTS and INSTALL_TARGET_OPTS, they
are not needed, since the Makefiles are properly generated by
automake.
- explicitly disable features for which Buildroot doesn't have the
necessary dependencies (dtndht, wifip2p, vmime)
- add hash file.]
Thanks!
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2015-08-29 18:46 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-08-08 13:07 [Buildroot] [PATCH 1/2] ibrdtnd: new package Tom Sparks
2015-08-08 13:07 ` [Buildroot] [PATCH 4/4] " Tom Sparks
2015-08-29 16:19 ` Thomas Petazzoni
2015-08-29 18:46 ` [Buildroot] [PATCH 1/2] " Thomas Petazzoni
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox