From patchwork Thu Feb 21 14:58:38 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Maxime Hadjinlian X-Patchwork-Id: 222311 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hemlock.osuosl.org (hemlock.osuosl.org [140.211.166.133]) by ozlabs.org (Postfix) with ESMTP id DC68C2C008E for ; Fri, 22 Feb 2013 01:59:57 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 84914A0174; Thu, 21 Feb 2013 14:59:57 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org X-Amavis-Alert: BAD HEADER SECTION, Duplicate header field: "References" Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id DcHkHjnOJi7q; Thu, 21 Feb 2013 14:59:54 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id 53A35A0085; Thu, 21 Feb 2013 14:59:54 +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 AA2B58F75B for ; Thu, 21 Feb 2013 14:59:38 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 1EEA38B246 for ; Thu, 21 Feb 2013 14:59:31 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org X-Amavis-Alert: BAD HEADER SECTION, Duplicate header field: "References" Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 5QGZHUiaqC44 for ; Thu, 21 Feb 2013 14:59:30 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-ea0-f180.google.com (mail-ea0-f180.google.com [209.85.215.180]) by whitealder.osuosl.org (Postfix) with ESMTPS id BFB8A8AAEF for ; Thu, 21 Feb 2013 14:59:29 +0000 (UTC) Received: by mail-ea0-f180.google.com with SMTP id c1so3760551eaa.39 for ; Thu, 21 Feb 2013 06:59:28 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:from:to:cc:subject:date:message-id:x-mailer:in-reply-to :references:in-reply-to:references; bh=8wn1zECvtFH90Gb6Dctm3IGtGMBB/EFMPtAMfeKUDq4=; b=lkxS8CLvPMwc9pAkg8Ag3SyP6tQN5p1QSmfsXsiwO8ZAFsKnQQI7ZWCvAtoz8nnA5U kwT5vn72QXamfiZDJ7E7d8l1Ub2WHWrJroUCnV36cXt1gEcMeVZfvL46ODS5Hi8S0enY 7KQUEYTlMIoFrntf2Ze/wnfd29bzhRPXcSb3xKvo79peHI2kKwUrgdVDcCp0CEqNrHw0 Q0TUuAW5RpYCcbpY0cLUnaVaD7N8qQy30QhcuD/sBp0yANyTrPoAnJInC6eMvn44GH9a 4c02rxGxdaBAR2hHs9/EfE4fONpHEW1n/2EpsGs/zoSjhDdKD37vTT0HK6vgDAbnFJAc u6EA== X-Received: by 10.14.179.5 with SMTP id g5mr81761637eem.41.1361458768109; Thu, 21 Feb 2013 06:59:28 -0800 (PST) Received: from localhost (193.5-14-84.ripe.coltfrance.com. [84.14.5.193]) by mx.google.com with ESMTPS id u44sm55551031eel.7.2013.02.21.06.59.26 (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Thu, 21 Feb 2013 06:59:27 -0800 (PST) From: Maxime Hadjinlian To: buildroot@busybox.net Date: Thu, 21 Feb 2013 15:58:38 +0100 Message-Id: <6f49fb1679eb12c011edfaf52648c065a049c101.1361458625.git.maxime.hadjinlian@gmail.com> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: References: In-Reply-To: References: Subject: [Buildroot] [PATCH 08/13] libnfs: 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 nfs userspace implementation. This package was originally found at : https://github.com/huceke/buildroot-rbp By gimli Signed-off-by: Maxime Hadjinlian --- package/Config.in | 1 + package/libnfs/Config.in | 11 +++++++++++ package/libnfs/libnfs.mk | 16 ++++++++++++++++ 3 files changed, 28 insertions(+) create mode 100644 package/libnfs/Config.in create mode 100644 package/libnfs/libnfs.mk diff --git a/package/Config.in b/package/Config.in index ac021e8..a9cb9ed 100644 --- a/package/Config.in +++ b/package/Config.in @@ -404,6 +404,7 @@ source "package/gamin/Config.in" source "package/libconfig/Config.in" source "package/libconfuse/Config.in" source "package/libfuse/Config.in" +source "package/libnfs/Config.in" source "package/liblockfile/Config.in" source "package/libsysfs/Config.in" endmenu diff --git a/package/libnfs/Config.in b/package/libnfs/Config.in new file mode 100644 index 0000000..29e5a43 --- /dev/null +++ b/package/libnfs/Config.in @@ -0,0 +1,11 @@ +config BR2_PACKAGE_LIBNFS + bool "libnfs" + depends on BR2_TOOLCHAIN_HAS_NATIVE_RPC + depends on BR2_LARGEFILE + help + nfs userspace implementation. + + http://github.com/sahlberg/libnfs + +comment "libnfs requires a toolchain with RPC and LARGEFILE support" + depends on !(BR2_TOOLCHAIN_HAS_NATIVE_RPC && BR2_LARGEFILE) diff --git a/package/libnfs/libnfs.mk b/package/libnfs/libnfs.mk new file mode 100644 index 0000000..693de46 --- /dev/null +++ b/package/libnfs/libnfs.mk @@ -0,0 +1,16 @@ +############################################################# +# +# libnfs +# +############################################################# + +LIBNFS_VERSION = libnfs-1.3.0 +LIBNFS_SITE = http://github.com/sahlberg/libnfs/tarball/$(LIBNFS_VERSION) +LIBNFS_INSTALL_STAGING = YES +LIBNFS_AUTORECONF = YES +LIBNFS_MAKE = $(MAKE1) +LIBNFS_LICENSE = LGPLv2.1 +LIBNFS_LICENSE_FILES = LICENCE-LGPL-2.1.txt +LIBNFS_DEPENDENCIES = host-pkgconf + +$(eval $(autotools-package))