mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-23 04:23:08 +00:00
c9d842267a
Adacore releases the GNAT Programming Studio annually along with several other packages. It is under constant development, so the source tarballs contain specific versions of xmlada, gtkada, and all the other dependencies. However those dependencies are under development as well and the current versions in the port collections were too new for the actual 2014 GPS release (which was frozen 7 months ago). So I packaged the working version of the upcoming 6.1.0 version instead (the 4th digit means "working" and it increments each time the distfile is upgraded). Several options were removed because they are expected by GPS components to be present (e.g. sqlite and gtk). The Iconv support was intended to be optional, but turning it on crashes GPS after the splash popup. Until the issue is resolved, the Iconv option has been removed and the GPS has been configured without it. GPS 6.x differences from the 5.x series in that the GTK3 toolkit is used instead of GTK2. It also has language support for SPARK 2014, syntax highlighting, tooltips for Ada 2012 and SPARK 2014, enhancements to the scripting API and various editor enhancements. Release Notes with lots of pictures illustrate new capabilities here: http://docs.adacore.com/gps-docs/release_notes/build/singlehtml
22 lines
906 B
Plaintext
22 lines
906 B
Plaintext
--- gnatlib/src/gnatcoll_readline.gpr.in.orig 2014-04-10 13:47:58.000000000 +0000
|
|
+++ gnatlib/src/gnatcoll_readline.gpr.in
|
|
@@ -6,7 +6,7 @@ project GnatColl_Readline is
|
|
when "yes" =>
|
|
for Languages use ("Ada");
|
|
for Source_Dirs use ("readline", "readline/with_readline");
|
|
- for Library_Options use ("-lreadline");
|
|
+ for Library_Options use ("-L@PREFIX@/lib", "-lreadline");
|
|
when "no" =>
|
|
for Source_Dirs use ("readline", "readline/no_readline");
|
|
end case;
|
|
@@ -26,7 +26,8 @@ project GnatColl_Readline is
|
|
package Linker is
|
|
-- When linking an executable
|
|
case Gnatcoll_Shared.Readline is
|
|
- when "yes" => for Linker_Options use ("-lreadline");
|
|
+ when "yes" => for Linker_Options use ("-rpath=@PREFIX@/lib",
|
|
+ "-L@PREFIX@/lib", "-lreadline");
|
|
when "no" => null;
|
|
end case;
|
|
end Linker;
|