aboutsummaryrefslogtreecommitdiffstats
path: root/packages/vorbis-tools
diff options
context:
space:
mode:
authorJeremy Laine <jeremy.laine@m4x.org>2008-02-07 10:01:51 +0000
committerJeremy Laine <jeremy.laine@m4x.org>2008-02-07 10:01:51 +0000
commitdc8c56a49e2c4830990dea6d174a7b3fcd07db98 (patch)
treed43bafae0f8ad6f2bfa025820f6f20d638cf8dea /packages/vorbis-tools
parent2bdd47b45bd109d21ab5affd23114157d9f963f7 (diff)
downloadopenembedded-dc8c56a49e2c4830990dea6d174a7b3fcd07db98.tar.gz
vorbis-tools_1.1.1.bb: package version 1.1.1 of vorbis-tools
Diffstat (limited to 'packages/vorbis-tools')
-rw-r--r--packages/vorbis-tools/vorbis-tools-1.1.1/.mtn2git_empty0
-rw-r--r--packages/vorbis-tools/vorbis-tools-1.1.1/remove-deprecated-curl-option.patch12
-rw-r--r--packages/vorbis-tools/vorbis-tools_1.1.1.bb21
3 files changed, 33 insertions, 0 deletions
diff --git a/packages/vorbis-tools/vorbis-tools-1.1.1/.mtn2git_empty b/packages/vorbis-tools/vorbis-tools-1.1.1/.mtn2git_empty
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/packages/vorbis-tools/vorbis-tools-1.1.1/.mtn2git_empty
diff --git a/packages/vorbis-tools/vorbis-tools-1.1.1/remove-deprecated-curl-option.patch b/packages/vorbis-tools/vorbis-tools-1.1.1/remove-deprecated-curl-option.patch
new file mode 100644
index 0000000000..5c52ef1b0d
--- /dev/null
+++ b/packages/vorbis-tools/vorbis-tools-1.1.1/remove-deprecated-curl-option.patch
@@ -0,0 +1,12 @@
+diff -urN vorbis-tools-1.1.1.orig/ogg123/http_transport.c vorbis-tools-1.1.1/ogg123/http_transport.c
+--- vorbis-tools-1.1.1.orig/ogg123/http_transport.c 2005-06-13 15:11:44.000000000 +0200
++++ vorbis-tools-1.1.1/ogg123/http_transport.c 2007-12-19 10:40:19.000000000 +0100
+@@ -116,7 +116,7 @@
+ if (inputOpts.ProxyTunnel)
+ curl_easy_setopt (handle, CURLOPT_HTTPPROXYTUNNEL, inputOpts.ProxyTunnel);
+ */
+- curl_easy_setopt(handle, CURLOPT_MUTE, 1);
++ /* curl_easy_setopt(handle, CURLOPT_MUTE, 1); */
+ curl_easy_setopt(handle, CURLOPT_ERRORBUFFER, private->error);
+ curl_easy_setopt(handle, CURLOPT_PROGRESSFUNCTION, progress_callback);
+ curl_easy_setopt(handle, CURLOPT_PROGRESSDATA, private);
diff --git a/packages/vorbis-tools/vorbis-tools_1.1.1.bb b/packages/vorbis-tools/vorbis-tools_1.1.1.bb
new file mode 100644
index 0000000000..01fc248dd1
--- /dev/null
+++ b/packages/vorbis-tools/vorbis-tools_1.1.1.bb
@@ -0,0 +1,21 @@
+DESCRIPTION = "vorbis-tools contains oggenc (an encoder), ogg123 (a playback tool), \
+ogginfo (displays ogg information), vcut (ogg file splitter), and \
+vorbiscomment (ogg comment editor)."
+LICENSE = "GPL"
+DEPENDS = "libogg libvorbis libao curl"
+SECTION = "console/multimedia"
+
+SRC_URI = "http://downloads.xiph.org/releases/vorbis/vorbis-tools-${PV}.tar.gz \
+ file://remove-deprecated-curl-option.patch;patch=1"
+
+inherit autotools
+
+EXTRA_OECONF = "--without-flac --without-speex \
+ --with-ogg-libraries=${STAGING_LIBDIR}/ \
+ --with-ogg-includes=${STAGING_INCDIR}/ \
+ --with-vorbis-libraries=${STAGING_LIBDIR}/ \
+ --with-vorbis-includes=${STAGING_INCDIR}/ \
+ --with-ao-libraries=${STAGING_LIBDIR}/ \
+ --with-ao-includes=${STAGING_INCDIR}/ \
+ --with-curl-libraries=${STAGING_LIBDIR}/ \
+ --with-curl-includes=${STAGING_INCDIR}/"