From patchwork Tue Oct 30 12:29:45 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 195484 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from fraxinus.osuosl.org (fraxinus.osuosl.org [140.211.166.137]) by ozlabs.org (Postfix) with ESMTP id 452422C00A7 for ; Tue, 30 Oct 2012 23:30:41 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id DFB9A10B93E; Tue, 30 Oct 2012 12:30:34 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 4DKyRnpsZaII; Tue, 30 Oct 2012 12:30:28 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id A8CCD10B932; Tue, 30 Oct 2012 12:30:21 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 023578F74A for ; Tue, 30 Oct 2012 12:30:29 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 4ABDD8C78A for ; Tue, 30 Oct 2012 12:30:25 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id c-twAv3Qs6GE for ; Tue, 30 Oct 2012 12:30:24 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from loknar.toptech.com.ar (loknar.toptech.com.ar [85.10.205.246]) by whitealder.osuosl.org (Postfix) with ESMTPS id 271448C625 for ; Tue, 30 Oct 2012 12:30:23 +0000 (UTC) Received: from asgard (host100.190-226-82.telecom.net.ar [190.226.82.100]) (authenticated bits=0) by loknar.toptech.com.ar (8.14.5/8.14.5) with ESMTP id q9UCUHpg012771 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 30 Oct 2012 12:30:20 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1351600222; bh=+5Upwmdw96k1geZA2hgglhx1fuYZ3q2LlReYIwjmOM8=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=VZii9rLXTOCHXrOIURj6hssfg9S0vkzIPkKpsZdDWdDG95FMLmBPvWZo+GjCA3BoC RExGB8y4mzoXBuPlBluWwwTzzaoAyZVb4QRRJjXHhVWvqmL1L5xRXJ3OknRarJ29Gk E05aQquiPK2H/3S5MBAMgnYw2tuX4yAGwd078z+U= Received: by asgard (sSMTP sendmail emulation); Tue, 30 Oct 2012 09:30:16 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Tue, 30 Oct 2012 09:29:45 -0300 Message-Id: <1351600193-21511-5-git-send-email-gustavo@zacarias.com.ar> X-Mailer: git-send-email 1.7.8.6 In-Reply-To: <1351600193-21511-1-git-send-email-gustavo@zacarias.com.ar> References: <1351600193-21511-1-git-send-email-gustavo@zacarias.com.ar> X-Virus-Scanned: clamav-milter 0.97.5 at loknar X-Virus-Status: Clean Subject: [Buildroot] [PATCHv2 04/12] libnetfilter_cthelper: add new package X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net Signed-off-by: Gustavo Zacarias --- package/Config.in | 1 + package/libnetfilter_cthelper/Config.in | 13 +++++++++++++ .../libnetfilter_cthelper/libnetfilter-cthelper.mk | 15 +++++++++++++++ 3 files changed, 29 insertions(+), 0 deletions(-) create mode 100644 package/libnetfilter_cthelper/Config.in create mode 100644 package/libnetfilter_cthelper/libnetfilter-cthelper.mk diff --git a/package/Config.in b/package/Config.in index 6113d83..d0718bf 100644 --- a/package/Config.in +++ b/package/Config.in @@ -449,6 +449,7 @@ source "package/libmnl/Config.in" source "package/libmodbus/Config.in" source "package/libmbus/Config.in" source "package/libnetfilter_conntrack/Config.in" +source "package/libnetfilter_cthelper/Config.in" source "package/libnetfilter_cttimeout/Config.in" source "package/libnfnetlink/Config.in" source "package/libnl/Config.in" diff --git a/package/libnetfilter_cthelper/Config.in b/package/libnetfilter_cthelper/Config.in new file mode 100644 index 0000000..fd4f95c --- /dev/null +++ b/package/libnetfilter_cthelper/Config.in @@ -0,0 +1,13 @@ +config BR2_PACKAGE_LIBNETFILTER_CTHELPER + bool "libnetfilter_cthelper" + depends on BR2_LARGEFILE + select BR2_PACKAGE_LIBMNL + help + libnetfilter_cthelper is the userspace library that provides + the programming interface to the user-space helper infrastructure + available since Linux kernel 3.6. + + http://www.netfilter.org/projects/libnetfilter_cthelper/ + +comment "libnetfilter_cthelper requires a toolchain with LARGEFILE support" + depends on !BR2_LARGEFILE diff --git a/package/libnetfilter_cthelper/libnetfilter-cthelper.mk b/package/libnetfilter_cthelper/libnetfilter-cthelper.mk new file mode 100644 index 0000000..1414156 --- /dev/null +++ b/package/libnetfilter_cthelper/libnetfilter-cthelper.mk @@ -0,0 +1,15 @@ +############################################################# +# +# libnetfilter-cthelper +# +############################################################# + +LIBNETFILTER_CTHELPER_VERSION = 1.0.0 +LIBNETFILTER_CTHELPER_SOURCE = libnetfilter_cthelper-$(LIBNETFILTER_CTHELPER_VERSION).tar.bz2 +LIBNETFILTER_CTHELPER_SITE = http://www.netfilter.org/projects/libnetfilter_cthelper/files +LIBNETFILTER_CTHELPER_INSTALL_STAGING = YES +LIBNETFILTER_CTHELPER_DEPENDENCIES = host-pkgconf libmnl +LIBNETFILTER_CTHELPER_LICENSE = GPLv2 +LIBNETFILTER_CTHELPER_LICENSE_FILES = COPYING + +$(eval $(autotools-package))