svn commit: r352739 - in head/devel/gps: . files

John Marino marino at FreeBSD.org
Thu May 1 09:23:16 UTC 2014


Author: marino
Date: Thu May  1 09:23:15 2014
New Revision: 352739
URL: http://svnweb.freebsd.org/changeset/ports/352739
QAT: https://qat.redports.org/buildarchive/r352739/

Log:
  devel/gps: link gnatinspector with -rpath definition
  
  Missing rpath for readline library for the gnatinspector program was
  detected by pkgsrc checks; fix comes from pkgsrc.  It won't really
  come into play for FreeBSD until readline is removed from base because
  currently gps defaults to the base version on FreeBSD.

Modified:
  head/devel/gps/Makefile
  head/devel/gps/files/patch-gnatlib_src_gnatcoll__readline.gpr.in

Modified: head/devel/gps/Makefile
==============================================================================
--- head/devel/gps/Makefile	Thu May  1 08:31:37 2014	(r352738)
+++ head/devel/gps/Makefile	Thu May  1 09:23:15 2014	(r352739)
@@ -3,7 +3,7 @@
 
 PORTNAME=	gps
 PORTVERSION=	5.2.1
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	devel
 MASTER_SITES=	http://downloads.dragonlace.net/src/
 DISTNAME=	gps-5.2.1-1-src

Modified: head/devel/gps/files/patch-gnatlib_src_gnatcoll__readline.gpr.in
==============================================================================
--- head/devel/gps/files/patch-gnatlib_src_gnatcoll__readline.gpr.in	Thu May  1 08:31:37 2014	(r352738)
+++ head/devel/gps/files/patch-gnatlib_src_gnatcoll__readline.gpr.in	Thu May  1 09:23:15 2014	(r352739)
@@ -14,8 +14,8 @@
        --  When linking an executable
        case Gnatcoll_Shared.Readline is
 -         when "yes" => for Linker_Options use ("-lreadline");
-+         when "yes" => for Linker_Options use ("-L at PREFIX@/lib",
-+            "-lreadline");
++         when "yes" => for Linker_Options use ("-rpath=@PREFIX@/lib",
++            "-L at PREFIX@/lib", "-lreadline");
           when "no"  => null;
        end case;
     end Linker;


More information about the svn-ports-all mailing list