Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 30 Apr 2016 06:44:28 +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: r414332 - in head: Mk/Uses archivers/zip-ada cad/ghdl databases/apq devel/ada-util devel/adabooch devel/adacurses devel/afay devel/ahven devel/alog devel/florist-gpl devel/gnatcoll deve...
Message-ID:  <201604300644.u3U6iSwA005566@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: marino
Date: Sat Apr 30 06:44:27 2016
New Revision: 414332
URL: https://svnweb.freebsd.org/changeset/ports/414332

Log:
  Change Ada Framework foundation from gcc5-aux to gcc6-aux
  
  GCC 6.1 was released this week.  The Ada Framework in FreeBSD ports has
  been based on GCC 5.3 GNAT although GCC 6.x has been supported for awhile
  via the ADA_DEFAULT option in make.conf.
  
  Now that GCC 6 has been officially released, switch to it by default.
  People can maintain the old foundation by putting "ADA_DEFAULT=5" in
  /etc/make.conf.
  
  Libraries built by one GNAT are unusable by another, so almost every Ada
  port has been bumped as a result.  Noticable exceptions are dns/ironsides
  which fails to build on gcc6 (thus USES=ada:5 is set) and cad/ghdl which
  needs additional testing as it may require gcc5 on FreeBSD (DragonFly
  uses the LLVM backend only).

Modified:
  head/Mk/Uses/ada.mk
  head/archivers/zip-ada/Makefile
  head/cad/ghdl/Makefile
  head/databases/apq/Makefile.version
  head/devel/ada-util/Makefile
  head/devel/adabooch/Makefile
  head/devel/adacurses/Makefile
  head/devel/afay/Makefile
  head/devel/ahven/Makefile
  head/devel/alog/Makefile
  head/devel/florist-gpl/Makefile
  head/devel/gnatcoll/Makefile
  head/devel/gprbuild/Makefile
  head/devel/gps/Makefile
  head/devel/matreshka/Makefile
  head/devel/pcsc-ada/Makefile
  head/devel/pragmarcs/Makefile
  head/devel/sdl_gnat/Makefile
  head/devel/simple_components/Makefile
  head/graphics/generic_image_decoder/Makefile
  head/lang/adacontrol/Makefile
  head/lang/asis/Makefile
  head/lang/gnat_util/Makefile
  head/lang/lua-ada/Makefile
  head/math/plplot-ada/Makefile
  head/misc/excel-writer/Makefile
  head/misc/ini_file_manager/Makefile
  head/net/adasockets/Makefile
  head/net/anet/Makefile
  head/net/polyorb/Makefile
  head/security/libadacrypt/Makefile
  head/security/libsparkcrypto/Makefile
  head/textproc/adabrowse/Makefile
  head/textproc/opentoken/Makefile
  head/textproc/templates_parser/Makefile
  head/textproc/xml_ez_out/Makefile
  head/textproc/xmlada/Makefile
  head/www/aws-demos/Makefile
  head/www/aws/Makefile
  head/x11-toolkits/gtkada/Makefile
  head/x11-toolkits/gtkada3/Makefile
  head/x11-toolkits/qtada/Makefile

Modified: head/Mk/Uses/ada.mk
==============================================================================
--- head/Mk/Uses/ada.mk	Sat Apr 30 06:44:21 2016	(r414331)
+++ head/Mk/Uses/ada.mk	Sat Apr 30 06:44:27 2016	(r414332)
@@ -14,7 +14,7 @@
 _INCLUDE_USES_ADA_MK=    yes
 
 CC=	ada
-ADAXX=	gcc5	# framework default
+ADAXX=	gcc6	# framework default
 
 . if ${ada_ARGS:M49}
 ADAXX=	gcc
@@ -25,8 +25,8 @@ ADAXX=	gcc6
 . elif defined(ADA_DEFAULT)
 .  if ${ADA_DEFAULT} == 49
 ADAXX=	gcc
