From root@treibsand.com  Fri Aug  9 11:32:57 2013
Return-Path: <root@treibsand.com>
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1])
	(using TLSv1 with cipher ADH-AES256-SHA (256/256 bits))
	(No client certificate requested)
	by hub.freebsd.org (Postfix) with ESMTP id 663F7877
	for <FreeBSD-gnats-submit@freebsd.org>; Fri,  9 Aug 2013 11:32:57 +0000 (UTC)
	(envelope-from root@treibsand.com)
Received: from mail.treibsand.com (mail.treibsand.com [IPv6:2001:608:c00:5::25])
	(using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits))
	(No client certificate requested)
	by mx1.freebsd.org (Postfix) with ESMTPS id E815E2217
	for <FreeBSD-gnats-submit@freebsd.org>; Fri,  9 Aug 2013 11:32:56 +0000 (UTC)
Received: from mx.treibsand.com (mx.treibsand.com [194.97.149.213])
	(using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits))
	(No client certificate requested)
	by mail.treibsand.com (Postfix) with ESMTPS id 3246D1CE83A
	for <FreeBSD-gnats-submit@freebsd.org>; Fri,  9 Aug 2013 13:32:01 +0200 (CEST)
Received: from mx.treibsand.com (mx.treibsand.com [194.97.149.213])
	by mx.treibsand.com (Postfix) with ESMTP id 1B59525C801
	for <FreeBSD-gnats-submit@freebsd.org>; Fri,  9 Aug 2013 13:32:01 +0200 (CEST)
Received: from mx.treibsand.com ([194.97.149.213])
	by mx.treibsand.com (mx.treibsand.com [194.97.149.213]) (amavisd-new, port 10024)
	with ESMTP id AI83SQ_okwiI for <FreeBSD-gnats-submit@freebsd.org>;
	Fri,  9 Aug 2013 13:32:01 +0200 (CEST)
Received: from havanna.treibsand.com (mx.treibsand.com [IPv6:2001:608:c00:5::213])
	by mx.treibsand.com (Postfix) with SMTP
	for <FreeBSD-gnats-submit@freebsd.org>; Fri,  9 Aug 2013 13:31:57 +0200 (CEST)
Received: by havanna.treibsand.com (sSMTP sendmail emulation); Fri, 09 Aug 2013 13:31:57 +0200
Message-Id: <20130809113257.663F7877@hub.freebsd.org>
Date: Fri, 09 Aug 2013 13:31:57 +0200
From: "Charlie &" <root@treibsand.com>
Reply-To: Axel Steiner <ast@treibsand.com>
To: FreeBSD-gnats-submit@freebsd.org
Cc:
Subject: [NEW PORT] mail/libcmime: A lightweight C mime library
X-Send-Pr-Version: 3.113
X-GNATS-Notify:

>Number:         181158
>Category:       ports
>Synopsis:       [NEW PORT] mail/libcmime: A lightweight C mime library
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    wg
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Fri Aug 09 11:40:00 UTC 2013
>Closed-Date:    Sat Aug 10 14:49:54 UTC 2013
>Last-Modified:  Sat Aug 10 14:50:00 UTC 2013
>Originator:     Axel Steiner
>Release:        FreeBSD 9.0-RELEASE-p3 amd64
>Organization:
>Environment:
System: FreeBSD havanna.treibsand.com 9.0-RELEASE-p3 FreeBSD 9.0-RELEASE-p3 #0: Tue Jun 12 02:52:29 UTC 2012 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64


	
>Description:
libcmime is a lightweight mime library, written in C. It attempts to 
be a general library for parsing and creating mime email messages and 
is designed to provide an easy to use and easy to integrate interface 
for developers. libcmime is a pretty fresh project so the library is 
still in beta state and there will be early and frequent releases.
>How-To-Repeat:
	
>Fix:

	

