From owner-svn-ports-all@FreeBSD.ORG Tue Jun 24 20:08:35 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 10631796; Tue, 24 Jun 2014 20:08:35 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E5787279B; Tue, 24 Jun 2014 20:08:34 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s5OK8Yxt019566; Tue, 24 Jun 2014 20:08:34 GMT (envelope-from wg@svn.freebsd.org) Received: (from wg@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s5OK8YRL019559; Tue, 24 Jun 2014 20:08:34 GMT (envelope-from wg@svn.freebsd.org) Message-Id: <201406242008.s5OK8YRL019559@svn.freebsd.org> From: William Grzybowski Date: Tue, 24 Jun 2014 20:08:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r359121 - in head/mail/cone: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Jun 2014 20:08:35 -0000 Author: wg Date: Tue Jun 24 20:08:33 2014 New Revision: 359121 URL: http://svnweb.freebsd.org/changeset/ports/359121 QAT: https://qat.redports.org/buildarchive/r359121/ Log: mail/cone: support stage [1] - Add LICENSE [1] - Fix for clang [1] - Use shebangfix - Remove unneeded pre/post include PR: 191323 Submitted by: maintainer Added: head/mail/cone/files/patch-curses-cursescontainer-C.diff (contents, props changed) head/mail/cone/files/patch-libmail-envelope-h.diff (contents, props changed) Modified: head/mail/cone/Makefile head/mail/cone/pkg-plist Modified: head/mail/cone/Makefile ============================================================================== --- head/mail/cone/Makefile Tue Jun 24 18:42:15 2014 (r359120) +++ head/mail/cone/Makefile Tue Jun 24 20:08:33 2014 (r359121) @@ -3,9 +3,8 @@ PORTNAME= cone PORTVERSION= 0.90 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= mail -NO_STAGE= yes # This is for beta versions, leave it in please: #MASTER_SITES= http://www.courier-mta.org/beta/${PORTNAME}/ \ # http://www.lerctr.org/~ler/ @@ -15,39 +14,35 @@ MASTER_SITES= SF/courier/${PORTNAME}/${P MAINTAINER= uffe@uffe.org COMMENT= Console based mail client with POP3/IMAP/SMAP support -LIB_DEPENDS= aspell.16:${PORTSDIR}/textproc/aspell +LICENSE= GPLv3 + +LIB_DEPENDS= libaspell.so:${PORTSDIR}/textproc/aspell BUILD_DEPENDS= gpgv:${PORTSDIR}/security/gnupg1 RUN_DEPENDS:= ${BUILD_DEPENDS} -USES= fam gettext gmake iconv ncurses perl5 +USES= fam gettext gmake iconv ncurses perl5 shebangfix tar:bzip2 USE_GNOME= libxml2 -USE_BZIP2= yes -CPPFLAGS+= -I${LOCALBASE}/include -GNU_CONFIGURE= yes -CONFIGURE_ARGS= -C --without-db --with-certdb=${PREFIX}/share/cone/rootcerts --prefix=${PREFIX} --exec-prefix=${PREFIX} +SHEBANG_FILES= sysconftool +CPPFLAGS+= -I${LOCALBASE}/include \ + -D_XOPEN_SOURCE_EXTENDED \ + -I${WRKDIR} -D_XOPEN_SOURCE_EXTENDED LDFLAGS+= -L${LOCALBASE}/lib +GNU_CONFIGURE= yes +CONFIGURE_ARGS+= -C --without-db --with-certdb=${PREFIX}/share/cone/rootcerts --exec-prefix=${PREFIX} CONFIGURE_ENV= REHASH="${PERL} ${SCRIPTDIR}/c_rehash" -MAN1= cone.1 leaf.1 mailtool.1 -INSTALL_TARGET= install-strip - -.include -CPPFLAGS+= -D_XOPEN_SOURCE_EXTENDED -CPPFLAGS+= -I${WRKDIR} -D_XOPEN_SOURCE_EXTENDED +INSTALL_TARGET= install-strip post-extract: - ${MKDIR} ${WRKDIR}/ncursesw + @${MKDIR} ${WRKDIR}/ncursesw ${LN} -s ${LOCALBASE}/include/ncurses/ncurses.h ${WRKDIR}/ncursesw/curses.h post-install: - ${INSTALL_SCRIPT} ${WRKSRC}/sysconftool ${PREFIX}/sbin/cone-sysconftool - PKG_PREFIX=${PREFIX} ${SH} pkg-install ${PORTNAME} POST-INSTALL - ${RM} -f ${PREFIX}/share/cone/rootcerts/.0 -.if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} - ${INSTALL_MAN} ${WRKSRC}/ChangeLog ${DOCSDIR} -.endif + ${INSTALL_SCRIPT} ${WRKSRC}/sysconftool ${STAGEDIR}${PREFIX}/sbin/cone-sysconftool + ${RM} -f ${STAGEDIR}${PREFIX}/share/cone/rootcerts/.0 + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_MAN} ${WRKSRC}/ChangeLog ${STAGEDIR}${DOCSDIR} -.include +.include Added: head/mail/cone/files/patch-curses-cursescontainer-C.diff ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/cone/files/patch-curses-cursescontainer-C.diff Tue Jun 24 20:08:33 2014 (r359121) @@ -0,0 +1,11 @@ +--- curses/cursescontainer.C.orig 2014-06-24 00:25:29.000000000 +0200 ++++ curses/cursescontainer.C 2014-06-24 00:25:42.000000000 +0200 +@@ -10,7 +10,7 @@ + using namespace std; + + CursesContainer::CursesContainer(CursesContainer *parent) +- : Curses(parent), drawIndex(0) ++ : Curses(parent), drawIndex() + { + } + Added: head/mail/cone/files/patch-libmail-envelope-h.diff ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/cone/files/patch-libmail-envelope-h.diff Tue Jun 24 20:08:33 2014 (r359121) @@ -0,0 +1,10 @@ +--- libmail/envelope.H.orig 2014-06-24 00:28:56.000000000 +0200 ++++ libmail/envelope.H 2014-06-24 00:29:36.000000000 +0200 +@@ -8,6 +8,7 @@ + + #include + #include ++#include + + #include "namespace.H" + Modified: head/mail/cone/pkg-plist ============================================================================== --- head/mail/cone/pkg-plist Tue Jun 24 18:42:15 2014 (r359120) +++ head/mail/cone/pkg-plist Tue Jun 24 20:08:33 2014 (r359121) @@ -4,6 +4,9 @@ bin/mailtool sbin/cone-sysconftool etc/cone.dist libexec/cone +man/man1/cone.1.gz +man/man1/mailtool.1.gz +man/man1/leaf.1.gz %%DATADIR%%/APPLICATION.PDF.filter %%DATADIR%%/IMAGE.GIF.filter %%DATADIR%%/IMAGE.JPEG.filter