-.  elif ${ADA_DEFAULT} == 6
-ADAXX=	gcc6
+.  elif ${ADA_DEFAULT} == 5
+ADAXX=	gcc5
 .  endif
 . endif
 

Modified: head/archivers/zip-ada/Makefile
==============================================================================
--- head/archivers/zip-ada/Makefile	Sat Apr 30 06:44:21 2016	(r414331)
+++ head/archivers/zip-ada/Makefile	Sat Apr 30 06:44:27 2016	(r414332)
@@ -3,7 +3,7 @@
 
 PORTNAME=	zip-ada
 PORTVERSION=	50
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	archivers
 MASTER_SITES=	SF/unzip-ada/
 DISTNAME=	zipada${PORTVERSION}_f1

Modified: head/cad/ghdl/Makefile
==============================================================================
--- head/cad/ghdl/Makefile	Sat Apr 30 06:44:21 2016	(r414331)
+++ head/cad/ghdl/Makefile	Sat Apr 30 06:44:27 2016	(r414332)
@@ -17,7 +17,7 @@ LIB_DEPENDS=	libgmp.so:math/gmp \
 		libmpfr.so:math/mpfr \
 		libmpc.so:math/mpc
 
-USES=		ada gmake
+USES=		ada:5 gmake
 USE_GITHUB=	yes
 GH_ACCOUNT=	tgingold
 

Modified: head/databases/apq/Makefile.version
==============================================================================
--- head/databases/apq/Makefile.version	Sat Apr 30 06:44:21 2016	(r414331)
+++ head/databases/apq/Makefile.version	Sat Apr 30 06:44:27 2016	(r414332)
@@ -1,7 +1,7 @@
 # $FreeBSD$
 
 APQ_VERSION=	3.2.0
-BASE_PORTREV=	0
-DRV_ODBC_PR=	0
-DRV_MYSQL_PR=	1
-DRV_PGSQL_PR=	0
+BASE_PORTREV=	1
+DRV_ODBC_PR=	1
+DRV_MYSQL_PR=	2
+DRV_PGSQL_PR=	1

Modified: head/devel/ada-util/Makefile
==============================================================================
--- head/devel/ada-util/Makefile	Sat Apr 30 06:44:21 2016	(r414331)
+++ head/devel/ada-util/Makefile	Sat Apr 30 06:44:27 2016	(r414332)
@@ -3,7 +3,7 @@
 
 PORTNAME=	ada-util
 PORTVERSION=	1.8.0
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	devel
 
 MAINTAINER=	marino@FreeBSD.org

Modified: head/devel/adabooch/Makefile
==============================================================================
--- head/devel/adabooch/Makefile	Sat Apr 30 06:44:21 2016	(r414331)
+++ head/devel/adabooch/Makefile	Sat Apr 30 06:44:27 2016	(r414332)
@@ -3,6 +3,7 @@
 
 PORTNAME=	adabooch
 PORTVERSION=	20160321
+PORTREVISION=	1
 CATEGORIES=	devel
 MASTER_SITES=	SF/booch95/booch95/${PORTVERSION}
 DISTNAME=	bc-${PORTVERSION}

Modified: head/devel/adacurses/Makefile
==============================================================================
--- head/devel/adacurses/Makefile	Sat Apr 30 06:44:21 2016	(r414331)
+++ head/devel/adacurses/Makefile	Sat Apr 30 06:44:27 2016	(r414332)
@@ -3,6 +3,7 @@
 
 PORTNAME=	adacurses
 PORTVERSION=	20150808
+PORTREVISION=	1
 CATEGORIES=	devel
 MASTER_SITES=	ftp://invisible-island.net/AdaCurses/
 DISTNAME=	AdaCurses-${PORTVERSION}

Modified: head/devel/afay/Makefile
==============================================================================
--- head/devel/afay/Makefile	Sat Apr 30 06:44:21 2016	(r414331)
+++ head/devel/afay/Makefile	Sat Apr 30 06:44:27 2016	(r414332)
@@ -3,7 +3,7 @@
 
 PORTNAME=	afay
 PORTVERSION=	041111
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	devel
 MASTER_SITES=	http://thiberlog.free.fr/src/
 DISTNAME=	afay_thiberlog_${PORTVERSION}