--- libcmime.shar begins here ---
# This is a shell archive.  Save it in a file, remove anything before
# this line, and then unpack it by entering "sh file".  Note, it may
# create directories; files and directories will be owned by you and
# have default permissions.
#
# This archive contains:
#
#	libcmime
#	libcmime/Makefile
#	libcmime/pkg-descr
#	libcmime/pkg-plist
#	libcmime/distinfo
#
echo c - libcmime
mkdir -p libcmime > /dev/null 2>&1
echo x - libcmime/Makefile
sed 's/^X//' >libcmime/Makefile << '037f7c7a5b898f2f0f513ec24c21d2a5'
X# $FreeBSD$
X
XPORTNAME=	libcmime
XPORTVERSION=	0.1.7
XCATEGORIES=	mail
XMASTER_SITES=	http://www.libcmime.org/files/
X
XMAINTAINER=	ast@treibsand.com
XCOMMENT=	A lightweight C mime library
X
XLICENSE=	LGPL3
X
XBUILD_DEPENDS=	bison>=1.8:${PORTSDIR}/devel/bison \
X		flex>=2.5.33:${PORTSDIR}/textproc/flex
X
XUSES=		cmake pkgconfig
XCMAKE_ARGS+=	--no-warn-unused-cli -DCMAKE_PREFIX_PATH:PATH=${LOCALBASE}
X
XUSE_LDCONFIG=	yes
X
XOPTIONS_DEFINE=	DEBUG DOCS
X
X.include <bsd.port.options.mk>
X
X.if ${PORT_OPTIONS:MDEBUG}
XCMAKE_ARGS+=	-DENABLE_DEBUG=TRUE
X.endif
X
Xpost-install:
X.if ${PORT_OPTIONS:MDOCS}
X	@${MKDIR} ${DOCSDIR}
X.for f in AUTHORS CHANGELOG COPYING INSTALL README
X	${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}
X.endfor
X.endif
X
Xpost-patch:
X	@${REINPLACE_CMD} -E -e 's|\$${LIBDIR}(/pkgconfig)|$${CMAKE_INSTALL_PREFIX}/libdata\1|' \
X		${WRKSRC}/CMakeLists.txt
X
X.include <bsd.port.mk>
037f7c7a5b898f2f0f513ec24c21d2a5
echo x - libcmime/pkg-descr
sed 's/^X//' >libcmime/pkg-descr << '2111b9272e0e5a2a0a4bcf91f92261fd'
Xlibcmime is a lightweight mime library, written in C. It attempts to 
Xbe a general library for parsing and creating mime email messages and 
Xis designed to provide an easy to use and easy to integrate interface 
Xfor developers. libcmime is a pretty fresh project so the library is 
Xstill in beta state and there will be early and frequent releases.
X
XWWW: http://www.libcmime.org/
2111b9272e0e5a2a0a4bcf91f92261fd
echo x - libcmime/pkg-plist
sed 's/^X//' >libcmime/pkg-plist << '0e819b967a6cd61a19c08a474a8db2d4'
Xinclude/cmime.h
Xinclude/cmime/cmime_address.h
Xinclude/cmime/cmime_base64.h
Xinclude/cmime/cmime_config.h
Xinclude/cmime/cmime_header.h
Xinclude/cmime/cmime_list.h
Xinclude/cmime/cmime_message.h
Xinclude/cmime/cmime_part.h
Xinclude/cmime/cmime_qp.h
Xinclude/cmime/cmime_string.h
Xinclude/cmime/cmime_util.h
Xlib/libcmime.so
Xlib/libcmime.so.0.1
Xlib/libcmime.so.0.1.7
Xlibdata/pkgconfig/libcmime.pc
X%%PORTDOCS%%%%DOCSDIR%%/AUTHORS
X%%PORTDOCS%%%%DOCSDIR%%/CHANGELOG
X%%PORTDOCS%%%%DOCSDIR%%/COPYING
X%%PORTDOCS%%%%DOCSDIR%%/INSTALL
X%%PORTDOCS%%%%DOCSDIR%%/README
X%%PORTDOCS%%@dirrm %%DOCSDIR%%
X@dirrm include/cmime
0e819b967a6cd61a19c08a474a8db2d4
echo x - libcmime/distinfo
sed 's/^X//' >libcmime/distinfo << 'a71de4db2637f2bf2e94a6b71b0ed4b4'
XSHA256 (libcmime-0.1.7.tar.gz) = acaa0b8f3fed22ab2052723501c0c449e177105c224f0ccdfd699b65480bf858
XSIZE (libcmime-0.1.7.tar.gz) = 140786
a71de4db2637f2bf2e94a6b71b0ed4b4
exit
--- libcmime.shar ends here ---


>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->wg 
Responsible-Changed-By: wg 
Responsible-Changed-When: Sat Aug 10 14:40:39 UTC 2013 
Responsible-Changed-Why:  
I'll take it. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=181158 
State-Changed-From-To: open->closed 
State-Changed-By: wg 
State-Changed-When: Sat Aug 10 14:49:52 UTC 2013 
State-Changed-Why:  
New port added, with minor changes. Thanks! 

