From patchwork Wed May 15 10:39:13 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Patrick Ziegler X-Patchwork-Id: 244039 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 60A4B2C0098 for ; Wed, 15 May 2013 20:39:27 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 40ED7A0282; Wed, 15 May 2013 10:39:23 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id hxb2Mfl5lqVD; Wed, 15 May 2013 10:39:20 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id A1E6DA0258; Wed, 15 May 2013 10:39:20 +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 484098F74B for ; Wed, 15 May 2013 10:39:29 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id C9F0E82466 for ; Wed, 15 May 2013 10:39:21 +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 8lDrsXVRk1by for ; Wed, 15 May 2013 10:39:19 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from mxz.fh-kl.de (mxz.fh-kl.de [143.93.17.66]) by whitealder.osuosl.org (Postfix) with ESMTP id C0D5D8164F for ; Wed, 15 May 2013 10:39:19 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mxz.fh-kl.de (Postfix) with ESMTP id BEE8DC8009B for ; Wed, 15 May 2013 12:39:17 +0200 (CEST) X-Virus-Scanned: amavisd-new at fh-kl.de Received: from mxz.fh-kl.de ([127.0.0.1]) by localhost (mxz.fh-kl.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 0P8vtm8Vsykn for ; Wed, 15 May 2013 12:39:13 +0200 (CEST) Received: from mail01.ds.fh-kl.de (mail01.fh-kl.de [143.93.17.114]) by mxz.fh-kl.de (Postfix) with ESMTPS for ; Wed, 15 May 2013 12:39:13 +0200 (CEST) Received: from [10.0.23.197] (143.93.17.33) by zwo222-ca01.ds.fh-kl.de (10.0.3.200) with Microsoft SMTP Server (TLS) id 14.2.342.3; Wed, 15 May 2013 12:39:13 +0200 Message-ID: <519365D1.7090705@fh-kl.de> Date: Wed, 15 May 2013 12:39:13 +0200 From: Patrick Ziegler User-Agent: Mozilla/5.0 (X11; Linux i686; rv:17.0) Gecko/20130510 Thunderbird/17.0.6 MIME-Version: 1.0 To: X-Enigmail-Version: 1.5.1 X-Originating-IP: [143.93.17.33] Subject: [Buildroot] [PATCH] aespipe: 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: , Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net Signed-off-by: Patrick Ziegler --- package/Config.in | 1 + package/aespipe/Config.in | 9 +++++++++ package/aespipe/aespipe.mk | 11 +++++++++++ 3 files changed, 21 insertions(+) create mode 100644 package/aespipe/Config.in create mode 100644 package/aespipe/aespipe.mk diff --git a/package/Config.in b/package/Config.in index d980871..e0f0cf4 100644 --- a/package/Config.in +++ b/package/Config.in @@ -649,6 +649,7 @@ endmenu endmenu menu "Miscellaneous" +source "package/aespipe/Config.in" source "package/collectd/Config.in" source "package/empty/Config.in" source "package/googlefontdirectory/Config.in" diff --git a/package/aespipe/Config.in b/package/aespipe/Config.in new file mode 100644 index 0000000..ccc94c2 --- /dev/null +++ b/package/aespipe/Config.in @@ -0,0 +1,9 @@ +config BR2_PACKAGE_AESPIPE + bool "aespipe" + help + aespipe program is AES encrypting or decrypting pipe. It reads from + standard input and writes to standard output. It can be used to + create and restore encrypted tar or cpio archives. It can be used to + encrypt and decrypt loop-AES compatible encrypted disk images. + + http://koti.tnnet.fi/jari.ruusu/linux/ diff --git a/package/aespipe/aespipe.mk b/package/aespipe/aespipe.mk new file mode 100644 index 0000000..6d1b5d5 --- /dev/null +++ b/package/aespipe/aespipe.mk @@ -0,0 +1,11 @@ +############################################################# +# +# aespipe +# +############################################################# +AESPIPE_VERSION = 2.4c +AESPIPE_SOURCE = aespipe-v$(AESPIPE_VERSION).tar.bz2 +AESPIPE_SITE = http://loop-aes.sourceforge.net/aespipe/ +AESPIPE_LICENSE = GPL + +$(eval $(autotools-package))