From owner-svn-ports-head@freebsd.org Tue Aug 23 14:49:47 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B6D10BC3DD2; Tue, 23 Aug 2016 14:49:47 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 75005141E; Tue, 23 Aug 2016 14:49:47 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u7NEnkRd016651; Tue, 23 Aug 2016 14:49:46 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u7NEnkbu016648; Tue, 23 Aug 2016 14:49:46 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201608231449.u7NEnkbu016648@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Tue, 23 Aug 2016 14:49:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r420686 - in head/mail/metamail: . 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-head@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 23 Aug 2016 14:49:47 -0000 Author: marino Date: Tue Aug 23 14:49:46 2016 New Revision: 420686 URL: https://svnweb.freebsd.org/changeset/ports/420686 Log: mail/metamail: document and fix ncurses support Added: head/mail/metamail/files/patch-metamail_Makefile (contents, props changed) head/mail/metamail/files/patch-richmail_Makefile (contents, props changed) Modified: head/mail/metamail/Makefile Modified: head/mail/metamail/Makefile ============================================================================== --- head/mail/metamail/Makefile Tue Aug 23 14:43:27 2016 (r420685) +++ head/mail/metamail/Makefile Tue Aug 23 14:49:46 2016 (r420686) @@ -3,7 +3,7 @@ PORTNAME= metamail PORTVERSION= 2.7 -PORTREVISION= 13 +PORTREVISION= 14 CATEGORIES= mail MASTER_SITES= http://ftp.funet.fi/pub/unix/mail/metamail/ \ ftp://ftp.research.telcordia.com/pub/nsb/ @@ -14,7 +14,8 @@ COMMENT= Implementation of MIME, the Mul LICENSE= MIT -USES= tar:Z +USES= ncurses tar:Z +MAKE_ARGS= LDLIBS="${LDFLAGS}" WRKSRC= ${WRKDIR}/${DISTNAME}/src @@ -32,6 +33,7 @@ post-patch-X11-off: @${REINPLACE_CMD} -e '/fonts/d' ${WRKSRC}/Makefile post-install: - @${MV} ${STAGEDIR}${PREFIX}/etc/mailcap ${STAGEDIR}${PREFIX}/etc/mailcap.sample + ${MV} ${STAGEDIR}${PREFIX}/etc/mailcap \ + ${STAGEDIR}${PREFIX}/etc/mailcap.sample .include Added: head/mail/metamail/files/patch-metamail_Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/metamail/files/patch-metamail_Makefile Tue Aug 23 14:49:46 2016 (r420686) @@ -0,0 +1,11 @@ +--- metamail/Makefile.orig 1993-08-01 21:04:53 UTC ++++ metamail/Makefile +@@ -45,7 +45,7 @@ mmencode: mmencode.o codes.o + + mailto: mailto.o codes.o shared.o + rm -f mailto +- $(CC) $(LOCALCFLAGS) -o mailto mailto.o codes.o shared.o -ltermcap $(LDLIBS) ++ $(CC) $(LOCALCFLAGS) -o mailto mailto.o codes.o shared.o -lncurses $(LDLIBS) + + splitmail: splitmail.o shared.o + rm -f splitmail Added: head/mail/metamail/files/patch-richmail_Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/metamail/files/patch-richmail_Makefile Tue Aug 23 14:49:46 2016 (r420686) @@ -0,0 +1,11 @@ +--- richmail/Makefile.orig 1993-03-15 19:32:42 UTC ++++ richmail/Makefile +@@ -34,7 +34,7 @@ RICHOBJS=richlex.o richset.o usascii.o i + all: richtext richtoatk + + richtext: richtext.o $(RICHOBJS) +- $(CC) ${LOCALCFLAGS} -o richtext richtext.o $(RICHOBJS) -ltermcap $(LDLIBS) ++ $(CC) ${LOCALCFLAGS} -o richtext richtext.o $(RICHOBJS) -lncurses $(LDLIBS) + + richtoatk: richtoatk.o $(RICHOBJS) + $(CC) ${LOCALCFLAGS} -o richtoatk richtoatk.o $(RICHOBJS) $(LDLIBS)