svn commit: r421496 - in head: Mk/Uses astro/google-earth audio/linux-c6-alsa-plugins-pulseaudio audio/linux-c6-alsa-utils audio/linux-c6-libsndfile audio/linux-c6-openal-soft audio/linux-c6-pulsea...

Tijl Coosemans tijl at FreeBSD.org
Wed Sep 7 12:43:31 UTC 2016


Author: tijl
Date: Wed Sep  7 12:43:22 2016
New Revision: 421496
URL: https://svnweb.freebsd.org/changeset/ports/421496

Log:
  - In Uses/linux.mk use the loop variable directly when appending to
    *_DEPENDS.  Helper variables derived from the loop variable aren't
    expanded causing *_DEPENDS to be incorrect.
  - Bump all ports with more than one value in USE_LINUX.
  
  PR:		211645
  Reported by:	jkim

Modified:
  head/Mk/Uses/linux.mk
  head/astro/google-earth/Makefile
  head/audio/linux-c6-alsa-plugins-pulseaudio/Makefile
  head/audio/linux-c6-alsa-utils/Makefile
  head/audio/linux-c6-libsndfile/Makefile
  head/audio/linux-c6-openal-soft/Makefile
  head/audio/linux-c6-pulseaudio-libs/Makefile
  head/audio/linux-c6-pulseaudio-utils/Makefile
  head/audio/linux-c6-sdl_mixer/Makefile
  head/audio/linux-f10-openal-soft/Makefile
  head/audio/linux-f10-openal/Makefile
  head/audio/linux-f10-pulseaudio-libs/Makefile
  head/audio/linux-f10-sdl_mixer/Makefile
  head/cad/linux-eagle5/Makefile
  head/devel/linux-c6-dbus-glib/Makefile
  head/devel/linux-c6-qt47/Makefile
  head/devel/linux-f10-dbus-glib/Makefile
  head/editors/komodo-edit/Makefile
  head/editors/linux-sublime/Makefile
  head/editors/linux-sublime3/Makefile
  head/ftp/linux-c6-curl/Makefile
  head/ftp/linux-f10-curl/Makefile
  head/games/adom/Makefile
  head/games/arkanoidsb/Makefile
  head/games/dsnake/Makefile
  head/games/gish-demo/Makefile
  head/games/linux-darwinia-demo/Makefile
  head/games/linux-defcon/Makefile
  head/games/linux-doom3-demo/Makefile
  head/games/linux-enemyterritory/Makefile
  head/games/linux-nerogame/Makefile
  head/games/linux-nwnclient/Makefile
  head/games/linux-rtcw/Makefile
  head/games/linux-ssamtfe/Makefile
  head/games/linux-ssamtse/Makefile
  head/games/linux-unigine-heaven/Makefile
  head/games/linux-unigine-valley/Makefile
  head/games/linux-uplink-demo/Makefile
  head/games/linux-ut/Makefile
  head/games/linux-ut2003-demo/Makefile
  head/games/linux-virtual-jay-peak/Makefile
  head/games/linux-worldofgoo-demo/Makefile
  head/graphics/linux-c6-cairo/Makefile
  head/graphics/linux-c6-gdk-pixbuf2/Makefile
  head/graphics/linux-c6-glx-utils/Makefile
  head/graphics/linux-c6-sdl_image/Makefile
  head/graphics/linux-c6-sdl_ttf/Makefile
  head/graphics/linux-f10-cairo/Makefile
  head/graphics/linux-f10-sdl_image/Makefile
  head/mail/linux-thunderbird/Makefile
  head/math/matlab-installer/Makefile
  head/net-im/linux-instantbird/Makefile
  head/net-im/qq/Makefile
  head/net-im/skype-devel/Makefile
  head/net-im/skype/Makefile
  head/net-im/skype4/Makefile
  head/net-im/yoono/Makefile
  head/net/citrix_ica/Makefile
  head/print/foxitreader/Makefile
  head/security/linux-c6-gnutls/Makefile
  head/security/linux-c6-nss/Makefile
  head/security/linux-f10-gnutls/Makefile
  head/security/linux-f10-nss/Makefile
  head/sysutils/linux-crashplan/Makefile
  head/textproc/linux-f10-scim-gtk/Makefile
  head/www/linux-c6-flashplugin11/Makefile
  head/www/linux-c6-qt47-webkit/Makefile
  head/www/linux-firefox/Makefile
  head/www/linux-opera/Makefile
  head/www/linux-seamonkey/Makefile
  head/x11-toolkits/linux-c6-gtk2/Makefile
  head/x11-toolkits/linux-c6-pango/Makefile
  head/x11-toolkits/linux-c6-qt47-x11/Makefile
  head/x11-toolkits/linux-f10-blt/Makefile
  head/x11-toolkits/linux-f10-gtk2/Makefile
  head/x11-toolkits/linux-f10-pango/Makefile
  head/x11-toolkits/linux-f10-qt45/Makefile

Modified: head/Mk/Uses/linux.mk
==============================================================================
--- head/Mk/Uses/linux.mk	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/Mk/Uses/linux.mk	Wed Sep  7 12:43:22 2016	(r421496)
@@ -138,16 +138,15 @@ linux_xorglibs_DEP=		linux-${linux_ARGS}
 
 USE_LINUX?=		base
 .for i in ${USE_LINUX}
