Comments
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
new file mode 100644
@@ -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
+}
+
new file mode 100644
@@ -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}"
new file mode 100644
@@ -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