Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] add new package tinc
@ 2014-12-16 14:47 Zoltan Gyarmati
  2014-12-21 15:41 ` Thomas Petazzoni
  0 siblings, 1 reply; 3+ messages in thread
From: Zoltan Gyarmati @ 2014-12-16 14:47 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Zoltan Gyarmati <mr.zoltan.gyarmati@gmail.com>
---
 package/Config.in      |  1 +
 package/tinc/Config.in | 11 +++++++++++
 package/tinc/tinc.mk   | 13 +++++++++++++
 3 files changed, 25 insertions(+)
 create mode 100644 package/tinc/Config.in
 create mode 100644 package/tinc/tinc.mk

diff --git a/package/Config.in b/package/Config.in
index 48be2df..a2cbfb1 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -1139,6 +1139,7 @@ if BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
 	source "package/tftpd/Config.in"
 endif
 	source "package/thttpd/Config.in"
+	source "package/tinc/Config.in"
 	source "package/tinyhttpd/Config.in"
 	source "package/tn5250/Config.in"
 	source "package/transmission/Config.in"
diff --git a/package/tinc/Config.in b/package/tinc/Config.in
new file mode 100644
index 0000000..538d396
--- /dev/null
+++ b/package/tinc/Config.in
@@ -0,0 +1,11 @@
+config BR2_PACKAGE_TINC
+	bool "tinc"
+	select BR2_PACKAGE_LZO
+	select BR2_PACKAGE_OPENSSL
+	select BR2_PACKAGE_ZLIB
+	help
+	  tinc is a Virtual Private Network (VPN) daemon that uses tunnelling and
+	  encryption to create a secure private network between hosts on the
+	  Internet.
+
+	  http://www.tinc-vpn.org/
diff --git a/package/tinc/tinc.mk b/package/tinc/tinc.mk
new file mode 100644
index 0000000..246b2f5
--- /dev/null
+++ b/package/tinc/tinc.mk
@@ -0,0 +1,13 @@
+################################################################################
+#
+# tinc
+#
+################################################################################
+
+TINC_VERSION = 1.0.24
+TINC_SITE = http://www.tinc-vpn.org/packages
+TINC_DEPENDENCIES = lzo openssl zlib
+TINC_LICENSE = GPLv2
+TINC_LICENSE_FILES = COPYING COPYING.README
+
+$(eval $(autotools-package))
-- 
2.1.0

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

* [Buildroot] [PATCH 1/1] add new package tinc
  2014-12-16 14:47 [Buildroot] [PATCH 1/1] add new package tinc Zoltan Gyarmati
@ 2014-12-21 15:41 ` Thomas Petazzoni
  2014-12-21 20:20   ` Zoltan Gyarmati
  0 siblings, 1 reply; 3+ messages in thread
From: Thomas Petazzoni @ 2014-12-21 15:41 UTC (permalink / raw)
  To: buildroot

Dear Zoltan Gyarmati,

On Tue, 16 Dec 2014 15:47:58 +0100, Zoltan Gyarmati wrote:
> Signed-off-by: Zoltan Gyarmati <mr.zoltan.gyarmati@gmail.com>
> ---
>  package/Config.in      |  1 +
>  package/tinc/Config.in | 11 +++++++++++
>  package/tinc/tinc.mk   | 13 +++++++++++++
>  3 files changed, 25 insertions(+)
>  create mode 100644 package/tinc/Config.in
>  create mode 100644 package/tinc/tinc.mk

Patch applied, thanks. I've only done some minor changes:

    [Thomas:
     - fix license from GPLv2 to 'GPLv2+ with OpenSSL exception'
     - add -std=c99 to CFLAGS, otherwise it doesn't build with a minimal
       toolchain configuration
     - add BR2_USE_MMU dependency since fork() is used.]

Thanks for your contribution!

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

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

* [Buildroot] [PATCH 1/1] add new package tinc
  2014-12-21 15:41 ` Thomas Petazzoni
@ 2014-12-21 20:20   ` Zoltan Gyarmati
  0 siblings, 0 replies; 3+ messages in thread
From: Zoltan Gyarmati @ 2014-12-21 20:20 UTC (permalink / raw)
  To: buildroot

Dear Thomas,

On 12/21/2014 04:41 PM, Thomas Petazzoni wrote:
> Dear Zoltan Gyarmati,
> 
> On Tue, 16 Dec 2014 15:47:58 +0100, Zoltan Gyarmati wrote:
>> Signed-off-by: Zoltan Gyarmati <mr.zoltan.gyarmati@gmail.com>
>> ---
>>  package/Config.in      |  1 +
>>  package/tinc/Config.in | 11 +++++++++++
>>  package/tinc/tinc.mk   | 13 +++++++++++++
>>  3 files changed, 25 insertions(+)
>>  create mode 100644 package/tinc/Config.in
>>  create mode 100644 package/tinc/tinc.mk
> 
> Patch applied, thanks. I've only done some minor changes:
> 
>     [Thomas:
>      - fix license from GPLv2 to 'GPLv2+ with OpenSSL exception'
>      - add -std=c99 to CFLAGS, otherwise it doesn't build with a minimal
>        toolchain configuration
>      - add BR2_USE_MMU dependency since fork() is used.]
> 
> Thanks for your contribution!
> 

Thanks for the fixes!


> Thomas
> 

-- 
Bests,
Zoltan Gyarmati
IRC freenode: zgyarmati

-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 473 bytes
Desc: OpenPGP digital signature
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20141221/f4a8895d/attachment.asc>

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

end of thread, other threads:[~2014-12-21 20:20 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-12-16 14:47 [Buildroot] [PATCH 1/1] add new package tinc Zoltan Gyarmati
2014-12-21 15:41 ` Thomas Petazzoni
2014-12-21 20:20   ` Zoltan Gyarmati

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