Modified: head/devel/ahven/Makefile
==============================================================================
--- head/devel/ahven/Makefile	Sat Apr 30 06:44:21 2016	(r414331)
+++ head/devel/ahven/Makefile	Sat Apr 30 06:44:27 2016	(r414332)
@@ -3,7 +3,7 @@
 
 PORTNAME=	ahven
 PORTVERSION=	2.6
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	devel
 MASTER_SITES=	http://www.ahven-framework.com/releases/
 

Modified: head/devel/alog/Makefile
==============================================================================
--- head/devel/alog/Makefile	Sat Apr 30 06:44:21 2016	(r414331)
+++ head/devel/alog/Makefile	Sat Apr 30 06:44:27 2016	(r414332)
@@ -3,6 +3,7 @@
 
 PORTNAME=	alog
 PORTVERSION=	0.5.1
+PORTREVISION=	1
 CATEGORIES=	devel
 MASTER_SITES=	http://www.codelabs.ch/download/
 DISTNAME=	libalog-${PORTVERSION}

Modified: head/devel/florist-gpl/Makefile
==============================================================================
--- head/devel/florist-gpl/Makefile	Sat Apr 30 06:44:21 2016	(r414331)
+++ head/devel/florist-gpl/Makefile	Sat Apr 30 06:44:27 2016	(r414332)
@@ -3,6 +3,7 @@
 
 PORTNAME=	florist-gpl
 PORTVERSION=	2015
+PORTREVISION=	1
 CATEGORIES=	devel
 MASTER_SITES=	http://downloads.dragonlace.net/src/
 DISTNAME=	${PORTNAME}-${PORTVERSION}-src

Modified: head/devel/gnatcoll/Makefile
==============================================================================
--- head/devel/gnatcoll/Makefile	Sat Apr 30 06:44:21 2016	(r414331)
+++ head/devel/gnatcoll/Makefile	Sat Apr 30 06:44:27 2016	(r414332)
@@ -3,7 +3,7 @@
 
 PORTNAME=	gnatcoll
 PORTVERSION=	2015
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	devel
 MASTER_SITES=	http://downloads.dragonlace.net/src/
 DISTNAME=	${PORTNAME}-gpl-${PORTVERSION}-src

Modified: head/devel/gprbuild/Makefile
==============================================================================
--- head/devel/gprbuild/Makefile	Sat Apr 30 06:44:21 2016	(r414331)
+++ head/devel/gprbuild/Makefile	Sat Apr 30 06:44:27 2016	(r414332)
@@ -3,7 +3,7 @@
 
 PORTNAME=	gprbuild
 PORTVERSION=	${SNAPSHOT}
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	devel
 MASTER_SITES=	http://downloads.dragonlace.net/src/
 DISTNAME=	gprbuild-gpl-${YEAR}-src

Modified: head/devel/gps/Makefile
==============================================================================
--- head/devel/gps/Makefile	Sat Apr 30 06:44:21 2016	(r414331)
+++ head/devel/gps/Makefile	Sat Apr 30 06:44:27 2016	(r414332)
@@ -3,7 +3,7 @@
 
 PORTNAME=	gps
 PORTVERSION=	6.1.1.0
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	devel
 MASTER_SITES=	http://downloads.dragonlace.net/src/
 DISTNAME=	gps-6.1.1-src

Modified: head/devel/matreshka/Makefile
==============================================================================
--- head/devel/matreshka/Makefile	Sat Apr 30 06:44:21 2016	(r414331)
+++ head/devel/matreshka/Makefile	Sat Apr 30 06:44:27 2016	(r414332)
@@ -3,6 +3,7 @@
 
 PORTNAME=	matreshka
 PORTVERSION=	0.7.0
+PORTREVISION=	1
 CATEGORIES=	devel
 MASTER_SITES=	http://forge.ada-ru.org/matreshka/downloads/
 

