All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] add nzbget and libpar2
@ 2009-09-02 19:48 Artur Wronowski
  2009-09-03 11:31 ` Henning Heinold
  0 siblings, 1 reply; 6+ messages in thread
From: Artur Wronowski @ 2009-09-02 19:48 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 172 bytes --]

Hello!

This is my first patch to openembedded. I woud like add nzbget and libpar2.

-- 
Pozdrawiam, Artur
http://artekw.net / GG: 151817 / JID: artekw@jabberpl.org

[-- Attachment #2: nzbget_and_deps.patch --]
[-- Type: text/x-patch, Size: 3347 bytes --]

diff --git a/conf/checksums.ini b/conf/checksums.ini
index e6f5cbf..71e9012 100644
--- a/conf/checksums.ini
+++ b/conf/checksums.ini
@@ -28890,3 +28890,14 @@ sha256=f57c4e33eb2cdd87a6c2f01bfa4794340fbe61ea1a1cfc7dac3b6671e1dd22af
 md5=5f7b88ebb2bcd7e8044328482d079661
 sha256=f57c4e33eb2cdd87a6c2f01bfa4794340fbe61ea1a1cfc7dac3b6671e1dd22af
 
+[http://downloads.sourceforge.net/parchive/libpar2/libpar2-0.2.tar.gz]
+md5=94c6df4e38efe08056ecde2a04e0be91
+sha256=074fbf840f73b1e13e0405fce261078c81c8c0a4859e30a7bba10510f9199908
+
+[http://downloads.sourceforge.net/nzbget/nzbget-stable/nzbget-0.6.0.tar.gz]
+md5=eb95b3930abffb570e37af8d284c1f9d
+sha256=b0bc8740db7ed9ea269b29e9a936cb2c4dd61a911b80b623fe18729b94de3030
+
+[http://downloads.sourceforge.net/nzbget/nzbget-stable/nzbget-0.7.0-testing-r342.tar.gz]
+md5=4250d8166969367b4feff4204b42ecb9
+sha256=37c595e78c4a5c86fa1c39d4dba39786d9546ae0a078b936832df9d17bafba10
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..1f75124
--- /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"
+
+SRC_URI = "${SOURCEFORGE_MIRROR}/nzbget/nzbget-stable/nzbget-${PV}.tar.gz"
+# http://sourceforge.net/projects/nzbget/files/nzbget-stable/nzbget-0.6.0.tar.gz
+
+inherit autotools pkgconfig
+
+EXTRA_OECONF = "--disable-tls \
+		--with-libcurses-libraries=${STAGING_LIBDIR} \
+		--with-libcurses-includes=${STAGING_INCDIR} \
+		--with-libpar2-includes={STAGING_INCDIR} \
+		--with-libpar2-libraries={STAGING_INCDIR}"
+
+do_stage() {
+	autotools_stage_all
+}
+
+
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..e0f9b5c
--- /dev/null
+++ b/recipes/nzbget/nzbget_0.7.0-testing.bb
@@ -0,0 +1,23 @@
+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"
+
+SRC_URI = "${SOURCEFORGE_MIRROR}/nzbget/nzbget-stable/nzbget-${PV}-r342.tar.gz"
+
+# http://sourceforge.net/projects/nzbget/files/nzbget-testing/nzbget-0.7.0-testing-r342.tar.gz
+
+inherit autotools pkgconfig
+
+EXTRA_OECONF = "--disable-tls \
+		--with-libcurses-libraries=${STAGING_LIBDIR} \
+		--with-libcurses-includes=${STAGING_INCDIR} \
+		--with-libpar2-includes={STAGING_INCDIR} \
+		--with-libpar2-libraries={STAGING_INCDIR}"
+
+do_stage() {
+	autotools_stage_all
+}
+
+

^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2009-09-09 11:50 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-09-02 19:48 [PATCH] add nzbget and libpar2 Artur Wronowski
2009-09-03 11:31 ` Henning Heinold
2009-09-03 20:09   ` Artur Wronowski
2009-09-03 23:16     ` Henning Heinold
2009-09-04  6:34       ` Artur Wronowski
2009-09-09 11:49         ` Jan Lübbe

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.