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

* Re: [PATCH] add nzbget and libpar2
  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
  0 siblings, 1 reply; 6+ messages in thread
From: Henning Heinold @ 2009-09-03 11:31 UTC (permalink / raw)
  To: openembedded-devel

On Wed, Sep 02, 2009 at 09:48:46PM +0200, Artur Wronowski wrote:
> Hello!
> 
> This is my first patch to openembedded. I woud like add nzbget and libpar2.
> 
> +inherit autotools pkgconfig
> +
> +do_stage() {
> +	autotools_stage_all
> +}
> +

You can use autotools_stage here, do avoid the extrad do_stage


> 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 \

Why is tls disabled here?

> +		--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
> +}

autotools_stage again

> 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
> +}
> +

Bye Henning



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

* Re: [PATCH] add nzbget and libpar2
  2009-09-03 11:31 ` Henning Heinold
@ 2009-09-03 20:09   ` Artur Wronowski
  2009-09-03 23:16     ` Henning Heinold
  0 siblings, 1 reply; 6+ messages in thread
From: Artur Wronowski @ 2009-09-03 20:09 UTC (permalink / raw)
  To: openembedded-devel

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

Thanks Henning for you help.

 I send fixed patch with SSL support for nntp servers. I hope that is
better patch than my first ;-)

2009/9/3 Henning Heinold <heinold@inf.fu-berlin.de>:
> On Wed, Sep 02, 2009 at 09:48:46PM +0200, Artur Wronowski wrote:
>> Hello!
>>
>> This is my first patch to openembedded. I woud like add nzbget and libpar2.
>>
>> +inherit autotools pkgconfig
>> +
>> +do_stage() {
>> +     autotools_stage_all
>> +}
>> +
>
> You can use autotools_stage here, do avoid the extrad do_stage
>
>
>> 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 \
>
> Why is tls disabled here?
>
>> +             --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
>> +}
>
> autotools_stage again
>
>> 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
>> +}
>> +
>
> Bye Henning
>
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
>



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

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

diff --git a/conf/checksums.ini b/conf/checksums.ini
index 1377816..0d3e844 100644
--- a/conf/checksums.ini
+++ b/conf/checksums.ini
@@ -28934,3 +28934,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..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}"

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

* Re: [PATCH] add nzbget and libpar2
  2009-09-03 20:09   ` Artur Wronowski
@ 2009-09-03 23:16     ` Henning Heinold
  2009-09-04  6:34       ` Artur Wronowski
  0 siblings, 1 reply; 6+ messages in thread
From: Henning Heinold @ 2009-09-03 23:16 UTC (permalink / raw)
  To: openembedded-devel

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.

Bye Henning



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

* Re: [PATCH] add nzbget and libpar2
  2009-09-03 23:16     ` Henning Heinold
@ 2009-09-04  6:34       ` Artur Wronowski
  2009-09-09 11:49         ` Jan Lübbe
  0 siblings, 1 reply; 6+ messages in thread
From: Artur Wronowski @ 2009-09-04  6:34 UTC (permalink / raw)
  To: openembedded-devel

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

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 :-)


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

[-- Attachment #2: 0001-add-nzbget-and-libpar2.patch --]
[-- Type: text/x-patch, Size: 3120 bytes --]

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


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

* Re: [PATCH] add nzbget and libpar2
  2009-09-04  6:34       ` Artur Wronowski
@ 2009-09-09 11:49         ` Jan Lübbe
  0 siblings, 0 replies; 6+ messages in thread
From: Jan Lübbe @ 2009-09-09 11:49 UTC (permalink / raw)
  To: openembedded-devel

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

-- 
Jan Lübbe <jluebbe@lasnet.de>            http://sicherheitsschwankung.de
 gpg-key      1024D/D8480F2E 2002-03-20
 fingerprint  1B25 F91F 9E7B 5D4F 1282  02D6 8A83 8BE4 D848 0F2E




^ permalink raw reply	[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.