http://www.freebsd.org/cgi/query-pr.cgi?pr=181158 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/181158: commit references a PR
Date: Sat, 10 Aug 2013 14:49:54 +0000 (UTC)

 Author: wg
 Date: Sat Aug 10 14:49:45 2013
 New Revision: 324537
 URL: http://svnweb.freebsd.org/changeset/ports/324537
 
 Log:
   mail/libcmime: Lightweight C mime library
   
   libcmime is a lightweight mime library, written in C. It attempts to
   be a general library for parsing and creating mime email messages and
   is designed to provide an easy to use and easy to integrate interface
   for developers. libcmime is a pretty fresh project so the library is
   still in beta state and there will be early and frequent releases.
   
   WWW: http://www.libcmime.org/
   
   PR:		ports/181158
   Submitted by:	Axel Steiner <ast treibsand.com>
 
 Added:
   head/mail/libcmime/
   head/mail/libcmime/Makefile   (contents, props changed)
   head/mail/libcmime/distinfo   (contents, props changed)
   head/mail/libcmime/pkg-descr   (contents, props changed)
   head/mail/libcmime/pkg-plist   (contents, props changed)
 Modified:
   head/mail/Makefile
 
 Modified: head/mail/Makefile
 ==============================================================================
 --- head/mail/Makefile	Sat Aug 10 14:44:56 2013	(r324536)
 +++ head/mail/Makefile	Sat Aug 10 14:49:45 2013	(r324537)
 @@ -217,6 +217,7 @@
      SUBDIR += kshowmail
      SUBDIR += lbdb
      SUBDIR += lens
 +    SUBDIR += libcmime
      SUBDIR += libdkim
      SUBDIR += libdomainkeys
      SUBDIR += libesmtp
 
 Added: head/mail/libcmime/Makefile
 ==============================================================================
 --- /dev/null	00:00:00 1970	(empty, because file is newly added)
 +++ head/mail/libcmime/Makefile	Sat Aug 10 14:49:45 2013	(r324537)
 @@ -0,0 +1,42 @@
 +# Created by: Axel Steiner <ast@treibsand.com>
 +# $FreeBSD$
 +
 +PORTNAME=	libcmime
 +PORTVERSION=	0.1.7
 +CATEGORIES=	mail
 +MASTER_SITES=	http://www.libcmime.org/files/
 +
 +MAINTAINER=	ast@treibsand.com
 +COMMENT=	Lightweight C mime library
 +
 +LICENSE=	LGPL3
 +
 +BUILD_DEPENDS=	bison>=1.8:${PORTSDIR}/devel/bison \
 +		flex>=2.5.33:${PORTSDIR}/textproc/flex
 +
 +USES=		cmake pkgconfig
 +CMAKE_ARGS+=	--no-warn-unused-cli -DCMAKE_PREFIX_PATH:PATH=${LOCALBASE}
 +
 +USE_LDCONFIG=	yes
 +
 +OPTIONS_DEFINE=	DEBUG DOCS
 +
 +PORTDOCS=	AUTHORS CHANGELOG INSTALL README
 +
 +.include <bsd.port.options.mk>
 +
 +.if ${PORT_OPTIONS:MDEBUG}
 +CMAKE_ARGS+=	-DENABLE_DEBUG=TRUE
 +.endif
 +
 +post-install:
 +.if ${PORT_OPTIONS:MDOCS}
 +	@${MKDIR} ${DOCSDIR}
 +	${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${DOCSDIR}
 +.endif
 +
 +post-patch:
 +	@${REINPLACE_CMD} -E -e 's|\$${LIBDIR}(/pkgconfig)|$${CMAKE_INSTALL_PREFIX}/libdata\1|' \
 +		${WRKSRC}/CMakeLists.txt
 +
 +.include <bsd.port.mk>
 
 Added: head/mail/libcmime/distinfo
 ==============================================================================
 --- /dev/null	00:00:00 1970	(empty, because file is newly added)
 +++ head/mail/libcmime/distinfo	Sat Aug 10 14:49:45 2013	(r324537)
 @@ -0,0 +1,2 @@
 +SHA256 (libcmime-0.1.7.tar.gz) = acaa0b8f3fed22ab2052723501c0c449e177105c224f0ccdfd699b65480bf858
 +SIZE (libcmime-0.1.7.tar.gz) = 140786
 
 Added: head/mail/libcmime/pkg-descr
 ==============================================================================
 --- /dev/null	00:00:00 1970	(empty, because file is newly added)
 +++ head/mail/libcmime/pkg-descr	Sat Aug 10 14:49:45 2013	(r324537)
 @@ -0,0 +1,7 @@
 +libcmime is a lightweight mime library, written in C. It attempts to
 +be a general library for parsing and creating mime email messages and
 +is designed to provide an easy to use and easy to integrate interface
 +for developers. libcmime is a pretty fresh project so the library is
 +still in beta state and there will be early and frequent releases.
 +
 +WWW: http://www.libcmime.org/
 
 Added: head/mail/libcmime/pkg-plist
 ==============================================================================
 --- /dev/null	00:00:00 1970	(empty, because file is newly added)
 +++ head/mail/libcmime/pkg-plist	Sat Aug 10 14:49:45 2013	(r324537)
 @@ -0,0 +1,16 @@
 +include/cmime.h
 +include/cmime/cmime_address.h
 +include/cmime/cmime_base64.h
 +include/cmime/cmime_config.h
 +include/cmime/cmime_header.h
 +include/cmime/cmime_list.h
 +include/cmime/cmime_message.h
 +include/cmime/cmime_part.h
 +include/cmime/cmime_qp.h
 +include/cmime/cmime_string.h
 +include/cmime/cmime_util.h
 +lib/libcmime.so
 +lib/libcmime.so.0.1
 +lib/libcmime.so.0.1.7
 +libdata/pkgconfig/libcmime.pc
 +@dirrm include/cmime
 _______________________________________________
 svn-ports-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-ports-all
 To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
 
>Unformatted:
