diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2012-12-31 00:30:01 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2012-12-31 00:30:01 +0000 |
commit | 1b8c72785053382a240496ab619303e3285a056e (patch) | |
tree | 4f1088d3b158c7a37f7afcec274842515261cff8 /net-proxy | |
parent | Mask sushi[office], needs virtual/ooo. (diff) | |
download | gentoo-2-1b8c72785053382a240496ab619303e3285a056e.tar.gz gentoo-2-1b8c72785053382a240496ab619303e3285a056e.tar.bz2 gentoo-2-1b8c72785053382a240496ab619303e3285a056e.zip |
Version bump.
(Portage version: 2.2.0_alpha149/cvs/Linux x86_64, signed Manifest commit with key 1CD13C8AD4301342)
Diffstat (limited to 'net-proxy')
-rw-r--r-- | net-proxy/c-icap/ChangeLog | 8 | ||||
-rw-r--r-- | net-proxy/c-icap/c-icap-0.2.4.ebuild (renamed from net-proxy/c-icap/c-icap-0.2.3-r1.ebuild) | 5 | ||||
-rw-r--r-- | net-proxy/c-icap/files/c-icap-0.2.4-implicit.patch | 49 |
3 files changed, 59 insertions, 3 deletions
diff --git a/net-proxy/c-icap/ChangeLog b/net-proxy/c-icap/ChangeLog index dfdcffe70ce3..80c2c8a814a2 100644 --- a/net-proxy/c-icap/ChangeLog +++ b/net-proxy/c-icap/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-proxy/c-icap # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-proxy/c-icap/ChangeLog,v 1.22 2012/12/28 12:42:46 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-proxy/c-icap/ChangeLog,v 1.23 2012/12/31 00:30:01 flameeyes Exp $ + +*c-icap-0.2.4 (31 Dec 2012) + + 31 Dec 2012; Diego E. Pettenò <flameeyes@gentoo.org> +c-icap-0.2.4.ebuild, + +files/c-icap-0.2.4-implicit.patch, -c-icap-0.2.3-r1.ebuild: + Version bump. *c-icap-0.2.3-r1 (28 Dec 2012) diff --git a/net-proxy/c-icap/c-icap-0.2.3-r1.ebuild b/net-proxy/c-icap/c-icap-0.2.4.ebuild index 76f5d736bde7..11dd26f79c49 100644 --- a/net-proxy/c-icap/c-icap-0.2.3-r1.ebuild +++ b/net-proxy/c-icap/c-icap-0.2.4.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-proxy/c-icap/c-icap-0.2.3-r1.ebuild,v 1.1 2012/12/28 12:42:46 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-proxy/c-icap/c-icap-0.2.4.ebuild,v 1.1 2012/12/31 00:30:01 flameeyes Exp $ -EAPI=4 +EAPI=5 inherit eutils multilib flag-o-matic autotools @@ -32,6 +32,7 @@ src_prepare() { epatch "${FILESDIR}/${PN}-0.1.3+db-5.0.patch" epatch "${FILESDIR}/${PN}-0.1.4-crosscompile.patch" epatch "${FILESDIR}/${PN}-0.1.6-implicit.patch" + epatch "${FILESDIR}/${PN}-0.2.4-implicit.patch" eautoreconf } diff --git a/net-proxy/c-icap/files/c-icap-0.2.4-implicit.patch b/net-proxy/c-icap/files/c-icap-0.2.4-implicit.patch new file mode 100644 index 000000000000..706b56d7e6e4 --- /dev/null +++ b/net-proxy/c-icap/files/c-icap-0.2.4-implicit.patch @@ -0,0 +1,49 @@ +Index: c_icap-0.2.4/aserver.c +=================================================================== +--- c_icap-0.2.4.orig/aserver.c ++++ c_icap-0.2.4/aserver.c +@@ -41,6 +41,7 @@ extern int MAX_SECS_TO_LINGER; + char MY_HOSTNAME[CI_MAXHOSTNAMELEN + 1]; + + void init_conf_tables(); ++int init_body_system(); + int config(int, char **); + int init_server(char *address, int port, int *family); + int start_server(); +Index: c_icap-0.2.4/include/mem.h +=================================================================== +--- c_icap-0.2.4.orig/include/mem.h ++++ c_icap-0.2.4/include/mem.h +@@ -66,6 +66,7 @@ CI_DECLARE_FUNC(void) ci_buffers_destroy + CI_DECLARE_FUNC(void *) ci_buffer_alloc(int block_size); + CI_DECLARE_FUNC(void *) ci_buffer_realloc(void *data, int block_size); + CI_DECLARE_FUNC(void) ci_buffer_free(void *data); ++CI_DECLARE_FUNC(size_t) ci_buffer_blocksize(void *data); + + CI_DECLARE_FUNC(int) ci_object_pool_register(const char *name, int size); + CI_DECLARE_FUNC(void) ci_object_pool_unregister(int id); +Index: c_icap-0.2.4/tests/test_cache.c +=================================================================== +--- c_icap-0.2.4.orig/tests/test_cache.c ++++ c_icap-0.2.4/tests/test_cache.c +@@ -27,6 +27,7 @@ void *copy_from_str(void *val, int val_s + return (void *)ci_str_ops.dup((char *)val, allocator); + } + ++int mem_init(); + int main(int argc,char *argv[]) { + int i; + struct ci_cache *cache; +Index: c_icap-0.2.4/util.c +=================================================================== +--- c_icap-0.2.4.orig/util.c ++++ c_icap-0.2.4/util.c +@@ -20,7 +20,7 @@ + #include "common.h" + #include "c-icap.h" + #include "util.h" +- ++#include <ctype.h> + + #ifndef HAVE_STRNSTR + const char *strnstr(const char *s, const char *find, size_t slen) |