summaryrefslogtreecommitdiff
path: root/devel/gps
diff options
context:
space:
mode:
authormarino <marino@pkgsrc.org>2016-11-25 20:36:49 +0000
committermarino <marino@pkgsrc.org>2016-11-25 20:36:49 +0000
commit22692a735ffbe29a4d003c605307375103a3e565 (patch)
tree8a9311ad804d05e94ba5b5a03623ccc12fad052b /devel/gps
parent02e57864ac4a8b4c2d418963375e330e2e63a5a9 (diff)
downloadpkgsrc-22692a735ffbe29a4d003c605307375103a3e565.tar.gz
Upgrade USE_LANGUAGES=ada to use lang/gcc5-aux instead of lang/gcc-aux
This large commit accomplishes the following: 1) Switch USE_LANGUAGES=ada to require lang/gcc5-aux (gcc 5.4) instead of lang/gcc-aux (gcc 4.9.2) on gcc.mk 2) Bump affected ports and fix paths as necessary 3) Upgrade devel/gprbuild to the latest release - No longer requires lang/gnat_util - gprslave requires gcc6-aux, so it was disabled for now 4) Fix lang/gnat_util but set PKG_SKIP_REASON - It has no further purpose in the pkgsrc tree - It has no practical purpose outside of the pkgsrc tree - Indicate intent to remove from tree in Jan. 2017 5) Set devel/GPS as failed with PKG_FAIL_REASON - This version of GPS is several years old and at the time they were strongly tied to compiler. - Latest release of GPS require gcc6-aux (not available) and several new and complex dependencies - maintainer (me) has no interest to continue supporting it - Leaving GPS in place until Jan 2017 to give another person chance to upgrade and take over support - Latest version in FreeBSD Ports Collection as a reference point
Diffstat (limited to 'devel/gps')
-rw-r--r--devel/gps/Makefile17
1 files changed, 14 insertions, 3 deletions
diff --git a/devel/gps/Makefile b/devel/gps/Makefile
index bbfb4aedb32..9d07eb805fc 100644
--- a/devel/gps/Makefile
+++ b/devel/gps/Makefile
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.45 2016/10/09 21:41:58 wiz Exp $
+# $NetBSD: Makefile,v 1.46 2016/11/25 20:36:49 marino Exp $
#
DISTNAME= gps-${GPS_VERSION}
-PKGREVISION= 12
+PKGREVISION= 13
CATEGORIES= devel
MASTER_SITES= http://downloads.dragonlace.net/src/
DISTFILES= gps-5.2.1-1-src.tgz
@@ -12,6 +12,17 @@ HOMEPAGE= http://www.adacore.com/home/products/gnatpro/toolsuite/gps/
COMMENT= GNAT Programming Studio - IDE for Ada and many other languages
LICENSE= gnu-gpl-v2
+# GPS is several years behind and normally tied to the latest Ada compiler.
+# To update it would require several new and complicated dependencies.
+# The maintainer has no interest in doing this work. Somebody else is free
+# to take over and use the FreeBSD Ports Collection as a reference point.
+#
+# The internal project support (GPR files) are illegally configured for
+# today's standards and gprbuild won't let the build progress far.
+# The only practical way forward to update to version 6.0.1 (which is at
+# least one year behind the current version of GPS)
+PKG_FAIL_REASON= Unbuildable with gcc5-aux. Scheduled for removal Jan 2017
+
GNU_CONFIGURE= yes
USE_TOOLS+= gmake sed perl awk pkg-config
@@ -20,7 +31,7 @@ USE_LANGUAGES= c ada c++
MY_CONFIGURE_ENV+= ADA_PROJECT_PATH=${APP}
MY_MAKE_ENV+= PROCESSORS=${MAKE_JOBS:U1:Q} \
ADA_PROJECT_PATH=${APP} \
- PATH=${PREFIX}/gcc-aux/bin:${PATH}
+ PATH=${PREFIX}/gcc5-aux/bin:${PATH}
MAKE_ARGS= Build=Production
APP= ${PREFIX}/lib/gnat
WRKSRC= ${WRKDIR}/gps-release-ide-${GPS_VERSION}-src