df8e52e462
2009-03-18 Jeffrey Stedfast <fejj@novell.com> * README: Bumped version * configure.in: Bumped version to 2.4.4 2009-03-18 Jeffrey Stedfast <fejj@novell.com> * configure.in: Check for select() and poll() as well as poll.h * gmime/gmime-gpg-context.c (poll): Implement our own poll() function using select() for portability to MacOS 10.2, which apparently doesn't have poll(). 2009-02-22 Jeffrey Stedfast <fejj@novell.com> * gmime/gmime-utils.c: Use GSlice for rfc822 word tokens and date tokens. * gmime/gmime-parser.c: Updated to use GSlice. 2009-02-22 Jeffrey Stedfast <fejj@novell.com> * gmime/gmime-header.c (g_mime_header_iter_new): Use g_slice_new(). (g_mime_header_iter_free): Use g_slice_free(). (g_mime_header_list_new): Use g_slice_new(). (g_mime_header_list_destroy): Use g_slice_free(). * gmime/gmime-gpg-context.c (gpg_ctx_new): Use g_slice_new(). (gpg_ctx_free): Use g_slice_free(). * gmime/gmime-cipher-context.c (g_mime_signer_new): Use g_slice_new() instead of g_new(). (g_mime_signature_validity_new): Same. (g_mime_signature_validity_free): Use g_slice_free(). (g_mime_signer_free): Same. 2009-02-07 Jeffrey Stedfast <fejj@novell.com> * gmime/internet-address.c: Removed some unused macros. 2009-01-12 Jeffrey Stedfast <fejj@novell.com> * mono/Makefile.am: Fixed to parallel make install, thanks to Diego Petten 2009-01-09 Jeffrey Stedfast <fejj@novell.com> * examples/imap-example.c (write_part): Don't unref the stream we get from g_mime_data_wrapper_get_stream(). (reconstruct_part_content): Fixed error-checking. 2008-11-01 Jeffrey Stedfast <fejj@novell.com> * gmime/gmime-parser.c (nearest_pow): Implement using asm on i386 - this code path isn't normally built, but it's fun to micro-optimize anyway ;-) * gmime/gmime-gpg-context.c (status_backup): Use next_alloc_size() macro - same as gmime-parser.c
30 lines
755 B
Makefile
30 lines
755 B
Makefile
# $NetBSD: Makefile,v 1.2 2009/03/22 20:35:16 wiz Exp $
|
|
#
|
|
|
|
DISTNAME= gmime-2.4.4
|
|
PKGNAME= ${DISTNAME:S/gmime/gmime24/}
|
|
CATEGORIES= mail
|
|
MASTER_SITES= ${MASTER_SITE_GNOME:=sources/gmime/2.4/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://spruce.sourceforge.net/gmime/
|
|
COMMENT= Library for the creation and parsing of MIME messages
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
CONFLICTS= gmime-[0-9]*
|
|
|
|
USE_PKGLOCALEDIR= yes
|
|
USE_LIBTOOL= yes
|
|
USE_TOOLS+= gmake pkg-config
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --enable-gtk-doc=no
|
|
CONFIGURE_ARGS+= --disable-mono
|
|
PKGCONFIG_OVERRIDE+= gmime-2.4.pc.in
|
|
TEST_TARGET= check
|
|
|
|
.include "options.mk"
|
|
|
|
.include "../../devel/glib2/buildlink3.mk"
|
|
.include "../../devel/zlib/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|