Modified: head/devel/pcsc-ada/Makefile
==============================================================================
--- head/devel/pcsc-ada/Makefile	Sat Apr 30 06:44:21 2016	(r414331)
+++ head/devel/pcsc-ada/Makefile	Sat Apr 30 06:44:27 2016	(r414332)
@@ -3,6 +3,7 @@
 
 PORTNAME=	pcsc-ada
 PORTVERSION=	0.7.2
+PORTREVISION=	1
 CATEGORIES=	devel
 MASTER_SITES=	http://www.codelabs.ch/download/
 DISTNAME=	libpcscada-${PORTVERSION}

Modified: head/devel/pragmarcs/Makefile
==============================================================================
--- head/devel/pragmarcs/Makefile	Sat Apr 30 06:44:21 2016	(r414331)
+++ head/devel/pragmarcs/Makefile	Sat Apr 30 06:44:27 2016	(r414332)
@@ -3,6 +3,7 @@
 
 PORTNAME=	pragmarcs
 PORTVERSION=	20160427
+PORTREVISION=	1
 CATEGORIES=	devel
 
 MAINTAINER=	marino@FreeBSD.org

Modified: head/devel/sdl_gnat/Makefile
==============================================================================
--- head/devel/sdl_gnat/Makefile	Sat Apr 30 06:44:21 2016	(r414331)
+++ head/devel/sdl_gnat/Makefile	Sat Apr 30 06:44:27 2016	(r414332)
@@ -3,7 +3,7 @@
 
 PORTNAME=	sdl_gnat
 PORTVERSION=	2013
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	devel
 MASTER_SITES=	http://downloads.dragonlace.net/src/
 

Modified: head/devel/simple_components/Makefile
==============================================================================
--- head/devel/simple_components/Makefile	Sat Apr 30 06:44:21 2016	(r414331)
+++ head/devel/simple_components/Makefile	Sat Apr 30 06:44:27 2016	(r414332)
@@ -3,6 +3,7 @@
 
 PORTNAME=	simple_components
 PORTVERSION=	4.12
+PORTREVISION=	1
 CATEGORIES=	devel
 MASTER_SITES=	http://www.dmitry-kazakov.de/ada/
 DISTNAME=	components_${PORTVERSION:S/./_/}

Modified: head/graphics/generic_image_decoder/Makefile
==============================================================================
--- head/graphics/generic_image_decoder/Makefile	Sat Apr 30 06:44:21 2016	(r414331)
+++ head/graphics/generic_image_decoder/Makefile	Sat Apr 30 06:44:27 2016	(r414332)
@@ -3,6 +3,7 @@
 
 PORTNAME=	generic_image_decoder
 PORTVERSION=	05
+PORTREVISION=	1
 CATEGORIES=	graphics
 MASTER_SITES=	http://sourceforge.net/projects/${SFPATH}/
 DISTNAME=	gid-${PORTVERSION}

Modified: head/lang/adacontrol/Makefile
==============================================================================
--- head/lang/adacontrol/Makefile	Sat Apr 30 06:44:21 2016	(r414331)
+++ head/lang/adacontrol/Makefile	Sat Apr 30 06:44:27 2016	(r414332)
@@ -3,7 +3,7 @@
 
 PORTNAME=	adacontrol
 PORTVERSION=	1.17r3
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	lang
 MASTER_SITES=	SF/adacontrol
 DISTNAME=	adactl-${PORTVERSION}-src

Modified: head/lang/asis/Makefile
==============================================================================
--- head/lang/asis/Makefile	Sat Apr 30 06:44:21 2016	(r414331)
+++ head/lang/asis/Makefile	Sat Apr 30 06:44:27 2016	(r414332)
@@ -3,6 +3,7 @@
 
 PORTNAME=	asis
 PORTVERSION=	2015
+PORTREVISION=	1
 CATEGORIES=	lang
 MASTER_SITES=	http://downloads.dragonlace.net/src/
 DISTNAME=	${PORTNAME}-gpl-${PORTVERSION}-src

