Patchworkβ [oe] add nzbget and libpar2

login
register
about
Submitter Artur Wronowski
Date 2009-09-04 06:34:12
Message ID <431b13f90909032334u268006d1t88fa437d76883be8@mail.gmail.com>
Download mbox | patch
Permalink /patch/1024/
State Applied, archived
Headers show

Comments

Artur Wronowski - 2009-09-04 06:34:12
2009/9/4 Henning Heinold <heinold@inf.fu-berlin.de>:
> Hi again,
>
> sorry didnt saw this on the first glance please use git format-patch
> So its easier to push it in, with your datas.

Here it is, new patch :-)
Jan Lübbe - 2009-09-09 11:49:41
Hi!

On Fri, 2009-09-04 at 08:34 +0200, Artur Wronowski wrote:
> +EXTRA_OECONF = "--with-tlslib=OpenSSL \
> +               --with-libcurses-libraries=${STAGING_LIBDIR} \
> +               --with-libcurses-includes=${STAGING_INCDIR} \
> +               --with-libpar2-libraries={STAGING_INCDIR} \
> +               --with-libpar2-includes={STAGING_INCDIR} \
> +               --with-openssl-libraries={STAGING_INCDIR} \
> +               --with-openssl-includes={STAGING_INCDIR}"

missing $ in some lines

> +EXTRA_OECONF = "--with-tlslib=OpenSSL \
> +               --with-libcurses-libraries=${STAGING_LIBDIR} \
> +               --with-libcurses-includes=${STAGING_INCDIR} \
> +               --with-libpar2-libraries={STAGING_INCDIR} \
> +               --with-libpar2-includes={STAGING_INCDIR} \
> +               --with-openssl-libraries={STAGING_INCDIR} \
> +               --with-openssl-includes={STAGING_INCDIR}"

same

Patch

From 0331db378cf798813700ccb7ced26667bad7b587 Mon Sep 17 00:00:00 2001
From: Artur Wronowski <arteqw@gmail.com>
Date: Fri, 4 Sep 2009 08:28:13 +0200
Subject: [PATCH] add nzbget and libpar2

---
 recipes/libpar2/libpar2_0.2.bb         |   14 ++++++++++++++
 recipes/nzbget/nzbget_0.6.0.bb         |   22 ++++++++++++++++++++++
 recipes/nzbget/nzbget_0.7.0-testing.bb |   22 ++++++++++++++++++++++
 3 files changed, 58 insertions(+), 0 deletions(-)
 create mode 100644 recipes/libpar2/libpar2_0.2.bb
 create mode 100644 recipes/nzbget/nzbget_0.6.0.bb
 create mode 100644 recipes/nzbget/nzbget_0.7.0-testing.bb

diff --git a/recipes/libpar2/libpar2_0.2.bb b/recipes/libpar2/libpar2_0.2.bb
new file mode 100644
index 0000000..b337c5f
--- /dev/null
+++ b/recipes/libpar2/libpar2_0.2.bb
@@ -0,0 +1,14 @@ 
+DESCRIPTION = "Providing a tool to apply the data-recovery capability concepts of RAID-like systems to the posting & recovery of multi-part archives on Usenet."
+SECTION = "libs"
+LICENSE = "GPL"
+HOMEPAGE = "http://parchive.sourceforge.net/"
+DEPENDS = "libsigc++-2.0"
+
+SRC_URI = "${SOURCEFORGE_MIRROR}/parchive/libpar2/libpar2-${PV}.tar.gz"
+
+inherit autotools pkgconfig
+
+do_stage() {
+	autotools_stage_all
+}
+
diff --git a/recipes/nzbget/nzbget_0.6.0.bb b/recipes/nzbget/nzbget_0.6.0.bb
new file mode 100644
index 0000000..79ff7c4
--- /dev/null
+++ b/recipes/nzbget/nzbget_0.6.0.bb
@@ -0,0 +1,22 @@ 
+DESCRIPTION = "NZBGet is a command-line based binary newsgrabber for nzb files, written in C++"
+SECTION = "net"
+LICENSE = "GPL"
+HOMEPAGE = "http://nzbget.sourceforge.net/Main_Page"
+DEPENDS = "libsigc++-2.0 libpar2 ncurses libxml2 openssl"
+PR = "r0"
+
+SRC_URI = "${SOURCEFORGE_MIRROR}/nzbget/nzbget-stable/nzbget-${PV}.tar.gz"
+
+inherit autotools pkgconfig
+
+do_stage() {
+	autotools_stage_all
+}
+
+EXTRA_OECONF = "--with-tlslib=OpenSSL \
+		--with-libcurses-libraries=${STAGING_LIBDIR} \
+		--with-libcurses-includes=${STAGING_INCDIR} \
+		--with-libpar2-libraries={STAGING_INCDIR} \
+		--with-libpar2-includes={STAGING_INCDIR} \
+		--with-openssl-libraries={STAGING_INCDIR} \
+		--with-openssl-includes={STAGING_INCDIR}"
diff --git a/recipes/nzbget/nzbget_0.7.0-testing.bb b/recipes/nzbget/nzbget_0.7.0-testing.bb
new file mode 100644
index 0000000..289b580
--- /dev/null
+++ b/recipes/nzbget/nzbget_0.7.0-testing.bb
@@ -0,0 +1,22 @@ 
+DESCRIPTION = "NZBGet is a command-line based binary newsgrabber for nzb files, written in C++. Testing version."
+SECTION = "net"
+LICENSE = "GPL"
+HOMEPAGE = "http://nzbget.sourceforge.net/Main_Page"
+DEPENDS = "libsigc++-2.0 libpar2 ncurses libxml2 openssl"
+PR = "r0"
+
+SRC_URI = "${SOURCEFORGE_MIRROR}/nzbget/nzbget-stable/nzbget-${PV}-r342.tar.gz"
+
+inherit autotools pkgconfig
+
+do_stage() {
+	autotools_stage_all
+}
+
+EXTRA_OECONF = "--with-tlslib=OpenSSL \
+		--with-libcurses-libraries=${STAGING_LIBDIR} \
+		--with-libcurses-includes=${STAGING_INCDIR} \
+		--with-libpar2-libraries={STAGING_INCDIR} \
+		--with-libpar2-includes={STAGING_INCDIR} \
+		--with-openssl-libraries={STAGING_INCDIR} \
+		--with-openssl-includes={STAGING_INCDIR}"
-- 
1.6.4.2