diff options
author | Koen Kooi <koen@openembedded.org> | 2007-04-12 08:16:08 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2007-04-12 08:16:08 +0000 |
commit | 37a87ac34f26f3e5f4afeded2fb1fc25d4f0137d (patch) | |
tree | 8f4abdeae389cb9772d1838b028388ecd126933c /packages | |
parent | 797d987e5133f3579163b3cead61b9917a1d9390 (diff) | |
parent | bae26ec4702cef66ffebe94bf47941777bb06f92 (diff) |
merge of 'a1c14f5ed3aa4310fcbbae2ab8eaf084e777f6b4'
and 'aee4afc7bd079e28f35b43cc08b0559015472e42'
Diffstat (limited to 'packages')
-rw-r--r-- | packages/gloox/.mtn2git_empty | 0 | ||||
-rw-r--r-- | packages/gloox/gloox_0.8.1.bb (renamed from packages/gpephone/gloox_0.8.1.bb) | 0 | ||||
-rw-r--r-- | packages/gpe-ownerinfo/gpe-ownerinfo_svn.bb | 2 | ||||
-rw-r--r-- | packages/gtk-webcore/files/NRCit_HTTP_auth.diff | 132 | ||||
-rw-r--r-- | packages/gtk-webcore/files/NRCit_unmap.diff | 39 | ||||
-rw-r--r-- | packages/gtk-webcore/osb-nrcit_svn.bb | 2 | ||||
-rw-r--r-- | packages/iksemel/.mtn2git_empty | 0 | ||||
-rw-r--r-- | packages/iksemel/iksemel_1.2.bb (renamed from packages/gpephone/iksemel_1.2.bb) | 2 | ||||
-rw-r--r-- | packages/nunome/nunome_1.0.2.bb (renamed from packages/nunome/nunome_1.0.1.bb) | 3 |
9 files changed, 4 insertions, 176 deletions
diff --git a/packages/gloox/.mtn2git_empty b/packages/gloox/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/packages/gloox/.mtn2git_empty diff --git a/packages/gpephone/gloox_0.8.1.bb b/packages/gloox/gloox_0.8.1.bb index 09004a8182..09004a8182 100644 --- a/packages/gpephone/gloox_0.8.1.bb +++ b/packages/gloox/gloox_0.8.1.bb diff --git a/packages/gpe-ownerinfo/gpe-ownerinfo_svn.bb b/packages/gpe-ownerinfo/gpe-ownerinfo_svn.bb index b2ee49cf69..90fb6faf14 100644 --- a/packages/gpe-ownerinfo/gpe-ownerinfo_svn.bb +++ b/packages/gpe-ownerinfo/gpe-ownerinfo_svn.bb @@ -6,6 +6,8 @@ DEPENDS = "gtk+ libgpewidget" PR = "r1" PV = "0.28+svn-${SRCDATE}" +DEFAULT_PREFERENCE = "-1" + SRC_URI += "${GPE_SVN} \ file://svn-build.patch;patch=1" diff --git a/packages/gtk-webcore/files/NRCit_HTTP_auth.diff b/packages/gtk-webcore/files/NRCit_HTTP_auth.diff deleted file mode 100644 index 7a2df30d1d..0000000000 --- a/packages/gtk-webcore/files/NRCit_HTTP_auth.diff +++ /dev/null @@ -1,132 +0,0 @@ -Index: NRCit/src/Http.cpp -=================================================================== ---- NRCit/src/Http.cpp (revision 55) -+++ NRCit/src/Http.cpp (working copy) -@@ -299,3 +299,9 @@ - { - - } -+ -+HttpHeaderWWWAuthenticate::HttpHeaderWWWAuthenticate(const gchar * value) -+ : HttpHeader(WWWAuthenticate, "WWW-Authenticate", value) -+{ -+ -+} -Index: NRCit/src/HttpCurl.cpp -=================================================================== ---- NRCit/src/HttpCurl.cpp (revision 55) -+++ NRCit/src/HttpCurl.cpp (working copy) -@@ -69,7 +69,7 @@ - void setPostData(const gchar * contentType, GByteArray *); - - protected: -- bool shouldAuthenticate() { return m_authenticate; } -+ bool shouldAuthenticate() { return m_need_authenticate; } - - /** Authenticates the request. */ - void doAuth(); -@@ -89,7 +89,7 @@ - - GByteArray * postData; - bool headerEnd; -- bool m_authenticate; -+ bool m_need_authenticate; - - gchar * proxy; - CurlFactory* parent; -@@ -374,7 +374,7 @@ - ,curl_post_last(NULL) - ,postData(NULL) - ,headerEnd(false) -- ,m_authenticate(true) -+ ,m_need_authenticate(true) - ,proxy(NULL) - ,parent(aParent) - ,status(-1) -@@ -438,7 +438,8 @@ - } - - void CurlRequest::doAuth() { -- m_authenticate = m_listener->authenticate(this); -+ m_listener->authenticate(this); -+ m_need_authenticate = false; // set false to go on processing data in CurlRequest::data - } - - void CurlRequest::execute() -@@ -457,6 +458,8 @@ - curl_easy_setopt(handle, CURLOPT_FOLLOWLOCATION, 1); - curl_easy_setopt(handle, CURLOPT_MAXREDIRS, 10); - -+ curl_easy_setopt(handle, CURLOPT_AUTOREFERER, 1); -+ - // url ptr must remain valid through the request - curl_easy_setopt(handle, CURLOPT_URL, m_url); - -@@ -534,7 +537,7 @@ - - - // if we are in middle of authenticating, do nothing. -- if (status != HTTP_AUTH_REQUIRED || !m_authenticate) { -+ if (status != HTTP_AUTH_REQUIRED || !m_need_authenticate) { - m_listener->data(this, data, len); - } - } -@@ -570,6 +573,8 @@ - header = new HttpHeaderRefresh(value); - } else if (!strcmp(key, HTTP_SET_COOKIE)) { - header = new HttpHeaderSetCookie(value); -+ } else if (!strcmp(key, HTTP_WWW_AUTHENTICATE)) { -+ header = new HttpHeaderWWWAuthenticate(value); - } else { - header = new HttpHeader(HttpHeader::Unknown, key, value); - } -@@ -584,7 +589,7 @@ - { - HttpHeader *hdr = parseHeader(data, len); - if (hdr) { -- if (hdr->key() == HTTP_WWW_AUTHENTICATE && hdr->value()) -+ if (!strcmp(hdr->key(), HTTP_WWW_AUTHENTICATE) && hdr->value()) - { - const gchar * value = hdr->value(); - char * realm = g_strrstr(value, "realm=" ); -Index: NRCit/src/PageLoadListener.cpp -=================================================================== ---- NRCit/src/PageLoadListener.cpp (revision 55) -+++ NRCit/src/PageLoadListener.cpp (working copy) -@@ -206,8 +206,9 @@ - creds->setCredential(newcred, space); - request->authenticate(newcred.user(), newcred.password()); - } -- if (user) g_free(user); -- if (password) g_free(password); -+ // Do not free these values which are owned by Webi. -+ // if (user) g_free(user); -+ // if (password) g_free(password); - return ret; - } - -Index: NRCit/src/Http.h -=================================================================== ---- NRCit/src/Http.h (revision 55) -+++ NRCit/src/Http.h (working copy) -@@ -165,6 +165,7 @@ - ContentLength, - Refresh, - SetCookie, -+ WWWAuthenticate, - Unknown, - Invalid - }; -@@ -236,6 +237,12 @@ - ~HttpHeaderSetCookie() {} - }; - -+class HttpHeaderWWWAuthenticate : public HttpHeader -+{ -+public: -+ HttpHeaderWWWAuthenticate(const gchar* value); -+ ~HttpHeaderWWWAuthenticate() {} -+}; - - - #endif diff --git a/packages/gtk-webcore/files/NRCit_unmap.diff b/packages/gtk-webcore/files/NRCit_unmap.diff deleted file mode 100644 index 1f2be39922..0000000000 --- a/packages/gtk-webcore/files/NRCit_unmap.diff +++ /dev/null @@ -1,39 +0,0 @@ -Index: NRCit/src/gtk/webi.cc -=================================================================== ---- NRCit/src/gtk/webi.cc (リビジョン 55) -+++ NRCit/src/gtk/webi.cc (作業コピー) -@@ -50,6 +50,7 @@ - static void _webi_finalize (GObject * self) G_GNUC_UNUSED; - static void _webi_realize (GtkWidget * widget) G_GNUC_UNUSED; - static void _webi_map (GtkWidget * widget) G_GNUC_UNUSED; -+static void _webi_unmap (GtkWidget * widget) G_GNUC_UNUSED; - static gboolean _webi_expose_event (GtkWidget * widget, GdkEventExpose * event) G_GNUC_UNUSED; - static void _webi_size_allocate (GtkWidget * widget, GtkAllocation * allocation) G_GNUC_UNUSED; - -@@ -305,6 +306,7 @@ - g_object_class->finalize = _webi_finalize; - gtk_widget_class->realize = _webi_realize; - gtk_widget_class->map = _webi_map; -+ gtk_widget_class->unmap = _webi_unmap; - gtk_widget_class->expose_event = _webi_expose_event; - gtk_widget_class->size_allocate = _webi_size_allocate; - return; -@@ -736,6 +738,18 @@ - } - #undef PARENT_HANDLER - -+static void -+_webi_unmap (GtkWidget * widget) -+{ -+ -+ g_return_if_fail(widget != NULL); -+ g_return_if_fail(WEBI_IS_WEBI (widget)); -+ -+ GTK_WIDGET_UNSET_FLAGS(widget, GTK_MAPPED); -+ -+ gdk_window_hide(widget->window); -+} -+ - static gboolean - _webi_expose_event (GtkWidget * widget, GdkEventExpose * event) - #define PARENT_HANDLER(___widget,___event) \ diff --git a/packages/gtk-webcore/osb-nrcit_svn.bb b/packages/gtk-webcore/osb-nrcit_svn.bb index 2060cb26d4..8a11d61996 100644 --- a/packages/gtk-webcore/osb-nrcit_svn.bb +++ b/packages/gtk-webcore/osb-nrcit_svn.bb @@ -10,8 +10,6 @@ PR = "r0" DEPENDS = "curl librsvg osb-nrcore" SRC_URI = "svn://gtk-webcore.svn.sourceforge.net/svnroot/gtk-webcore/trunk;module=NRCit;proto=https \ - file://NRCit_unmap.diff;patch=1 \ - file://NRCit_HTTP_auth.diff;patch=1 \ file://gcc4-fno-threadsafe-statics-NRCit.patch;patch=1" S = "${WORKDIR}/NRCit" diff --git a/packages/iksemel/.mtn2git_empty b/packages/iksemel/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/packages/iksemel/.mtn2git_empty diff --git a/packages/gpephone/iksemel_1.2.bb b/packages/iksemel/iksemel_1.2.bb index 40ad32ce0e..903d8f046d 100644 --- a/packages/gpephone/iksemel_1.2.bb +++ b/packages/iksemel/iksemel_1.2.bb @@ -2,7 +2,7 @@ LICENSE = "LGPL" DESCRIPTION = "A simple, powerful XML-parsing library written in C." SECTION = "libs" PRIORITY = "optional" -DEPENDS = "glibc" +DEPENDS = "glibc gnutls" PR = "r0" inherit pkgconfig autotools diff --git a/packages/nunome/nunome_1.0.1.bb b/packages/nunome/nunome_1.0.2.bb index d8421c12f5..ae29277291 100644 --- a/packages/nunome/nunome_1.0.1.bb +++ b/packages/nunome/nunome_1.0.2.bb @@ -4,9 +4,8 @@ PRIORITY = "optional" LICENSE = "GPL" HOMEPAGE = "http://www.sikigami.com/nunome-Qtopia-1.0/" RDEPENDS = "virtual/japanese-font" -PR = "r2" -SRC_URI = "${SOURCEFORGE_MIRROR}/gakusei/nunome-Qtopia-src-cleaned.tar.bz2 \ +SRC_URI = "${SOURCEFORGE_MIRROR}/gakusei/nunome-${PV}.tar.bz2 \ file://nunome.patch;patch=1" S = "${WORKDIR}/nunome" |