Modified: head/lang/gnat_util/Makefile
==============================================================================
--- head/lang/gnat_util/Makefile	Sat Apr 30 06:44:21 2016	(r414331)
+++ head/lang/gnat_util/Makefile	Sat Apr 30 06:44:27 2016	(r414332)
@@ -24,10 +24,10 @@ MAKE_ENV=	MAKEOBJDIR=${WRKSRC}/obj
 
 .if defined(ADA_DEFAULT) && ${ADA_DEFAULT} == 49
 .include "${.CURDIR}/../gcc-aux/Makefile.version"
-.elif defined(ADA_DEFAULT) && ${ADA_DEFAULT} == 6
-.include "${.CURDIR}/../gcc6-aux/Makefile.version"
-.else
+.elif defined(ADA_DEFAULT) && ${ADA_DEFAULT} == 5
 .include "${.CURDIR}/../gcc5-aux/Makefile.version"
+.else
+.include "${.CURDIR}/../gcc6-aux/Makefile.version"
 .endif
 
 post-extract:

Modified: head/lang/lua-ada/Makefile
==============================================================================
--- head/lang/lua-ada/Makefile	Sat Apr 30 06:44:21 2016	(r414331)
+++ head/lang/lua-ada/Makefile	Sat Apr 30 06:44:27 2016	(r414332)
@@ -3,6 +3,7 @@
 
 PORTNAME=	lua-ada
 PORTVERSION=	1.0			# made-up; no version info on GH
+PORTREVISION=	1
 CATEGORIES=	lang
 
 MAINTAINER=	marino@FreeBSD.org

Modified: head/math/plplot-ada/Makefile
==============================================================================
--- head/math/plplot-ada/Makefile	Sat Apr 30 06:44:21 2016	(r414331)
+++ head/math/plplot-ada/Makefile	Sat Apr 30 06:44:27 2016	(r414332)
@@ -3,6 +3,7 @@
 
 PORTNAME=	plplot
 PORTVERSION=	${RELEASE}
+PORTREVISION=	1
 CATEGORIES=	math
 MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}/${PORTVERSION}%20Source
 PKGNAMESUFFIX=	-ada

Modified: head/misc/excel-writer/Makefile
==============================================================================
--- head/misc/excel-writer/Makefile	Sat Apr 30 06:44:21 2016	(r414331)
+++ head/misc/excel-writer/Makefile	Sat Apr 30 06:44:27 2016	(r414332)
@@ -3,6 +3,7 @@
 
 PORTNAME=	excel-writer
 PORTVERSION=	15
+PORTREVISION=	1
 CATEGORIES=	misc
 MASTER_SITES=	http://sourceforge.net/projects/${SFPATH}/
 DISTNAME=	excel_writer_${PORTVERSION}

Modified: head/misc/ini_file_manager/Makefile
==============================================================================
--- head/misc/ini_file_manager/Makefile	Sat Apr 30 06:44:21 2016	(r414331)
+++ head/misc/ini_file_manager/Makefile	Sat Apr 30 06:44:27 2016	(r414332)
@@ -3,6 +3,7 @@
 
 PORTNAME=	ini_file_manager
 PORTVERSION=	03
+PORTREVISION=	1
 CATEGORIES=	misc
 MASTER_SITES=	http://sourceforge.net/projects/${SFPATH}/
 DISTNAME=	ini-files-${PORTVERSION}

Modified: head/net/adasockets/Makefile
==============================================================================
--- head/net/adasockets/Makefile	Sat Apr 30 06:44:21 2016	(r414331)
+++ head/net/adasockets/Makefile	Sat Apr 30 06:44:27 2016	(r414332)
@@ -3,6 +3,7 @@
 
 PORTNAME=	adasockets
 PORTVERSION=	1.10
+PORTREVISION=	1
 CATEGORIES=	net
 MASTER_SITES=	http://www.rfc1149.net/download/adasockets/
 

