Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 28 Jun 2015 17:13:41 +0000 (UTC)
From:      John Marino <marino@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r390799 - in head/devel/gprbuild: . files
Message-ID:  <201506281713.t5SHDfw1024825@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: marino
Date: Sun Jun 28 17:13:40 2015
New Revision: 390799
URL: https://svnweb.freebsd.org/changeset/ports/390799

Log:
  devel/gprbuild: Fix regression
  
  One of the prior "extra patches" handled the breakage caused by the
  version number change in GCC.  When I purged all the extra patches, this
  one got thrown out accidently.  Add it back to fix at least the
  textproc/templates_parser port (and probably others)

Modified:
  head/devel/gprbuild/Makefile
  head/devel/gprbuild/files/patch-src_gprlib.adb

Modified: head/devel/gprbuild/Makefile
==============================================================================
--- head/devel/gprbuild/Makefile	Sun Jun 28 17:07:06 2015	(r390798)
+++ head/devel/gprbuild/Makefile	Sun Jun 28 17:13:40 2015	(r390799)
@@ -3,6 +3,7 @@
 
 PORTNAME=	gprbuild
 PORTVERSION=	${SNAPSHOT}
+PORTREVISION=	1
 CATEGORIES=	devel
 MASTER_SITES=	http://downloads.dragonlace.net/src/
 DISTNAME=	gprbuild-gpl-${YEAR}-src

Modified: head/devel/gprbuild/files/patch-src_gprlib.adb
==============================================================================
--- head/devel/gprbuild/files/patch-src_gprlib.adb	Sun Jun 28 17:07:06 2015	(r390798)
+++ head/devel/gprbuild/files/patch-src_gprlib.adb	Sun Jun 28 17:13:40 2015	(r390799)
@@ -26,6 +26,19 @@
  
              when Gprexch.Library_Rpath_Options =>
                 Library_Rpath_Options_Table.Append
+@@ -1143,10 +1153,10 @@ begin
+ 
+                      Libgnat :=
+                        new String'
+-                         ("-lgnat-" & Line (6 .. Last));
++                         ("-lgnat-" & Line (6));
+                      Libgnarl :=
+                        new String'
+-                         ("-lgnarl-" & Line (6 .. Last));
++                         ("-lgnarl-" & Line (6));
+                   end if;
+ 
+                else
 @@ -2113,7 +2123,7 @@ begin
           Library_Switches_Table.Append
             (new String'("-L" & Imported_Library_Directories.Table (J).all));



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201506281713.t5SHDfw1024825>