-_i:=			${i:C/\:.*//}
-_i_args:=		${i:C/^[^\:]*(\:|\$)//:S/,/ /g}
+_i_args:=		${i:C/^[^:]*:?//:S/,/ /g}
 .if ${_i_args:Mpatch}
-PATCH_DEPENDS+=		${linux_${_i}_DEP}
+PATCH_DEPENDS+=		${linux_${i:C/:.*//}_DEP}
 .endif
 .if ${_i_args:Mbuild}
-BUILD_DEPENDS+=		${linux_${_i}_DEP}
+BUILD_DEPENDS+=		${linux_${i:C/:.*//}_DEP}
 .endif
 .if ${_i_args:Mrun} || empty(_i_args)
-RUN_DEPENDS+=		${linux_${_i}_DEP}
+RUN_DEPENDS+=		${linux_${i:C/:.*//}_DEP}
 .endif
 .endfor
 

Modified: head/astro/google-earth/Makefile
==============================================================================
--- head/astro/google-earth/Makefile	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/astro/google-earth/Makefile	Wed Sep  7 12:43:22 2016	(r421496)
@@ -2,6 +2,7 @@
 
 PORTNAME=	google-earth
 PORTVERSION=	7.1.5.1557
+PORTREVISION=	1
 PORTEPOCH=	3
 CATEGORIES=	astro deskutils geography
 MASTER_SITES=	http://dl.google.com/earth/client/advanced/previous/:previous \

Modified: head/audio/linux-c6-alsa-plugins-pulseaudio/Makefile
==============================================================================
--- head/audio/linux-c6-alsa-plugins-pulseaudio/Makefile	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/audio/linux-c6-alsa-plugins-pulseaudio/Makefile	Wed Sep  7 12:43:22 2016	(r421496)
@@ -3,6 +3,7 @@
 
 PORTNAME=	alsa-plugins-pulseaudio
 PORTVERSION=	1.1.0
+PORTREVISION=	1
 CATEGORIES=	audio linux
 
 MAINTAINER=	emulation at FreeBSD.org

Modified: head/audio/linux-c6-alsa-utils/Makefile
==============================================================================
--- head/audio/linux-c6-alsa-utils/Makefile	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/audio/linux-c6-alsa-utils/Makefile	Wed Sep  7 12:43:22 2016	(r421496)
@@ -3,6 +3,7 @@
 
 PORTNAME=	alsa-utils
 PORTVERSION=	1.1.0
+PORTREVISION=	1
 CATEGORIES=	audio linux
 
 MAINTAINER=	emulation at FreeBSD.org

Modified: head/audio/linux-c6-libsndfile/Makefile
==============================================================================
--- head/audio/linux-c6-libsndfile/Makefile	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/audio/linux-c6-libsndfile/Makefile	Wed Sep  7 12:43:22 2016	(r421496)
@@ -3,7 +3,7 @@
 
 PORTNAME=	libsndfile
 PORTVERSION=	1.0.20
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	audio linux
 
 MAINTAINER=	emulation at FreeBSD.org

Modified: head/audio/linux-c6-openal-soft/Makefile
==============================================================================
--- head/audio/linux-c6-openal-soft/Makefile	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/audio/linux-c6-openal-soft/Makefile	Wed Sep  7 12:43:22 2016	(r421496)
@@ -3,7 +3,7 @@
 
 PORTNAME=	openal-soft
 PORTVERSION=	1.12.854
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	audio linux
 MASTER_SITES=	EPEL
 

Modified: head/audio/linux-c6-pulseaudio-libs/Makefile
==============================================================================
--- head/audio/linux-c6-pulseaudio-libs/Makefile	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/audio/linux-c6-pulseaudio-libs/Makefile	Wed Sep  7 12:43:22 2016	(r421496)
@@ -3,7 +3,7 @@
 
 PORTNAME=	pulseaudio-libs
 PORTVERSION=	0.9.21
-PORTREVISION=	4
+PORTREVISION=	5
 CATEGORIES=	audio linux
 LIB_DISTFILES=	${DISTNAME}${EXTRACT_SUFX} \
 		${PORTNAME}-glib2-${PORTVERSION}-${RPMVERSION}${EXTRACT_SUFX}

Modified: head/audio/linux-c6-pulseaudio-utils/Makefile
==============================================================================
--- head/audio/linux-c6-pulseaudio-utils/Makefile	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/audio/linux-c6-pulseaudio-utils/Makefile	Wed Sep  7 12:43:22 2016	(r421496)
@@ -3,7 +3,7 @@
 
 PORTNAME=	pulseaudio-utils
 PORTVERSION=	0.9.21
-PORTREVISION=	3
+PORTREVISION=	4
 CATEGORIES=	audio linux
 
 MAINTAINER=	emulation at FreeBSD.org

Modified: head/audio/linux-c6-sdl_mixer/Makefile
==============================================================================
--- head/audio/linux-c6-sdl_mixer/Makefile	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/audio/linux-c6-sdl_mixer/Makefile	Wed Sep  7 12:43:22 2016	(r421496)
@@ -3,7 +3,7 @@
 
 PORTNAME=	sdl_mixer
 PORTVERSION=	1.2.12
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	audio linux
 MASTER_SITES=	EPEL
 DISTNAME=	${LINUX_NAME}-${PORTVERSION}-${RPMVERSION}

Modified: head/audio/linux-f10-openal-soft/Makefile
==============================================================================
--- head/audio/linux-f10-openal-soft/Makefile	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/audio/linux-f10-openal-soft/Makefile	Wed Sep  7 12:43:22 2016	(r421496)
@@ -3,7 +3,7 @@
 
 PORTNAME=	openal-soft
 PORTVERSION=	1.8.466
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	audio linux
 
 MAINTAINER=	mva at FreeBSD.org

Modified: head/audio/linux-f10-openal/Makefile
==============================================================================
--- head/audio/linux-f10-openal/Makefile	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/audio/linux-f10-openal/Makefile	Wed Sep  7 12:43:22 2016	(r421496)
@@ -3,6 +3,7 @@
 
 PORTNAME=	openal
 PORTVERSION=	0.0.9
+PORTREVISION=	1
 CATEGORIES=	audio linux
 
 MAINTAINER=	emulation at FreeBSD.org

Modified: head/audio/linux-f10-pulseaudio-libs/Makefile
==============================================================================
--- head/audio/linux-f10-pulseaudio-libs/Makefile	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/audio/linux-f10-pulseaudio-libs/Makefile	Wed Sep  7 12:43:22 2016	(r421496)
@@ -3,6 +3,7 @@
 
 PORTNAME=	pulseaudio-libs
 PORTVERSION=	0.9.14
+PORTREVISION=	1
 CATEGORIES=	audio linux
 MASTER_SITES=	LOCAL/netchild/rpms/fedora10
 

Modified: head/audio/linux-f10-sdl_mixer/Makefile
==============================================================================
--- head/audio/linux-f10-sdl_mixer/Makefile	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/audio/linux-f10-sdl_mixer/Makefile	Wed Sep  7 12:43:22 2016	(r421496)
@@ -3,7 +3,7 @@
 
 PORTNAME=	sdl_mixer
 PORTVERSION=	1.2.8
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	audio linux
 DISTNAME=	SDL_mixer-${PORTVERSION}-${RPMVERSION}
 

Modified: head/cad/linux-eagle5/Makefile
==============================================================================
--- head/cad/linux-eagle5/Makefile	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/cad/linux-eagle5/Makefile	Wed Sep  7 12:43:22 2016	(r421496)
@@ -3,7 +3,7 @@
 
 PORTNAME=	eagle5
 PORTVERSION=	${EAGLEVERSION}
-PORTREVISION=	4
+PORTREVISION=	5
 CATEGORIES=	cad linux
 MASTER_SITES=	ftp://ftp.cadsoft.de/eagle/program/${EAGLEBASEVERSION}/
 PKGNAMEPREFIX=	linux-

Modified: head/devel/linux-c6-dbus-glib/Makefile
==============================================================================
--- head/devel/linux-c6-dbus-glib/Makefile	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/devel/linux-c6-dbus-glib/Makefile	Wed Sep  7 12:43:22 2016	(r421496)
@@ -3,7 +3,7 @@
 
 PORTNAME=	dbus-glib
 PORTVERSION=	0.86
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	devel linux
 
 MAINTAINER=	emulation at FreeBSD.org

Modified: head/devel/linux-c6-qt47/Makefile
==============================================================================
--- head/devel/linux-c6-qt47/Makefile	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/devel/linux-c6-qt47/Makefile	Wed Sep  7 12:43:22 2016	(r421496)
@@ -3,7 +3,7 @@
 
 PORTNAME=	qt47
 PORTVERSION=	4.7.2
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	devel linux
 MASTER_SITES=	https://www.mirrorservice.org/sites/dl.atrpms.net/el6-i386/atrpms/testing/ \
 		https://www.mirrorservice.org/sites/dl.atrpms.net/el6-x86_64/atrpms/testing/ \

Modified: head/devel/linux-f10-dbus-glib/Makefile
==============================================================================
--- head/devel/linux-f10-dbus-glib/Makefile	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/devel/linux-f10-dbus-glib/Makefile	Wed Sep  7 12:43:22 2016	(r421496)
@@ -3,7 +3,7 @@
 
 PORTNAME=	dbus-glib
 PORTVERSION=	0.76
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	devel linux
 
 MAINTAINER=	emulation at FreeBSD.org

Modified: head/editors/komodo-edit/Makefile
==============================================================================
--- head/editors/komodo-edit/Makefile	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/editors/komodo-edit/Makefile	Wed Sep  7 12:43:22 2016	(r421496)
@@ -3,6 +3,7 @@
 
 PORTNAME=	komodo-edit
 PORTVERSION=	6.1.3
+PORTREVISION=	1
 CATEGORIES=	editors
 MASTER_SITES=	http://downloads.activestate.com/Komodo/releases/archive/6.x/${PORTVERSION}/
 DISTNAME=	Komodo-Edit-${PORTVERSION}-8844-linux-libcpp6-x86

Modified: head/editors/linux-sublime/Makefile
==============================================================================
--- head/editors/linux-sublime/Makefile	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/editors/linux-sublime/Makefile	Wed Sep  7 12:43:22 2016	(r421496)
@@ -3,7 +3,7 @@
 
 PORTNAME=	sublime
 PORTVERSION=	2.0.2
-PORTREVISION=	4
+PORTREVISION=	5
 CATEGORIES=	editors linux
 MASTER_SITES=	http://c758482.r82.cf2.rackcdn.com/
 DISTNAME=	Sublime%20Text%202.0.2

Modified: head/editors/linux-sublime3/Makefile
==============================================================================
--- head/editors/linux-sublime3/Makefile	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/editors/linux-sublime3/Makefile	Wed Sep  7 12:43:22 2016	(r421496)
@@ -3,7 +3,7 @@
 
 PORTNAME=	sublime
 PORTVERSION=	3.0.83
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	editors linux
 MASTER_SITES=	http://c758482.r82.cf2.rackcdn.com/
 PKGNAMEPREFIX=	linux-

Modified: head/ftp/linux-c6-curl/Makefile
==============================================================================
--- head/ftp/linux-c6-curl/Makefile	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/ftp/linux-c6-curl/Makefile	Wed Sep  7 12:43:22 2016	(r421496)
@@ -3,7 +3,7 @@
 
 PORTNAME=	curl
 PORTVERSION=	7.19.7
-PORTREVISION=	6
+PORTREVISION=	7
 CATEGORIES=	ftp linux
 LIB_DISTFILES=	lib${DISTNAME}${EXTRACT_SUFX}
 SRC_DISTFILES=	${DISTNAME}${SRC_SUFX}:SOURCE

Modified: head/ftp/linux-f10-curl/Makefile
==============================================================================
--- head/ftp/linux-f10-curl/Makefile	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/ftp/linux-f10-curl/Makefile	Wed Sep  7 12:43:22 2016	(r421496)
@@ -3,7 +3,7 @@
 
 PORTNAME=	curl
 PORTVERSION=	7.19.6
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	ftp linux
 LIB_DISTFILES=	lib${DISTNAME}${EXTRACT_SUFX}
 SRC_DISTFILES=	${DISTNAME}${SRC_SUFX}:SOURCE

Modified: head/games/adom/Makefile
==============================================================================
--- head/games/adom/Makefile	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/games/adom/Makefile	Wed Sep  7 12:43:22 2016	(r421496)
@@ -3,7 +3,7 @@
 
 PORTNAME=	adom
 PORTVERSION=	1.1.1
-PORTREVISION=	4
+PORTREVISION=	5
 CATEGORIES=	games linux
 MASTER_SITES=	http://www.adom.de/adom/download/linux/
 DISTNAME=	${PORTNAME}-${PORTVERSION:S/.//g}-elf

Modified: head/games/arkanoidsb/Makefile
==============================================================================
--- head/games/arkanoidsb/Makefile	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/games/arkanoidsb/Makefile	Wed Sep  7 12:43:22 2016	(r421496)
@@ -3,7 +3,7 @@
 
 PORTNAME=	arkanoidsb
 PORTVERSION=	1.3.2.10
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	games
 MASTER_SITES=	http://www.tinyorange.com/downloads/
 

Modified: head/games/dsnake/Makefile
==============================================================================
--- head/games/dsnake/Makefile	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/games/dsnake/Makefile	Wed Sep  7 12:43:22 2016	(r421496)
@@ -3,7 +3,7 @@
 
 PORTNAME=	dsnake
 PORTVERSION=	3.0.0
-PORTREVISION=	3
+PORTREVISION=	4
 CATEGORIES=	games linux
 MASTER_SITES=	http://bitblaze.com/downloads/
 DISTNAME=	${PORTNAME}-linux-${PORTVERSION}

Modified: head/games/gish-demo/Makefile
==============================================================================
--- head/games/gish-demo/Makefile	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/games/gish-demo/Makefile	Wed Sep  7 12:43:22 2016	(r421496)
@@ -3,6 +3,7 @@
 
 PORTNAME=	gish-demo
 PORTVERSION=	1.60
+PORTREVISION=	1
 CATEGORIES=	games linux
 MASTER_SITES=	http://s159260531.onlinehome.us/demos/
 DISTNAME=	gishdemo

Modified: head/games/linux-darwinia-demo/Makefile
==============================================================================
--- head/games/linux-darwinia-demo/Makefile	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/games/linux-darwinia-demo/Makefile	Wed Sep  7 12:43:22 2016	(r421496)
@@ -2,6 +2,7 @@
 
 PORTNAME=	darwinia-demo
 PORTVERSION=	1.3.0
+PORTREVISION=	1
 CATEGORIES=	games linux
 MASTER_SITES=	http://download.introversion.co.uk/mirror/introversion/darwinia/downloads/
 PKGNAMEPREFIX=	linux-

Modified: head/games/linux-defcon/Makefile
==============================================================================
--- head/games/linux-defcon/Makefile	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/games/linux-defcon/Makefile	Wed Sep  7 12:43:22 2016	(r421496)
@@ -3,6 +3,7 @@
 
 PORTNAME=	defcon
 PORTVERSION=	1.42
+PORTREVISION=	1
 CATEGORIES=	games linux
 MASTER_SITES=	http://download.introversion.co.uk/defcon/linux/
 PKGNAMEPREFIX=	linux-

Modified: head/games/linux-doom3-demo/Makefile
==============================================================================
--- head/games/linux-doom3-demo/Makefile	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/games/linux-doom3-demo/Makefile	Wed Sep  7 12:43:22 2016	(r421496)
@@ -3,7 +3,7 @@
 
 PORTNAME=	doom3-demo
 PORTVERSION=	1.1.1286
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	games linux
 MASTER_SITES=	http://www.hup.hu/~trey/DOOM3/ \
 		http://darkstar.ist.utl.pt/pub/games/ \

Modified: head/games/linux-enemyterritory/Makefile
==============================================================================
--- head/games/linux-enemyterritory/Makefile	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/games/linux-enemyterritory/Makefile	Wed Sep  7 12:43:22 2016	(r421496)
@@ -3,7 +3,7 @@
 
 PORTNAME=	enemyterritory
 PORTVERSION=	2.60b
-PORTREVISION=	3
+PORTREVISION=	4
 CATEGORIES=	games linux
 MASTER_SITES=	IDSOFTWARE/et/:patch \
 		IDSOFTWARE/et/linux/:full

Modified: head/games/linux-nerogame/Makefile
==============================================================================
--- head/games/linux-nerogame/Makefile	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/games/linux-nerogame/Makefile	Wed Sep  7 12:43:22 2016	(r421496)
@@ -3,6 +3,7 @@
 
 PORTNAME=	nerogame
 PORTVERSION=	2.0
+PORTREVISION=	1
 CATEGORIES=	games linux
 MASTER_SITES=	http://nn.cs.utexas.edu/nero/downloads/
 PKGNAMEPREFIX=	linux-

Modified: head/games/linux-nwnclient/Makefile
==============================================================================
--- head/games/linux-nwnclient/Makefile	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/games/linux-nwnclient/Makefile	Wed Sep  7 12:43:22 2016	(r421496)
@@ -3,7 +3,7 @@
 
 PORTNAME=	nwnclient
 PORTVERSION=	1.69
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	games linux
 MASTER_SITES=	http://na.llnet.bioware.cdn.ea.com/u/f/eagames/bioware/neverwinternights/updates/linux/${PORTVERSION:S/.//}/:CLIENT \
 		http://nwdownloads.bioware.com/neverwinternights/linux/129/:ORIG \

Modified: head/games/linux-rtcw/Makefile
==============================================================================
--- head/games/linux-rtcw/Makefile	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/games/linux-rtcw/Makefile	Wed Sep  7 12:43:22 2016	(r421496)
@@ -3,7 +3,7 @@
 
 PORTNAME=	rtcw
 DISTVERSION=	1.41b
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	games linux
 MASTER_SITES=	IDSOFTWARE/wolf/linux
 PKGNAMEPREFIX=	linux-

Modified: head/games/linux-ssamtfe/Makefile
==============================================================================
--- head/games/linux-ssamtfe/Makefile	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/games/linux-ssamtfe/Makefile	Wed Sep  7 12:43:22 2016	(r421496)
@@ -3,6 +3,7 @@
 
 PORTNAME=	ssamtfe
 PORTVERSION=	1.05b3
+PORTREVISION=	1
 CATEGORIES=	games linux
 MASTER_SITES=	http://home.coc-ag.de/dressler-ro/liflg/files/final/ \
 		http://bsd-geek.de/FreeBSD/distfiles/

Modified: head/games/linux-ssamtse/Makefile
==============================================================================
--- head/games/linux-ssamtse/Makefile	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/games/linux-ssamtse/Makefile	Wed Sep  7 12:43:22 2016	(r421496)
@@ -3,6 +3,7 @@
 
 PORTNAME=	ssamtse
 PORTVERSION=	1.07b1
+PORTREVISION=	1
 CATEGORIES=	games linux
 MASTER_SITES=	http://home.coc-ag.de/dressler-ro/liflg/files/final/ \
 		http://bsd-geek.de/FreeBSD/distfiles/

Modified: head/games/linux-unigine-heaven/Makefile
==============================================================================
--- head/games/linux-unigine-heaven/Makefile	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/games/linux-unigine-heaven/Makefile	Wed Sep  7 12:43:22 2016	(r421496)
@@ -3,6 +3,7 @@
 
 PORTNAME=	unigine-heaven
 PORTVERSION=	4.0
+PORTREVISION=	1
 CATEGORIES=	games benchmarks linux
 MASTER_SITES=	http://de1-dl.techpowerup.com/Benchmarking/ \
 		http://nl1-dl.techpowerup.com/Benchmarking/ \

Modified: head/games/linux-unigine-valley/Makefile
==============================================================================
--- head/games/linux-unigine-valley/Makefile	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/games/linux-unigine-valley/Makefile	Wed Sep  7 12:43:22 2016	(r421496)
@@ -3,6 +3,7 @@
 
 PORTNAME=	unigine-valley
 PORTVERSION=	1.0
+PORTREVISION=	1
 CATEGORIES=	games benchmarks linux
 MASTER_SITES=	http://de1-dl.techpowerup.com/Benchmarking/ \
 		http://nl1-dl.techpowerup.com/Benchmarking/ \

Modified: head/games/linux-uplink-demo/Makefile
==============================================================================
--- head/games/linux-uplink-demo/Makefile	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/games/linux-uplink-demo/Makefile	Wed Sep  7 12:43:22 2016	(r421496)
@@ -3,6 +3,7 @@
 
 PORTNAME=	uplink-demo
 PORTVERSION=	1.55
+PORTREVISION=	1
 CATEGORIES=	games linux
 MASTER_SITES=	http://www.introversion.co.uk/uplink/downloads/
 PKGNAMEPREFIX=	linux-

Modified: head/games/linux-ut/Makefile
==============================================================================
--- head/games/linux-ut/Makefile	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/games/linux-ut/Makefile	Wed Sep  7 12:43:22 2016	(r421496)
@@ -3,7 +3,7 @@
 
 PORTNAME=	linux-ut
 PORTVERSION=	${UTVERSION}
-PORTREVISION=	4
+PORTREVISION=	5
 PORTEPOCH=	1
 CATEGORIES=	games linux
 MASTER_SITES=	http://liflg.holarse-linuxgaming.de/files/final/:p436 \

Modified: head/games/linux-ut2003-demo/Makefile
==============================================================================
--- head/games/linux-ut2003-demo/Makefile	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/games/linux-ut2003-demo/Makefile	Wed Sep  7 12:43:22 2016	(r421496)
@@ -3,6 +3,7 @@
 
 PORTNAME=	ut2003-demo
 PORTVERSION=	2206
+PORTREVISION=	1
 CATEGORIES=	games linux
 MASTER_SITES=	GENTOO
 PKGNAMEPREFIX=	linux-

Modified: head/games/linux-virtual-jay-peak/Makefile
==============================================================================
--- head/games/linux-virtual-jay-peak/Makefile	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/games/linux-virtual-jay-peak/Makefile	Wed Sep  7 12:43:22 2016	(r421496)
@@ -3,7 +3,7 @@
 
 PORTNAME=	virtual-jay-peak
 PORTVERSION=	1.1a
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	games linux
 MASTER_SITES=	http://www.soulride.com/products/images/
 PKGNAMEPREFIX=	linux-

Modified: head/games/linux-worldofgoo-demo/Makefile
==============================================================================
--- head/games/linux-worldofgoo-demo/Makefile	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/games/linux-worldofgoo-demo/Makefile	Wed Sep  7 12:43:22 2016	(r421496)
@@ -3,7 +3,7 @@
 
 PORTNAME=	worldofgoo
 PORTVERSION=	1.41
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	games linux
 MASTER_SITES=	http://freebsd.nsu.ru/distfiles/
 PKGNAMEPREFIX=	linux-

Modified: head/graphics/linux-c6-cairo/Makefile
==============================================================================
--- head/graphics/linux-c6-cairo/Makefile	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/graphics/linux-c6-cairo/Makefile	Wed Sep  7 12:43:22 2016	(r421496)
@@ -3,7 +3,7 @@
 
 PORTNAME=	cairo
 PORTVERSION=	1.8.8
-PORTREVISION=	5
+PORTREVISION=	6
 CATEGORIES=	graphics linux
 
 MAINTAINER=	emulation at FreeBSD.org

Modified: head/graphics/linux-c6-gdk-pixbuf2/Makefile
==============================================================================
--- head/graphics/linux-c6-gdk-pixbuf2/Makefile	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/graphics/linux-c6-gdk-pixbuf2/Makefile	Wed Sep  7 12:43:22 2016	(r421496)
@@ -3,7 +3,7 @@
 
 PORTNAME=	gdk-pixbuf2
 PORTVERSION=	2.24.1
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	graphics linux
 
 MAINTAINER=	emulation at FreeBSD.org

Modified: head/graphics/linux-c6-glx-utils/Makefile
==============================================================================
--- head/graphics/linux-c6-glx-utils/Makefile	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/graphics/linux-c6-glx-utils/Makefile	Wed Sep  7 12:43:22 2016	(r421496)
@@ -3,6 +3,7 @@
 
 PORTNAME=	glx-utils
 PORTVERSION=	11.0.7
+PORTREVISION=	1
 CATEGORIES=	graphics linux
 
 MAINTAINER=	emulation at FreeBSD.org

Modified: head/graphics/linux-c6-sdl_image/Makefile
==============================================================================
--- head/graphics/linux-c6-sdl_image/Makefile	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/graphics/linux-c6-sdl_image/Makefile	Wed Sep  7 12:43:22 2016	(r421496)
@@ -3,7 +3,7 @@
 
 PORTNAME=	sdl_image
 PORTVERSION=	1.2.12
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	graphics linux
 MASTER_SITES=	EPEL
 DISTNAME=	${LINUX_NAME}-${PORTVERSION}-${RPMVERSION}

Modified: head/graphics/linux-c6-sdl_ttf/Makefile
==============================================================================
--- head/graphics/linux-c6-sdl_ttf/Makefile	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/graphics/linux-c6-sdl_ttf/Makefile	Wed Sep  7 12:43:22 2016	(r421496)
@@ -3,7 +3,7 @@
 
 PORTNAME=	sdl_ttf
 PORTVERSION=	2.0.11
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	graphics linux
 MASTER_SITES=	EPEL
 DISTNAME=	${LINUX_NAME}-${PORTVERSION}-${RPMVERSION}

Modified: head/graphics/linux-f10-cairo/Makefile
==============================================================================
--- head/graphics/linux-f10-cairo/Makefile	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/graphics/linux-f10-cairo/Makefile	Wed Sep  7 12:43:22 2016	(r421496)
@@ -3,7 +3,7 @@
 
 PORTNAME=	cairo
 PORTVERSION=	1.8.0
-PORTREVISION=	3
+PORTREVISION=	4
 CATEGORIES=	graphics linux
 
 MAINTAINER=	emulation at FreeBSD.org

Modified: head/graphics/linux-f10-sdl_image/Makefile
==============================================================================
--- head/graphics/linux-f10-sdl_image/Makefile	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/graphics/linux-f10-sdl_image/Makefile	Wed Sep  7 12:43:22 2016	(r421496)
@@ -3,7 +3,7 @@
 
 PORTNAME=	sdl_image
 PORTVERSION=	1.2.6
-PORTREVISION=	3
+PORTREVISION=	4
 CATEGORIES=	graphics linux
 DISTNAME=	SDL_image-${PORTVERSION}-${RPMVERSION}
 

Modified: head/mail/linux-thunderbird/Makefile
==============================================================================
--- head/mail/linux-thunderbird/Makefile	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/mail/linux-thunderbird/Makefile	Wed Sep  7 12:43:22 2016	(r421496)
@@ -3,6 +3,7 @@
 
 PORTNAME=	thunderbird
 DISTVERSION=	45.2.0
+PORTREVISION=	1
 CATEGORIES=	mail news net-im ipv6
 MASTER_SITES=	MOZILLA/${PORTNAME}/releases/${DISTVERSION}/linux-i686/en-US \
 		MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build1/linux-i686/en-US

Modified: head/math/matlab-installer/Makefile
==============================================================================
--- head/math/matlab-installer/Makefile	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/math/matlab-installer/Makefile	Wed Sep  7 12:43:22 2016	(r421496)
@@ -3,7 +3,7 @@
 
 PORTNAME=	matlab-installer
 PORTVERSION=	0.2
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	math science java
 MASTER_SITES=	http://acadix.biz/Ports/distfiles/
 

Modified: head/net-im/linux-instantbird/Makefile
==============================================================================
--- head/net-im/linux-instantbird/Makefile	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/net-im/linux-instantbird/Makefile	Wed Sep  7 12:43:22 2016	(r421496)
@@ -3,6 +3,7 @@
 PORTNAME=	instantbird
 DISTVERSION=	1.5
 DISTVERSIONSUFFIX=.${LOCALE}.linux-i686
+PORTREVISION=	1
 CATEGORIES=	net-im irc ipv6
 MASTER_SITES=	http://ftp.instantbird.com/instantbird/releases/${DISTVERSION}/ \
 		GOOGLE_CODE

Modified: head/net-im/qq/Makefile
==============================================================================
--- head/net-im/qq/Makefile	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/net-im/qq/Makefile	Wed Sep  7 12:43:22 2016	(r421496)
@@ -3,7 +3,7 @@
 
 PORTNAME=	qq
 DISTVERSION=	v1.0.2-beta1_i386
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	net-im
 MASTER_SITES=	http://dl_dir.qq.com/linuxqq/
 DISTNAME=	linuxqq_${DISTVERSION}

Modified: head/net-im/skype-devel/Makefile
==============================================================================
--- head/net-im/skype-devel/Makefile	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/net-im/skype-devel/Makefile	Wed Sep  7 12:43:22 2016	(r421496)
@@ -3,7 +3,7 @@
 
 PORTNAME=	skype
 PORTVERSION=	2.2.0.35
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	net-im
 MASTER_SITES=	http://download.skype.com/linux/
 PKGNAMESUFFIX=	-devel

Modified: head/net-im/skype/Makefile
==============================================================================
--- head/net-im/skype/Makefile	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/net-im/skype/Makefile	Wed Sep  7 12:43:22 2016	(r421496)
@@ -3,7 +3,7 @@
 
 PORTNAME=	skype
 PORTVERSION=	2.1.0.81
-PORTREVISION=	1
+PORTREVISION=	2
 PORTEPOCH=	1
 CATEGORIES=	net-im
 MASTER_SITES=	http://download.skype.com/linux/

Modified: head/net-im/skype4/Makefile
==============================================================================
--- head/net-im/skype4/Makefile	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/net-im/skype4/Makefile	Wed Sep  7 12:43:22 2016	(r421496)
@@ -3,7 +3,7 @@
 
 PORTNAME=	skype
 PORTVERSION=	4.3.0.37
-PORTREVISION=	3
+PORTREVISION=	4
 PORTEPOCH=	1
 CATEGORIES=	net-im
 MASTER_SITES=	http://download.skype.com/linux/

Modified: head/net-im/yoono/Makefile
==============================================================================
--- head/net-im/yoono/Makefile	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/net-im/yoono/Makefile	Wed Sep  7 12:43:22 2016	(r421496)
@@ -3,6 +3,7 @@
 
 PORTNAME=	yoono
 PORTVERSION=	1.8.43
+PORTREVISION=	1
 #PORTREVISION=	0
 CATEGORIES=	net-im
 MASTER_SITES=	http://cdn.yoono.com/desktop/

Modified: head/net/citrix_ica/Makefile
==============================================================================
--- head/net/citrix_ica/Makefile	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/net/citrix_ica/Makefile	Wed Sep  7 12:43:22 2016	(r421496)
@@ -3,7 +3,7 @@
 
 PORTNAME=	citrix_ica
 PORTVERSION=	13.3.0
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	net comms linux
 MASTER_SITES=	#
 DISTNAME=	linuxx86-${PORTVERSION}.344519

Modified: head/print/foxitreader/Makefile
==============================================================================
--- head/print/foxitreader/Makefile	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/print/foxitreader/Makefile	Wed Sep  7 12:43:22 2016	(r421496)
@@ -3,7 +3,7 @@
 
 PORTNAME=	foxitreader
 PORTVERSION=	1.1.0
-PORTREVISION=	3
+PORTREVISION=	4
 CATEGORIES=	print
 MASTER_SITES=	http://cdn04.foxitsoftware.com/pub/foxit/reader/desktop/linux/1.x/${PORTVERSION:R}/enu/:reader
 

Modified: head/security/linux-c6-gnutls/Makefile
==============================================================================
--- head/security/linux-c6-gnutls/Makefile	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/security/linux-c6-gnutls/Makefile	Wed Sep  7 12:43:22 2016	(r421496)
@@ -3,7 +3,7 @@
 
 PORTNAME=	gnutls
 PORTVERSION=	2.8.5
-PORTREVISION=	3
+PORTREVISION=	4
 CATEGORIES=	security linux
 
 MAINTAINER=	emulation at FreeBSD.org

Modified: head/security/linux-c6-nss/Makefile
==============================================================================
--- head/security/linux-c6-nss/Makefile	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/security/linux-c6-nss/Makefile	Wed Sep  7 12:43:22 2016	(r421496)
@@ -3,7 +3,7 @@
 
 PORTNAME=	nss
 PORTVERSION=	3.21.0
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	security linux
 LIB_DISTFILES=	${DISTNAME}${EXTRACT_SUFX} \
 		nss-util-${PORTVERSION}-2.el6${EXTRACT_SUFX} \

Modified: head/security/linux-f10-gnutls/Makefile
==============================================================================
--- head/security/linux-f10-gnutls/Makefile	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/security/linux-f10-gnutls/Makefile	Wed Sep  7 12:43:22 2016	(r421496)
@@ -3,7 +3,7 @@
 
 PORTNAME=	gnutls
 PORTVERSION=	2.4.2
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	security linux
 
 MAINTAINER=	emulation at FreeBSD.org

Modified: head/security/linux-f10-nss/Makefile
==============================================================================
--- head/security/linux-f10-nss/Makefile	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/security/linux-f10-nss/Makefile	Wed Sep  7 12:43:22 2016	(r421496)
@@ -3,7 +3,7 @@
 
 PORTNAME=	nss
 PORTVERSION=	3.12.3.99.3
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	security linux
 
 MAINTAINER=	emulation at FreeBSD.org

Modified: head/sysutils/linux-crashplan/Makefile
==============================================================================
--- head/sysutils/linux-crashplan/Makefile	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/sysutils/linux-crashplan/Makefile	Wed Sep  7 12:43:22 2016	(r421496)
@@ -3,7 +3,7 @@
 
 PORTNAME=	crashplan
 DISTVERSION=	4.7.0
-PORTREVISION=	0
+PORTREVISION=	1
 CATEGORIES=	sysutils java linux
 MASTER_SITES=	https://download.code42.com/installs/linux/install/CrashPlan/
 PKGNAMEPREFIX=	linux-

Modified: head/textproc/linux-f10-scim-gtk/Makefile
==============================================================================
--- head/textproc/linux-f10-scim-gtk/Makefile	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/textproc/linux-f10-scim-gtk/Makefile	Wed Sep  7 12:43:22 2016	(r421496)
@@ -3,7 +3,7 @@
 
 PORTNAME=	scim-gtk
 PORTVERSION=	1.4.7
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	textproc linux
 
 MAINTAINER=	emulation at FreeBSD.org

Modified: head/www/linux-c6-flashplugin11/Makefile
==============================================================================
--- head/www/linux-c6-flashplugin11/Makefile	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/www/linux-c6-flashplugin11/Makefile	Wed Sep  7 12:43:22 2016	(r421496)
@@ -3,7 +3,7 @@
 
 PORTNAME=	flashplugin
 PORTVERSION=	11.2r202.632
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	www multimedia linux
 MASTER_SITES=	http://fpdownload.macromedia.com/get/flashplayer/pdc/${PORTVERSION:S/r/./}/:plugin \
 		LOCAL/nox:suplib

Modified: head/www/linux-c6-qt47-webkit/Makefile
==============================================================================
--- head/www/linux-c6-qt47-webkit/Makefile	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/www/linux-c6-qt47-webkit/Makefile	Wed Sep  7 12:43:22 2016	(r421496)
@@ -3,7 +3,7 @@
 
 PORTNAME=	qt47-webkit
 PORTVERSION=	4.7.2
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	www linux
 MASTER_SITES=	https://www.mirrorservice.org/sites/dl.atrpms.net/el6-i386/atrpms/testing/ \
 		https://www.mirrorservice.org/sites/dl.atrpms.net/el6-x86_64/atrpms/testing/ \

Modified: head/www/linux-firefox/Makefile
==============================================================================
--- head/www/linux-firefox/Makefile	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/www/linux-firefox/Makefile	Wed Sep  7 12:43:22 2016	(r421496)
@@ -4,6 +4,7 @@
 PORTNAME=	firefox
 DISTVERSION=	45.4.0
 DISTVERSIONSUFFIX=esr
+PORTREVISION=	1
 PORTEPOCH=	2
 CATEGORIES=	www ipv6
 MASTER_SITES=	MOZILLA/${PORTNAME}/releases/${DISTVERSION}esr/linux-i686/en-US \

Modified: head/www/linux-opera/Makefile
==============================================================================
--- head/www/linux-opera/Makefile	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/www/linux-opera/Makefile	Wed Sep  7 12:43:22 2016	(r421496)
@@ -2,6 +2,7 @@
 
 PORTNAME=	opera
 PORTVERSION=	${OPERA_VER}
+PORTREVISION=	1
 CATEGORIES=	www linux
 MASTER_SITES=	ftp://ftp.opera.com/pub/opera/linux/${OPERA_VER:S/.//}/ \
 		ftp://ftp.sunet.se/pub/www/clients/Opera/linux/${OPERA_VER:S/.//}/ \

Modified: head/www/linux-seamonkey/Makefile
==============================================================================
--- head/www/linux-seamonkey/Makefile	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/www/linux-seamonkey/Makefile	Wed Sep  7 12:43:22 2016	(r421496)
@@ -3,6 +3,7 @@
 
 PORTNAME=	seamonkey
 DISTVERSION=	2.39
+PORTREVISION=	1
 CATEGORIES=	www mail news editors irc ipv6
 MASTER_SITES=	MOZILLA/${PORTNAME}/releases/${DISTVERSION}/linux-i686/en-US \
 		MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build1/linux-i686/en-US

Modified: head/x11-toolkits/linux-c6-gtk2/Makefile
==============================================================================
--- head/x11-toolkits/linux-c6-gtk2/Makefile	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/x11-toolkits/linux-c6-gtk2/Makefile	Wed Sep  7 12:43:22 2016	(r421496)
@@ -3,7 +3,7 @@
 
 PORTNAME=	gtk2
 PORTVERSION=	2.24.23
-PORTREVISION=	4
+PORTREVISION=	5
 CATEGORIES=	x11-toolkits linux
 LIB_DISTFILES=	${DISTNAME}${EXTRACT_SUFX} \
 		${PORTNAME}-engines-2.18.4-5.el6.centos${EXTRACT_SUFX} \

Modified: head/x11-toolkits/linux-c6-pango/Makefile
==============================================================================
--- head/x11-toolkits/linux-c6-pango/Makefile	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/x11-toolkits/linux-c6-pango/Makefile	Wed Sep  7 12:43:22 2016	(r421496)
@@ -3,7 +3,7 @@
 
 PORTNAME=	pango
 PORTVERSION=	1.28.1
-PORTREVISION=	4
+PORTREVISION=	5
 CATEGORIES=	x11-toolkits linux
 
 MAINTAINER=	emulation at FreeBSD.org

Modified: head/x11-toolkits/linux-c6-qt47-x11/Makefile
==============================================================================
--- head/x11-toolkits/linux-c6-qt47-x11/Makefile	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/x11-toolkits/linux-c6-qt47-x11/Makefile	Wed Sep  7 12:43:22 2016	(r421496)
@@ -3,7 +3,7 @@
 
 PORTNAME=	qt47-x11
 PORTVERSION=	4.7.2
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	x11-toolkits linux
 MASTER_SITES=	https://www.mirrorservice.org/sites/dl.atrpms.net/el6-x86_64/atrpms/testing/\
 		https://www.mirrorservice.org/sites/dl.atrpms.net/el6-i386/atrpms/testing/ \

Modified: head/x11-toolkits/linux-f10-blt/Makefile
==============================================================================
--- head/x11-toolkits/linux-f10-blt/Makefile	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/x11-toolkits/linux-f10-blt/Makefile	Wed Sep  7 12:43:22 2016	(r421496)
@@ -3,7 +3,7 @@
 
 PORTNAME=	blt
 PORTVERSION=	2.4
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	x11-toolkits linux
 
 MAINTAINER=	devel at stasyan.com

Modified: head/x11-toolkits/linux-f10-gtk2/Makefile
==============================================================================
--- head/x11-toolkits/linux-f10-gtk2/Makefile	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/x11-toolkits/linux-f10-gtk2/Makefile	Wed Sep  7 12:43:22 2016	(r421496)
@@ -3,7 +3,7 @@
 
 PORTNAME=	gtk2
 PORTVERSION=	2.14.7
-PORTREVISION=	5
+PORTREVISION=	6
 CATEGORIES=	x11-toolkits linux
 BIN_DISTFILES=	${DISTNAME}${EXTRACT_SUFX} \
 		${PORTNAME}-engines-2.16.1-1.fc10${EXTRACT_SUFX} \

Modified: head/x11-toolkits/linux-f10-pango/Makefile
==============================================================================
--- head/x11-toolkits/linux-f10-pango/Makefile	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/x11-toolkits/linux-f10-pango/Makefile	Wed Sep  7 12:43:22 2016	(r421496)
@@ -3,7 +3,7 @@
 
 PORTNAME=	pango
 PORTVERSION=	1.28.3
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	x11-toolkits linux
 MASTER_SITES=	LOCAL/netchild/rpms/fedora10
 

Modified: head/x11-toolkits/linux-f10-qt45/Makefile
==============================================================================
--- head/x11-toolkits/linux-f10-qt45/Makefile	Wed Sep  7 12:27:53 2016	(r421495)
+++ head/x11-toolkits/linux-f10-qt45/Makefile	Wed Sep  7 12:43:22 2016	(r421496)
@@ -2,6 +2,7 @@
 
 PORTNAME=	qt45
 PORTVERSION=	4.5.3
+PORTREVISION=	1
 CATEGORIES=	x11-toolkits linux
 MASTER_SITES=	http://archives.fedoraproject.org/pub/archive/fedora/linux/updates/10/i386/ \
 		http://archives.fedoraproject.org/pub/archive/fedora/linux/updates/10/SRPMS/


More information about the svn-ports-head mailing list