Modified: head/net/anet/Makefile
==============================================================================
--- head/net/anet/Makefile	Sat Apr 30 06:44:21 2016	(r414331)
+++ head/net/anet/Makefile	Sat Apr 30 06:44:27 2016	(r414332)
@@ -3,6 +3,7 @@
 
 PORTNAME=	anet
 PORTVERSION=	0.3.1
+PORTREVISION=	1
 CATEGORIES=	net
 MASTER_SITES=	http://www.codelabs.ch/download/
 DISTNAME=	libanet-${PORTVERSION}

Modified: head/net/polyorb/Makefile
==============================================================================
--- head/net/polyorb/Makefile	Sat Apr 30 06:44:21 2016	(r414331)
+++ head/net/polyorb/Makefile	Sat Apr 30 06:44:27 2016	(r414332)
@@ -3,7 +3,7 @@
 
 PORTNAME=	polyorb
 PORTVERSION=	2.11.1
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	net
 MASTER_SITES=	http://downloads.dragonlace.net/src/
 DISTNAME=	polyorb-gpl-${YEAR}-src

Modified: head/security/libadacrypt/Makefile
==============================================================================
--- head/security/libadacrypt/Makefile	Sat Apr 30 06:44:21 2016	(r414331)
+++ head/security/libadacrypt/Makefile	Sat Apr 30 06:44:27 2016	(r414332)
@@ -3,6 +3,7 @@
 
 PORTNAME=	libadacrypt
 PORTVERSION=	20151019
+PORTREVISION=	1
 CATEGORIES=	security
 
 MAINTAINER=	marino@FreeBSD.org

Modified: head/security/libsparkcrypto/Makefile
==============================================================================
--- head/security/libsparkcrypto/Makefile	Sat Apr 30 06:44:21 2016	(r414331)
+++ head/security/libsparkcrypto/Makefile	Sat Apr 30 06:44:27 2016	(r414332)
@@ -3,7 +3,7 @@
 
 PORTNAME=	libsparkcrypto
 PORTVERSION=	0.1.1
-PORTREVISION=	3
+PORTREVISION=	4
 CATEGORIES=	security
 MASTER_SITES=	http://senier.net/libsparkcrypto/
 

Modified: head/textproc/adabrowse/Makefile
==============================================================================
--- head/textproc/adabrowse/Makefile	Sat Apr 30 06:44:21 2016	(r414331)
+++ head/textproc/adabrowse/Makefile	Sat Apr 30 06:44:27 2016	(r414332)
@@ -3,7 +3,7 @@
 
 PORTNAME=	adabrowse
 PORTVERSION=	4.0.3
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	textproc
 MASTER_SITES=	http://home.datacomm.ch/t_wolf/tw/ada95/adabrowse/
 DISTNAME=	${PORTNAME}_${PORTVERSION}_src

Modified: head/textproc/opentoken/Makefile
==============================================================================
--- head/textproc/opentoken/Makefile	Sat Apr 30 06:44:21 2016	(r414331)
+++ head/textproc/opentoken/Makefile	Sat Apr 30 06:44:27 2016	(r414332)
@@ -3,6 +3,7 @@
 
 PORTNAME=	opentoken
 PORTVERSION=	6.0b
+PORTREVISION=	1
 CATEGORIES=	textproc
 MASTER_SITES=	http://stephe-leake.org/ada/
 

Modified: head/textproc/templates_parser/Makefile
==============================================================================
--- head/textproc/templates_parser/Makefile	Sat Apr 30 06:44:21 2016	(r414331)
+++ head/textproc/templates_parser/Makefile	Sat Apr 30 06:44:27 2016	(r414332)
@@ -3,7 +3,7 @@
 
 PORTNAME=	templates_parser
 PORTVERSION=	11.10.0.0
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	textproc
 MASTER_SITES=	http://downloads.dragonlace.net/src/
 

