- Update to 2.0.2 - Depends readline (https://github.com/jonas/tig/issues/185) - Fix display wide character problem that cause by readline, Change LDLIBS order to resolve. Port maintainer (darcsis@gmail.com) is cc'd. Generated with FreeBSD Port Tools 1.00.2014.03.23 (mode: update, diff: ports)
Responsible Changed From-To: freebsd-ports-bugs->sunpoet sunpoet@ wants this submitter's PRs (via the GNATS Auto Assign Tool)
Maintainer of devel/tig, Please note that PR ports/189539 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/189539 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org
State Changed From-To: open->feedback Awaiting maintainers feedback (via the GNATS Auto Assign Tool)
I think the patch is OK. Thanks you all for this! äº 5/10/14, 10:20 AM, Edwin Groothuis åé: > Maintainer of devel/tig, > > Please note that PR ports/189539 has just been submitted. > > If it contains a patch for an upgrade, an enhancement or a bug fix > you agree on, reply to this email stating that you approve the patch > and a committer will take care of it. > > The full text of the PR can be found at: > http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/189539 >
Author: sunpoet Date: Tue May 13 15:56:15 2014 New Revision: 353967 URL: http://svnweb.freebsd.org/changeset/ports/353967 QAT: https://qat.redports.org/buildarchive/r353967/ Log: - Update to 2.0.2 - Use USES=ncurses - Use USES=readline:port because tig requires readline 6.2+ Changes: http://jonas.nitro.dk/tig/NEWS.html PR: ports/189539 Submitted by: Gasol Wu <gasol.wu@gmail.com> Approved by: Wei Guo <darcsis@gmail.com> (maintainer) Added: head/devel/tig/files/ head/devel/tig/files/patch-config.make.in (contents, props changed) Modified: head/devel/tig/Makefile head/devel/tig/distinfo Modified: head/devel/tig/Makefile ============================================================================== --- head/devel/tig/Makefile Tue May 13 15:49:43 2014 (r353966) +++ head/devel/tig/Makefile Tue May 13 15:56:15 2014 (r353967) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= tig -PORTVERSION= 1.2.1 +PORTVERSION= 2.0.2 CATEGORIES= devel MASTER_SITES= http://jonas.nitro.dk/tig/releases/ @@ -15,16 +15,16 @@ RUN_DEPENDS= git:${PORTSDIR}/devel/git GNU_CONFIGURE= yes CONFIGURE_ARGS= ${ICONV_CONFIGURE_BASE} -USES= iconv gmake +USES= iconv gmake ncurses readline:port -PLIST_FILES= bin/tig +PLIST_FILES= bin/tig etc/tigrc OPTIONS_DEFINE= MANPAGES OPTIONS_DEFAULT=MANPAGES MANPAGES_BUILD_DEPENDS= asciidoc:${PORTSDIR}/textproc/asciidoc \ xmlto:${PORTSDIR}/textproc/xmlto -MANPAGES_ALL_TARGET= tig doc-man +MANPAGES_ALL_TARGET= all doc-man MANPAGES_INSTALL_TARGET=install install-doc-man MANPAGES_PLIST_FILES= man/man1/tig.1.gz \ man/man5/tigrc.5.gz \ Modified: head/devel/tig/distinfo ============================================================================== --- head/devel/tig/distinfo Tue May 13 15:49:43 2014 (r353966) +++ head/devel/tig/distinfo Tue May 13 15:56:15 2014 (r353967) @@ -1,2 +1,2 @@ -SHA256 (tig-1.2.1.tar.gz) = b708d205f2a0432f03daaa945779bcac122662ec0760d4dabc6d8fd60ca32944 -SIZE (tig-1.2.1.tar.gz) = 160039 +SHA256 (tig-2.0.2.tar.gz) = b91cf0b3d044f643a1032c3a7c7cd855685bb8ead5f71f4703eb0c19238e273e +SIZE (tig-2.0.2.tar.gz) = 572025 Added: head/devel/tig/files/patch-config.make.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/tig/files/patch-config.make.in Tue May 13 15:56:15 2014 (r353967) @@ -0,0 +1,11 @@ +--- ./config.make.in.orig 2014-05-10 09:51:50.000000000 +0800 ++++ ./config.make.in 2014-05-10 09:53:07.000000000 +0800 +@@ -12,7 +12,7 @@ + CFLAGS = @CFLAGS@ + CPPFLAGS = @CPPFLAGS@ -DHAVE_CONFIG_H + LDFLAGS = @LDFLAGS@ +-LDLIBS = @LIBS@ @CURSES_LIB@ ++LDLIBS = @CURSES_LIB@ @LIBS@ + + ASCIIDOC = @ASCIIDOC@ + XMLTO = @XMLTO@ _______________________________________________ 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"
State Changed From-To: feedback->closed Committed. Thanks!