From owner-svn-ports-all@FreeBSD.ORG Thu Jul 3 14:36:34 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org 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 ESMTPS id 3D70C611; Thu, 3 Jul 2014 14:36:34 +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 2AB562F8A; Thu, 3 Jul 2014 14:36: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 s63EaYqJ090444; Thu, 3 Jul 2014 14:36:34 GMT (envelope-from bsam@svn.freebsd.org) Received: (from bsam@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s63EaXr0090442; Thu, 3 Jul 2014 14:36:33 GMT (envelope-from bsam@svn.freebsd.org) Message-Id: <201407031436.s63EaXr0090442@svn.freebsd.org> From: Boris Samorodov Date: Thu, 3 Jul 2014 14:36:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r360377 - in head/print/catdvi: . 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: Thu, 03 Jul 2014 14:36:34 -0000 Author: bsam Date: Thu Jul 3 14:36:33 2014 New Revision: 360377 URL: http://svnweb.freebsd.org/changeset/ports/360377 QAT: https://qat.redports.org/buildarchive/r360377/ Log: . fix build: ----- cc -O2 -pipe -fno-strict-aliasing -I/usr/local/include -DCFG_HAS_GETOPT_LONG -c -o kpathsea.o kpathsea.c kpathsea.c:39:23: error: redefinition of 'kpathsea_version_string' with a different type: 'char *' vs 'const char *' extern char * kpathsea_version_string; ----- . remove the indefinite article from COMMENT; . add LICENSE (GPLv2). Added: head/print/catdvi/files/ head/print/catdvi/files/patch-kpathsea.c (contents, props changed) Modified: head/print/catdvi/Makefile Modified: head/print/catdvi/Makefile ============================================================================== --- head/print/catdvi/Makefile Thu Jul 3 14:25:58 2014 (r360376) +++ head/print/catdvi/Makefile Thu Jul 3 14:36:33 2014 (r360377) @@ -8,7 +8,9 @@ CATEGORIES= print MASTER_SITES= SF MAINTAINER= ports@FreeBSD.org -COMMENT= A DVI to text/plain translator +COMMENT= DVI to text/plain translator + +LICENSE= GPLv2 USE_TEX= latex USES= gmake Added: head/print/catdvi/files/patch-kpathsea.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/print/catdvi/files/patch-kpathsea.c Thu Jul 3 14:36:33 2014 (r360377) @@ -0,0 +1,11 @@ +--- kpathsea.c.orig 2014-04-08 16:18:57.296160200 +0400 ++++ kpathsea.c 2014-04-08 16:19:06.680160318 +0400 +@@ -36,7 +36,7 @@ void copyright_findtfm(void) + + void version_findtfm(void) + { +- extern char * kpathsea_version_string; ++ extern const char * kpathsea_version_string; + puts(kpathsea_version_string); + } +