Modified: head/textproc/xml_ez_out/Makefile
==============================================================================
--- head/textproc/xml_ez_out/Makefile	Sat Apr 30 06:44:21 2016	(r414331)
+++ head/textproc/xml_ez_out/Makefile	Sat Apr 30 06:44:27 2016	(r414332)
@@ -3,6 +3,7 @@
 
 PORTNAME=	xml_ez_out
 PORTVERSION=	1.06
+PORTREVISION=	1
 CATEGORIES=	textproc
 MASTER_SITES=	http://www.mckae.com/xml_ezout/
 DISTNAME=	${PORTNAME}_${PORTVERSION}

Modified: head/textproc/xmlada/Makefile
==============================================================================
--- head/textproc/xmlada/Makefile	Sat Apr 30 06:44:21 2016	(r414331)
+++ head/textproc/xmlada/Makefile	Sat Apr 30 06:44:27 2016	(r414332)
@@ -3,7 +3,7 @@
 
 PORTNAME=	xmlada
 PORTVERSION=	4.6.0.0
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	textproc
 MASTER_SITES=	http://downloads.dragonlace.net/src/
 DISTNAME=	xmlada-gpl-2015-src

Modified: head/www/aws-demos/Makefile
==============================================================================
--- head/www/aws-demos/Makefile	Sat Apr 30 06:44:21 2016	(r414331)
+++ head/www/aws-demos/Makefile	Sat Apr 30 06:44:27 2016	(r414332)
@@ -3,6 +3,7 @@
 
 PORTNAME=	aws
 PORTVERSION=	3.3.0.0
+PORTREVISION=	1
 CATEGORIES=	www
 MASTER_SITES=	http://downloads.dragonlace.net/src/
 PKGNAMESUFFIX=	-demos

Modified: head/www/aws/Makefile
==============================================================================
--- head/www/aws/Makefile	Sat Apr 30 06:44:21 2016	(r414331)
+++ head/www/aws/Makefile	Sat Apr 30 06:44:27 2016	(r414332)
@@ -3,7 +3,7 @@
 
 PORTNAME=	aws
 PORTVERSION=	3.3.0.0
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	www
 MASTER_SITES=	http://downloads.dragonlace.net/src/
 

Modified: head/x11-toolkits/gtkada/Makefile
==============================================================================
--- head/x11-toolkits/gtkada/Makefile	Sat Apr 30 06:44:21 2016	(r414331)
+++ head/x11-toolkits/gtkada/Makefile	Sat Apr 30 06:44:27 2016	(r414332)
@@ -3,7 +3,7 @@
 
 PORTNAME=	gtkada
 PORTVERSION=	2.24.4.0
-PORTREVISION=	3
+PORTREVISION=	4
 CATEGORIES=	x11-toolkits
 MASTER_SITES=	http://downloads.dragonlace.net/src/
 DISTFILES=	${DISTNAME}${EXTRACT_SUFX} \

Modified: head/x11-toolkits/gtkada3/Makefile
==============================================================================
--- head/x11-toolkits/gtkada3/Makefile	Sat Apr 30 06:44:21 2016	(r414331)
+++ head/x11-toolkits/gtkada3/Makefile	Sat Apr 30 06:44:27 2016	(r414332)
@@ -3,7 +3,7 @@
 
 PORTNAME=	gtkada
 PORTVERSION=	3.8.3.2
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	x11-toolkits
 MASTER_SITES=	http://downloads.dragonlace.net/src/
 PKGNAMESUFFIX=	3

Modified: head/x11-toolkits/qtada/Makefile
==============================================================================
--- head/x11-toolkits/qtada/Makefile	Sat Apr 30 06:44:21 2016	(r414331)
+++ head/x11-toolkits/qtada/Makefile	Sat Apr 30 06:44:27 2016	(r414332)
@@ -3,7 +3,7 @@
 
 PORTNAME=	qtada
 PORTVERSION=	3.2.0.0
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	x11-toolkits
 MASTER_SITES=	http://download.qtada.com/
 DISTNAME=	${PORTNAME}-gpl-3.2.0-20120708-3871



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