diff options
-rw-r--r-- | conf/distro/preferred-gpe-versions-2.7.inc | 2 | ||||
-rw-r--r-- | packages/abiword/abiword_2.3.5.bb | 2 | ||||
-rw-r--r-- | packages/gaim/gaim_2.0.0-cvs-mco1.bb | 2 | ||||
-rw-r--r-- | packages/gnutls/gnutls-1.0.25/.mtn2git_empty | 0 | ||||
-rw-r--r-- | packages/gnutls/gnutls-1.0.25/export-symbols.patch | 11 | ||||
-rw-r--r-- | packages/gnutls/gnutls-1.0.25/gnutls-openssl.patch | 126 | ||||
-rw-r--r-- | packages/gnutls/gnutls_1.0.25.bb | 29 | ||||
-rw-r--r-- | packages/libetpan/libetpan-0.38/.mtn2git_empty | 0 | ||||
-rw-r--r-- | packages/libetpan/libetpan-0.38/etpan_suffix.patch | 16 | ||||
-rw-r--r-- | packages/libetpan/libetpan_0.38.bb | 19 |
10 files changed, 204 insertions, 3 deletions
diff --git a/conf/distro/preferred-gpe-versions-2.7.inc b/conf/distro/preferred-gpe-versions-2.7.inc index c5622fb5ba..c901c86831 100644 --- a/conf/distro/preferred-gpe-versions-2.7.inc +++ b/conf/distro/preferred-gpe-versions-2.7.inc @@ -86,7 +86,7 @@ PREFERRED_VERSION_minimo ?= "0.0cvs${CVSDATE_minimo}" PREFERRED_VERSION_linphone-hh ?= "0.12.2.hh1" PREFERRED_VERSION_linphone ?= "0.12.2" PREFERRED_VERSION_firefox ?= "1.0" -PREFERRED_VERSION_gaim ?= "2.0.0-cvs-mco1" +PREFERRED_VERSION_gaim ?= "2.0.0-cvs-mco1-20050904" PREFERRED_VERSION_poppler ?= "0.3.3" PREFERRED_VERSION_evince ?= "0.3.2" PREFERRED_VERSION_gpe_mini_browser ?= "0.15" diff --git a/packages/abiword/abiword_2.3.5.bb b/packages/abiword/abiword_2.3.5.bb index cdec129f88..76b569db29 100644 --- a/packages/abiword/abiword_2.3.5.bb +++ b/packages/abiword/abiword_2.3.5.bb @@ -3,7 +3,7 @@ HOMEPAGE="http://www.abiword.org"" MAINTAINER="Koen Kooi <koen@handhelds.org>" LICENSE="GPLv2" -DEPENDS = "cdump-native libgnomeprint libgnomeprintui libglade libfribidi enchant jpeg libpng perl glibc libxml2" +DEPENDS = "cdump-native libgsf libgnomeprint libgnomeprintui libglade libfribidi enchant jpeg libpng perl glibc libxml2" RDEPENDS = "enchant glibc-gconv-ibm850 glibc-gconv-cp1252 \ glibc-gconv-iso8859-15 glibc-gconv-iso8859-1" PR="r4" diff --git a/packages/gaim/gaim_2.0.0-cvs-mco1.bb b/packages/gaim/gaim_2.0.0-cvs-mco1.bb index f1e3c2b5b3..0dcf1dfb99 100644 --- a/packages/gaim/gaim_2.0.0-cvs-mco1.bb +++ b/packages/gaim/gaim_2.0.0-cvs-mco1.bb @@ -1,5 +1,5 @@ PR = "r0" -CVSDATE_${PV} = "20050904" +CVSDATE_${PN} = "20050904" PV = "2.0.0-cvs-mco1-${CVSDATE}" SRC_URI = "cvs://anonymous@cvs.sourceforge.net/cvsroot/gaim;module=gaim \ diff --git a/packages/gnutls/gnutls-1.0.25/.mtn2git_empty b/packages/gnutls/gnutls-1.0.25/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/packages/gnutls/gnutls-1.0.25/.mtn2git_empty diff --git a/packages/gnutls/gnutls-1.0.25/export-symbols.patch b/packages/gnutls/gnutls-1.0.25/export-symbols.patch new file mode 100644 index 0000000000..22a1373944 --- /dev/null +++ b/packages/gnutls/gnutls-1.0.25/export-symbols.patch @@ -0,0 +1,11 @@ +--- gnutls-1.0.23/lib/Makefile.am.orig 2005-06-04 13:46:26.000000000 +0200 ++++ gnutls-1.0.23/lib/Makefile.am 2005-06-04 13:48:38.000000000 +0200 +@@ -9,7 +9,7 @@ + pkgconfig_DATA = gnutls.pc + DISTCLEANFILES = $(pkgconfig_DATA) + +-LIBGNUTLS_EXPORTS = -export-symbols-regex '^(_gnutls|gnutls|_E_).*' ++LIBGNUTLS_EXPORTS = -export-symbols-regex '^(asn1_|_gnutls|gnutls|_E_).*' + + DIST_SUBDIRS = minitasn1 x509 + if ENABLE_MINITASN1 diff --git a/packages/gnutls/gnutls-1.0.25/gnutls-openssl.patch b/packages/gnutls/gnutls-1.0.25/gnutls-openssl.patch new file mode 100644 index 0000000000..3ddd8b3a18 --- /dev/null +++ b/packages/gnutls/gnutls-1.0.25/gnutls-openssl.patch @@ -0,0 +1,126 @@ +--- clean/gnutls-1.0.23/libextra/gnutls_openssl.c 2004-08-04 22:36:03.000000000 +0100 ++++ gnutls-1.0.23/libextra/gnutls_openssl.c 2005-01-02 19:50:49.000000000 +0000 +@@ -31,7 +31,6 @@ + + static int last_error = 0; + +- + /* Library initialisation functions */ + + int SSL_library_init(void) +@@ -219,12 +218,17 @@ + + ssl->rfd = (gnutls_transport_ptr)-1; + ssl->wfd = (gnutls_transport_ptr)-1; ++ ++ ssl->ssl_peek_buffer = NULL; ++ ssl->ssl_peek_buffer_size = ssl->ssl_peek_avail = 0; + + return ssl; + } + + void SSL_free(SSL *ssl) + { ++ if (ssl->ssl_peek_buffer) ++ free(ssl->ssl_peek_buffer); + gnutls_certificate_free_credentials(ssl->gnutls_cred); + gnutls_deinit(ssl->gnutls_state); + free(ssl); +@@ -245,6 +249,7 @@ + int SSL_set_fd(SSL *ssl, int fd) + { + gnutls_transport_set_ptr (ssl->gnutls_state, (gnutls_transport_ptr)fd); ++ ssl->rfd = ssl->wfd = fd; + return 1; + } + +@@ -268,6 +273,16 @@ + return 1; + } + ++int SSL_get_rfd(SSL *ssl) ++{ ++ return ssl->rfd; ++} ++ ++int SSL_get_wfd(SSL *ssl) ++{ ++ return ssl->wfd; ++} ++ + void SSL_set_bio(SSL *ssl, BIO *rbio, BIO *wbio) + { + gnutls_transport_set_ptr2 (ssl->gnutls_state, rbio->fd, wbio->fd); +@@ -280,6 +295,9 @@ + + int SSL_pending(SSL *ssl) + { ++ if (ssl->ssl_peek_avail) ++ return ssl->ssl_peek_avail; ++ + return gnutls_record_check_pending(ssl->gnutls_state); + } + +@@ -430,10 +448,49 @@ + return 1; + } + ++int SSL_peek(SSL *ssl, void *buf, int len) ++{ ++ if (len > ssl->ssl_peek_buffer_size) { ++ ssl->ssl_peek_buffer = realloc (ssl->ssl_peek_buffer, len); ++ ssl->ssl_peek_buffer_size = len; ++ } ++ ++ if (ssl->ssl_peek_avail == 0) { ++ ++ int ret; ++ ++ ret = gnutls_record_recv(ssl->gnutls_state, ssl->ssl_peek_buffer, len); ++ ssl->last_error = ret; ++ ++ if (ret > 0) ++ ssl->ssl_peek_avail += ret; ++ } ++ ++ if (len > ssl->ssl_peek_avail) ++ len = ssl->ssl_peek_avail; ++ ++ memcpy (buf, ssl->ssl_peek_buffer, len); ++ ++ return len; ++} ++ + int SSL_read(SSL *ssl, void *buf, int len) + { + int ret; + ++ if (ssl->ssl_peek_avail) { ++ int n = (ssl->ssl_peek_avail > len) ? len : ssl->ssl_peek_avail; ++ ++ memcpy (buf, ssl->ssl_peek_buffer, n); ++ ++ if (ssl->ssl_peek_avail > n) ++ memmove (ssl->ssl_peek_buffer, ssl->ssl_peek_buffer + n, ssl->ssl_peek_avail - n); ++ ++ ssl->ssl_peek_avail -= n; ++ ++ return n; ++ } ++ + ret = gnutls_record_recv(ssl->gnutls_state, buf, len); + ssl->last_error = ret; + +--- clean/gnutls-1.0.23/includes/gnutls/openssl.h 2004-08-04 22:36:02.000000000 +0100 ++++ gnutls-1.0.23/includes/gnutls/openssl.h 2005-01-02 19:48:35.000000000 +0000 +@@ -139,6 +139,10 @@ + + gnutls_transport_ptr rfd; + gnutls_transport_ptr wfd; ++ ++ char *ssl_peek_buffer; ++ size_t ssl_peek_buffer_size; ++ size_t ssl_peek_avail; + } SSL; + + typedef struct diff --git a/packages/gnutls/gnutls_1.0.25.bb b/packages/gnutls/gnutls_1.0.25.bb new file mode 100644 index 0000000000..3b169317de --- /dev/null +++ b/packages/gnutls/gnutls_1.0.25.bb @@ -0,0 +1,29 @@ +DESCRIPTION = "GNU Transport Layer Security Library" +DEPENDS = "zlib libgcrypt" + +LICENSE = "LGPL" + +SRC_URI = "ftp://ftp.gnutls.org/pub/gnutls/gnutls-${PV}.tar.gz \ + file://gnutls-openssl.patch;patch=1 \ + file://export-symbols.patch;patch=1" + +inherit autotools +inherit binconfig + +PACKAGES =+ "${PN}-openssl ${PN}-extra ${PN}-bin" +FILES_${PN}-openssl = "${libdir}/libgnutls-openssl.so.*" +FILES_${PN}-extra = "${libdir}/libgnutls-extra.so.*" +FILES_${PN} = "${libdir}/libgnutls.so.*" +FILES_${PN}-bin = "${bindir}/gnutls-serv ${bindir}/gnutls-cli \ + ${bindir}/srptool ${bindir}/certtool ${bindir}/gnutls-srpcrypt" +FILES_${PN}-dev += "${bindir}/*-config ${bindir}/gnutls-cli-debug" + +EXTRA_OECONF="--with-included-opencdk --with-included-libtasn1" + +do_stage() { + oe_libinstall -C lib/.libs -so -a libgnutls ${STAGING_LIBDIR} + oe_libinstall -C libextra/.libs -so -a libgnutls-extra ${STAGING_LIBDIR} + oe_libinstall -C libextra/.libs -so -a libgnutls-openssl ${STAGING_LIBDIR} + autotools_stage_includes +} + diff --git a/packages/libetpan/libetpan-0.38/.mtn2git_empty b/packages/libetpan/libetpan-0.38/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/packages/libetpan/libetpan-0.38/.mtn2git_empty diff --git a/packages/libetpan/libetpan-0.38/etpan_suffix.patch b/packages/libetpan/libetpan-0.38/etpan_suffix.patch new file mode 100644 index 0000000000..901615c416 --- /dev/null +++ b/packages/libetpan/libetpan-0.38/etpan_suffix.patch @@ -0,0 +1,16 @@ + +# +# Patch managed by http://www.holgerschurig.de/patcher.html +# + +--- libetpan/configure.in~etpan_suffix ++++ libetpan/configure.in +@@ -371,7 +371,7 @@ + REENTRANT=1 + else + REENTRANT=0 +- LIBSUFFIX=-no-mt ++ LIBSUFFIX= + fi + AC_SUBST(LIBSUFFIX) + AC_SUBST(REENTRANT) diff --git a/packages/libetpan/libetpan_0.38.bb b/packages/libetpan/libetpan_0.38.bb new file mode 100644 index 0000000000..9dcb318b0c --- /dev/null +++ b/packages/libetpan/libetpan_0.38.bb @@ -0,0 +1,19 @@ +DESCRIPTION = "libetpan is a library for communicating with mail and news servers using \ +SMTP, POP, IMAP and NNTP" +SECTION = "libs" +DEPENDS = "gnutls" +LICENSE = "BSD" + +SRC_URI = "${SOURCEFORGE_MIRROR}/libetpan/libetpan-${PV}.tar.gz \ + file://etpan_suffix.patch;patch=1 " + +inherit autotools pkgconfig gettext + +EXTRA_OECONF = "--without-openssl --with-gnutls --disable-db --disable-threads" + +do_stage () { + oe_runmake install includedir=${STAGING_INCDIR} libdir=${STAGING_LIBDIR} bindir=${STAGING_BINDIR} +} + +FILES_${PN} = "${libdir}/lib*.so.*" +FILES_${PN}-dev = "${bindir} ${includedir} ${libdir}/lib*.so ${libdir}/*.la ${libdir}/*.a ${libdir}/pkgconfig" |