diff options
author | Niclas Zeising <zeising@FreeBSD.org> | 2014-04-17 02:28:47 +0800 |
---|---|---|
committer | Niclas Zeising <zeising@FreeBSD.org> | 2014-04-17 02:28:47 +0800 |
commit | 39fc32e82863cce17f070122d498ce82cf7ea7af (patch) | |
tree | fc8323f5d400038235fda42a6096107239789049 | |
parent | ca9574e7df6ddd6a18e6234bc0f210d734a2d092 (diff) | |
download | freebsd-ports-gnome-39fc32e82863cce17f070122d498ce82cf7ea7af.tar.gz freebsd-ports-gnome-39fc32e82863cce17f070122d498ce82cf7ea7af.tar.zst freebsd-ports-gnome-39fc32e82863cce17f070122d498ce82cf7ea7af.zip |
The FreeBSD x11@ and graphics team proudly presents
a zeising, kwm production, with help from dumbbell, bdrewery:
NEW XORG ON FREEBSD 9-STABLE AND 10-STABLE
This update switches over to use the new xorg stack by default on FreeBSD 9
and 10 stable, on osversions where vt(9) is available.
It is still possible to use the old stack by specifying WITHOUT_NEW_XORG in
/etc/make.conf .
FreeBSD 8-STABLE and released versions of FreeBSD still use
the old version.
A package repository with binary packages for new xorg will
be available soon.
This patch also contains updates of libxcb and related ports, pixman, as well
as some drivers and utilities.
Bump portrevisions for xf86-* ports, as well as virtualbox-ose-additions due
to xserver version change.
Apart from these updates, the way shared libraries are handled has been
changed for all xorg ports, as well as libxml2 and freetype, which means
ltverhack is gone and as a consequence shared libraries have been bumped.
The plan is that this change will make library bumps less likely in the
future.
All affected ports have had their portrevisions bumped as a consequence of
this.
Fix some issues where WITH_NEW_XORG weren't detected properly on CURRENT.
Update instructions, hardware support, and more notes can be found on
https://wiki.freebsd.org/Graphics
Thanks to: all testers, bdrewery and the FreeBSD x11@ team
exp-run by: bdrewery [1]
PR: ports/187602 [1]
Approved by: portmgr (bdrewery), core (jhb)
1008 files changed, 1452 insertions, 1002 deletions
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk index 6bdf841c358f..3709d7d06a00 100644 --- a/Mk/bsd.port.mk +++ b/Mk/bsd.port.mk @@ -1253,7 +1253,7 @@ WARNING+= "If you do not want to see this message again set NO_WARNING_PKG_INSTA # Enable new xorg for FreeBSD versions after Radeon KMS was imported unless # WITHOUT_NEW_XORG is set. -.if ${OSVERSION} >= 1100000 +.if (${OSVERSION} >= 902510 && ${OSVERSION} < 1000000) || ${OSVERSION} >= 1000704 . if !defined(WITHOUT_NEW_XORG) WITH_NEW_XORG?= yes . else diff --git a/Mk/bsd.xorg.mk b/Mk/bsd.xorg.mk index a2ba2517b294..106463146e58 100644 --- a/Mk/bsd.xorg.mk +++ b/Mk/bsd.xorg.mk @@ -29,7 +29,7 @@ Xorg_Pre_Include= bsd.xorg.mk .if defined(XORG_CAT) # Default variables, common to all new modular xorg ports. -.if !defined(USE_TGZ) +.if !defined(USE_TGZ) && !defined(USE_XZ) USE_BZIP2= yes .endif GNU_CONFIGURE= yes @@ -65,6 +65,7 @@ USE_XORG+= xorg-server xproto randrproto xi renderproto xextproto \ CFLAGS+= -fno-optimize-sibling-calls . endif CONFIGURE_ENV+= DRIVER_MAN_SUFFIX=4x DRIVER_MAN_DIR='$$(mandir)/man4' +USES+= libtool . endif . if ${XORG_CAT} == "font" @@ -139,7 +140,7 @@ post-install: .endif . if ${XORG_CAT} == "lib" -USES+= pathfix +USES+= pathfix libtool USE_LDCONFIG= yes CONFIGURE_ARGS+=--enable-malloc0returnsnull . endif @@ -5,6 +5,58 @@ they are unavoidable. You should get into the habit of checking this file for changes each time you update your ports collection, before attempting any port upgrades. +20140416: + AFFECTS: users of x11/xorg graphics/dri graphics/libGL and related ports + AUTHOR: x11@FreeBSD.org + + The default xorg version has been switched on FreeBSD 10-STABLE and + FreeBSD 9-STABLE. + + To upgrade graphics/libGL, graphics/dri and related MESA ports, it is + necessary to first remove the old versions of those ports. + No special upgrade procedure is needed for xorg ports but it is + necessary to recompile all xorg drivers (xf86-*) and other ports that + depend on the xserver version, including + emulators/virtualbox-ose-additions. Portrevisions have been bumped + where needed, but users of drivers not in the ports tree will need to + recompile those. + + If it is important to stay on the old versions, it is possible to + specify WITHOUT_NEW_XORG= in /etc/make.conf to get the old xorg + distribution. + + For users in need of working console when using KMS drivers (intel and + radeon graphics cards) please use the new vt(9) console driver. + For more information, see https://wiki.freebsd.org/Graphics and + https://wiki.freebsd.org/Newcons . + + To update: + + # pkg_delete -f libGL-\* dri-\* + or + # pkg delete -f libGL dri + followed by + # portmaster graphics/dri graphics/libGL + or + # portupgrade graphics/dri graphics/libGL + and then + # portmaster -a + or + # portupgrade -a + +20140416: + AFFECTS: users of print/freetype2 textproc/libxml2 x11/pixman and + graphics/freeglut + AUTHOR: x11@FreeBSD.org and gnome@FreeBSD.org + + The library version of the above libraries has been brought in line + with what upstream expects. To do this all users of these ports need + to be rebuilt. Portrevisions have been bumped as a consequence. + + # portmaster -r freetype2 -r libxml2 -r pixman -r freeglut + or + # portupgrade -rf freetype2 libxml2 pixman freeglut + 20140415: AFFECTS: Users of mod_python3 AUTHOR: ohauer@FreeBSD.org diff --git a/accessibility/gok/Makefile b/accessibility/gok/Makefile index b6a1442e3beb..6f659aaa297e 100644 --- a/accessibility/gok/Makefile +++ b/accessibility/gok/Makefile @@ -4,7 +4,7 @@ PORTNAME= gok PORTVERSION= 2.30.1 -PORTREVISION= 1 +PORTREVISION= 2 PORTEPOCH= 1 CATEGORIES= accessibility sysutils gnome MASTER_SITES= GNOME diff --git a/archivers/libarchive/Makefile b/archivers/libarchive/Makefile index 550729ef38df..24cab19fe035 100644 --- a/archivers/libarchive/Makefile +++ b/archivers/libarchive/Makefile @@ -2,6 +2,7 @@ PORTNAME= libarchive PORTVERSION= 3.1.2 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= archivers MASTER_SITES= http://libarchive.org/downloads/ diff --git a/archivers/xar/Makefile b/archivers/xar/Makefile index 3ca9af18e09c..f68a7cc07b6f 100644 --- a/archivers/xar/Makefile +++ b/archivers/xar/Makefile @@ -3,6 +3,7 @@ PORTNAME= xar PORTVERSION= 1.5.2 +PORTREVISION= 1 CATEGORIES= archivers MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} \ ${MASTER_SITE_GENTOO} diff --git a/astro/boinc-astropulse/Makefile b/astro/boinc-astropulse/Makefile index ac076c119b97..5c8b60e63566 100644 --- a/astro/boinc-astropulse/Makefile +++ b/astro/boinc-astropulse/Makefile @@ -3,7 +3,7 @@ PORTNAME= boinc-astropulse PORTVERSION= 6.01 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= astro MASTER_SITES= ${MASTER_SITE_LOCAL} \ ftp://rene-ladan.nl/pub/distfiles/ diff --git a/astro/boinc-setiathome-v7/Makefile b/astro/boinc-setiathome-v7/Makefile index 783b60e4c089..daf0f32f3d8d 100644 --- a/astro/boinc-setiathome-v7/Makefile +++ b/astro/boinc-setiathome-v7/Makefile @@ -3,7 +3,7 @@ PORTNAME= boinc-setiathome-v7 PORTVERSION= 7.00 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= astro MASTER_SITES= ${MASTER_SITE_LOCAL} \ ftp://rene-ladan.nl/pub/distfiles/ diff --git a/astro/celestia/Makefile b/astro/celestia/Makefile index ad6c3523b7a5..a706be549ce7 100644 --- a/astro/celestia/Makefile +++ b/astro/celestia/Makefile @@ -3,7 +3,7 @@ PORTNAME= celestia PORTVERSION= 1.6.1 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= astro MASTER_SITES= SF/${PORTNAME}/Celestia-source/${PORTVERSION} PKGNAMESUFFIX= -${CELESTIA_UI} diff --git a/astro/foxtrotgps/Makefile b/astro/foxtrotgps/Makefile index 1a9ebcd3c5d9..2c342d9a135a 100644 --- a/astro/foxtrotgps/Makefile +++ b/astro/foxtrotgps/Makefile @@ -3,7 +3,7 @@ PORTNAME= foxtrotgps PORTVERSION= 1.1.1 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= astro geography MASTER_SITES= http://www.foxtrotgps.org/releases/ diff --git a/astro/gpscorrelate/Makefile b/astro/gpscorrelate/Makefile index 11ff864772ae..7c94f11798ff 100644 --- a/astro/gpscorrelate/Makefile +++ b/astro/gpscorrelate/Makefile @@ -3,7 +3,7 @@ PORTNAME= gpscorrelate PORTVERSION= 1.6.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= astro geography MASTER_SITES= GH DIST_SUBDIR= repacked diff --git a/astro/nightfall/Makefile b/astro/nightfall/Makefile index 09ee64dc954c..7de0fff4a927 100644 --- a/astro/nightfall/Makefile +++ b/astro/nightfall/Makefile @@ -3,7 +3,7 @@ PORTNAME= nightfall PORTVERSION= 1.70 -PORTREVISION= 9 +PORTREVISION= 10 CATEGORIES= astro MASTER_SITES= http://www.la-samhna.de/nightfall/ diff --git a/astro/openuniverse/Makefile b/astro/openuniverse/Makefile index a2d1b38674cf..2c60c3b87eba 100644 --- a/astro/openuniverse/Makefile +++ b/astro/openuniverse/Makefile @@ -3,7 +3,7 @@ PORTNAME= openuniverse DISTVERSION= 1.0beta3 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= astro MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/1.0beta3 diff --git a/astro/viking/Makefile b/astro/viking/Makefile index 08a04b2e0a58..159e7e35deb2 100644 --- a/astro/viking/Makefile +++ b/astro/viking/Makefile @@ -3,6 +3,7 @@ PORTNAME= viking PORTVERSION= 1.5.1 +PORTREVISION= 1 CATEGORIES= astro MASTER_SITES= SF/${PORTNAME}/ diff --git a/astro/xplanet/Makefile b/astro/xplanet/Makefile index 17e3399ec253..d9cf1135a763 100644 --- a/astro/xplanet/Makefile +++ b/astro/xplanet/Makefile @@ -3,7 +3,7 @@ PORTNAME= xplanet PORTVERSION= 1.3.0 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= astro geography MASTER_SITES= SF diff --git a/audio/amarok-kde4/Makefile b/audio/amarok-kde4/Makefile index 6c10ba2758a5..f3d706f85129 100644 --- a/audio/amarok-kde4/Makefile +++ b/audio/amarok-kde4/Makefile @@ -3,7 +3,7 @@ PORTNAME= amarok PORTVERSION= 2.7.0 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= audio kde MASTER_SITES= ${MASTER_SITE_KDE} MASTER_SITE_SUBDIR= stable/${PORTNAME}/${PORTVERSION}/src diff --git a/audio/aqualung/Makefile b/audio/aqualung/Makefile index 5227a293e76d..64f0273e9788 100644 --- a/audio/aqualung/Makefile +++ b/audio/aqualung/Makefile @@ -3,7 +3,7 @@ PORTNAME= aqualung DISTVERSION= 0.9beta11 -PORTREVISION= 17 +PORTREVISION= 18 CATEGORIES= audio MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${DISTVERSION} \ http://wickedmachine.net/mirror/ diff --git a/audio/denemo/Makefile b/audio/denemo/Makefile index 0134a8d9e790..06decc82c528 100644 --- a/audio/denemo/Makefile +++ b/audio/denemo/Makefile @@ -3,6 +3,7 @@ PORTNAME= denemo PORTVERSION= 1.1.0 +PORTREVISION= 1 CATEGORIES= audio MASTER_SITES= GNU diff --git a/audio/enscribe/Makefile b/audio/enscribe/Makefile index 3a4206910158..2de28a7fe2b7 100644 --- a/audio/enscribe/Makefile +++ b/audio/enscribe/Makefile @@ -3,7 +3,7 @@ PORTNAME= enscribe PORTVERSION= 0.1.0 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= audio graphics MASTER_SITES= http://www.coppercloudmusic.com/enscribe/ EXTRACT_SUFX= .tgz diff --git a/audio/ezstream/Makefile b/audio/ezstream/Makefile index 33ecddefa15a..23dd25874988 100644 --- a/audio/ezstream/Makefile +++ b/audio/ezstream/Makefile @@ -3,7 +3,7 @@ PORTNAME= ezstream PORTVERSION= 0.5.6 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= audio MASTER_SITES= http://downloads.xiph.org/releases/ezstream/ \ http://svn.xiph.org/releases/ezstream/ diff --git a/audio/fmit/Makefile b/audio/fmit/Makefile index 4d400619477e..5696161b679d 100644 --- a/audio/fmit/Makefile +++ b/audio/fmit/Makefile @@ -3,7 +3,7 @@ PORTNAME= fmit PORTVERSION= 0.99.2 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= audio MASTER_SITES= http://download.gna.org/fmit/ DISTNAME= ${PORTNAME}-${PORTVERSION}-Source diff --git a/audio/gbemol/Makefile b/audio/gbemol/Makefile index 92c71d6f6339..e119b3ff3fbb 100644 --- a/audio/gbemol/Makefile +++ b/audio/gbemol/Makefile @@ -3,7 +3,7 @@ PORTNAME= gbemol PORTVERSION= 0.3.2 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= audio MASTER_SITES= SF diff --git a/audio/gmpc-discogs/Makefile b/audio/gmpc-discogs/Makefile index 63d8b0d5ebf3..48df834b48cf 100644 --- a/audio/gmpc-discogs/Makefile +++ b/audio/gmpc-discogs/Makefile @@ -3,7 +3,7 @@ PORTNAME= gmpc-discogs PORTVERSION= 0.20.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= audio MASTER_SITES= http://download.sarine.nl/Programs/gmpc/${PORTVERSION}/ \ http://freebsd.unixfreunde.de/sources/ diff --git a/audio/gmpc-extraplaylist/Makefile b/audio/gmpc-extraplaylist/Makefile index 73fb46e5b611..d140c6da413d 100644 --- a/audio/gmpc-extraplaylist/Makefile +++ b/audio/gmpc-extraplaylist/Makefile @@ -3,7 +3,7 @@ PORTNAME= gmpc-extraplaylist PORTVERSION= 0.20.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= audio MASTER_SITES= http://download.sarine.nl/Programs/gmpc/${PORTVERSION}/ \ http://freebsd.unixfreunde.de/sources/ diff --git a/audio/gmpc-lastfm/Makefile b/audio/gmpc-lastfm/Makefile index 4aeb6381240c..809e1051ca9f 100644 --- a/audio/gmpc-lastfm/Makefile +++ b/audio/gmpc-lastfm/Makefile @@ -3,7 +3,7 @@ PORTNAME= gmpc-lastfm PORTVERSION= 0.20.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= audio MASTER_SITES= http://download.sarine.nl/Programs/gmpc/${PORTVERSION}/ \ http://freebsd.unixfreunde.de/sources/ diff --git a/audio/gmpc-lyrics/Makefile b/audio/gmpc-lyrics/Makefile index 83b7b4abf5ab..c8c70cabc32e 100644 --- a/audio/gmpc-lyrics/Makefile +++ b/audio/gmpc-lyrics/Makefile @@ -3,7 +3,7 @@ PORTNAME= gmpc-lyrics PORTVERSION= 11.8.16 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= audio MASTER_SITES= http://download.sarine.nl/Programs/gmpc/${PORTVERSION}/ diff --git a/audio/gmpc-lyricsplugin/Makefile b/audio/gmpc-lyricsplugin/Makefile index 4732a72a85c3..fa098dffedb6 100644 --- a/audio/gmpc-lyricsplugin/Makefile +++ b/audio/gmpc-lyricsplugin/Makefile @@ -3,7 +3,7 @@ PORTNAME= gmpc-lyricsplugin PORTVERSION= 0.20.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= audio MASTER_SITES= http://download.sarine.nl/Programs/gmpc/${PORTVERSION}/ \ http://freebsd.unixfreunde.de/sources/ diff --git a/audio/gmpc-lyricwiki/Makefile b/audio/gmpc-lyricwiki/Makefile index bd01362272d1..8c4c63fe54ef 100644 --- a/audio/gmpc-lyricwiki/Makefile +++ b/audio/gmpc-lyricwiki/Makefile @@ -3,7 +3,7 @@ PORTNAME= gmpc-lyricwiki PORTVERSION= 11.8.16 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= audio MASTER_SITES= http://download.sarine.nl/Programs/gmpc/${PORTVERSION}/ diff --git a/audio/gmpc-mdcover/Makefile b/audio/gmpc-mdcover/Makefile index 178c6a0d7057..180a3d756e7c 100644 --- a/audio/gmpc-mdcover/Makefile +++ b/audio/gmpc-mdcover/Makefile @@ -3,7 +3,7 @@ PORTNAME= gmpc-mdcover PORTVERSION= 0.20.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= audio MASTER_SITES= http://download.sarine.nl/Programs/gmpc/${PORTVERSION}/ \ http://freebsd.unixfreunde.de/sources/ diff --git a/audio/gmpc-mserver/Makefile b/audio/gmpc-mserver/Makefile index 1b85b63afd3d..faab511c302d 100644 --- a/audio/gmpc-mserver/Makefile +++ b/audio/gmpc-mserver/Makefile @@ -3,7 +3,7 @@ PORTNAME= gmpc-mserver PORTVERSION= 0.20.0 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= audio MASTER_SITES= http://download.sarine.nl/Programs/gmpc/${PORTVERSION}/ \ http://freebsd.unixfreunde.de/sources/ diff --git a/audio/gmpc-shout/Makefile b/audio/gmpc-shout/Makefile index 9636744937ed..d00f9392e70e 100644 --- a/audio/gmpc-shout/Makefile +++ b/audio/gmpc-shout/Makefile @@ -3,7 +3,7 @@ PORTNAME= gmpc-shout PORTVERSION= 0.20.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= audio MASTER_SITES= http://download.sarine.nl/Programs/gmpc/${PORTVERSION}/ \ http://freebsd.unixfreunde.de/sources/ diff --git a/audio/gnome-media/Makefile b/audio/gnome-media/Makefile index 520a97df0502..9a8bdd9a7665 100644 --- a/audio/gnome-media/Makefile +++ b/audio/gnome-media/Makefile @@ -4,7 +4,7 @@ PORTNAME= gnome-media PORTVERSION= 2.32.0 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= audio gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome2 diff --git a/audio/gspeakers/Makefile b/audio/gspeakers/Makefile index cc337100b151..258e88b28bda 100644 --- a/audio/gspeakers/Makefile +++ b/audio/gspeakers/Makefile @@ -4,7 +4,7 @@ PORTNAME= gspeakers PORTVERSION= 0.11 -PORTREVISION= 13 +PORTREVISION= 14 CATEGORIES= audio MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} diff --git a/audio/icecast-kh/Makefile b/audio/icecast-kh/Makefile index d569dae04631..090ec99edb0f 100644 --- a/audio/icecast-kh/Makefile +++ b/audio/icecast-kh/Makefile @@ -3,6 +3,7 @@ PORTNAME= icecast PORTVERSION= ${ICVERSION}.k${KH} +PORTREVISION= 1 CATEGORIES= audio net ipv6 PKGNAMESUFFIX= -kh DISTNAME= ${PORTNAME}-${ICVERSION}-kh${KH} diff --git a/audio/ices/Makefile b/audio/ices/Makefile index 25e37d5743b1..1ec253fd5887 100644 --- a/audio/ices/Makefile +++ b/audio/ices/Makefile @@ -3,6 +3,7 @@ PORTNAME= ices PORTVERSION= 2.0.2 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= audio net MASTER_SITES= http://downloads.xiph.org/releases/ices/ \ diff --git a/audio/jack-rack/Makefile b/audio/jack-rack/Makefile index ce24d0bdcd44..d8a45612e372 100644 --- a/audio/jack-rack/Makefile +++ b/audio/jack-rack/Makefile @@ -3,7 +3,7 @@ PORTNAME= jack-rack PORTVERSION= 1.4.7 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= audio MASTER_SITES= SF diff --git a/audio/jamin/Makefile b/audio/jamin/Makefile index a202ec780f60..f9dc6f6d43c9 100644 --- a/audio/jamin/Makefile +++ b/audio/jamin/Makefile @@ -3,7 +3,7 @@ PORTNAME= jamin PORTVERSION= 0.95.0 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= audio MASTER_SITES= SF diff --git a/audio/lash/Makefile b/audio/lash/Makefile index 5db7f0e42a6d..4153be48dbe2 100644 --- a/audio/lash/Makefile +++ b/audio/lash/Makefile @@ -3,7 +3,7 @@ PORTNAME= lash PORTVERSION= 0.5.4 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= audio MASTER_SITES= SAVANNAH diff --git a/audio/mate-media/Makefile b/audio/mate-media/Makefile index 1aab9e61844f..afae2feb1991 100644 --- a/audio/mate-media/Makefile +++ b/audio/mate-media/Makefile @@ -3,6 +3,7 @@ PORTNAME= mate-media PORTVERSION= 1.6.0 +PORTREVISION= 1 CATEGORIES= audio mate MASTER_SITES= MATE DIST_SUBDIR= mate diff --git a/audio/nas/Makefile b/audio/nas/Makefile index 9656ed61252b..669934acde15 100644 --- a/audio/nas/Makefile +++ b/audio/nas/Makefile @@ -3,6 +3,7 @@ PORTNAME= nas PORTVERSION= 1.9.4 +PORTREVISION= 1 CATEGORIES= audio MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}%20${PORTVERSION}%20%28stable%29 EXTRACT_SUFX= .src.tar.gz diff --git a/audio/py-karaoke/Makefile b/audio/py-karaoke/Makefile index 169ce181c94c..3725e031eca0 100644 --- a/audio/py-karaoke/Makefile +++ b/audio/py-karaoke/Makefile @@ -3,7 +3,7 @@ PORTNAME= karaoke PORTVERSION= 0.7.5 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= audio python MASTER_SITES= SF/py${PORTNAME}/py${PORTNAME}/${PORTVERSION} PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/audio/sooperlooper/Makefile b/audio/sooperlooper/Makefile index 7a9f916ca2ea..841b1bb9265b 100644 --- a/audio/sooperlooper/Makefile +++ b/audio/sooperlooper/Makefile @@ -3,6 +3,7 @@ PORTNAME= sooperlooper PORTVERSION= 1.7.0 +PORTREVISION= 1 CATEGORIES= audio MASTER_SITES= http://essej.net/sooperlooper/ diff --git a/audio/specimen/Makefile b/audio/specimen/Makefile index 4056ecae71d0..4f7e40115247 100644 --- a/audio/specimen/Makefile +++ b/audio/specimen/Makefile @@ -3,7 +3,7 @@ PORTNAME= specimen DISTVERSION= 0.5.2-rc3 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= audio MASTER_SITES= http://zhevny.com/specimen/files/ diff --git a/audio/terminatorx/Makefile b/audio/terminatorx/Makefile index 1285f292a72c..81f1f4135798 100644 --- a/audio/terminatorx/Makefile +++ b/audio/terminatorx/Makefile @@ -4,7 +4,7 @@ PORTNAME= terminatorx PORTVERSION= 3.84 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= audio MASTER_SITES= http://terminatorx.org/dist/ DISTNAME= terminatorX-${PORTVERSION} diff --git a/audio/vagalume/Makefile b/audio/vagalume/Makefile index 65542c7c140b..47384bc4f03e 100644 --- a/audio/vagalume/Makefile +++ b/audio/vagalume/Makefile @@ -3,6 +3,7 @@ PORTNAME= vagalume PORTVERSION= 0.8.6 +PORTREVISION= 1 CATEGORIES= audio MASTER_SITES= http://vagalume.igalia.com/files/source/ \ ${MASTER_SITE_DEBIAN_POOL} diff --git a/audio/wavbreaker/Makefile b/audio/wavbreaker/Makefile index f74ea805ecd4..d68ec21fb8ba 100644 --- a/audio/wavbreaker/Makefile +++ b/audio/wavbreaker/Makefile @@ -3,7 +3,7 @@ PORTNAME= wavbreaker PORTVERSION= 0.11 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= audio MASTER_SITES= SF diff --git a/audio/xcdplayer/Makefile b/audio/xcdplayer/Makefile index 617863bee036..f840c8997d57 100644 --- a/audio/xcdplayer/Makefile +++ b/audio/xcdplayer/Makefile @@ -3,7 +3,7 @@ PORTNAME= xcdplayer PORTVERSION= 2.2 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= audio MASTER_SITES= XCONTRIB/../R5contrib EXTRACT_SUFX= .tar.Z diff --git a/audio/xmcd/Makefile b/audio/xmcd/Makefile index d797bf87320a..1832a8856a6b 100644 --- a/audio/xmcd/Makefile +++ b/audio/xmcd/Makefile @@ -3,7 +3,7 @@ PORTNAME= xmcd PORTVERSION= 3.3.2 -PORTREVISION= 15 +PORTREVISION= 16 CATEGORIES= audio MASTER_SITES= http://www.ibiblio.org/tkan/download/xmcd/3.3.2/src/ diff --git a/audio/xmix/Makefile b/audio/xmix/Makefile index e11f2791d84a..b63a6f81f10d 100644 --- a/audio/xmix/Makefile +++ b/audio/xmix/Makefile @@ -3,7 +3,7 @@ PORTNAME= xmix PORTVERSION= 2.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= audio MASTER_SITES= ${MASTER_SITE_SUNSITE} MASTER_SITE_SUBDIR= apps/sound/mixers diff --git a/audio/xmixer/Makefile b/audio/xmixer/Makefile index 131b0e438d69..f80522d7afb5 100644 --- a/audio/xmixer/Makefile +++ b/audio/xmixer/Makefile @@ -3,7 +3,7 @@ PORTNAME= xmixer PORTVERSION= 0.9.4 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= audio MASTER_SITES= http://mpx.freeshell.net/ diff --git a/audio/xmms-curses/Makefile b/audio/xmms-curses/Makefile index ebb86e33afa1..84952954d17f 100644 --- a/audio/xmms-curses/Makefile +++ b/audio/xmms-curses/Makefile @@ -3,7 +3,7 @@ PORTNAME= xmms-curses PORTVERSION= 0.2.2 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= audio MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} diff --git a/audio/xmms-flac/Makefile b/audio/xmms-flac/Makefile index dc4ffccf4f11..0ba93e80ba7a 100644 --- a/audio/xmms-flac/Makefile +++ b/audio/xmms-flac/Makefile @@ -2,6 +2,7 @@ PORTNAME= xmms-flac PORTVERSION= 1.3.0 +PORTREVISION= 1 CATEGORIES= audio MASTER_SITES= http://downloads.xiph.org/releases/flac/ DISTNAME= flac-${PORTVERSION} diff --git a/audio/xmms2/Makefile b/audio/xmms2/Makefile index 6d0894368c7d..c0a66dd9b5ac 100644 --- a/audio/xmms2/Makefile +++ b/audio/xmms2/Makefile @@ -4,7 +4,7 @@ PORTNAME?= xmms2 PORTVERSION= 0.8 DISTVERSIONSUFFIX=DrO_o -PORTREVISION?= 5 +PORTREVISION?= 6 CATEGORIES?= audio MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTVERSION}%20${DISTVERSIONSUFFIX} diff --git a/audio/xwave/Makefile b/audio/xwave/Makefile index 6e5fb436675f..aecbd8034e97 100644 --- a/audio/xwave/Makefile +++ b/audio/xwave/Makefile @@ -3,7 +3,7 @@ PORTNAME= xwave PORTVERSION= 2.2 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= audio MASTER_SITES= ${MASTER_SITE_LOCAL} MASTER_SITE_SUBDIR= arved diff --git a/biology/libsbml/Makefile b/biology/libsbml/Makefile index 8440662751b9..6bf547fce468 100644 --- a/biology/libsbml/Makefile +++ b/biology/libsbml/Makefile @@ -3,6 +3,7 @@ PORTNAME= libsbml PORTVERSION= 4.2.0 +PORTREVISION= 1 CATEGORIES= biology devel MASTER_SITES= SF MASTER_SITE_SUBDIR= sbml/${PORTNAME}/${PORTVERSION} diff --git a/biology/phylip/Makefile b/biology/phylip/Makefile index 73dbe64e8373..d3e5590022cf 100644 --- a/biology/phylip/Makefile +++ b/biology/phylip/Makefile @@ -3,7 +3,7 @@ PORTNAME= phylip PORTVERSION= 3.695 -PORTREVISION= 2 +PORTREVISION= 3 PORTEPOCH= 1 CATEGORIES= biology MASTER_SITES= http://evolution.gs.washington.edu/phylip/download/ diff --git a/biology/protomol/Makefile b/biology/protomol/Makefile index 7398dee564f0..487ac36d3f9f 100644 --- a/biology/protomol/Makefile +++ b/biology/protomol/Makefile @@ -3,7 +3,7 @@ PORTNAME= protomol PORTVERSION= 2.0.3 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= biology MASTER_SITES= SF/${PORTNAME}/ProtoMol/${PORTVERSION} DISTNAME= ${PORTNAME}-${PORTVERSION}-tar.gz diff --git a/biology/pymol/Makefile b/biology/pymol/Makefile index c8bc6132bc69..2167fd8ca996 100644 --- a/biology/pymol/Makefile +++ b/biology/pymol/Makefile @@ -3,7 +3,7 @@ PORTNAME= pymol PORTVERSION= ${VERSION}.${SVNREVISION} -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= biology python MASTER_SITES= ${MASTER_SITE_LOCAL:S|%SUBDIR%|maho/pymol|} diff --git a/cad/brlcad/Makefile b/cad/brlcad/Makefile index aec4f9ec49c7..100b2601902a 100644 --- a/cad/brlcad/Makefile +++ b/cad/brlcad/Makefile @@ -3,6 +3,7 @@ PORTNAME= brlcad PORTVERSION= 7.24.0 +PORTREVISION= 1 CATEGORIES= cad MASTER_SITES= SF/${PORTNAME}/BRL-CAD%20Source/${PORTVERSION} diff --git a/cad/calculix/Makefile b/cad/calculix/Makefile index 7148b0c83ad8..62f7be3db749 100644 --- a/cad/calculix/Makefile +++ b/cad/calculix/Makefile @@ -3,7 +3,7 @@ PORTNAME= CalculiX PORTVERSION= 2.7 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= cad MASTER_SITES= http://www.dhondt.de/ DISTFILES= ${DIST_SOURCES} diff --git a/cad/leocad/Makefile b/cad/leocad/Makefile index 2ee65ac5b714..ced259142307 100644 --- a/cad/leocad/Makefile +++ b/cad/leocad/Makefile @@ -3,6 +3,7 @@ PORTNAME= leocad PORTVERSION= 0.80.2 +PORTREVISION= 1 CATEGORIES= cad MASTER_SITES= SF/nemysisfreebsdp/${CATEGORIES}/${PORTNAME}/ DISTFILES= ${PORTNAME}-${PORTVERSION}-src.tgz diff --git a/cad/opencascade/Makefile b/cad/opencascade/Makefile index 19b03aa99eb0..199a891a82d0 100644 --- a/cad/opencascade/Makefile +++ b/cad/opencascade/Makefile @@ -3,7 +3,7 @@ PORTNAME= OpenCASCADE PORTVERSION= 6.6.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= cad science MASTER_SITES= http://files.opencascade.com/OCCT/OCC_${PORTVERSION}_release/ DISTNAME= ${PORTNAME}${PORTVERSION:C/\.//g} diff --git a/cad/openvsp/Makefile b/cad/openvsp/Makefile index 8acfb74f1b67..1706990046e2 100644 --- a/cad/openvsp/Makefile +++ b/cad/openvsp/Makefile @@ -3,6 +3,7 @@ PORTNAME= openvsp PORTVERSION= 2.3.0 +PORTREVISION= 1 CATEGORIES= cad MASTER_SITES= GH diff --git a/cad/repsnapper/Makefile b/cad/repsnapper/Makefile index a2afa9fae89d..66e7e45299d1 100644 --- a/cad/repsnapper/Makefile +++ b/cad/repsnapper/Makefile @@ -3,7 +3,7 @@ PORTNAME= repsnapper PORTVERSION= 2.3.2a3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= cad MASTER_SITES= https://codeload.github.com/timschmidt/repsnapper/tar.gz/ DISTNAME= ${PORTVERSION} diff --git a/cad/slffea/Makefile b/cad/slffea/Makefile index 95d8beffd98d..adfa4ff726c9 100644 --- a/cad/slffea/Makefile +++ b/cad/slffea/Makefile @@ -3,7 +3,7 @@ PORTNAME= slffea PORTVERSION= 1.5 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= cad MASTER_SITES= SF/${PORTNAME}/SLFFEA/${PORTVERSION} DISTNAME= ${PORTNAME}15 diff --git a/chinese/fcitx/Makefile b/chinese/fcitx/Makefile index 8c209abcb77c..e654e53926e4 100644 --- a/chinese/fcitx/Makefile +++ b/chinese/fcitx/Makefile @@ -3,8 +3,8 @@ PORTNAME= fcitx PORTVERSION= 4.2.6.1 +PORTREVISION= 4 CATEGORIES= chinese x11 -PORTREVISION= 3 MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \ pinyin.tar.gz table.tar.gz en_dict-${_DICT_VER}.tar.gz diff --git a/chinese/ttfm/Makefile b/chinese/ttfm/Makefile index b932957a20d3..aa31540ec92d 100644 --- a/chinese/ttfm/Makefile +++ b/chinese/ttfm/Makefile @@ -3,7 +3,7 @@ PORTNAME= ttfm PORTVERSION= 0.9.5 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= chinese print MASTER_SITES= LOCAL/rafan/chinese diff --git a/comms/chirp/Makefile b/comms/chirp/Makefile index 8bf7ca5b7a88..8db4fe7acea8 100644 --- a/comms/chirp/Makefile +++ b/comms/chirp/Makefile @@ -2,6 +2,7 @@ PORTNAME= chirp PORTVERSION= 0.3.1 +PORTREVISION= 1 CATEGORIES= comms hamradio MASTER_SITES= http://chirp.danplanet.com/download/${PORTVERSION}/ \ ${MASTER_SITE_LOCAL} diff --git a/comms/hamlib/Makefile b/comms/hamlib/Makefile index 790f38ae9b72..5c7968266e6b 100644 --- a/comms/hamlib/Makefile +++ b/comms/hamlib/Makefile @@ -3,6 +3,7 @@ PORTNAME= hamlib PORTVERSION= 1.2.15.3 +PORTREVISION= 1 CATEGORIES= comms hamradio MASTER_SITES= SF diff --git a/comms/soundmodem/Makefile b/comms/soundmodem/Makefile index 7896272efc39..606154e5e02c 100644 --- a/comms/soundmodem/Makefile +++ b/comms/soundmodem/Makefile @@ -2,7 +2,7 @@ PORTNAME= soundmodem PORTVERSION= 0.17 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= comms hamradio MASTER_SITES= http://www.baycom.org/~tom/ham/soundmodem/ \ http://chronos.org.uk/distfiles/ diff --git a/converters/osm2pgsql/Makefile b/converters/osm2pgsql/Makefile index ea972c738fa5..a6772e055c20 100644 --- a/converters/osm2pgsql/Makefile +++ b/converters/osm2pgsql/Makefile @@ -3,6 +3,7 @@ PORTNAME= osm2pgsql PORTVERSION= 0.84.0 +PORTREVISION= 1 CATEGORIES= converters geography MAINTAINER= amdmi3@FreeBSD.org diff --git a/converters/wkhtmltopdf/Makefile b/converters/wkhtmltopdf/Makefile index 0d46e295f3c5..67c363a80081 100644 --- a/converters/wkhtmltopdf/Makefile +++ b/converters/wkhtmltopdf/Makefile @@ -3,7 +3,7 @@ PORTNAME= wkhtmltopdf PORTVERSION= 0.12.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= converters MASTER_SITES= GH:wk \ http://github.com/${GH_ACCOUNT}/qt/archive/${WKQT_TAGNAME}.tar.gz?dummy=/:wkqt diff --git a/databases/evolution-data-server/Makefile b/databases/evolution-data-server/Makefile index d80427afa6f5..32b2bc278171 100644 --- a/databases/evolution-data-server/Makefile +++ b/databases/evolution-data-server/Makefile @@ -4,7 +4,7 @@ PORTNAME= evolution-data-server PORTVERSION= 2.32.1 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= databases gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome2 diff --git a/databases/grass/Makefile b/databases/grass/Makefile index 75cfbaac58d4..8915e6edd9e3 100644 --- a/databases/grass/Makefile +++ b/databases/grass/Makefile @@ -3,7 +3,7 @@ PORTNAME= grass PORTVERSION= 6.4.3 -PORTREVISION= 1 +PORTREVISION= 2 PORTEPOCH= 2 CATEGORIES= databases geography MASTER_SITES= http://grass.osgeo.org/%SUBDIR%/ \ diff --git a/databases/hk_classes/Makefile b/databases/hk_classes/Makefile index 358329d1f16d..f4c1d9b96b32 100644 --- a/databases/hk_classes/Makefile +++ b/databases/hk_classes/Makefile @@ -3,6 +3,7 @@ PORTNAME= hk_classes PORTVERSION= 0.8.3 +PORTREVISION= 1 CATEGORIES= databases MASTER_SITES= SF/hk-classes/${PORTNAME}/${PORTVERSION} diff --git a/databases/kbibtex/Makefile b/databases/kbibtex/Makefile index 5faf721cbed1..7af85d37bc87 100644 --- a/databases/kbibtex/Makefile +++ b/databases/kbibtex/Makefile @@ -3,7 +3,7 @@ PORTNAME= kbibtex DISTVERSION= 0.4.1 -PORTREVISION= 3 +PORTREVISION= 5 CATEGORIES= databases kde MASTER_SITES= http://download.gna.org/${PORTNAME}/${PORTVERSION:C,(^[[:digit:]]\.[[:digit:]]).*,\1,}/ diff --git a/databases/mysql-workbench51/Makefile b/databases/mysql-workbench51/Makefile index 4a4d4421e1cc..4a39006350fc 100644 --- a/databases/mysql-workbench51/Makefile +++ b/databases/mysql-workbench51/Makefile @@ -3,7 +3,7 @@ PORTNAME= mysql-workbench-oss PORTVERSION?= 5.1.16 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= databases MASTER_SITES= ${MASTER_SITE_MYSQL} MASTER_SITE_SUBDIR= MySQLGUITools diff --git a/databases/mysql-workbench52/Makefile b/databases/mysql-workbench52/Makefile index f13327ec52d9..5997903fa998 100644 --- a/databases/mysql-workbench52/Makefile +++ b/databases/mysql-workbench52/Makefile @@ -3,7 +3,7 @@ PORTNAME= mysql-workbench-gpl PORTVERSION= 5.2.47 -PORTREVISION= 1 +PORTREVISION= 2 DISTVERSIONSUFFIX= -src CATEGORIES= databases MASTER_SITES= MYSQL/MySQLGUITools diff --git a/databases/mysql-xql/Makefile b/databases/mysql-xql/Makefile index d5020af8c598..c06604e19c54 100644 --- a/databases/mysql-xql/Makefile +++ b/databases/mysql-xql/Makefile @@ -3,7 +3,7 @@ PORTNAME= mysql-xql PORTVERSION= 1.0.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= databases MASTER_SITES= http://www.mysqludf.org/lib_mysqludf_xql/ DISTNAME= lib_mysqludf_xql-${PORTVERSION} diff --git a/databases/pgadmin3/Makefile b/databases/pgadmin3/Makefile index aba699234d5a..d9f4f819a2bb 100644 --- a/databases/pgadmin3/Makefile +++ b/databases/pgadmin3/Makefile @@ -3,7 +3,7 @@ PORTNAME= pgadmin3 PORTVERSION= 1.18.1 -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= databases MASTER_SITES= PGSQL MASTER_SITE_SUBDIR= pgadmin3/release/v${PORTVERSION}/src diff --git a/databases/postgis20/Makefile b/databases/postgis20/Makefile index afb1c3736fe6..34333cdde601 100644 --- a/databases/postgis20/Makefile +++ b/databases/postgis20/Makefile @@ -2,6 +2,7 @@ PORTNAME= postgis PORTVERSION= 2.0.4 +PORTREVISION= 1 CATEGORIES= databases geography MASTER_SITES= http://download.osgeo.org/postgis/source/ PKGNAMESUFFIX= 20 diff --git a/databases/postgis21/Makefile b/databases/postgis21/Makefile index 55e86007c2af..8eb8bee2cb35 100644 --- a/databases/postgis21/Makefile +++ b/databases/postgis21/Makefile @@ -2,7 +2,7 @@ PORTNAME= postgis PORTVERSION= 2.1.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= databases geography MASTER_SITES= http://download.osgeo.org/postgis/source/ diff --git a/databases/postgresql84-contrib/Makefile b/databases/postgresql84-contrib/Makefile index 4375c8544c03..97bf5bbe98ac 100644 --- a/databases/postgresql84-contrib/Makefile +++ b/databases/postgresql84-contrib/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= postgresql -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= databases PKGNAMESUFFIX?= ${DISTVERSION:R:S/.//}${COMPONENT} diff --git a/databases/postgresql84-server/Makefile b/databases/postgresql84-server/Makefile index 4799409a4d1e..d87348a1f5ec 100644 --- a/databases/postgresql84-server/Makefile +++ b/databases/postgresql84-server/Makefile @@ -3,7 +3,7 @@ PORTNAME?= postgresql DISTVERSION?= 8.4.21 -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES?= databases MASTER_SITES= PGSQL MASTER_SITE_SUBDIR= source/v${DISTVERSION} diff --git a/databases/postgresql90-contrib/Makefile b/databases/postgresql90-contrib/Makefile index 107aef323f19..1af6aeb8e061 100644 --- a/databases/postgresql90-contrib/Makefile +++ b/databases/postgresql90-contrib/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= postgresql -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= databases PKGNAMESUFFIX?= ${DISTVERSION:R:S/.//}${COMPONENT} diff --git a/databases/postgresql91-contrib/Makefile b/databases/postgresql91-contrib/Makefile index 441698a1a051..e3ccf61db488 100644 --- a/databases/postgresql91-contrib/Makefile +++ b/databases/postgresql91-contrib/Makefile @@ -2,6 +2,7 @@ # $FreeBSD$ PORTNAME= postgresql +PORTREVISION= 1 CATEGORIES= databases PKGNAMESUFFIX?= ${DISTVERSION:R:S/.//}${COMPONENT} diff --git a/databases/postgresql91-server/Makefile b/databases/postgresql91-server/Makefile index 78557f96c3d5..82115f83d098 100644 --- a/databases/postgresql91-server/Makefile +++ b/databases/postgresql91-server/Makefile @@ -3,7 +3,7 @@ PORTNAME?= postgresql DISTVERSION?= 9.1.13 -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES?= databases MASTER_SITES= PGSQL MASTER_SITE_SUBDIR= source/v${DISTVERSION} diff --git a/databases/postgresql92-contrib/Makefile b/databases/postgresql92-contrib/Makefile index 11cd33f74b4a..25d22890634c 100644 --- a/databases/postgresql92-contrib/Makefile +++ b/databases/postgresql92-contrib/Makefile @@ -3,6 +3,7 @@ PORTNAME= postgresql CATEGORIES= databases +PORTREVISION= 1 PKGNAMESUFFIX?= ${DISTVERSION:R:S/.//}${COMPONENT} MAINTAINER= pgsql@FreeBSD.org diff --git a/databases/postgresql92-server/Makefile b/databases/postgresql92-server/Makefile index e224e662008e..bba0bbc22ea1 100644 --- a/databases/postgresql92-server/Makefile +++ b/databases/postgresql92-server/Makefile @@ -3,7 +3,7 @@ PORTNAME?= postgresql DISTVERSION?= 9.2.8 -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES?= databases MASTER_SITES= PGSQL MASTER_SITE_SUBDIR= source/v${DISTVERSION} diff --git a/databases/postgresql93-contrib/Makefile b/databases/postgresql93-contrib/Makefile index 6356dbc1d94a..825c5fc224c3 100644 --- a/databases/postgresql93-contrib/Makefile +++ b/databases/postgresql93-contrib/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= postgresql -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= databases PKGNAMESUFFIX?= ${DISTVERSION:R:S/.//}${COMPONENT} diff --git a/databases/rrdtool/Makefile b/databases/rrdtool/Makefile index 687c4052c6ba..3de4fe4d8836 100644 --- a/databases/rrdtool/Makefile +++ b/databases/rrdtool/Makefile @@ -3,6 +3,7 @@ PORTNAME= rrdtool PORTVERSION= 1.4.8 +PORTREVISION= 1 CATEGORIES= databases graphics MASTER_SITES= http://oss.oetiker.ch/rrdtool/pub/ diff --git a/databases/rrdtool12/Makefile b/databases/rrdtool12/Makefile index b53077224b36..cc28d2ff5b7c 100644 --- a/databases/rrdtool12/Makefile +++ b/databases/rrdtool12/Makefile @@ -3,7 +3,7 @@ PORTNAME= rrdtool PORTVERSION= 1.2.30 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= databases graphics MASTER_SITES= http://oss.oetiker.ch/rrdtool/pub/ PKGNAMESUFFIX= 12 diff --git a/databases/spatialite/Makefile b/databases/spatialite/Makefile index 583c160a4349..7bc87fde0211 100644 --- a/databases/spatialite/Makefile +++ b/databases/spatialite/Makefile @@ -3,7 +3,7 @@ PORTNAME= spatialite PORTVERSION= 4.1.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= databases geography MASTER_SITES= http://www.gaia-gis.it/gaia-sins/ DISTNAME= lib${PORTNAME}-${PORTVERSION} diff --git a/databases/spatialite_gui/Makefile b/databases/spatialite_gui/Makefile index 9a057290d17d..7ef123cb10e4 100644 --- a/databases/spatialite_gui/Makefile +++ b/databases/spatialite_gui/Makefile @@ -3,6 +3,7 @@ PORTNAME= spatialite_gui PORTVERSION= 1.7.1 +PORTREVISION= 1 CATEGORIES= databases geography MASTER_SITES= http://www.gaia-gis.it/gaia-sins/ diff --git a/databases/virtuoso/Makefile b/databases/virtuoso/Makefile index e659422865fd..0d819ee4de1d 100644 --- a/databases/virtuoso/Makefile +++ b/databases/virtuoso/Makefile @@ -3,7 +3,7 @@ PORTNAME= virtuoso PORTVERSION= 6.1.6 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= databases MASTER_SITES= SF DISTNAME= ${PORTNAME}-opensource-${PORTVERSION} diff --git a/deskutils/cairo-dock-plugins/Makefile b/deskutils/cairo-dock-plugins/Makefile index a55e7892134d..51730c49cecb 100644 --- a/deskutils/cairo-dock-plugins/Makefile +++ b/deskutils/cairo-dock-plugins/Makefile @@ -2,7 +2,7 @@ PORTNAME= cairo-dock-plugins DISTVERSION= 3.2.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= deskutils MASTER_SITES= https://launchpadlibrarian.net/137290159/ \ http://pazzle.otdux.com.ua/ diff --git a/deskutils/cairo-dock/Makefile b/deskutils/cairo-dock/Makefile index e54784fa4d38..0fc249d2df80 100644 --- a/deskutils/cairo-dock/Makefile +++ b/deskutils/cairo-dock/Makefile @@ -2,7 +2,7 @@ PORTNAME= cairo-dock DISTVERSION= 3.2.1 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= deskutils MASTER_SITES= https://launchpadlibrarian.net/137290048/ \ http://pazzle.otdux.com.ua/ diff --git a/deskutils/dlume/Makefile b/deskutils/dlume/Makefile index 28d73478d33c..678550eda9cb 100644 --- a/deskutils/dlume/Makefile +++ b/deskutils/dlume/Makefile @@ -3,7 +3,7 @@ PORTNAME= dlume PORTVERSION= 0.2.4 -PORTREVISION= 11 +PORTREVISION= 12 CATEGORIES= deskutils gnome MASTER_SITES= ${MASTER_SITE_TUCOWS} diff --git a/deskutils/fusenshi/Makefile b/deskutils/fusenshi/Makefile index e8bd2d1f8858..25f053b1d635 100644 --- a/deskutils/fusenshi/Makefile +++ b/deskutils/fusenshi/Makefile @@ -3,7 +3,7 @@ PORTNAME= fusenshi PORTVERSION= 0.9.0 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= deskutils MASTER_SITES= http://www.ongs.co.jp/projects/fusenshi/ EXTRACT_SUFX= .tgz diff --git a/deskutils/gnote/Makefile b/deskutils/gnote/Makefile index d3d18d79a1cd..bcf76bcbd604 100644 --- a/deskutils/gnote/Makefile +++ b/deskutils/gnote/Makefile @@ -3,7 +3,7 @@ PORTNAME= gnote PORTVERSION= 0.7.6 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= deskutils gnome MASTER_SITES= GNOME diff --git a/deskutils/ithought/Makefile b/deskutils/ithought/Makefile index e569e2b5ffc7..4ff499a797b6 100644 --- a/deskutils/ithought/Makefile +++ b/deskutils/ithought/Makefile @@ -3,7 +3,7 @@ PORTNAME= ithought PORTVERSION= a5 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= deskutils MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-alpha diff --git a/deskutils/kdepim4-runtime/Makefile b/deskutils/kdepim4-runtime/Makefile index df571a17a15b..961c03a841e6 100644 --- a/deskutils/kdepim4-runtime/Makefile +++ b/deskutils/kdepim4-runtime/Makefile @@ -3,6 +3,7 @@ PORTNAME= kdepim-runtime PORTVERSION= ${KDE4_VERSION} +PORTREVISION= 1 CATEGORIES= deskutils kde MASTER_SITES= KDE/${KDE4_BRANCH}/${PORTVERSION}/src DIST_SUBDIR= KDE/${PORTVERSION} diff --git a/deskutils/kdepim4/Makefile b/deskutils/kdepim4/Makefile index 3c8344545045..21bc56bfc522 100644 --- a/deskutils/kdepim4/Makefile +++ b/deskutils/kdepim4/Makefile @@ -3,6 +3,7 @@ PORTNAME= kdepim PORTVERSION= ${KDE4_VERSION} +PORTREVISION= 1 CATEGORIES= deskutils kde MASTER_SITES= KDE/${KDE4_BRANCH}/${PORTVERSION}/src DIST_SUBDIR= KDE/${PORTVERSION} diff --git a/deskutils/libgcal/Makefile b/deskutils/libgcal/Makefile index ad66a9726116..d243bcac88dd 100644 --- a/deskutils/libgcal/Makefile +++ b/deskutils/libgcal/Makefile @@ -3,7 +3,7 @@ PORTNAME= libgcal PORTVERSION= 0.9.6 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= deskutils MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} diff --git a/deskutils/libopensync-plugin-sunbird/Makefile b/deskutils/libopensync-plugin-sunbird/Makefile index c7e034f70a75..6536212ee84b 100644 --- a/deskutils/libopensync-plugin-sunbird/Makefile +++ b/deskutils/libopensync-plugin-sunbird/Makefile @@ -3,7 +3,7 @@ PORTNAME= libopensync-plugin-sunbird PORTVERSION= 0.22 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= deskutils MASTER_SITES= http://www.opensync.org/download/releases/${PORTVERSION}/ diff --git a/deskutils/libstreamanalyzer/Makefile b/deskutils/libstreamanalyzer/Makefile index 5184d8216846..5ec463c7c95a 100644 --- a/deskutils/libstreamanalyzer/Makefile +++ b/deskutils/libstreamanalyzer/Makefile @@ -2,7 +2,7 @@ PORTNAME= libstreamanalyzer PORTVERSION= ${STRIGI_VERSION} -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= deskutils MASTER_SITES= ${STRIGI_MASTER_SITES} diff --git a/deskutils/logjam/Makefile b/deskutils/logjam/Makefile index e912f07bb72f..5d79fad15d69 100644 --- a/deskutils/logjam/Makefile +++ b/deskutils/logjam/Makefile @@ -3,7 +3,7 @@ PORTNAME= logjam PORTVERSION= 4.6.2 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= deskutils MASTER_SITES= http://andy-shev.github.com/LogJam/download/ diff --git a/deskutils/nagaina/Makefile b/deskutils/nagaina/Makefile index c954bdf2995f..5b057bdfc376 100644 --- a/deskutils/nagaina/Makefile +++ b/deskutils/nagaina/Makefile @@ -4,7 +4,7 @@ PORTNAME= nagaina PORTVERSION= 0.1.2 DISTVERSIONSUFFIX= -sources -PORTREVISION= 6 +PORTREVISION= 9 CATEGORIES= deskutils MASTER_SITES= GOOGLE_CODE diff --git a/deskutils/osmo/Makefile b/deskutils/osmo/Makefile index 7b17ad9c8b96..09ae70bde529 100644 --- a/deskutils/osmo/Makefile +++ b/deskutils/osmo/Makefile @@ -3,7 +3,7 @@ PORTNAME= osmo PORTVERSION= 0.2.10 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= deskutils MASTER_SITES= SF/${PORTNAME}-pim/${PORTNAME}-pim/${PORTNAME}-${PORTVERSION}/ diff --git a/deskutils/pybookreader/Makefile b/deskutils/pybookreader/Makefile index 100eab13ef81..6d4ed2e868ff 100644 --- a/deskutils/pybookreader/Makefile +++ b/deskutils/pybookreader/Makefile @@ -3,7 +3,7 @@ PORTNAME= pybookreader PORTVERSION= 0.5.0 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= deskutils python MASTER_SITES= SF/${PORTNAME}/PyBookReader/PyBookReader%2BOrnamentBook-${PORTVERSION} DISTNAME= PyBookReader-${PORTVERSION} diff --git a/deskutils/pypanel/Makefile b/deskutils/pypanel/Makefile index 6bca76c59824..cd0e86ae4264 100644 --- a/deskutils/pypanel/Makefile +++ b/deskutils/pypanel/Makefile @@ -3,7 +3,7 @@ PORTNAME= pypanel PORTVERSION= 2.4 -PORTREVISION= 9 +PORTREVISION= 10 CATEGORIES= deskutils MASTER_SITES= SF DISTNAME= PyPanel-${PORTVERSION} @@ -11,7 +11,7 @@ DISTNAME= PyPanel-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= Desktop panel written in Python -LIB_DEPENDS= libfreetype.so.9:${PORTSDIR}/print/freetype2 +LIB_DEPENDS= libfreetype.so:${PORTSDIR}/print/freetype2 BUILD_DEPENDS= ${PYTHON_SITELIBDIR}/Xlib/X.py:${PORTSDIR}/x11-toolkits/py-xlib RUN_DEPENDS:= ${BUILD_DEPENDS} diff --git a/deskutils/strigidaemon/Makefile b/deskutils/strigidaemon/Makefile index 29f81a3e0734..4b636a1e27f5 100644 --- a/deskutils/strigidaemon/Makefile +++ b/deskutils/strigidaemon/Makefile @@ -2,6 +2,7 @@ PORTNAME= strigidaemon PORTVERSION= ${STRIGI_VERSION} +PORTREVISION= 1 CATEGORIES= deskutils MASTER_SITES= ${STRIGI_MASTER_SITES} diff --git a/deskutils/virt-manager/Makefile b/deskutils/virt-manager/Makefile index 091be03884e7..5c33ea3e0bbe 100644 --- a/deskutils/virt-manager/Makefile +++ b/deskutils/virt-manager/Makefile @@ -3,7 +3,7 @@ PORTNAME= virt-manager PORTVERSION= 0.9.5 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= deskutils net-mgmt MASTER_SITES= http://virt-manager.et.redhat.com/download/sources/${PORTNAME}/ \ LOCAL/jgh/deskutils/${PORTNAME}/ diff --git a/deskutils/xfce4-tumbler/Makefile b/deskutils/xfce4-tumbler/Makefile index f09c7a3c93cf..86314205c4cc 100644 --- a/deskutils/xfce4-tumbler/Makefile +++ b/deskutils/xfce4-tumbler/Makefile @@ -3,7 +3,7 @@ PORTNAME= tumbler PORTVERSION= 0.1.30 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= deskutils xfce MASTER_SITES= ${MASTER_SITE_XFCE} MASTER_SITE_SUBDIR= src/xfce/${PORTNAME}/${PORTVERSION:R} diff --git a/deskutils/xwrits/Makefile b/deskutils/xwrits/Makefile index 447687c4b097..39c4a51ea2ae 100644 --- a/deskutils/xwrits/Makefile +++ b/deskutils/xwrits/Makefile @@ -3,6 +3,7 @@ PORTNAME= xwrits PORTVERSION= 2.26 +PORTREVISION= 1 CATEGORIES= deskutils MASTER_SITES= http://www.lcdf.org/${PORTNAME}/ diff --git a/devel/aegis/Makefile b/devel/aegis/Makefile index 81f72f412ebb..bab8cce31d99 100644 --- a/devel/aegis/Makefile +++ b/devel/aegis/Makefile @@ -3,7 +3,7 @@ PORTNAME= aegis PORTVERSION= 4.24.3 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel MASTER_SITES= SF diff --git a/devel/apiextractor/Makefile b/devel/apiextractor/Makefile index 24ff44e90e8c..889e50c7c053 100644 --- a/devel/apiextractor/Makefile +++ b/devel/apiextractor/Makefile @@ -3,7 +3,7 @@ PORTNAME= apiextractor PORTVERSION= 0.10.10 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= http://www.pyside.org/files/ @@ -13,8 +13,8 @@ COMMENT= API Extractor library to build PySide LICENSE= GPLv2 BUILD_DEPENDS= sphinx-build:${PORTSDIR}/textproc/py-sphinx -LIB_DEPENDS= xml2.5:${PORTSDIR}/textproc/libxml2 \ - xslt.2:${PORTSDIR}/textproc/libxslt + +USE_GNOME= libxml2 libxslt PLIST_SUB= PORTVERSION=${PORTVERSION} diff --git a/devel/autogen/Makefile b/devel/autogen/Makefile index 0c0a1048b46c..69449ef8b13c 100644 --- a/devel/autogen/Makefile +++ b/devel/autogen/Makefile @@ -3,7 +3,7 @@ PORTNAME= autogen PORTVERSION= 5.12 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= GNU MASTER_SITE_SUBDIR= ${PORTNAME}/rel${PORTVERSION} diff --git a/devel/buildtool-doc/Makefile b/devel/buildtool-doc/Makefile index cd45c35f993c..7c37e2eccd6b 100644 --- a/devel/buildtool-doc/Makefile +++ b/devel/buildtool-doc/Makefile @@ -3,6 +3,7 @@ PORTNAME= buildtool-doc PORTVERSION= 0.16 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= SF/buildtool/${PORTNAME}/${PORTVERSION} diff --git a/devel/bullet/Makefile b/devel/bullet/Makefile index 3f39e2910573..3b7818b3aee6 100644 --- a/devel/bullet/Makefile +++ b/devel/bullet/Makefile @@ -4,6 +4,7 @@ PORTNAME= bullet PORTVERSION= 2.82 CATEGORIES= devel +PORTREVISION= 1 MASTER_SITES= GOOGLE_CODE DISTNAME= ${PORTNAME}-${PORTVERSION}-${SVN_COMMIT} EXTRACT_SUFX= .tgz diff --git a/devel/csoap/Makefile b/devel/csoap/Makefile index c0fd488c30a8..e45ce1b6fff3 100644 --- a/devel/csoap/Makefile +++ b/devel/csoap/Makefile @@ -3,6 +3,7 @@ PORTNAME= csoap PORTVERSION= 1.1.0 +PORTREVISION= 1 CATEGORIES= devel net www MASTER_SITES= SF/${PORTNAME}/libsoap/${PORTVERSION} DISTNAME= libsoap-${PORTVERSION} diff --git a/devel/dbus/Makefile b/devel/dbus/Makefile index 8845ae64f32a..365c34285999 100644 --- a/devel/dbus/Makefile +++ b/devel/dbus/Makefile @@ -4,6 +4,7 @@ PORTNAME= dbus PORTVERSION= 1.6.18 +PORTREVISION= 1 CATEGORIES= devel gnome MASTER_SITES= http://dbus.freedesktop.org/releases/dbus/ diff --git a/devel/dcmtk/Makefile b/devel/dcmtk/Makefile index 07632a510e4f..6a9679e3e72f 100644 --- a/devel/dcmtk/Makefile +++ b/devel/dcmtk/Makefile @@ -3,7 +3,7 @@ PORTNAME= dcmtk DISTVERSION= 3.6.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= ftp://dicom.offis.de/pub/dicom/offis/software/${PORTNAME}/${PORTNAME}${PORTVERSION:S/.//g}/ diff --git a/devel/dia2code/Makefile b/devel/dia2code/Makefile index 5d5f8dd856f2..9a15a90f3b4e 100644 --- a/devel/dia2code/Makefile +++ b/devel/dia2code/Makefile @@ -3,6 +3,7 @@ PORTNAME= dia2code PORTVERSION= 0.8.5 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= SF diff --git a/devel/directfb/Makefile b/devel/directfb/Makefile index efe09be34016..b6ad32a3c701 100644 --- a/devel/directfb/Makefile +++ b/devel/directfb/Makefile @@ -3,7 +3,7 @@ PORTNAME= directfb PORTVERSION= 1.4.13 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel MASTER_SITES= http://www.directfb.org/downloads/Core/${DISTNAME:R}/ DISTNAME= DirectFB-${PORTVERSION} diff --git a/devel/flowdesigner/Makefile b/devel/flowdesigner/Makefile index 77bb86168c9b..9478bb05eef9 100644 --- a/devel/flowdesigner/Makefile +++ b/devel/flowdesigner/Makefile @@ -3,7 +3,7 @@ PORTNAME= flowdesigner PORTVERSION= 0.9.1 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= devel MASTER_SITES= SF/${PORTNAME}/FlowDesigner/${PORTVERSION} DISTNAME= FlowDesigner-${PORTVERSION} diff --git a/devel/gconf2/Makefile b/devel/gconf2/Makefile index df27987b3e37..0c59354d4ad1 100644 --- a/devel/gconf2/Makefile +++ b/devel/gconf2/Makefile @@ -4,7 +4,7 @@ PORTNAME= gconf2 PORTVERSION= 2.32.0 -PORTREVISION?= 3 +PORTREVISION?= 4 CATEGORIES= devel gnome MASTER_SITES= GNOME MASTER_SITE_SUBDIR= sources/GConf/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} diff --git a/devel/gjstest/Makefile b/devel/gjstest/Makefile index 9e8e054a9f90..7ab256c88e68 100644 --- a/devel/gjstest/Makefile +++ b/devel/gjstest/Makefile @@ -3,7 +3,7 @@ PORTNAME= gjstest PORTVERSION= 1.0.8 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= devel MASTER_SITES= GOOGLE_CODE \ LOCAL/sunpoet diff --git a/devel/glade3/Makefile b/devel/glade3/Makefile index fda7c7ac9fef..cb0e31b44eb4 100644 --- a/devel/glade3/Makefile +++ b/devel/glade3/Makefile @@ -4,7 +4,7 @@ PORTNAME= glade3 PORTVERSION= 3.8.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome2 diff --git a/devel/glui/Makefile b/devel/glui/Makefile index 8c1020efb242..6f8557fad63d 100644 --- a/devel/glui/Makefile +++ b/devel/glui/Makefile @@ -3,7 +3,7 @@ PORTNAME= glui PORTVERSION= 2.36 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel graphics MASTER_SITES= SF/${PORTNAME}/Source/${PORTVERSION} EXTRACT_SUFX= .tgz diff --git a/devel/hwloc/Makefile b/devel/hwloc/Makefile index ed334a5cea78..e201eeb969a5 100644 --- a/devel/hwloc/Makefile +++ b/devel/hwloc/Makefile @@ -2,6 +2,7 @@ PORTNAME= hwloc PORTVERSION= 1.8 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://www.open-mpi.org/software/hwloc/v${PORTVERSION}/downloads/ \ http://icl.cs.utk.edu/open-mpi/software/hwloc/v${PORTVERSION}/downloads/ diff --git a/devel/libassetml/Makefile b/devel/libassetml/Makefile index 3b1e03166112..e80bec48d2d9 100644 --- a/devel/libassetml/Makefile +++ b/devel/libassetml/Makefile @@ -3,7 +3,7 @@ PORTNAME= libassetml PORTVERSION= 1.2.1 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= devel gnome MASTER_SITES= SF/ofset/${PORTNAME}/${PORTVERSION} diff --git a/devel/libbonobo/Makefile b/devel/libbonobo/Makefile index 84214d9e9b9d..8216505882f3 100644 --- a/devel/libbonobo/Makefile +++ b/devel/libbonobo/Makefile @@ -4,7 +4,7 @@ PORTNAME= libbonobo PORTVERSION= 2.32.0 -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES= devel MASTER_SITES= GNOME DIST_SUBDIR= gnome2 diff --git a/devel/libdap/Makefile b/devel/libdap/Makefile index 47a489336cb4..0b6c282cd4ef 100644 --- a/devel/libdap/Makefile +++ b/devel/libdap/Makefile @@ -3,6 +3,7 @@ PORTNAME= libdap PORTVERSION= 3.12.1 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://www.opendap.org/pub/source/ \ LOCAL/sunpoet diff --git a/devel/libg19draw/Makefile b/devel/libg19draw/Makefile index a7b823ed9a30..3886dc1e7021 100644 --- a/devel/libg19draw/Makefile +++ b/devel/libg19draw/Makefile @@ -3,6 +3,7 @@ PORTNAME= libg19draw PORTVERSION= 1.0.0 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= SF/g19linux/${PORTNAME}/${PORTNAME}-${PORTVERSION} diff --git a/devel/libglade2/Makefile b/devel/libglade2/Makefile index ddd288f84261..92140bf7964e 100644 --- a/devel/libglade2/Makefile +++ b/devel/libglade2/Makefile @@ -4,7 +4,7 @@ PORTNAME= libglade2 PORTVERSION= 2.6.4 -PORTREVISION?= 5 +PORTREVISION?= 6 CATEGORIES= devel gnome MASTER_SITES= GNOME MASTER_SITE_SUBDIR= sources/${PORTNAME:S/2$//}/${PORTVERSION:C/..$//} diff --git a/devel/libgsf/Makefile b/devel/libgsf/Makefile index a711bb641feb..34a9aec55080 100644 --- a/devel/libgsf/Makefile +++ b/devel/libgsf/Makefile @@ -4,6 +4,7 @@ PORTNAME= libgsf PORTVERSION= 1.14.28 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= GNOME DIST_SUBDIR= gnome2 diff --git a/devel/libgtop/Makefile b/devel/libgtop/Makefile index 6151a6bc8efd..9796fae45501 100644 --- a/devel/libgtop/Makefile +++ b/devel/libgtop/Makefile @@ -4,6 +4,7 @@ PORTNAME= libgtop PORTVERSION= 2.28.4 +PORTREVISION= 1 CATEGORIES= devel gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome2 diff --git a/devel/libiqxmlrpc/Makefile b/devel/libiqxmlrpc/Makefile index 3d396cf03dca..db91fcb91811 100644 --- a/devel/libiqxmlrpc/Makefile +++ b/devel/libiqxmlrpc/Makefile @@ -3,7 +3,7 @@ PORTNAME= libiqxmlrpc PORTVERSION= 0.12.4 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel net MASTER_SITES= SF diff --git a/devel/liblangtag/Makefile b/devel/liblangtag/Makefile index ab7f9539fc6e..80a4942100ad 100644 --- a/devel/liblangtag/Makefile +++ b/devel/liblangtag/Makefile @@ -2,6 +2,7 @@ PORTNAME= liblangtag PORTVERSION= 0.5.1 +PORTREVISION= 1 CATEGORIES= devel textproc MASTER_SITES= https://cdn.bitbucket.org/tagoh/liblangtag/downloads/ \ LOCAL/jkim diff --git a/devel/liblouisxml/Makefile b/devel/liblouisxml/Makefile index 3d64ad8c91d8..5afe17412959 100644 --- a/devel/liblouisxml/Makefile +++ b/devel/liblouisxml/Makefile @@ -3,19 +3,19 @@ PORTNAME= liblouisxml PORTVERSION= 1.8.0 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} MAINTAINER= wenheping@gmail.com COMMENT= Library Provide Complete Braille Transcription Services -LIB_DEPENDS= louis.2:${PORTSDIR}/devel/liblouis \ - xml2.5:${PORTSDIR}/textproc/libxml2 +LIB_DEPENDS= louis.2:${PORTSDIR}/devel/liblouis GNU_CONFIGURE= yes -USES= pkgconfig -USE_GMAKE= yes +USES= pkgconfig gmake USE_LDCONFIG= yes +USE_GNOME= libxml2 INFO= liblouisxml-guide MAN1= msword2brl.1 xml2brl.1 diff --git a/devel/libopensync/Makefile b/devel/libopensync/Makefile index 96c76ab6c3b0..6a1abc560a36 100644 --- a/devel/libopensync/Makefile +++ b/devel/libopensync/Makefile @@ -3,7 +3,7 @@ PORTNAME= libopensync PORTVERSION= 0.39 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= http://www.opensync.org/download/releases/${PORTVERSION}/ diff --git a/devel/libopensync022/Makefile b/devel/libopensync022/Makefile index bb2fda1987f0..b204ac6d1ff4 100644 --- a/devel/libopensync022/Makefile +++ b/devel/libopensync022/Makefile @@ -3,7 +3,7 @@ PORTNAME= libopensync PORTVERSION= 0.22 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel MASTER_SITES= http://www.opensync.org/download/releases/${PORTVERSION}/ PKGNAMESUFFIX= 022 diff --git a/devel/libpciaccess/Makefile b/devel/libpciaccess/Makefile index 60b0eb8de6a3..64796f256042 100644 --- a/devel/libpciaccess/Makefile +++ b/devel/libpciaccess/Makefile @@ -2,6 +2,7 @@ PORTNAME= libpciaccess PORTVERSION= 0.13.2 +PORTREVISION= 1 CATEGORIES= devel MAINTAINER= x11@FreeBSD.org diff --git a/devel/libpciaccess/pkg-plist b/devel/libpciaccess/pkg-plist index 4fe963b655ee..97c5f03e4d43 100644 --- a/devel/libpciaccess/pkg-plist +++ b/devel/libpciaccess/pkg-plist @@ -3,4 +3,5 @@ lib/libpciaccess.a lib/libpciaccess.la lib/libpciaccess.so lib/libpciaccess.so.0 +lib/libpciaccess.so.0.11.1 libdata/pkgconfig/pciaccess.pc diff --git a/devel/libplist/Makefile b/devel/libplist/Makefile index cf0a8b229a6c..e6285074cc22 100644 --- a/devel/libplist/Makefile +++ b/devel/libplist/Makefile @@ -2,7 +2,7 @@ PORTNAME= libplist PORTVERSION= 1.10 -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES?= devel MASTER_SITES= http://www.libimobiledevice.org/downloads/ diff --git a/devel/librcc/Makefile b/devel/librcc/Makefile index 014f9c1fd174..5ba624b63890 100644 --- a/devel/librcc/Makefile +++ b/devel/librcc/Makefile @@ -3,7 +3,7 @@ PORTNAME= librcc PORTVERSION= 0.2.12 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= http://dside.dyndns.org/files/rusxmms/ \ LOCAL/fluffy diff --git a/devel/librest/Makefile b/devel/librest/Makefile index 3cc0ac79319c..68802125fc50 100644 --- a/devel/librest/Makefile +++ b/devel/librest/Makefile @@ -3,6 +3,7 @@ PORTNAME= rest PORTVERSION= 0.7.91 +PORTREVISION= 1 CATEGORIES= devel www MASTER_SITES= GNOME diff --git a/devel/libsoup/Makefile b/devel/libsoup/Makefile index 7d60636719b5..fda89e71b81c 100644 --- a/devel/libsoup/Makefile +++ b/devel/libsoup/Makefile @@ -4,7 +4,7 @@ PORTNAME= libsoup PORTVERSION= 2.40.3 -PORTREVISION?= 2 +PORTREVISION?= 3 CATEGORIES= devel gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome2 diff --git a/devel/libvirt/Makefile b/devel/libvirt/Makefile index 5af0d496f3d5..e7b23a6b2e6d 100644 --- a/devel/libvirt/Makefile +++ b/devel/libvirt/Makefile @@ -4,6 +4,7 @@ PORTNAME= libvirt PORTVERSION= 1.2.3 PORTREVISION= 1 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://libvirt.org/sources/ \ ftp://libvirt.org/libvirt/ diff --git a/devel/love/Makefile b/devel/love/Makefile index 9c0efe91249f..6f79c2520457 100644 --- a/devel/love/Makefile +++ b/devel/love/Makefile @@ -3,7 +3,7 @@ PORTNAME= love PORTVERSION= 0.8.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel games MASTER_SITES= http://cdn.bitbucket.org/rude/love/downloads/ \ http://mirror.amdmi3.ru/distfiles/ diff --git a/devel/love07/Makefile b/devel/love07/Makefile index 09e9751ea89d..8d10ffda15e0 100644 --- a/devel/love07/Makefile +++ b/devel/love07/Makefile @@ -3,7 +3,7 @@ PORTNAME= love PORTVERSION= 0.7.2 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= devel games MASTER_SITES= http://cdn.bitbucket.org/rude/love/downloads/ \ http://mirror.amdmi3.ru/distfiles/ diff --git a/devel/love5/Makefile b/devel/love5/Makefile index ea141c33dd9f..417bed595f0b 100644 --- a/devel/love5/Makefile +++ b/devel/love5/Makefile @@ -3,7 +3,7 @@ PORTNAME= love DISTVERSION= 0.5-0 -PORTREVISION= 9 +PORTREVISION= 10 CATEGORIES= devel games MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} PKGNAMESUFFIX= 5 diff --git a/devel/m17n-lib/Makefile b/devel/m17n-lib/Makefile index d78c89c03699..c0232ad044b5 100644 --- a/devel/m17n-lib/Makefile +++ b/devel/m17n-lib/Makefile @@ -3,7 +3,7 @@ PORTNAME= m17n-lib PORTVERSION= 1.6.4 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_SAVANNAH} MASTER_SITE_SUBDIR= m17n diff --git a/devel/py-lxml/Makefile b/devel/py-lxml/Makefile index 5e21d2825e19..ddec2265444b 100644 --- a/devel/py-lxml/Makefile +++ b/devel/py-lxml/Makefile @@ -3,7 +3,7 @@ PORTNAME= lxml PORTVERSION= 3.2.5 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/py-yum-metadata-parser/Makefile b/devel/py-yum-metadata-parser/Makefile index cc99b8efe6a7..b70dec777c7f 100644 --- a/devel/py-yum-metadata-parser/Makefile +++ b/devel/py-yum-metadata-parser/Makefile @@ -3,7 +3,7 @@ PORTNAME= yum-metadata-parser PORTVERSION= 1.1.4 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel python MASTER_SITES= http://yum.baseurl.org/download/${PORTNAME}/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/sdl_sge/Makefile b/devel/sdl_sge/Makefile index 052ae72c5421..fd724d2915e7 100644 --- a/devel/sdl_sge/Makefile +++ b/devel/sdl_sge/Makefile @@ -3,7 +3,7 @@ PORTNAME= sdl_sge PORTVERSION= 0.030809 -PORTREVISION= 12 +PORTREVISION= 13 CATEGORIES= devel graphics MASTER_SITES= http://www.digitalfanatics.org/cal/sge/files/ \ http://www.sourcefiles.org/Programming/Libraries/Graphics/ diff --git a/devel/seed/Makefile b/devel/seed/Makefile index 828258d68ddd..d6a38b353f7f 100644 --- a/devel/seed/Makefile +++ b/devel/seed/Makefile @@ -4,7 +4,7 @@ PORTNAME= seed PORTVERSION= 2.31.91 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= devel gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome2 diff --git a/devel/seed3/Makefile b/devel/seed3/Makefile index aca04be60d2e..31a6319fe3f0 100644 --- a/devel/seed3/Makefile +++ b/devel/seed3/Makefile @@ -4,7 +4,7 @@ PORTNAME= seed PORTVERSION= 3.2.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel gnome MASTER_SITES= GNOME PKGNAMESUFFIX= 3 diff --git a/devel/sfml/Makefile b/devel/sfml/Makefile index 12a0b5489275..bb12c74d21e4 100644 --- a/devel/sfml/Makefile +++ b/devel/sfml/Makefile @@ -3,7 +3,7 @@ PORTNAME= sfml PORTVERSION= 1.6 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel MASTER_SITES= SF DISTNAME= SFML-${PORTVERSION}-sdk-linux-32 diff --git a/devel/shiboken/Makefile b/devel/shiboken/Makefile index f30a1f0185e8..ab47d56528f6 100644 --- a/devel/shiboken/Makefile +++ b/devel/shiboken/Makefile @@ -3,7 +3,7 @@ PORTNAME= shiboken PORTVERSION= 1.1.1 -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://www.pyside.org/files/ diff --git a/devel/simgear/Makefile b/devel/simgear/Makefile index c9f6085dacfa..8043642eb135 100644 --- a/devel/simgear/Makefile +++ b/devel/simgear/Makefile @@ -2,6 +2,7 @@ PORTNAME= simgear PORTVERSION= 3.0.0 +PORTREVISION= 1 CATEGORIES= devel games MASTER_SITES= http://mirrors.ibiblio.org/simgear/ftp/Source/ \ ftp://ftp.de.flightgear.org/pub/simgear/Source/ \ diff --git a/devel/uatraits/Makefile b/devel/uatraits/Makefile index 5263ac75c2c5..30cda10a0641 100644 --- a/devel/uatraits/Makefile +++ b/devel/uatraits/Makefile @@ -3,7 +3,7 @@ PORTNAME= uatraits PORTVERSION= 20130430 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel www MASTER_SITES= http://people.freebsd.org/~demon/ diff --git a/devel/umbrello/Makefile b/devel/umbrello/Makefile index 45c26ccec093..43ccf9c25847 100644 --- a/devel/umbrello/Makefile +++ b/devel/umbrello/Makefile @@ -2,6 +2,7 @@ PORTNAME= umbrello PORTVERSION= ${KDE4_VERSION} +PORTREVISION= 1 CATEGORIES= devel kde MASTER_SITES= KDE/${KDE4_BRANCH}/${PORTVERSION}/src DIST_SUBDIR= KDE/${PORTVERSION} diff --git a/devel/upp/Makefile b/devel/upp/Makefile index f63225134618..5d69cfd3a985 100644 --- a/devel/upp/Makefile +++ b/devel/upp/Makefile @@ -3,7 +3,7 @@ PORTNAME= upp PORTVERSION= 5485 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel x11-toolkits MASTER_SITES= SF DISTNAME= ${PORTNAME}-x11-src-${PORTVERSION} diff --git a/devel/xorg-macros/Makefile b/devel/xorg-macros/Makefile index 9b3c17a5f035..1ae5c32f850b 100644 --- a/devel/xorg-macros/Makefile +++ b/devel/xorg-macros/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= xorg-macros -PORTVERSION= 1.18.0 +PORTVERSION= 1.19.0 CATEGORIES= devel x11 DISTNAME= util-macros-$(PORTVERSION) diff --git a/devel/xorg-macros/distinfo b/devel/xorg-macros/distinfo index a1875ba28610..d222aab2a6b1 100644 --- a/devel/xorg-macros/distinfo +++ b/devel/xorg-macros/distinfo @@ -1,2 +1,2 @@ -SHA256 (xorg/util/util-macros-1.18.0.tar.bz2) = e5e3d132a852f0576ea2cf831a9813c54a58810a59cdb198f56b884c5a78945b -SIZE (xorg/util/util-macros-1.18.0.tar.bz2) = 77830 +SHA256 (xorg/util/util-macros-1.19.0.tar.bz2) = 2835b11829ee634e19fa56517b4cfc52ef39acea0cd82e15f68096e27cbed0ba +SIZE (xorg/util/util-macros-1.19.0.tar.bz2) = 80027 diff --git a/dns/bind98/Makefile b/dns/bind98/Makefile index 145f4413d550..255dca447275 100644 --- a/dns/bind98/Makefile +++ b/dns/bind98/Makefile @@ -2,7 +2,7 @@ PORTNAME= bind PORTVERSION= 9.8.7 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= dns net ipv6 MASTER_SITES= ${MASTER_SITE_ISC} MASTER_SITE_SUBDIR= bind9/${ISCVERSION} diff --git a/dns/bind99/Makefile b/dns/bind99/Makefile index 613c0a1a65c2..78e1f0081e88 100644 --- a/dns/bind99/Makefile +++ b/dns/bind99/Makefile @@ -2,7 +2,7 @@ PORTNAME= bind PORTVERSION= 9.9.5 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= dns net ipv6 MASTER_SITES= ${MASTER_SITE_ISC} MASTER_SITE_SUBDIR= bind9/${ISCVERSION} diff --git a/dns/opendnssec/Makefile b/dns/opendnssec/Makefile index 204fa781250f..ce7b63cd11e0 100644 --- a/dns/opendnssec/Makefile +++ b/dns/opendnssec/Makefile @@ -3,6 +3,7 @@ PORTNAME= opendnssec PORTVERSION= 1.4.3 +PORTREVISION= 1 CATEGORIES= dns MASTER_SITES= http://dist.opendnssec.org/source/ diff --git a/dns/opendnssec13/Makefile b/dns/opendnssec13/Makefile index 6ea4a6811c83..c556be5a0633 100644 --- a/dns/opendnssec13/Makefile +++ b/dns/opendnssec13/Makefile @@ -3,6 +3,7 @@ PORTNAME= opendnssec PORTVERSION= 1.3.16 +PORTREVISION= 1 CATEGORIES= dns MASTER_SITES= http://dist.opendnssec.org/source/ PKGNAMESUFFIX= 13 diff --git a/dns/samba-nsupdate/Makefile b/dns/samba-nsupdate/Makefile index e94c001fcd41..a385c9db6dd5 100644 --- a/dns/samba-nsupdate/Makefile +++ b/dns/samba-nsupdate/Makefile @@ -2,6 +2,7 @@ PORTNAME= nsupdate PORTVERSION= 9.8.6 +PORTREVISION= 1 CATEGORIES= dns net ipv6 MASTER_SITES= ${MASTER_SITE_ISC} MASTER_SITE_SUBDIR= bind9/${ISCVERSION} diff --git a/editors/abiword/Makefile b/editors/abiword/Makefile index fa1befc518d9..48b2c67d9721 100644 --- a/editors/abiword/Makefile +++ b/editors/abiword/Makefile @@ -4,7 +4,7 @@ PORTNAME= abiword PORTVERSION= 2.8.6 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= editors MASTER_SITES= http://www.abisource.com/downloads/%SUBDIR%/${PORTVERSION}/source/ MASTER_SITE_SUBDIR= abiword diff --git a/editors/calligra/Makefile b/editors/calligra/Makefile index 7b7aa97eaf02..6a744b7b6cec 100644 --- a/editors/calligra/Makefile +++ b/editors/calligra/Makefile @@ -2,7 +2,7 @@ PORTNAME= calligra PORTVERSION= ${CALLIGRA_VERSION} -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= editors kde MASTER_SITES= ${MASTER_SITE_KDE} MASTER_SITE_SUBDIR= ${CALLIGRA_BRANCH}/${PORTNAME}-${PORTVERSION}/ diff --git a/editors/emacs-devel/Makefile b/editors/emacs-devel/Makefile index a30aaedafca0..67228d291e95 100644 --- a/editors/emacs-devel/Makefile +++ b/editors/emacs-devel/Makefile @@ -3,6 +3,7 @@ PORTNAME= emacs PORTVERSION= ${EMACS_VER} +PORTREVISION= 1 PORTEPOCH= 2 CATEGORIES= editors ipv6 MASTER_SITES= GNU_ALPHA diff --git a/editors/emacs/Makefile b/editors/emacs/Makefile index 242313995cdd..7b6bbd94871d 100644 --- a/editors/emacs/Makefile +++ b/editors/emacs/Makefile @@ -3,7 +3,7 @@ PORTNAME= emacs PORTVERSION= ${EMACS_VER} -PORTREVISION?= 2 +PORTREVISION?= 3 PORTEPOCH= 3 CATEGORIES= editors ipv6 MASTER_SITES= ${MASTER_SITE_GNU} diff --git a/editors/emacs23/Makefile b/editors/emacs23/Makefile index 794c7cc6ab0e..5719e3762f2e 100644 --- a/editors/emacs23/Makefile +++ b/editors/emacs23/Makefile @@ -3,7 +3,7 @@ PORTNAME= emacs PORTVERSION= ${EMACS_VER} -PORTREVISION= 3 +PORTREVISION= 4 PORTEPOCH= 1 CATEGORIES= editors ipv6 MASTER_SITES= ${MASTER_SITE_GNU} diff --git a/editors/libreoffice/Makefile b/editors/libreoffice/Makefile index 33904cd30207..0eaa92649266 100644 --- a/editors/libreoffice/Makefile +++ b/editors/libreoffice/Makefile @@ -2,7 +2,7 @@ .include "${.CURDIR}/Makefile.common" -PORTREVISION= 1 +PORTREVISION= 2 COMMENT= Full integrated office productivity suite diff --git a/editors/mate-text-editor/Makefile b/editors/mate-text-editor/Makefile index 0879a4706930..64f26a6b759a 100644 --- a/editors/mate-text-editor/Makefile +++ b/editors/mate-text-editor/Makefile @@ -3,6 +3,7 @@ PORTNAME= mate-text-editor PORTVERSION= 1.6.0 +PORTREVISION= 1 CATEGORIES= editors mate MASTER_SITES= MATE DIST_SUBDIR= mate diff --git a/editors/openoffice-4/Makefile b/editors/openoffice-4/Makefile index cc3c60022a7d..d810121d23d2 100644 --- a/editors/openoffice-4/Makefile +++ b/editors/openoffice-4/Makefile @@ -3,7 +3,7 @@ PORTNAME= apache-openoffice PORTVERSION= 4.0.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= editors java MASTER_SITES= http://www.apache.org/dist/openoffice/${PORTVERSION}/source/ \ ftp://ftp.riken.jp/net/apache/openoffice/${PORTVERSION}/source/ \ diff --git a/editors/openoffice-devel/Makefile b/editors/openoffice-devel/Makefile index caeab5f7f9e5..e71b27b0c49f 100644 --- a/editors/openoffice-devel/Makefile +++ b/editors/openoffice-devel/Makefile @@ -3,7 +3,7 @@ PORTNAME= apache-openoffice PORTVERSION= 4.1.${SVNREVISION} -PORTREVISION= 1 +PORTREVISION= 2 PORTEPOCH= 2 CATEGORIES= editors java MASTER_SITES= ${MASTER_SITE_LOCAL} diff --git a/editors/texmacs/Makefile b/editors/texmacs/Makefile index de6333ada9ee..c4fddf27538d 100644 --- a/editors/texmacs/Makefile +++ b/editors/texmacs/Makefile @@ -3,6 +3,7 @@ PORTNAME= texmacs PORTVERSION= 1.0.7.21 +PORTREVISION= 1 CATEGORIES= editors print MASTER_SITES= ftp://ftp.texmacs.org/TeXmacs/tmftp/source/ \ http://www.predatorlabs.net/dl/ diff --git a/editors/xemacs-devel-mule/Makefile b/editors/xemacs-devel-mule/Makefile index 501df5bcd47e..088ab05b5aa4 100644 --- a/editors/xemacs-devel-mule/Makefile +++ b/editors/xemacs-devel-mule/Makefile @@ -3,7 +3,7 @@ PORTNAME= xemacs-devel-mule PORTVERSION= ${XEMACS_VER:S/-/./} -PORTREVISION= 13 +PORTREVISION= 14 CATEGORIES+= editors MASTER_SITES= ${MASTER_SITE_XEMACS} MASTER_SITE_SUBDIR= xemacs-${XEMACS_REL} diff --git a/editors/xmlcopyeditor/Makefile b/editors/xmlcopyeditor/Makefile index 32de794c6ec3..c96f2490f4d4 100644 --- a/editors/xmlcopyeditor/Makefile +++ b/editors/xmlcopyeditor/Makefile @@ -3,6 +3,7 @@ PORTNAME= xmlcopyeditor PORTVERSION= 1.2.0.11 +PORTREVISION= 1 CATEGORIES= editors MASTER_SITES= SF/xml-copy-editor/${PORTNAME}-linux/${PORTVERSION} diff --git a/emulators/adamem/Makefile b/emulators/adamem/Makefile index 3c1195c1c347..c11532ae7fc4 100644 --- a/emulators/adamem/Makefile +++ b/emulators/adamem/Makefile @@ -3,7 +3,7 @@ PORTNAME= adamem PORTVERSION= 1.0 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= emulators MASTER_SITES= http://www.komkon.org/~dekogel/files/coleco/ DISTNAME= ${PORTNAME} diff --git a/emulators/advancemame/Makefile b/emulators/advancemame/Makefile index e6fa3e4db6be..950cbbe73363 100644 --- a/emulators/advancemame/Makefile +++ b/emulators/advancemame/Makefile @@ -3,6 +3,7 @@ PORTNAME= advancemame PORTVERSION= 1.2 +PORTREVISION= 1 CATEGORIES= emulators MASTER_SITES= SF diff --git a/emulators/advancemenu/Makefile b/emulators/advancemenu/Makefile index 2719939c1b6c..91f16b434556 100644 --- a/emulators/advancemenu/Makefile +++ b/emulators/advancemenu/Makefile @@ -3,6 +3,7 @@ PORTNAME= advancemenu PORTVERSION= 2.6 +PORTREVISION= 1 CATEGORIES= emulators MASTER_SITES= SF/advancemame/${PORTNAME}/${PORTVERSION} diff --git a/emulators/advancemess/Makefile b/emulators/advancemess/Makefile index 3201e3b1ab75..729e9dfeb8a4 100644 --- a/emulators/advancemess/Makefile +++ b/emulators/advancemess/Makefile @@ -3,7 +3,7 @@ PORTNAME= advancemess PORTVERSION= 0.102.0.1 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= emulators MASTER_SITES= SF/advancemame/${PORTNAME}/${PORTVERSION} diff --git a/emulators/catapult/Makefile b/emulators/catapult/Makefile index e85e0a33a1d6..65db2583e2ad 100644 --- a/emulators/catapult/Makefile +++ b/emulators/catapult/Makefile @@ -3,7 +3,7 @@ PORTNAME= catapult PORTVERSION= 0.10.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= emulators MASTER_SITES= SF/openmsx/openmsx/${PORTVERSION} DISTNAME= openmsx-${PORTNAME}-${PORTVERSION} diff --git a/emulators/dolphin-emu/Makefile b/emulators/dolphin-emu/Makefile index ff7c53375fea..fa2fde120ea9 100644 --- a/emulators/dolphin-emu/Makefile +++ b/emulators/dolphin-emu/Makefile @@ -3,7 +3,7 @@ PORTNAME= dolphin-emu PORTVERSION= 4.0.0 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= emulators MASTER_SITES= http://contribs.martymac.org/FreeBSD-ports/distfiles/ \ LOCAL/martymac diff --git a/emulators/fuse/Makefile b/emulators/fuse/Makefile index c9a270aeaa53..1a36b0d78220 100644 --- a/emulators/fuse/Makefile +++ b/emulators/fuse/Makefile @@ -3,7 +3,7 @@ PORTNAME= fuse PORTVERSION= 1.1.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= emulators MASTER_SITES= SF/${PORTNAME}-emulator/${PORTNAME}/${PORTVERSION} diff --git a/emulators/jzintv/Makefile b/emulators/jzintv/Makefile index 055aa1b8de62..35e977b4003f 100644 --- a/emulators/jzintv/Makefile +++ b/emulators/jzintv/Makefile @@ -3,7 +3,7 @@ PORTNAME= jzintv PORTVERSION= 1.0b4 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= emulators MASTER_SITES= http://spatula-city.org/~im14u2c/intv/dl/ DISTFILES= ${PORTNAME}-1.0-beta4-src${EXTRACT_SUFX} \ diff --git a/emulators/loemu/Makefile b/emulators/loemu/Makefile index 7bd265a1af7e..66d76ad86436 100644 --- a/emulators/loemu/Makefile +++ b/emulators/loemu/Makefile @@ -3,7 +3,7 @@ PORTNAME= loemu PORTVERSION= 0.3.1 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= emulators python MASTER_SITES= http://loemu.pegueroles.com/dists/ diff --git a/emulators/mtools/Makefile b/emulators/mtools/Makefile index 4c535cca3461..e3d7f0ed067f 100644 --- a/emulators/mtools/Makefile +++ b/emulators/mtools/Makefile @@ -3,7 +3,7 @@ PORTNAME= mtools PORTVERSION= 4.0.10 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= emulators MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= mtools diff --git a/emulators/mupen64-sdlinput/Makefile b/emulators/mupen64-sdlinput/Makefile index d8736f8abd96..590cc17d95b2 100644 --- a/emulators/mupen64-sdlinput/Makefile +++ b/emulators/mupen64-sdlinput/Makefile @@ -1,12 +1,12 @@ # $FreeBSD$ PORTVERSION= 0.0.10 -PORTREVISION= 3 +PORTREVISION= 4 PKGNAMESUFFIX= -sdlinput COMMENT= Blight's SDL input plugin for Mupen64 -LIB_DEPENDS= freetype.9:${PORTSDIR}/print/freetype2 +LIB_DEPENDS= libfreetype.so:${PORTSDIR}/print/freetype2 FIXFILES= # diff --git a/emulators/nonpareil/Makefile b/emulators/nonpareil/Makefile index 8ed647999a2e..a91cee13f61e 100644 --- a/emulators/nonpareil/Makefile +++ b/emulators/nonpareil/Makefile @@ -3,7 +3,7 @@ PORTNAME= nonpareil PORTVERSION= 0.79 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= emulators MASTER_SITES= http://nonpareil.brouhaha.com/download/ diff --git a/emulators/openmsx/Makefile b/emulators/openmsx/Makefile index b91236f2ffdf..987265e41a78 100644 --- a/emulators/openmsx/Makefile +++ b/emulators/openmsx/Makefile @@ -2,7 +2,7 @@ PORTNAME= openmsx PORTVERSION= 0.10.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= emulators MASTER_SITES= SF diff --git a/emulators/qemu-devel/Makefile b/emulators/qemu-devel/Makefile index 752199f8f6fb..a4e221894c70 100644 --- a/emulators/qemu-devel/Makefile +++ b/emulators/qemu-devel/Makefile @@ -3,7 +3,7 @@ PORTNAME= qemu PORTVERSION= 1.7.1 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= emulators MASTER_SITES= http://wiki.qemu.org/download/:release \ LOCAL/nox:snapshot diff --git a/emulators/snes9x-gtk/Makefile b/emulators/snes9x-gtk/Makefile index 4551768d8003..5202e18a0d74 100644 --- a/emulators/snes9x-gtk/Makefile +++ b/emulators/snes9x-gtk/Makefile @@ -3,6 +3,7 @@ PORTNAME= snes9x PORTVERSION= 1.53r81 +PORTREVISION= 1 CATEGORIES= emulators MASTER_SITES= http://snes9x-gtk.googlecode.com/files/ PKGNAMESUFFIX= -gtk diff --git a/emulators/tme/Makefile b/emulators/tme/Makefile index 364ddc20fd00..29d51f75b28d 100644 --- a/emulators/tme/Makefile +++ b/emulators/tme/Makefile @@ -3,7 +3,7 @@ PORTNAME= tme PORTVERSION= 0.8 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= emulators MASTER_SITES= http://people.csail.mit.edu/fredette/tme/ diff --git a/emulators/virtualbox-ose-additions/Makefile b/emulators/virtualbox-ose-additions/Makefile index 0b12ac18d733..b18ce9966102 100644 --- a/emulators/virtualbox-ose-additions/Makefile +++ b/emulators/virtualbox-ose-additions/Makefile @@ -3,7 +3,7 @@ PORTNAME= virtualbox-ose DISTVERSION= 4.3.10 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= emulators MASTER_SITES= http://download.virtualbox.org/virtualbox/${DISTVERSION}/ \ http://tmp.chruetertee.ch/ \ diff --git a/emulators/wine-devel/Makefile b/emulators/wine-devel/Makefile index 4172e4a6c845..6f8837c5fcdc 100644 --- a/emulators/wine-devel/Makefile +++ b/emulators/wine-devel/Makefile @@ -3,6 +3,7 @@ PORTNAME= wine DISTVERSION= 1.7.16 +PORTREVISION= 3 PORTEPOCH= 1 CATEGORIES= emulators MASTER_SITES= SF/${PORTNAME}/Source \ diff --git a/emulators/wine/Makefile b/emulators/wine/Makefile index 73f241823a88..6e242601456d 100644 --- a/emulators/wine/Makefile +++ b/emulators/wine/Makefile @@ -3,6 +3,7 @@ PORTNAME= wine DISTVERSION= 1.6.2 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= emulators MASTER_SITES= SF/${PORTNAME}/Source \ diff --git a/emulators/yabause/Makefile b/emulators/yabause/Makefile index fb760a24b785..3da9b47d92c6 100644 --- a/emulators/yabause/Makefile +++ b/emulators/yabause/Makefile @@ -3,7 +3,7 @@ PORTNAME= yabause PORTVERSION= 0.9.11.1 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= emulators MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTVERSION:S/1.1/1/g}/ diff --git a/finance/gnucash-docs/Makefile b/finance/gnucash-docs/Makefile index 070cdfb4f936..54b0d064aa0c 100644 --- a/finance/gnucash-docs/Makefile +++ b/finance/gnucash-docs/Makefile @@ -4,6 +4,7 @@ PORTNAME= gnucash-docs PORTVERSION= 2.6.2 +PORTREVISION= 1 CATEGORIES= finance gnome MASTER_SITES= SF/gnucash/${PORTNAME}/${PORTVERSION} \ http://www.gnucash.org/pub/gnucash/sources/stable/ \ diff --git a/finance/gnucash/Makefile b/finance/gnucash/Makefile index d0d07d81b524..f10f29cc0e29 100644 --- a/finance/gnucash/Makefile +++ b/finance/gnucash/Makefile @@ -3,6 +3,7 @@ PORTNAME= gnucash PORTVERSION= 2.6.2 +PORTREVISION= 1 CATEGORIES= finance gnome MASTER_SITES= SF/${PORTNAME}/${PORTNAME}%20%28stable%29/${PORTVERSION} diff --git a/finance/grisbi/Makefile b/finance/grisbi/Makefile index a43f6fb8dbc3..45961cc602b0 100644 --- a/finance/grisbi/Makefile +++ b/finance/grisbi/Makefile @@ -3,6 +3,7 @@ PORTNAME= grisbi PORTVERSION= 1.0.0 +PORTREVISION= 1 CATEGORIES= finance MASTER_SITES= SF/${PORTNAME}/${PORTNAME}%20stable/${PORTVERSION:C|0$|x|}/ diff --git a/finance/openerp-server/Makefile b/finance/openerp-server/Makefile index 61969b08582b..0a3aeedd5222 100644 --- a/finance/openerp-server/Makefile +++ b/finance/openerp-server/Makefile @@ -3,6 +3,7 @@ PORTNAME= openerp-server PORTVERSION= 7.0 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= finance python MASTER_SITES= http://nightly.openerp.com/7.0/nightly/src/ diff --git a/french/verbiste/Makefile b/french/verbiste/Makefile index c6c79db106f8..7b827ece28a1 100644 --- a/french/verbiste/Makefile +++ b/french/verbiste/Makefile @@ -3,6 +3,7 @@ PORTNAME= verbiste PORTVERSION= 0.1.33 +PORTREVISION= 1 CATEGORIES= french textproc MASTER_SITES= http://perso.b2b2c.ca/sarrazip/dev/ diff --git a/games/0ad/Makefile b/games/0ad/Makefile index 18ec50024907..6bf5994aadc4 100644 --- a/games/0ad/Makefile +++ b/games/0ad/Makefile @@ -2,7 +2,7 @@ PORTNAME= 0ad PORTVERSION= 0.0.14 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= games MASTER_SITES= SF/zero-ad/releases DISTFILES= ${PORTNAME}-${PORTVERSION}-alpha-unix-build.tar.xz \ diff --git a/games/KnightCap/Makefile b/games/KnightCap/Makefile index b9385c86478f..d1f54cd59322 100644 --- a/games/KnightCap/Makefile +++ b/games/KnightCap/Makefile @@ -3,7 +3,7 @@ PORTNAME= knightcap PORTVERSION= 3.6 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= games MASTER_SITES= ftp://ftp.samba.org/pub/KnightCap/ DISTNAME= KnightCap-${PORTVERSION} diff --git a/games/adgali/Makefile b/games/adgali/Makefile index a11cc0d35005..86280ec077c5 100644 --- a/games/adgali/Makefile +++ b/games/adgali/Makefile @@ -3,7 +3,7 @@ PORTNAME= adgali PORTVERSION= 0.2.4 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= games devel MASTER_SITES= http://adgali.apiou.org/download/ diff --git a/games/adonthell/Makefile b/games/adonthell/Makefile index e780bb50a0f8..a0480cf770f9 100644 --- a/games/adonthell/Makefile +++ b/games/adonthell/Makefile @@ -4,7 +4,7 @@ PORTNAME= adonthell PORTVERSION= 0.3.5 -PORTREVISION= 9 +PORTREVISION= 10 CATEGORIES= games MASTER_SITES= SAVANNAH DISTFILES= ${PORTNAME}-src-${PORTVERSION}${EXTRACT_SUFX} \ @@ -17,7 +17,7 @@ LICENSE= GPLv2 LICENSE_DISTFILES= ${DISTFILES} LIB_DEPENDS= vorbis:${PORTSDIR}/audio/libvorbis \ - freetype:${PORTSDIR}/print/freetype2 + libfreetype.so:${PORTSDIR}/print/freetype2 USE_SDL= mixer ttf sdl USE_PYTHON= yes diff --git a/games/alienarena/Makefile b/games/alienarena/Makefile index d020107460e4..2b33f1745e1b 100644 --- a/games/alienarena/Makefile +++ b/games/alienarena/Makefile @@ -3,6 +3,7 @@ PORTNAME= alienarena PORTVERSION= 2013.766 +PORTREVISION= 1 CATEGORIES= games MASTER_SITES= ftp://ftp.linux.kiev.ua/pub/Linux/Gentoo/distfiles/ \ http://ftp.jeuxlinux.fr/files/ \ @@ -53,7 +54,7 @@ NO_STAGE= yes .if ${PORT_OPTIONS:MCLIENT} USES+= openal:soft,alut pkgconfig LIB_DEPENDS+= curl:${PORTSDIR}/ftp/curl \ - freetype.9:${PORTSDIR}/print/freetype2 \ + libfreetype.so:${PORTSDIR}/print/freetype2 \ jpeg.11:${PORTSDIR}/graphics/jpeg \ png15:${PORTSDIR}/graphics/png \ vorbis.4:${PORTSDIR}/audio/libvorbis diff --git a/games/armagetron/Makefile b/games/armagetron/Makefile index a15f8c07d3c0..659d2a29b23d 100644 --- a/games/armagetron/Makefile +++ b/games/armagetron/Makefile @@ -3,6 +3,7 @@ PORTNAME= armagetron PORTVERSION= 0.2.8.3.2 +PORTREVISION= 1 CATEGORIES= games MASTER_SITES= SF/${PORTNAME}ad/stable/${PORTVERSION}/ DISTNAME= armagetronad-${PORTVERSION} diff --git a/games/arx-libertatis/Makefile b/games/arx-libertatis/Makefile index 32f4cedf2fd4..bb422f19a392 100644 --- a/games/arx-libertatis/Makefile +++ b/games/arx-libertatis/Makefile @@ -3,7 +3,7 @@ PORTNAME= arx-libertatis PORTVERSION= 1.0.3 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= games MASTER_SITES= http://cloud.github.com/downloads/arx/ArxLibertatis/ \ http://mirror.amdmi3.ru/distfiles/ diff --git a/games/asteroid/Makefile b/games/asteroid/Makefile index fe23e489170b..f492e78eaa22 100644 --- a/games/asteroid/Makefile +++ b/games/asteroid/Makefile @@ -3,6 +3,7 @@ PORTNAME= asteroid PORTVERSION= 1.2.1 +PORTREVISION= 1 CATEGORIES= games MAINTAINER= nemysis@FreeBSD.org diff --git a/games/asteroids3d/Makefile b/games/asteroids3d/Makefile index b038ded12872..67530053ab27 100644 --- a/games/asteroids3d/Makefile +++ b/games/asteroids3d/Makefile @@ -3,7 +3,7 @@ PORTNAME= asteroids3d PORTVERSION= 0.5.1 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= games MASTER_SITES= SF/a3d/${PORTVERSION}/ \ SF/nemysisfreebsdp/${CATEGORIES}/:icons diff --git a/games/atr3d/Makefile b/games/atr3d/Makefile index 978db7866ae3..584e604ce3b4 100644 --- a/games/atr3d/Makefile +++ b/games/atr3d/Makefile @@ -3,7 +3,7 @@ PORTNAME= atr3d PORTVERSION= 0.6 -PORTREVISION= 14 +PORTREVISION= 15 CATEGORIES= games MASTER_SITES= http://rodrigo.osorio.free.fr/freebsd/distfiles/ DISTNAME= ${PORTNAME}_source_${PORTVERSION} diff --git a/games/balazar/Makefile b/games/balazar/Makefile index 275d87cb0b3a..41096cabf7aa 100644 --- a/games/balazar/Makefile +++ b/games/balazar/Makefile @@ -3,7 +3,7 @@ PORTNAME= balazar PORTVERSION= 0.3.4 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= games python MASTER_SITES= http://download.gna.org/balazar/ DISTNAME= Balazar-${PORTVERSION} @@ -12,7 +12,7 @@ MAINTAINER= acm@FreeBSD.org COMMENT= 3D adventure and roleplaying game LIB_DEPENDS= cal3d.12:${PORTSDIR}/graphics/cal3d \ - freetype.9:${PORTSDIR}/print/freetype2 + libfreetype.so:${PORTSDIR}/print/freetype2 RUN_DEPENDS= soya_editor:${PORTSDIR}/graphics/py-soya3d \ ${PYTHON_SITELIBDIR}/_openal.so:${PORTSDIR}/audio/py-openal \ ${PYTHON_SITELIBDIR}/ogg/vorbis.so:${PORTSDIR}/audio/py-vorbis \ diff --git a/games/balazarbrothers/Makefile b/games/balazarbrothers/Makefile index 3169e827adf4..e152b09be008 100644 --- a/games/balazarbrothers/Makefile +++ b/games/balazarbrothers/Makefile @@ -3,7 +3,7 @@ PORTNAME= balazarbrothers PORTVERSION= 0.3.1 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= games python MASTER_SITES= http://download.gna.org/${PORTNAME:S/brothers//}/ DISTNAME= ${PORTNAME:S/b/B/g}-${PORTVERSION} @@ -12,7 +12,7 @@ MAINTAINER= acm@FreeBSD.org COMMENT= Balazar Brother is a free software 3D puzzle game LIB_DEPENDS= cal3d.12:${PORTSDIR}/graphics/cal3d \ - freetype.9:${PORTSDIR}/print/freetype2 + libfreetype.so:${PORTSDIR}/print/freetype2 RUN_DEPENDS= ${PYTHON_SITELIBDIR}/cerealizer/__init__.py:${PORTSDIR}/security/py-cerealizer \ ${PYTHON_SITELIBDIR}/soya/__init__.py:${PORTSDIR}/graphics/py-soya3d \ ${PYTHON_SITELIBDIR}/tofu/__init__.py:${PORTSDIR}/net/py-tofu \ diff --git a/games/blobby/Makefile b/games/blobby/Makefile index c6f5682e85ef..7725639b45aa 100644 --- a/games/blobby/Makefile +++ b/games/blobby/Makefile @@ -3,7 +3,7 @@ PORTNAME= blobby PORTVERSION= 1.0r3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= games MASTER_SITES= SF/${PORTNAME}/Blobby%20Volley%202%20%28Linux%29/1.0RC3/ DISTNAME= blobby2-linux-1.0rc3 diff --git a/games/brutalchess/Makefile b/games/brutalchess/Makefile index f8797f1dca54..0c904812a374 100644 --- a/games/brutalchess/Makefile +++ b/games/brutalchess/Makefile @@ -1,31 +1,31 @@ # Created by: Gustavo Perez Querol <gustau.perez@gmail.com> # $FreeBSD$ -PORTNAME= brutalchess -PORTVERSION= 0.5.2 -PORTREVISION= 10 -CATEGORIES= games -MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-alpha/${PORTNAME}-alpha-${PORTVERSION} -DISTNAME= ${PORTNAME}-alpha-${PORTVERSION}-src +PORTNAME= brutalchess +PORTVERSION= 0.5.2 +PORTREVISION= 11 +CATEGORIES= games +MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-alpha/${PORTNAME}-alpha-${PORTVERSION} +DISTNAME= ${PORTNAME}-alpha-${PORTVERSION}-src -LIB_DEPENDS= freetype.9:${PORTSDIR}/print/freetype2 +LIB_DEPENDS= libfreetype.so:${PORTSDIR}/print/freetype2 -MAINTAINER= gustau.perez@gmail.com -COMMENT= Nice looking OpenGL chess game +MAINTAINER= gustau.perez@gmail.com +COMMENT= Nice looking OpenGL chess game -WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} -USE_XORG= x11 xext xt xmu xi +WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} +USE_XORG= x11 xext xt xmu xi -USE_GMAKE= yes -USE_AUTOTOOLS= libtool -USE_DOS2UNIX= yes -USE_GL= yes -USE_SDL= sdl image +USE_GMAKE= yes +USE_AUTOTOOLS= libtool +USE_DOS2UNIX= yes +USE_GL= yes +USE_SDL= sdl image NO_STAGE= yes pre-build: ${CHMOD} 0755 ${WRKSRC}/install-sh -MANCOMPRESSED= yes +MANCOMPRESSED= yes .include <bsd.port.mk> diff --git a/games/bubble-chains/Makefile b/games/bubble-chains/Makefile index 23b262b30619..2a27cd6ba6ec 100644 --- a/games/bubble-chains/Makefile +++ b/games/bubble-chains/Makefile @@ -3,7 +3,7 @@ PORTNAME= bubble-chains PORTVERSION= 0.1.1 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= games MASTER_SITES= http://bubble-chains.sintegrial.com/files/ \ SF/nemysisfreebsdp/${CATEGORIES}/:icons diff --git a/games/cake/Makefile b/games/cake/Makefile index 283f22cad08a..e9846f22c864 100644 --- a/games/cake/Makefile +++ b/games/cake/Makefile @@ -3,7 +3,7 @@ PORTNAME= cake PORTVERSION= 2005.12.26 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= games MASTER_SITES= http://freebsd.nsu.ru/distfiles/ DISTNAME= ${PORTNAME}_src_${PORTVERSION:S/.//g} diff --git a/games/capicity/Makefile b/games/capicity/Makefile index fece468948a7..a7c83eed2d0c 100644 --- a/games/capicity/Makefile +++ b/games/capicity/Makefile @@ -3,6 +3,7 @@ PORTNAME= capicity PORTVERSION= 1.0 +PORTREVISION= 1 CATEGORIES= games MASTER_SITES= SF/capitalism/Capi%20City/${PORTVERSION}/ DISTNAME= CapiCity_${DISTVERSION} diff --git a/games/capitalism/Makefile b/games/capitalism/Makefile index 47542ff3096b..edb6e6187e5d 100644 --- a/games/capitalism/Makefile +++ b/games/capitalism/Makefile @@ -3,7 +3,7 @@ PORTNAME= capitalism PORTVERSION= 0.5.1 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= games MASTER_SITES= SF/${PORTNAME}/Capitalism/0.5/ EXTRACT_SUFX= .tbz diff --git a/games/chroma/Makefile b/games/chroma/Makefile index a46b08f99a94..453c7e1a0de8 100644 --- a/games/chroma/Makefile +++ b/games/chroma/Makefile @@ -3,7 +3,7 @@ PORTNAME= chroma PORTVERSION= 1.08 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= games MASTER_SITES= http://www.level7.org.uk/chroma/download/ \ http://mirror.amdmi3.ru/distfiles/ diff --git a/games/chromium-bsu/Makefile b/games/chromium-bsu/Makefile index 607aede3f741..b3cfef459203 100644 --- a/games/chromium-bsu/Makefile +++ b/games/chromium-bsu/Makefile @@ -3,6 +3,7 @@ PORTNAME= chromium-bsu PORTVERSION= 0.9.15.1 +PORTREVISION= 1 CATEGORIES= games MASTER_SITES= SF/${PORTNAME}/Chromium%20B.S.U.%20source%20code/ diff --git a/games/construo/Makefile b/games/construo/Makefile index 050fd8ae63d5..0dd9ad04d533 100644 --- a/games/construo/Makefile +++ b/games/construo/Makefile @@ -3,7 +3,7 @@ PORTNAME= construo PORTVERSION= 0.2.2 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= games MASTER_SITES= SAVANNAH/construo diff --git a/games/corsix-th/Makefile b/games/corsix-th/Makefile index 95f03cff0db5..2ae94afdab72 100644 --- a/games/corsix-th/Makefile +++ b/games/corsix-th/Makefile @@ -3,6 +3,7 @@ PORTNAME= corsixth PORTVERSION= 0.30 +PORTREVISION= 1 CATEGORIES= games MAINTAINER= madpilot@FreeBSD.org diff --git a/games/cosmosmash/Makefile b/games/cosmosmash/Makefile index 37c2b52ac16d..ef9ffaf66262 100644 --- a/games/cosmosmash/Makefile +++ b/games/cosmosmash/Makefile @@ -3,7 +3,7 @@ PORTNAME= cosmosmash DISTVERSION= 1.4.7 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= games MASTER_SITES= http://perso.b2b2c.ca/sarrazip/dev/ \ LOCAL/martymac diff --git a/games/crack-attack/Makefile b/games/crack-attack/Makefile index 77b4f09bc188..ca36d1185d76 100644 --- a/games/crack-attack/Makefile +++ b/games/crack-attack/Makefile @@ -3,7 +3,7 @@ PORTNAME= crack-attack PORTVERSION= 1.1.14 -PORTREVISION= 11 +PORTREVISION= 12 CATEGORIES= games MASTER_SITES= SAVANNAH diff --git a/games/critterding/Makefile b/games/critterding/Makefile index 18e9d8288b0f..e9c62604586a 100644 --- a/games/critterding/Makefile +++ b/games/critterding/Makefile @@ -3,7 +3,7 @@ PORTNAME= critterding DISTVERSION= beta12 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= games MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/sources diff --git a/games/crossfire-client/Makefile b/games/crossfire-client/Makefile index c1c685ecb527..edb9c9f25a58 100644 --- a/games/crossfire-client/Makefile +++ b/games/crossfire-client/Makefile @@ -3,7 +3,7 @@ PORTNAME= crossfire-client PORTVERSION= 1.70.0 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= games MASTER_SITES= SF/crossfire/crossfire-${PORTVERSION} diff --git a/games/cultivation/Makefile b/games/cultivation/Makefile index 0c6f63076826..e408ca615e22 100644 --- a/games/cultivation/Makefile +++ b/games/cultivation/Makefile @@ -3,7 +3,7 @@ PORTNAME= cultivation PORTVERSION= 8 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= games MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/v${PORTVERSION} DISTNAME= Cultivation_${PORTVERSION}_UnixSource diff --git a/games/cuyo/Makefile b/games/cuyo/Makefile index ced640798efd..eed54940ad48 100644 --- a/games/cuyo/Makefile +++ b/games/cuyo/Makefile @@ -3,6 +3,7 @@ PORTNAME= cuyo PORTVERSION= 2.0.0 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= games MASTER_SITES= SAVANNAH diff --git a/games/d2x/Makefile b/games/d2x/Makefile index 07c964994e01..0c52ce5ba510 100644 --- a/games/d2x/Makefile +++ b/games/d2x/Makefile @@ -3,7 +3,7 @@ PORTNAME= d2x PORTVERSION= 0.2.5 -PORTREVISION= 11 +PORTREVISION= 12 CATEGORIES= games MASTER_SITES= http://offload2.icculus.org:9090/d2x/src/ diff --git a/games/duel/Makefile b/games/duel/Makefile index a12704761e56..5ef84b615817 100644 --- a/games/duel/Makefile +++ b/games/duel/Makefile @@ -3,7 +3,7 @@ PORTNAME= duel PORTVERSION= 0.98 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= games MASTER_SITES= ${MASTER_SITE_LOCAL} MASTER_SITE_SUBDIR= alepulver diff --git a/games/el/Makefile b/games/el/Makefile index 64adecde2e87..acc75eae603d 100644 --- a/games/el/Makefile +++ b/games/el/Makefile @@ -3,6 +3,7 @@ PORTNAME= el PORTVERSION= 193 +PORTREVISION= 1 CATEGORIES= games MASTER_SITES= LOCAL/rene \ ftp://rene-ladan.nl/pub/distfiles/ diff --git a/games/ensemblist/Makefile b/games/ensemblist/Makefile index 48ce07c65e4b..1f9e24365a72 100644 --- a/games/ensemblist/Makefile +++ b/games/ensemblist/Makefile @@ -3,7 +3,7 @@ PORTNAME= ensemblist PORTVERSION= 040126 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= games MASTER_SITES= ${MASTER_SITE_SAVANNAH} MASTER_SITE_SUBDIR= ${PORTNAME} diff --git a/games/epiar/Makefile b/games/epiar/Makefile index 3f0377baed8d..0dd30e2a38cd 100644 --- a/games/epiar/Makefile +++ b/games/epiar/Makefile @@ -3,7 +3,7 @@ PORTNAME= epiar PORTVERSION= 0.5.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= games MAINTAINER= nemysis@FreeBSD.org diff --git a/games/etracer/Makefile b/games/etracer/Makefile index 27fd1f003160..b654c4181d82 100644 --- a/games/etracer/Makefile +++ b/games/etracer/Makefile @@ -3,7 +3,7 @@ PORTNAME= etracer PORTVERSION= 0.4 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= games MASTER_SITES= SF/extremetuxracer/extreme-tuxracer/${PORTVERSION} DISTNAME= extremetuxracer-${PORTVERSION} diff --git a/games/evq3/Makefile b/games/evq3/Makefile index 381041d34a36..c11715420540 100644 --- a/games/evq3/Makefile +++ b/games/evq3/Makefile @@ -3,7 +3,7 @@ PORTNAME= evq3 PORTVERSION= 1.3.20080810 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= games MASTER_SITES= ${MASTER_SITE_LOCAL:S|$|alepulver/|} DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \ diff --git a/games/flightgear/Makefile b/games/flightgear/Makefile index ddc406458fdc..9bd341590a54 100644 --- a/games/flightgear/Makefile +++ b/games/flightgear/Makefile @@ -3,6 +3,7 @@ PORTNAME= flightgear PORTVERSION= 3.0.0 +PORTREVISION= 1 CATEGORIES= games # see http://www.flightgear.org/templates.js MASTER_SITES= http://mirrors.ibiblio.org/flightgear/ftp/Source/ \ diff --git a/games/foobillard/Makefile b/games/foobillard/Makefile index 286849e81768..bd626aec5954 100644 --- a/games/foobillard/Makefile +++ b/games/foobillard/Makefile @@ -3,7 +3,7 @@ PORTNAME= foobillard PORTVERSION= 3.0a -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= games MASTER_SITES= http://foobillard.sunsite.dk/dnl/ @@ -11,7 +11,7 @@ MAINTAINER= thomas@bsdunix.ch COMMENT= Free OpenGL billiards game LIB_DEPENDS= png15:${PORTSDIR}/graphics/png \ - freetype.9:${PORTSDIR}/print/freetype2 + libfreetype.so:${PORTSDIR}/print/freetype2 OPTIONS_DEFINE= SDL NVIDIA_BUMPREF SDL_DESC= SDL instead of glut diff --git a/games/freeminer/Makefile b/games/freeminer/Makefile index 2d1966bb7577..63f6e291e515 100644 --- a/games/freeminer/Makefile +++ b/games/freeminer/Makefile @@ -3,7 +3,7 @@ PORTNAME= freeminer PORTVERSION= 0.4.9.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= games MAINTAINER= amdmi3@FreeBSD.org diff --git a/games/galaxyhack/Makefile b/games/galaxyhack/Makefile index 5d6b8de86edc..2346499d4428 100644 --- a/games/galaxyhack/Makefile +++ b/games/galaxyhack/Makefile @@ -3,7 +3,7 @@ PORTNAME= galaxyhack PORTVERSION= 1.74 -PORTREVISION= 15 +PORTREVISION= 16 CATEGORIES= games MASTER_SITES= SF \ SF/${PORTNAME}/Fleet%20packages/020906:fleets diff --git a/games/gcompris/Makefile b/games/gcompris/Makefile index 96edf269cb25..fd510520a324 100644 --- a/games/gcompris/Makefile +++ b/games/gcompris/Makefile @@ -3,6 +3,7 @@ PORTNAME= gcompris PORTVERSION= 13.11 +PORTREVISION= 1 CATEGORIES= games gnome MASTER_SITES= SF/${PORTNAME}/${PORTVERSION}/ diff --git a/games/gl-117/Makefile b/games/gl-117/Makefile index e98d9dbec7b3..eb06e95d344f 100644 --- a/games/gl-117/Makefile +++ b/games/gl-117/Makefile @@ -4,7 +4,7 @@ PORTNAME= gl-117 PORTVERSION= 1.3.2 DISTVERSIONSUFFIX= -src -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= games MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/GL-117%20Source diff --git a/games/glaxium/Makefile b/games/glaxium/Makefile index 7e3aee17b140..7535d431f73a 100644 --- a/games/glaxium/Makefile +++ b/games/glaxium/Makefile @@ -3,7 +3,7 @@ PORTNAME= glaxium PORTVERSION= 0.5 -PORTREVISION= 12 +PORTREVISION= 13 CATEGORIES= games MASTER_SITES= http://xhosxe.free.fr/glaxium/ DISTNAME= ${PORTNAME}_${PORTVERSION} diff --git a/games/glob2/Makefile b/games/glob2/Makefile index 7e5c08086490..91d45feb6000 100644 --- a/games/glob2/Makefile +++ b/games/glob2/Makefile @@ -3,7 +3,7 @@ PORTNAME= glob2 PORTVERSION= 0.9.4.4 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= games MASTER_SITES= SAVANNAH/${PORTNAME}/${PORTVERSION:R}/ diff --git a/games/glsfcave/Makefile b/games/glsfcave/Makefile index 10fbbcc0589c..801e33debc62 100644 --- a/games/glsfcave/Makefile +++ b/games/glsfcave/Makefile @@ -3,7 +3,7 @@ PORTNAME= glsfcave PORTVERSION= 1.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= games MASTER_SITES= http://user.ecc.u-tokyo.ac.jp/~g650192/glsfcave/ \ http://mirror.amdmi3.ru/distfiles/ diff --git a/games/gnomechess/Makefile b/games/gnomechess/Makefile index 6a6fcf6636d8..8a25642f22a9 100644 --- a/games/gnomechess/Makefile +++ b/games/gnomechess/Makefile @@ -3,6 +3,7 @@ PORTNAME= gnomechess PORTVERSION= 3.10.2 +PORTREVISION= 1 CATEGORIES= games gnome MASTER_SITES= GNOME MASTER_SITE_SUBDIR= sources/gnome-chess/3.10 diff --git a/games/gnubg/Makefile b/games/gnubg/Makefile index 824ce669232e..b6bacc572fc4 100644 --- a/games/gnubg/Makefile +++ b/games/gnubg/Makefile @@ -3,7 +3,7 @@ PORTNAME= gnubg PORTVERSION= 1.02.000 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= games MASTER_SITES= http://www.c-s.li/ports/ \ http://files.gnubg.org/media/sources/ diff --git a/games/gracer/Makefile b/games/gracer/Makefile index 36bd62103889..fdf7f096bb23 100644 --- a/games/gracer/Makefile +++ b/games/gracer/Makefile @@ -3,7 +3,7 @@ PORTNAME= gracer PORTVERSION= 0.1.5 -PORTREVISION= 13 +PORTREVISION= 14 CATEGORIES= games MASTER_SITES= SF diff --git a/games/gtkevemon/Makefile b/games/gtkevemon/Makefile index fa3d1ae435b9..f573047873c8 100644 --- a/games/gtkevemon/Makefile +++ b/games/gtkevemon/Makefile @@ -2,6 +2,7 @@ PORTNAME= gtkevemon DISTVERSION= 1.8-135 +PORTREVISION= 1 CATEGORIES= games MASTER_SITES= https://bitbucket.org/BattleClinic/${PORTNAME}/get/ DISTNAME= Version%20${DISTVERSION} diff --git a/games/gtkradiant/Makefile b/games/gtkradiant/Makefile index 0d9fbdc14930..b594a57bdaa5 100644 --- a/games/gtkradiant/Makefile +++ b/games/gtkradiant/Makefile @@ -3,7 +3,7 @@ PORTNAME= gtkradiant PORTVERSION= 1.5.0 -PORTREVISION= 9 +PORTREVISION= 10 CATEGORIES= games cad MASTER_SITES= ${MASTER_SITE_IDSOFTWARE:S|$|source/:id|} \ http://www.bsd-geek.de/FreeBSD/distfiles/:fb diff --git a/games/heretic/Makefile b/games/heretic/Makefile index 807bda7068c4..5dab6f6e4b5c 100644 --- a/games/heretic/Makefile +++ b/games/heretic/Makefile @@ -3,7 +3,7 @@ PORTNAME= heretic PORTVERSION= 1.2 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= games MASTER_SITES= http://heretic.linuxgames.com/heretic/src/:source \ http://heretic.linuxgames.com/wad/:wad diff --git a/games/jvgs/Makefile b/games/jvgs/Makefile index a220c7e836d2..3d48d7aeae5e 100644 --- a/games/jvgs/Makefile +++ b/games/jvgs/Makefile @@ -3,6 +3,7 @@ PORTNAME= jvgs PORTVERSION= 0.5.1 +PORTREVISION= 1 CATEGORIES= games MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-${PORTVERSION:C/\.[0-9]+$//} DISTNAME= ${PORTNAME}-${PORTVERSION}-src diff --git a/games/kajaani-kombat/Makefile b/games/kajaani-kombat/Makefile index c646df6aa92c..419bca0a2ca8 100644 --- a/games/kajaani-kombat/Makefile +++ b/games/kajaani-kombat/Makefile @@ -3,7 +3,7 @@ PORTNAME= kajaani-kombat PORTVERSION= 0.7 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= games MASTER_SITES= http://kombat.kajaani.net/dl/ diff --git a/games/kanatest/Makefile b/games/kanatest/Makefile index 9b9f0893ae5c..e2e04db348e4 100644 --- a/games/kanatest/Makefile +++ b/games/kanatest/Makefile @@ -3,7 +3,7 @@ PORTNAME= kanatest PORTVERSION= 0.4.8 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= games MASTER_SITES= http://clayo.org/kanatest/ diff --git a/games/kiki/Makefile b/games/kiki/Makefile index 93d442a9f3ba..ed2d7c2416c6 100644 --- a/games/kiki/Makefile +++ b/games/kiki/Makefile @@ -3,7 +3,7 @@ PORTNAME= kiki PORTVERSION= 1.0.2 -PORTREVISION= 15 +PORTREVISION= 16 CATEGORIES= games MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-src/${PORTVERSION} EXTRACT_SUFX= -src.tgz diff --git a/games/klavaro/Makefile b/games/klavaro/Makefile index e08f2fa68f83..8e30960012fd 100644 --- a/games/klavaro/Makefile +++ b/games/klavaro/Makefile @@ -3,7 +3,7 @@ PORTNAME= klavaro PORTVERSION= 1.9.9 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= games MASTER_SITES= SF/${PORTNAME}/ diff --git a/games/lander/Makefile b/games/lander/Makefile index 3bf0ac6d3173..875ead2d84c6 100644 --- a/games/lander/Makefile +++ b/games/lander/Makefile @@ -3,7 +3,7 @@ PORTNAME= lander PORTVERSION= 0.6.6 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= games MASTER_SITES= http://www.nickg.me.uk/files/ \ http://mirror.amdmi3.ru/distfiles/ diff --git a/games/libmaitretarot/Makefile b/games/libmaitretarot/Makefile index 081edfe86219..b5ad7fa6b3d2 100644 --- a/games/libmaitretarot/Makefile +++ b/games/libmaitretarot/Makefile @@ -3,7 +3,7 @@ PORTNAME= libmaitretarot PORTVERSION= 0.1.98 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= games MASTER_SITES= ${MASTER_SITE_SAVANNAH} MASTER_SITE_SUBDIR= maitretarot diff --git a/games/libmt_client/Makefile b/games/libmt_client/Makefile index 01e3be88be93..b6ae22e65796 100644 --- a/games/libmt_client/Makefile +++ b/games/libmt_client/Makefile @@ -3,7 +3,7 @@ PORTNAME= libmt_client PORTVERSION= 0.1.98 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= games MASTER_SITES= ${MASTER_SITE_SAVANNAH} MASTER_SITE_SUBDIR= maitretarot diff --git a/games/lincity-ng/Makefile b/games/lincity-ng/Makefile index a1d37397a4e9..1e519476670d 100644 --- a/games/lincity-ng/Makefile +++ b/games/lincity-ng/Makefile @@ -3,7 +3,7 @@ PORTNAME= lincity-ng PORTVERSION= 2.0 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= games MASTER_SITES= ${MASTER_SITE_BERLIOS} MASTER_SITE_SUBDIR= ${PORTNAME} diff --git a/games/maitretarot/Makefile b/games/maitretarot/Makefile index 7ee56c16e6be..00258e6420d3 100644 --- a/games/maitretarot/Makefile +++ b/games/maitretarot/Makefile @@ -3,7 +3,7 @@ PORTNAME= maitretarot PORTVERSION= 0.1.98 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= games MASTER_SITES= ${MASTER_SITE_SAVANNAH} MASTER_SITE_SUBDIR= ${PORTNAME} diff --git a/games/manaplus/Makefile b/games/manaplus/Makefile index 353be731d922..bf765ebe6009 100644 --- a/games/manaplus/Makefile +++ b/games/manaplus/Makefile @@ -3,6 +3,7 @@ PORTNAME= manaplus PORTVERSION= 1.4.4.12 +PORTREVISION= 1 CATEGORIES= games MASTER_SITES= http://download.evolonline.org/manaplus/download/${PORTVERSION}/ diff --git a/games/minetest/Makefile b/games/minetest/Makefile index 590cdd1da69b..fd225c73862d 100644 --- a/games/minetest/Makefile +++ b/games/minetest/Makefile @@ -3,6 +3,7 @@ PORTNAME= minetest PORTVERSION= 0.4.9 +PORTREVISION= 1 CATEGORIES= games MAINTAINER= amdmi3@FreeBSD.org diff --git a/games/mt_dolphin_ia/Makefile b/games/mt_dolphin_ia/Makefile index 6c0c84afe696..c642a18740e0 100644 --- a/games/mt_dolphin_ia/Makefile +++ b/games/mt_dolphin_ia/Makefile @@ -3,7 +3,7 @@ PORTNAME= mt_dolphin_ia PORTVERSION= 0.1.98 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= games MASTER_SITES= ${MASTER_SITE_SAVANNAH} MASTER_SITE_SUBDIR= maitretarot diff --git a/games/mt_gtk_client/Makefile b/games/mt_gtk_client/Makefile index 2876b43ffbe5..dbed834954d8 100644 --- a/games/mt_gtk_client/Makefile +++ b/games/mt_gtk_client/Makefile @@ -3,7 +3,7 @@ PORTNAME= mt_gtk_client PORTVERSION= 0.1.98 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= games MASTER_SITES= ${MASTER_SITE_SAVANNAH} MASTER_SITE_SUBDIR= maitretarot diff --git a/games/mudmagic/Makefile b/games/mudmagic/Makefile index bef969caa5e3..55a1513ade58 100644 --- a/games/mudmagic/Makefile +++ b/games/mudmagic/Makefile @@ -3,7 +3,7 @@ PORTNAME= mudmagic PORTVERSION= 1.9 -PORTREVISION= 12 +PORTREVISION= 13 CATEGORIES= games MASTER_SITES= http://www.mudmagic.com/mud-client/downloads/ diff --git a/games/naev/Makefile b/games/naev/Makefile index e73a99c25f38..89f0814d42c2 100644 --- a/games/naev/Makefile +++ b/games/naev/Makefile @@ -3,6 +3,7 @@ PORTNAME= naev PORTVERSION= 0.5.3 +PORTREVISION= 1 CATEGORIES= games MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-${PORTVERSION} \ ${MASTER_SITE_GOOGLE_CODE} diff --git a/games/netherearth/Makefile b/games/netherearth/Makefile index 11328993a46f..0c4111cbfb91 100644 --- a/games/netherearth/Makefile +++ b/games/netherearth/Makefile @@ -3,7 +3,7 @@ PORTNAME= netherearth PORTVERSION= 0.51 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= games MASTER_SITES= http://move.kirishi.ru/soft/netherearth/ diff --git a/games/netpanzer/Makefile b/games/netpanzer/Makefile index bd20f42f3b4a..0e08d1a0075d 100644 --- a/games/netpanzer/Makefile +++ b/games/netpanzer/Makefile @@ -2,7 +2,7 @@ PORTNAME= netpanzer PORTVERSION= 0.8.4 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= games MASTER_SITES= LOCAL/madpilot/netpanzer diff --git a/games/netradiant/Makefile b/games/netradiant/Makefile index 50bc5e6cca84..4cb3fea23293 100644 --- a/games/netradiant/Makefile +++ b/games/netradiant/Makefile @@ -3,7 +3,7 @@ PORTNAME= netradiant PORTVERSION= 20130630 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= games cad MASTER_SITES= http://ingar.satgnu.net/gtkradiant/files/ \ http://freebsd.nsu.ru/distfiles/ diff --git a/games/netwalk/Makefile b/games/netwalk/Makefile index b99506cd359c..e31577f1df4e 100644 --- a/games/netwalk/Makefile +++ b/games/netwalk/Makefile @@ -3,7 +3,7 @@ PORTNAME= netwalk PORTVERSION= 0.4.10 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= games MAINTAINER= nemysis@FreeBSD.org diff --git a/games/nexuiz/Makefile b/games/nexuiz/Makefile index 0284aec8c2c7..2e707a6ffc26 100644 --- a/games/nexuiz/Makefile +++ b/games/nexuiz/Makefile @@ -3,7 +3,7 @@ PORTNAME= nexuiz PORTVERSION= 2.5.2 -PORTREVISION= 13 +PORTREVISION= 14 CATEGORIES= games MASTER_SITES= SF/${PORTNAME}/NexuizRelease/Nexuiz%20${PORTVERSION} \ SF/${PORTNAME}/mappack/nexmappack_r2:mappack diff --git a/games/nighthawk/Makefile b/games/nighthawk/Makefile index 786100f1b5d6..8304c0f0bb75 100644 --- a/games/nighthawk/Makefile +++ b/games/nighthawk/Makefile @@ -3,7 +3,7 @@ PORTNAME= nighthawk PORTVERSION= 3.0.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= games MASTER_SITES= SUNSITE/games/arcade diff --git a/games/openalchemist/Makefile b/games/openalchemist/Makefile index e1135359d536..e5dfa8063da8 100644 --- a/games/openalchemist/Makefile +++ b/games/openalchemist/Makefile @@ -3,7 +3,7 @@ PORTNAME= openalchemist PORTVERSION= 0.3 -PORTREVISION= 13 +PORTREVISION= 14 CATEGORIES= games MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} DISTNAME= ${PORTNAME}-${PORTVERSION}-src diff --git a/games/openjazz/Makefile b/games/openjazz/Makefile index f3bc2f4098ff..bee753c4042b 100644 --- a/games/openjazz/Makefile +++ b/games/openjazz/Makefile @@ -3,7 +3,7 @@ PORTNAME= openjazz PORTVERSION= 20120819 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= games MASTER_SITES= http://alister.eu/jazz/oj/ \ LOCAL/martymac diff --git a/games/openlierox/Makefile b/games/openlierox/Makefile index 14b510201e3f..7c0debb20815 100644 --- a/games/openlierox/Makefile +++ b/games/openlierox/Makefile @@ -3,7 +3,7 @@ PORTNAME= openlierox DISTVERSION= 0.58_rc3 -PORTREVISION= 1 +PORTREVISION= 2 PORTEPOCH= 1 CATEGORIES= games MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/OpenLieroX%20${DISTVERSION:C/_/%20/} diff --git a/games/openmortal/Makefile b/games/openmortal/Makefile index 994bff563aee..aba0c45fd3c4 100644 --- a/games/openmortal/Makefile +++ b/games/openmortal/Makefile @@ -3,7 +3,7 @@ PORTNAME= openmortal PORTVERSION= 0.7 -PORTREVISION= 9 +PORTREVISION= 10 CATEGORIES= games MASTER_SITES= SF diff --git a/games/openssn/Makefile b/games/openssn/Makefile index 963d35f8d441..0cf2bed1e1e5 100644 --- a/games/openssn/Makefile +++ b/games/openssn/Makefile @@ -3,6 +3,7 @@ PORTNAME= openssn PORTVERSION= 1.4 +PORTREVISION= 1 CATEGORIES= games MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-${PORTVERSION} diff --git a/games/openttd/Makefile b/games/openttd/Makefile index 498b847f51dc..f3977536d1c3 100644 --- a/games/openttd/Makefile +++ b/games/openttd/Makefile @@ -3,6 +3,7 @@ PORTNAME= openttd PORTVERSION= 1.4.0 +PORTREVISION= 1 CATEGORIES= games MASTER_SITES= http://ftp.snt.utwente.nl/pub/games/openttd/binaries/releases/${PORTVERSION}/ \ http://us.binaries.openttd.org/binaries/releases/${PORTVERSION}/ diff --git a/games/paintown/Makefile b/games/paintown/Makefile index d5ef03022db2..7dbebd3f221f 100644 --- a/games/paintown/Makefile +++ b/games/paintown/Makefile @@ -3,7 +3,7 @@ PORTNAME= paintown PORTVERSION= 3.6.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= games MASTER_SITES= SF diff --git a/games/poker-engine/Makefile b/games/poker-engine/Makefile index aa9b9450e5f2..4714144f10d8 100644 --- a/games/poker-engine/Makefile +++ b/games/poker-engine/Makefile @@ -3,6 +3,7 @@ PORTNAME= poker-engine PORTVERSION= 1.3.6 +PORTREVISION= 1 CATEGORIES= games MASTER_SITES= http://download.gna.org/pokersource/sources/ diff --git a/games/ppracer/Makefile b/games/ppracer/Makefile index 91a2a307f6ac..60f2215494de 100644 --- a/games/ppracer/Makefile +++ b/games/ppracer/Makefile @@ -3,7 +3,7 @@ PORTNAME= ppracer DISTVERSION= 0.5alpha -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= games MASTER_SITES= BERLIOS \ SF/${PORTNAME}.berlios/ diff --git a/games/quadra/Makefile b/games/quadra/Makefile index 12812929432d..9302406f0169 100644 --- a/games/quadra/Makefile +++ b/games/quadra/Makefile @@ -3,7 +3,7 @@ PORTNAME= quadra PORTVERSION= 1.3.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= games MASTER_SITES= http://kbrandt.sdf-eu.org/FreeBSD/distfiles/ \ ftp://ftp.bsdforen.de/pub/BSDForen/distfiles/ \ diff --git a/games/quetoo/Makefile b/games/quetoo/Makefile index a3ab6ff3e432..8d2df1ff5d2e 100644 --- a/games/quetoo/Makefile +++ b/games/quetoo/Makefile @@ -3,7 +3,7 @@ PORTNAME= quetoo PORTVERSION= 0.6.1 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= games MASTER_SITES= http://tastyspleen.net/~jdolan/ \ http://freebsd.nsu.ru/distfiles/ diff --git a/games/scourge/Makefile b/games/scourge/Makefile index 02bc27746ab9..7c94b58a09ea 100644 --- a/games/scourge/Makefile +++ b/games/scourge/Makefile @@ -3,7 +3,7 @@ PORTNAME= scourge PORTVERSION= 0.21.1 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= games MASTER_SITES= SF DISTNAME= ${PORTNAME}-${PORTVERSION:S/$/.src/} @@ -12,7 +12,7 @@ DIST_SUBDIR= ${PORTNAME} MAINTAINER= acm@FreeBSD.org COMMENT= Rogue-like game -LIB_DEPENDS= freetype.9:${PORTSDIR}/print/freetype2 +LIB_DEPENDS= libfreetype.so:${PORTSDIR}/print/freetype2 RUN_DEPENDS= ${DATADIR}/config/scourge.cfg:${PORTSDIR}/games/scourge-data USE_AUTOTOOLS= autoconf:env automake:env diff --git a/games/searchandrescue/Makefile b/games/searchandrescue/Makefile index 21fd15d7ff6c..f6e4c94c1a98 100644 --- a/games/searchandrescue/Makefile +++ b/games/searchandrescue/Makefile @@ -3,7 +3,7 @@ PORTNAME= SearchAndRescue PORTVERSION= 1.4.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= games MASTER_SITES= SF/${PORTNAME:L}/Program/ diff --git a/games/spellathon/Makefile b/games/spellathon/Makefile index 7049893c2ef1..916af4e413c4 100644 --- a/games/spellathon/Makefile +++ b/games/spellathon/Makefile @@ -3,7 +3,7 @@ PORTNAME= spellathon PORTVERSION= 6.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= games MASTER_SITES= SF/${PORTNAME}/Spellathon%20${PORTVERSION} diff --git a/games/spring/Makefile b/games/spring/Makefile index 51989113ba38..4acfa9ebf065 100644 --- a/games/spring/Makefile +++ b/games/spring/Makefile @@ -3,7 +3,7 @@ PORTNAME= spring PORTVERSION= 94.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= games MASTER_SITES= SF/springrts/springrts/${PORTNAME}-${PORTVERSION} \ http://springrts.com/dl/ diff --git a/games/starfighter/Makefile b/games/starfighter/Makefile index 4b07824722d7..3e3b41ad72ec 100644 --- a/games/starfighter/Makefile +++ b/games/starfighter/Makefile @@ -3,7 +3,7 @@ PORTNAME= starfighter PORTVERSION= 1.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= games MASTER_SITES= SF/pr-${PORTNAME}/ \ SF/nemysisfreebsdp/${CATEGORIES}/:icons diff --git a/games/stepmania-devel/Makefile b/games/stepmania-devel/Makefile index 6d6fced5a1cc..200a05b36855 100644 --- a/games/stepmania-devel/Makefile +++ b/games/stepmania-devel/Makefile @@ -3,7 +3,7 @@ PORTNAME= stepmania PORTVERSION= 5.0.a3 -PORTREVISION= 1 +PORTREVISION= 2 PORTEPOCH= 1 CATEGORIES= games MASTER_SITES= GOOGLE_CODE diff --git a/games/stonesoup/Makefile b/games/stonesoup/Makefile index db1cbb7ca36f..4ad9182f22db 100644 --- a/games/stonesoup/Makefile +++ b/games/stonesoup/Makefile @@ -3,6 +3,7 @@ PORTNAME= stonesoup PORTVERSION= 0.13.1 +PORTREVISION= 1 CATEGORIES= games MASTER_SITES= SF/crawl-ref/Stone%20Soup/${PORTVERSION} DISTNAME= stone_soup-${PORTVERSION}-nodeps @@ -61,7 +62,7 @@ BUILD_DEPENDS+= fc-list:${PORTSDIR}/x11-fonts/fontconfig \ ${LOCALBASE}/lib/X11/fonts/dejavu/DejaVuSans.ttf:${PORTSDIR}/x11-fonts/dejavu RUN_DEPENDS+= ${LOCALBASE}/lib/X11/fonts/dejavu/DejaVuSans.ttf:${PORTSDIR}/x11-fonts/dejavu LIB_DEPENDS+= png15:${PORTSDIR}/graphics/png \ - freetype:${PORTSDIR}/print/freetype2 + libfreetype.so:${PORTSDIR}/print/freetype2 USE_SDL= sdl image .else USES+= ncurses diff --git a/games/stormbaancoureur/Makefile b/games/stormbaancoureur/Makefile index 85479ccb4852..86d54de63deb 100644 --- a/games/stormbaancoureur/Makefile +++ b/games/stormbaancoureur/Makefile @@ -3,7 +3,7 @@ PORTNAME= stormbaancoureur PORTVERSION= 2.1.5 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= games MASTER_SITES= http://bram.creative4vision.nl/stormbaancoureur/download/ \ http://mirror.amdmi3.ru/distfiles/ diff --git a/games/supertuxkart/Makefile b/games/supertuxkart/Makefile index d6986119dfe5..601c5573550c 100644 --- a/games/supertuxkart/Makefile +++ b/games/supertuxkart/Makefile @@ -3,6 +3,7 @@ PORTNAME= supertuxkart PORTVERSION= 0.8.1 +PORTREVISION= 1 CATEGORIES= games MASTER_SITES= SF/supertuxkart/SuperTuxKart/${PORTVERSION} EXTRACT_SUFX= -src.tar.bz2 diff --git a/games/teeworlds/Makefile b/games/teeworlds/Makefile index 8fdcce1da8cd..4d4c670fa3d8 100644 --- a/games/teeworlds/Makefile +++ b/games/teeworlds/Makefile @@ -3,6 +3,7 @@ PORTNAME= teeworlds PORTVERSION= 0.6.2 +PORTREVISION= 1 CATEGORIES= games MASTER_SITES= https://www.teeworlds.com/files/ \ http://mirror.amdmi3.ru/distfiles/ diff --git a/games/torcs/Makefile b/games/torcs/Makefile index f8907f32ce3a..997932130d94 100644 --- a/games/torcs/Makefile +++ b/games/torcs/Makefile @@ -3,6 +3,7 @@ PORTNAME= torcs DISTVERSION= 1.3.5 +PORTREVISION= 1 CATEGORIES= games MASTER_SITES= SF/${PORTNAME}/all-in-one/${PORTVERSION} diff --git a/games/traingame/Makefile b/games/traingame/Makefile index f32aabb5be48..3d72f2a7f824 100644 --- a/games/traingame/Makefile +++ b/games/traingame/Makefile @@ -3,7 +3,7 @@ PORTNAME= traingame PORTVERSION= 0.2.2 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= games MASTER_SITES= SF/nemysisfreebsdp/${CATEGORIES}/:icons DISTFILES= ${PORTNAME}-${DISTVERSION}${EXTRACT_SUFX} \ diff --git a/games/tux-aqfh/Makefile b/games/tux-aqfh/Makefile index bcf25fae55b7..d08f850d57c3 100644 --- a/games/tux-aqfh/Makefile +++ b/games/tux-aqfh/Makefile @@ -3,7 +3,7 @@ PORTNAME= tux_aqfh PORTVERSION= 1.0.14 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= games MASTER_SITES= SF/tuxaqfh/tuxaqfh/${PORTVERSION}-classic \ SF/nemysisfreebsdp/${CATEGORIES}/:icons diff --git a/games/tuxmath/Makefile b/games/tuxmath/Makefile index 3c3fa7e2a0a3..2a823959b562 100644 --- a/games/tuxmath/Makefile +++ b/games/tuxmath/Makefile @@ -3,7 +3,7 @@ PORTNAME= tuxmath PORTVERSION= 2.0.3 -PORTREVISION= 1 +PORTREVISION= 2 PORTEPOCH= 1 CATEGORIES= games MASTER_SITES= http://alioth.debian.org/frs/download.php/3571/ \ diff --git a/games/tuxpuck/Makefile b/games/tuxpuck/Makefile index 697f674a9b6a..e2d4bea53b29 100644 --- a/games/tuxpuck/Makefile +++ b/games/tuxpuck/Makefile @@ -3,7 +3,7 @@ PORTNAME= tuxpuck PORTVERSION= 0.8.2 -PORTREVISION= 18 +PORTREVISION= 19 CATEGORIES= games MASTER_SITES= http://www.sourcefiles.org/Games/Sports/Miscellaneous/ diff --git a/games/tuxtype/Makefile b/games/tuxtype/Makefile index 0b9a81732ed6..0b49bc7fbaac 100644 --- a/games/tuxtype/Makefile +++ b/games/tuxtype/Makefile @@ -3,7 +3,7 @@ PORTNAME= tuxtype PORTVERSION= 1.8.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= games MASTER_SITES= http://alioth.debian.org/frs/download.php/3270/ \ http://alioth.debian.org/frs/download.php/3540/:t4k_common diff --git a/games/tyrquake/Makefile b/games/tyrquake/Makefile index 9e7ac2fc4649..da810c71b0e3 100644 --- a/games/tyrquake/Makefile +++ b/games/tyrquake/Makefile @@ -3,7 +3,7 @@ PORTNAME= tyrquake PORTVERSION= 0.59 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= games MASTER_SITES= http://disenchant.net/files/engine/ diff --git a/games/ufoai/Makefile b/games/ufoai/Makefile index ce0907e100a0..b3f542c06f45 100644 --- a/games/ufoai/Makefile +++ b/games/ufoai/Makefile @@ -3,7 +3,7 @@ PORTNAME= ufoai PORTVERSION= 2.4 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= games MASTER_SITES= SF/${PORTNAME}/UFO_AI%202.x/${PORTVERSION} DISTNAME= ${PORTNAME:S/$/-/}${PORTVERSION}-source diff --git a/games/vamos/Makefile b/games/vamos/Makefile index efb6b3d9cc06..d0a2e18d8455 100644 --- a/games/vamos/Makefile +++ b/games/vamos/Makefile @@ -3,7 +3,7 @@ PORTNAME= vamos PORTVERSION= 0.7.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= games MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/ \ SF/nemysisfreebsdp/${CATEGORIES}/:icons diff --git a/games/vegastrike/Makefile b/games/vegastrike/Makefile index 46af1355ef9e..d38d997a8d21 100644 --- a/games/vegastrike/Makefile +++ b/games/vegastrike/Makefile @@ -3,6 +3,7 @@ PORTNAME= vegastrike PORTVERSION= 0.5.1.r1 +PORTREVISION= 1 CATEGORIES= games MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/0.5.1/ DISTNAME= vegastrike-src-${PORTVERSION} diff --git a/games/warsow/Makefile b/games/warsow/Makefile index c48f616bb522..2e55551a8a31 100644 --- a/games/warsow/Makefile +++ b/games/warsow/Makefile @@ -3,6 +3,7 @@ PORTNAME= warsow PORTVERSION= 1.0.3 +PORTREVISION= 1 CATEGORIES= games MASTER_SITES= SF/warsow.mirror/Warsow%201.02 \ http://www.warsow.net:1337/~warsow/${PORTVERSION:R}${PORTVERSION:E}/ diff --git a/games/warzone2100/Makefile b/games/warzone2100/Makefile index ea250a8b4acd..0e1688ecdd60 100644 --- a/games/warzone2100/Makefile +++ b/games/warzone2100/Makefile @@ -2,6 +2,7 @@ PORTNAME= warzone2100 PORTVERSION= 3.1.1 +PORTREVISION= 1 CATEGORIES= games MASTER_SITES= SF/${PORTNAME}/releases/${PORTVERSION}/ diff --git a/games/xmoto/Makefile b/games/xmoto/Makefile index 350ab34860b4..4ba3a3daf1b2 100644 --- a/games/xmoto/Makefile +++ b/games/xmoto/Makefile @@ -3,7 +3,7 @@ PORTNAME= xmoto PORTVERSION= 0.5.10 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= games MASTER_SITES= http://download.tuxfamily.org/xmoto/xmoto/${PORTVERSION}/ \ http://mirror.amdmi3.ru/distfiles/ diff --git a/games/xwelltris/Makefile b/games/xwelltris/Makefile index b3c9ff31d6df..b817a80365dc 100644 --- a/games/xwelltris/Makefile +++ b/games/xwelltris/Makefile @@ -3,7 +3,7 @@ PORTNAME= xwelltris PORTVERSION= 1.0.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= games MASTER_SITES= http://www.xnc.dubna.su/xwelltris/src/ \ http://freebsd.unixfreunde.de/sources/ diff --git a/games/zaz/Makefile b/games/zaz/Makefile index 6622209dec9d..6c849ef718d1 100644 --- a/games/zaz/Makefile +++ b/games/zaz/Makefile @@ -3,7 +3,7 @@ PORTNAME= zaz PORTVERSION= 1.0.0 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= games MASTER_SITES= SF/${PORTNAME} diff --git a/graphics/GraphicsMagick/Makefile b/graphics/GraphicsMagick/Makefile index 03cb86622fd2..1a35e9983418 100644 --- a/graphics/GraphicsMagick/Makefile +++ b/graphics/GraphicsMagick/Makefile @@ -3,7 +3,7 @@ PORTNAME= GraphicsMagick PORTVERSION= 1.1.15 -PORTREVISION= 5 +PORTREVISION= 6 PORTEPOCH= 1 CATEGORIES= graphics MASTER_SITES= SF \ diff --git a/graphics/GraphicsMagick12/Makefile b/graphics/GraphicsMagick12/Makefile index 768244fdd6bc..9d1cc53461cc 100644 --- a/graphics/GraphicsMagick12/Makefile +++ b/graphics/GraphicsMagick12/Makefile @@ -3,7 +3,7 @@ PORTNAME= GraphicsMagick PORTVERSION= 1.2.10 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= graphics MASTER_SITES= SF \ ftp://ftp.graphicsmagick.org/pub/GraphicsMagick/1.2/ diff --git a/graphics/GraphicsMagick13/Makefile b/graphics/GraphicsMagick13/Makefile index d5e97fcba3e4..b91e09586423 100644 --- a/graphics/GraphicsMagick13/Makefile +++ b/graphics/GraphicsMagick13/Makefile @@ -3,7 +3,7 @@ PORTNAME= GraphicsMagick PORTVERSION= 1.3.19 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= graphics MASTER_SITES= SF \ ftp://ftp.graphicsmagick.org/pub/GraphicsMagick/1.3/ diff --git a/graphics/ImageMagick/Makefile b/graphics/ImageMagick/Makefile index 176f13df2864..b87c95a3197b 100644 --- a/graphics/ImageMagick/Makefile +++ b/graphics/ImageMagick/Makefile @@ -2,7 +2,7 @@ PORTNAME= ImageMagick DISTVERSION= 6.8.0-7 -PORTREVISION= 5 +PORTREVISION= 7 PORTEPOCH= 1 CATEGORIES= graphics perl5 MASTER_SITES= http://www.imagemagick.org/download/ \ diff --git a/graphics/agg/Makefile b/graphics/agg/Makefile index 5d1e539a66f6..87754ec33e51 100644 --- a/graphics/agg/Makefile +++ b/graphics/agg/Makefile @@ -3,7 +3,7 @@ PORTNAME= agg PORTVERSION= 2.5 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= graphics MASTER_SITES= http://www.antigrain.com/ \ http://freebsd.unixfreunde.de/sources/ diff --git a/graphics/amide/Makefile b/graphics/amide/Makefile index cb68366e1469..715e91a74486 100644 --- a/graphics/amide/Makefile +++ b/graphics/amide/Makefile @@ -2,7 +2,7 @@ PORTNAME= amide PORTVERSION= 1.0.5 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics MASTER_SITES= SF EXTRACT_SUFX= .tgz diff --git a/graphics/autopano-sift-c/Makefile b/graphics/autopano-sift-c/Makefile index 1872c200c846..477822c4641c 100644 --- a/graphics/autopano-sift-c/Makefile +++ b/graphics/autopano-sift-c/Makefile @@ -3,7 +3,7 @@ PORTNAME= autopano-sift-C PORTVERSION= 2.5.1 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= graphics MASTER_SITES= SF/hugin/${PORTNAME}/${PORTNAME}-${PORTVERSION} diff --git a/graphics/blender/Makefile b/graphics/blender/Makefile index d5694cc0ff19..2a27fa30d9c8 100644 --- a/graphics/blender/Makefile +++ b/graphics/blender/Makefile @@ -3,6 +3,7 @@ PORTNAME= blender PORTVERSION= 2.70a +PORTREVISION= 1 CATEGORIES= graphics games MASTER_SITES= http://download.blender.org/source/ \ http://mirror.cs.umn.edu/blender.org/source/ \ diff --git a/graphics/cairo/Makefile b/graphics/cairo/Makefile index 27800cd308a5..accb3e472c1d 100644 --- a/graphics/cairo/Makefile +++ b/graphics/cairo/Makefile @@ -4,7 +4,7 @@ PORTNAME= cairo PORTVERSION= 1.10.2 -PORTREVISION= 8 +PORTREVISION= 9 PORTEPOCH?= 2 CATEGORIES= graphics MASTER_SITES= http://cairographics.org/releases/ diff --git a/graphics/cegui/Makefile b/graphics/cegui/Makefile index 7aa89ee3043c..619162d6f515 100644 --- a/graphics/cegui/Makefile +++ b/graphics/cegui/Makefile @@ -3,6 +3,7 @@ PORTNAME= cegui PORTVERSION= 0.8.3 +PORTREVISION= 1 CATEGORIES= graphics devel MASTER_SITES= SF/crayzedsgui/CEGUI%20Mk-2/0.8 @@ -11,7 +12,7 @@ COMMENT= A library providing windowing and widgets for graphics APIs LIB_DEPENDS= IL.2:${PORTSDIR}/graphics/devil \ pcre.3:${PORTSDIR}/devel/pcre \ - freetype.9:${PORTSDIR}/print/freetype2 \ + libfreetype.so:${PORTSDIR}/print/freetype2 \ execinfo:${PORTSDIR}/devel/libexecinfo BUILD_DEPENDS= ${LOCALBASE}/lib/libOgreMain.so.1.9.0:${PORTSDIR}/graphics/ogre3d \ ${LOCALBASE}/include/glm/glm.hpp:${PORTSDIR}/math/glm diff --git a/graphics/devil/Makefile b/graphics/devil/Makefile index d035a3f7a137..92a102a0895a 100644 --- a/graphics/devil/Makefile +++ b/graphics/devil/Makefile @@ -4,7 +4,7 @@ PORTNAME= devil PORTVERSION= 1.7.8 PORTEPOCH= 1 -PORTREVISION= 15 +PORTREVISION= 16 CATEGORIES= graphics MASTER_SITES= SF/openil/DevIL/${PORTVERSION} DISTNAME= DevIL-${PORTVERSION} diff --git a/graphics/dri/Makefile b/graphics/dri/Makefile index cbc14639d5e5..026b79a023dd 100644 --- a/graphics/dri/Makefile +++ b/graphics/dri/Makefile @@ -21,7 +21,7 @@ USE_XORG= glproto x11 xext xxf86vm xdamage xfixes dri2proto # We only care for 9.x and 8.x, not for old pre-clang default current. # This is for 0b0000 binary which gcc 4.3+ understands and is in the i965 driver. .if defined(WITH_NEW_XORG) -. if ${OSVERSION} >= 901000 && ${OSVERSION} < 902502 \ +. if ${OSVERSION} >= 901500 && ${OSVERSION} < 902502 \ && (${ARCH} == i386 || ${ARCH} == amd64) CC=clang CXX=clang++ diff --git a/graphics/driconf/Makefile b/graphics/driconf/Makefile index 688f964e03ce..853cc439c2bb 100644 --- a/graphics/driconf/Makefile +++ b/graphics/driconf/Makefile @@ -3,7 +3,7 @@ PORTNAME= driconf PORTVERSION= 0.9.1 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= graphics MASTER_SITES= ${MASTER_SITE_DEBIAN} MASTER_SITE_SUBDIR= pool/main/d/${PORTNAME} diff --git a/graphics/dynamechs/Makefile b/graphics/dynamechs/Makefile index db97b4fe2347..c3eba6d2ac24 100644 --- a/graphics/dynamechs/Makefile +++ b/graphics/dynamechs/Makefile @@ -3,7 +3,7 @@ PORTNAME= dynamechs PORTVERSION= 4.0.p1 -PORTREVISION= 5 +PORTREVISION= 6 PORTEPOCH= 1 CATEGORIES= graphics MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/4.0pre1 diff --git a/graphics/enblend/Makefile b/graphics/enblend/Makefile index b32a9a96e93f..012891cddd78 100644 --- a/graphics/enblend/Makefile +++ b/graphics/enblend/Makefile @@ -3,7 +3,7 @@ PORTNAME= enblend PORTVERSION= 4.1.1 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= graphics MASTER_SITES= SF/enblend/enblend-enfuse/enblend-enfuse-${PORTVERSION:R} DISTNAME= enblend-enfuse-${PORTVERSION} diff --git a/graphics/evas-core/Makefile b/graphics/evas-core/Makefile index afccbaf462a8..8c23e0e70fe1 100644 --- a/graphics/evas-core/Makefile +++ b/graphics/evas-core/Makefile @@ -3,6 +3,7 @@ PORTNAME= core PORTVERSION= 1.7.9 +PORTREVISION= 1 CATEGORIES= graphics enlightenment MASTER_SITES= http://download.enlightenment.org/releases/ \ LOCAL/gblach/e17/ diff --git a/graphics/evas-engine-buffer/Makefile b/graphics/evas-engine-buffer/Makefile index 057d061f8641..fba3600fb5c7 100644 --- a/graphics/evas-engine-buffer/Makefile +++ b/graphics/evas-engine-buffer/Makefile @@ -3,6 +3,7 @@ PORTNAME= engine-buffer PORTVERSION= 1.7.9 +PORTREVISION= 1 CATEGORIES= graphics enlightenment MASTER_SITES= http://download.enlightenment.org/releases/ \ LOCAL/gblach/e17/ diff --git a/graphics/evas-engine-opengl/Makefile b/graphics/evas-engine-opengl/Makefile index 09fbcf7ef0d8..ffb3cebb3b30 100644 --- a/graphics/evas-engine-opengl/Makefile +++ b/graphics/evas-engine-opengl/Makefile @@ -3,6 +3,7 @@ PORTNAME= engine-opengl PORTVERSION= 1.7.9 +PORTREVISION= 1 CATEGORIES= graphics enlightenment MASTER_SITES= http://download.enlightenment.org/releases/ \ LOCAL/gblach/e17/ diff --git a/graphics/evas-engine-sdl/Makefile b/graphics/evas-engine-sdl/Makefile index 37133486c47e..ec9cb4aa2e82 100644 --- a/graphics/evas-engine-sdl/Makefile +++ b/graphics/evas-engine-sdl/Makefile @@ -3,6 +3,7 @@ PORTNAME= engine-sdl PORTVERSION= 1.7.9 +PORTREVISION= 1 CATEGORIES= graphics enlightenment MASTER_SITES= http://download.enlightenment.org/releases/ \ LOCAL/gblach/e17/ diff --git a/graphics/evas-engine-x11/Makefile b/graphics/evas-engine-x11/Makefile index 93a4391dcfff..bfe2e4e52629 100644 --- a/graphics/evas-engine-x11/Makefile +++ b/graphics/evas-engine-x11/Makefile @@ -3,6 +3,7 @@ PORTNAME= engine-x11 PORTVERSION= 1.7.9 +PORTREVISION= 1 CATEGORIES= graphics enlightenment MASTER_SITES= http://download.enlightenment.org/releases/ \ LOCAL/gblach/e17/ diff --git a/graphics/evas-loader-eet/Makefile b/graphics/evas-loader-eet/Makefile index a1ba989fcadf..0330b4bf18c1 100644 --- a/graphics/evas-loader-eet/Makefile +++ b/graphics/evas-loader-eet/Makefile @@ -3,6 +3,7 @@ PORTNAME= loader-eet PORTVERSION= 1.7.9 +PORTREVISION= 1 CATEGORIES= graphics enlightenment MASTER_SITES= http://download.enlightenment.org/releases/ \ LOCAL/gblach/e17/ diff --git a/graphics/evas-loader-gif/Makefile b/graphics/evas-loader-gif/Makefile index bb909a51d0a2..38d8704d6b7a 100644 --- a/graphics/evas-loader-gif/Makefile +++ b/graphics/evas-loader-gif/Makefile @@ -3,6 +3,7 @@ PORTNAME= loader-gif PORTVERSION= 1.7.9 +PORTREVISION= 1 CATEGORIES= graphics enlightenment MASTER_SITES= http://download.enlightenment.org/releases/ \ LOCAL/gblach/e17/ diff --git a/graphics/evas-loader-jpeg/Makefile b/graphics/evas-loader-jpeg/Makefile index 0647b0a5d3f4..781ed6edb954 100644 --- a/graphics/evas-loader-jpeg/Makefile +++ b/graphics/evas-loader-jpeg/Makefile @@ -3,6 +3,7 @@ PORTNAME= loader-jpeg PORTVERSION= 1.7.9 +PORTREVISION= 1 CATEGORIES= graphics enlightenment MASTER_SITES= http://download.enlightenment.org/releases/ \ LOCAL/gblach/e17/ diff --git a/graphics/evas-loader-png/Makefile b/graphics/evas-loader-png/Makefile index 76794cae5878..df5359f4f9b7 100644 --- a/graphics/evas-loader-png/Makefile +++ b/graphics/evas-loader-png/Makefile @@ -3,6 +3,7 @@ PORTNAME= loader-png PORTVERSION= 1.7.9 +PORTREVISION= 1 CATEGORIES= graphics enlightenment MASTER_SITES= http://download.enlightenment.org/releases/ \ LOCAL/gblach/e17/ diff --git a/graphics/evas-loader-svg/Makefile b/graphics/evas-loader-svg/Makefile index 41b1e61b6653..4db59aba0cc7 100644 --- a/graphics/evas-loader-svg/Makefile +++ b/graphics/evas-loader-svg/Makefile @@ -3,6 +3,7 @@ PORTNAME= loader-svg PORTVERSION= 1.7.9 +PORTREVISION= 1 CATEGORIES= graphics enlightenment MASTER_SITES= http://download.enlightenment.org/releases/ \ LOCAL/gblach/e17/ diff --git a/graphics/evas-loader-tiff/Makefile b/graphics/evas-loader-tiff/Makefile index 76127bb9a7fd..b196f9650768 100644 --- a/graphics/evas-loader-tiff/Makefile +++ b/graphics/evas-loader-tiff/Makefile @@ -3,6 +3,7 @@ PORTNAME= loader-tiff PORTVERSION= 1.7.9 +PORTREVISION= 1 CATEGORIES= graphics enlightenment MASTER_SITES= http://download.enlightenment.org/releases/ \ LOCAL/gblach/e17/ diff --git a/graphics/evas-loader-xpm/Makefile b/graphics/evas-loader-xpm/Makefile index e12abca80d91..8661f7f9f4b5 100644 --- a/graphics/evas-loader-xpm/Makefile +++ b/graphics/evas-loader-xpm/Makefile @@ -3,6 +3,7 @@ PORTNAME= loader-xpm PORTVERSION= 1.7.9 +PORTREVISION= 1 CATEGORIES= graphics enlightenment MASTER_SITES= http://download.enlightenment.org/releases/ \ LOCAL/gblach/e17/ diff --git a/graphics/exact-image/Makefile b/graphics/exact-image/Makefile index 306f9a48b10d..183840c88c1c 100644 --- a/graphics/exact-image/Makefile +++ b/graphics/exact-image/Makefile @@ -3,7 +3,7 @@ PORTNAME= exact-image PORTVERSION= 0.8.9 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics perl5 python MASTER_SITES= http://dl.exactcode.de/oss/${PORTNAME}/ LOCAL/bf diff --git a/graphics/ffff/Makefile b/graphics/ffff/Makefile index c54714a4693b..b8fc6f0ebd9e 100644 --- a/graphics/ffff/Makefile +++ b/graphics/ffff/Makefile @@ -3,7 +3,7 @@ PORTNAME= ffff PORTVERSION= 323 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= graphics MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/FFFF%203.2.3 DISTNAME= FFFF${PORTVERSION}-src diff --git a/graphics/flam3/Makefile b/graphics/flam3/Makefile index b297f8801aa4..10db06f2b482 100644 --- a/graphics/flam3/Makefile +++ b/graphics/flam3/Makefile @@ -3,7 +3,7 @@ PORTNAME= flam3 PORTVERSION= 2.7.18 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= graphics MASTER_SITES= http://flam3.com/ \ http://interwebfun.org/distfiles/ @@ -12,7 +12,7 @@ MAINTAINER= john.c.prather@gmail.com COMMENT= A Flame Renderer LIB_DEPENDS= png15:${PORTSDIR}/graphics/png \ - xml2.5:${PORTSDIR}/textproc/libxml2 \ + libxml2.so:${PORTSDIR}/textproc/libxml2 \ jpeg.11:${PORTSDIR}/graphics/jpeg GNU_CONFIGURE= yes diff --git a/graphics/fpc-opengl/Makefile b/graphics/fpc-opengl/Makefile index 57642528b45d..b3b566c2a137 100644 --- a/graphics/fpc-opengl/Makefile +++ b/graphics/fpc-opengl/Makefile @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez <acm@FreeBSD.org> # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= graphics lang PKGNAMESUFFIX= -opengl diff --git a/graphics/freeglut/Makefile b/graphics/freeglut/Makefile index 9287d58e6dcb..ea64b0ff65d8 100644 --- a/graphics/freeglut/Makefile +++ b/graphics/freeglut/Makefile @@ -3,6 +3,7 @@ PORTNAME= freeglut PORTVERSION= 2.8.1 +PORTREVISION= 1 CATEGORIES= graphics MASTER_SITES= SF @@ -13,7 +14,7 @@ LICENSE= MIT CONFLICTS= libglut-[0-9].* -USE_AUTOTOOLS= libtool +USES= libtool GNU_CONFIGURE= yes USE_LDCONFIG= yes USE_XORG= ice xi xxf86vm xrandr diff --git a/graphics/freeglut/pkg-plist b/graphics/freeglut/pkg-plist index 8ddb105aab13..85eb20d6fffd 100644 --- a/graphics/freeglut/pkg-plist +++ b/graphics/freeglut/pkg-plist @@ -5,7 +5,8 @@ include/GL/glut.h lib/libglut.a lib/libglut.la lib/libglut.so -lib/libglut.so.12 +lib/libglut.so.3 +lib/libglut.so.3.9.0 %%PORTEXAMPLES%%%%EXAMPLESDIR%%/callbackmaker %%PORTEXAMPLES%%%%EXAMPLESDIR%%/fractals %%PORTEXAMPLES%%%%EXAMPLESDIR%%/fractals_random diff --git a/graphics/ftgl/Makefile b/graphics/ftgl/Makefile index e5dca5e1e387..54076d8f7191 100644 --- a/graphics/ftgl/Makefile +++ b/graphics/ftgl/Makefile @@ -3,6 +3,7 @@ PORTNAME= ftgl DISTVERSION= 2.1.3-rc5 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= graphics MASTER_SITES= SF/${PORTNAME}/FTGL%20Source/2.1.3%7Erc5 diff --git a/graphics/fv/Makefile b/graphics/fv/Makefile index eb42174e7d11..c8d79463f64d 100644 --- a/graphics/fv/Makefile +++ b/graphics/fv/Makefile @@ -3,7 +3,7 @@ PORTNAME= fv PORTVERSION= 1.03 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= graphics MASTER_SITES= http://www.eaflux.com/fv/sources/ DISTNAME= ${PORTNAME}-src-${PORTVERSION} diff --git a/graphics/gauche-gl/Makefile b/graphics/gauche-gl/Makefile index bcd662acc0c9..00b9151cf1cd 100644 --- a/graphics/gauche-gl/Makefile +++ b/graphics/gauche-gl/Makefile @@ -3,7 +3,7 @@ PORTNAME= gl PORTVERSION= 0.5.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics scheme MASTER_SITES= SF/gauche/Gauche-gl PKGNAMEPREFIX= gauche- diff --git a/graphics/gd/Makefile b/graphics/gd/Makefile index 8edcc963aa9f..5bbb6fa77d8f 100644 --- a/graphics/gd/Makefile +++ b/graphics/gd/Makefile @@ -3,7 +3,7 @@ PORTNAME= libgd PORTVERSION= 2.1.0 -PORTREVISION?= 2 +PORTREVISION?= 3 PORTEPOCH= 1 CATEGORIES+= graphics MASTER_SITES= http://cdn.bitbucket.org/libgd/gd-libgd/downloads/ diff --git a/graphics/gdal/Makefile b/graphics/gdal/Makefile index 420c08db4085..03bb184c1a54 100644 --- a/graphics/gdal/Makefile +++ b/graphics/gdal/Makefile @@ -3,7 +3,7 @@ PORTNAME= gdal PORTVERSION= 1.10.1 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= graphics geography MASTER_SITES= http://download.osgeo.org/gdal/${PORTVERSION}/ \ ftp://ftp.remotesensing.org/pub/gdal/${PORTVERSION}/ \ diff --git a/graphics/gdchart/Makefile b/graphics/gdchart/Makefile index 807b2c164669..513c4357e189 100644 --- a/graphics/gdchart/Makefile +++ b/graphics/gdchart/Makefile @@ -3,7 +3,7 @@ PORTNAME= gdchart PORTVERSION= 0.11.5 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= graphics MASTER_SITES= http://www.fred.net/brv/chart/ \ ftp://ftp.nuug.no/pub/anders/distfiles/ @@ -14,7 +14,7 @@ COMMENT= Easy to use fast C API for creating charts and graphs LIB_DEPENDS= gd:${PORTSDIR}/graphics/gd \ jpeg:${PORTSDIR}/graphics/jpeg \ - freetype:${PORTSDIR}/print/freetype2 + libfreetype.so:${PORTSDIR}/print/freetype2 MAKEFILE= ${FILESDIR}/Makefile MAKE_ARGS= PREFIX="${PREFIX}" LOCALBASE="${LOCALBASE}" diff --git a/graphics/gle/Makefile b/graphics/gle/Makefile index bd481de3451c..66a1c553bd56 100644 --- a/graphics/gle/Makefile +++ b/graphics/gle/Makefile @@ -3,7 +3,7 @@ PORTNAME= gle PORTVERSION= 3.1.0 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= graphics MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}\ http://linas.org/gle/pub/ \ diff --git a/graphics/glexcess/Makefile b/graphics/glexcess/Makefile index 0e29b1e0113e..726754fc9a1e 100644 --- a/graphics/glexcess/Makefile +++ b/graphics/glexcess/Makefile @@ -3,7 +3,7 @@ PORTNAME= glexcess PORTVERSION= 1.0 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= graphics MASTER_SITES= http://www.glexcess.com/files/ DISTNAME= ${PORTNAME} diff --git a/graphics/gltt/Makefile b/graphics/gltt/Makefile index eef2fbd6fe56..50f7467a664f 100644 --- a/graphics/gltt/Makefile +++ b/graphics/gltt/Makefile @@ -3,7 +3,7 @@ PORTNAME= gltt PORTVERSION= 2.5.2 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= graphics MASTER_SITES= http://gltt.sourceforge.net/download/ diff --git a/graphics/gnash/Makefile b/graphics/gnash/Makefile index 25a74d8f426a..9e28d562caee 100644 --- a/graphics/gnash/Makefile +++ b/graphics/gnash/Makefile @@ -3,7 +3,7 @@ PORTNAME= gnash PORTVERSION= 0.8.10 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= graphics MASTER_SITES= GNU/${PORTNAME}/${PORTVERSION}/ diff --git a/graphics/gource/Makefile b/graphics/gource/Makefile index 751fd5d95d0f..f4fa47677f05 100644 --- a/graphics/gource/Makefile +++ b/graphics/gource/Makefile @@ -3,7 +3,7 @@ PORTNAME= gource PORTVERSION= 0.40 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= graphics MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} MASTER_SITE_SUBDIR= ${PORTNAME} diff --git a/graphics/graphviz/Makefile b/graphics/graphviz/Makefile index 4bbd8a56c5be..a87b6a268f0b 100644 --- a/graphics/graphviz/Makefile +++ b/graphics/graphviz/Makefile @@ -3,6 +3,7 @@ PORTNAME= graphviz PORTVERSION= 2.36.0 +PORTREVISION= 1 CATEGORIES= graphics tk MASTER_SITES= http://www.graphviz.org/pub/graphviz/ARCHIVE/ diff --git a/graphics/grx/Makefile b/graphics/grx/Makefile index 6d65546f503f..8903e7678b68 100644 --- a/graphics/grx/Makefile +++ b/graphics/grx/Makefile @@ -3,6 +3,7 @@ PORTNAME= grx PORTVERSION= 2.4.9 +PORTREVISION= 1 CATEGORIES= graphics MASTER_SITES= http://grx.gnu.de/download/ DISTNAME= ${PORTNAME}${PORTVERSION:S/.//g} diff --git a/graphics/hugin-devel/Makefile b/graphics/hugin-devel/Makefile index 89eebd95db8c..0eaff9ef4f56 100644 --- a/graphics/hugin-devel/Makefile +++ b/graphics/hugin-devel/Makefile @@ -3,7 +3,7 @@ PORTNAME= hugin PORTVERSION= 2013.0 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= graphics MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-2013.0 PKGNAMESUFFIX= -devel diff --git a/graphics/hugin/Makefile b/graphics/hugin/Makefile index 72925a1daf9b..27d5c6d64b75 100644 --- a/graphics/hugin/Makefile +++ b/graphics/hugin/Makefile @@ -3,7 +3,7 @@ PORTNAME= hugin PORTVERSION= 2013.0.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION:R} diff --git a/graphics/iccxml/Makefile b/graphics/iccxml/Makefile index 8dc3fa60a791..cfebcac65ab0 100644 --- a/graphics/iccxml/Makefile +++ b/graphics/iccxml/Makefile @@ -2,6 +2,7 @@ PORTNAME= iccxml PORTVERSION= 0.9.6 +PORTREVISION= 1 CATEGORIES= graphics MASTER_SITES= SF/${PORTNAME}/IccXML-Src/${DISTNAME} DISTNAME= IccXML-${PORTVERSION} diff --git a/graphics/imlib2/Makefile b/graphics/imlib2/Makefile index 037e5cc6b36b..9e376297cfa9 100644 --- a/graphics/imlib2/Makefile +++ b/graphics/imlib2/Makefile @@ -3,8 +3,8 @@ PORTNAME= imlib2 PORTVERSION= 1.4.6 +PORTREVISION= 2 PORTEPOCH= 2 -PORTREVISION= 1 CATEGORIES= graphics enlightenment MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= enlightenment/imlib2-src/${PORTVERSION} diff --git a/graphics/inventor/Makefile b/graphics/inventor/Makefile index 91da47139835..6d85845a3bb5 100644 --- a/graphics/inventor/Makefile +++ b/graphics/inventor/Makefile @@ -3,7 +3,7 @@ PORTNAME= inventor PORTVERSION= 2.1.5.p10 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= graphics MASTER_SITES= ftp://oss.sgi.com/projects/inventor/download/ DISTNAME= ${PORTNAME}-${PORTVERSION:S/.p/-/} @@ -12,7 +12,7 @@ EXTRACT_SUFX= .src.tar.gz MAINTAINER= c47g@gmx.at COMMENT= This is SGI's Open Inventor (TM) -LIB_DEPENDS= freetype.9:${PORTSDIR}/print/freetype2 \ +LIB_DEPENDS= libfreetype.so:${PORTSDIR}/print/freetype2 \ jpeg.11:${PORTSDIR}/graphics/jpeg \ GLU.1:${PORTSDIR}/graphics/libGLU diff --git a/graphics/jasper/Makefile b/graphics/jasper/Makefile index 98a8970b6dfe..484ccdcbf5f9 100644 --- a/graphics/jasper/Makefile +++ b/graphics/jasper/Makefile @@ -3,7 +3,7 @@ PORTNAME= jasper PORTVERSION= 1.900.1 -PORTREVISION= 12 +PORTREVISION= 13 CATEGORIES= graphics MASTER_SITES= http://www.ece.uvic.ca/~mdadams/jasper/software/ \ ${MASTER_SITE_IMAGEMAGICK} diff --git a/graphics/jogamp-jogl/Makefile b/graphics/jogamp-jogl/Makefile index 7de8ab955e8f..f93073fd756b 100644 --- a/graphics/jogamp-jogl/Makefile +++ b/graphics/jogamp-jogl/Makefile @@ -3,6 +3,7 @@ PORTNAME= jogamp-jogl PORTVERSION= 2.0.20100914 +PORTREVISION= 1 CATEGORIES= graphics devel java MASTER_SITES= http://www.potion-studios.com/ \ LOCAL/makc diff --git a/graphics/jogl/Makefile b/graphics/jogl/Makefile index 0d5ae1d59e70..c21aced6ae33 100644 --- a/graphics/jogl/Makefile +++ b/graphics/jogl/Makefile @@ -3,7 +3,7 @@ PORTNAME= jogl PORTVERSION= 1.1.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics devel java MASTER_SITES=http://download.java.net/media/jogl/builds/archive/jsr-231-1.1.1/ EXTRACT_SUFX= -src.zip diff --git a/graphics/lib3ds/Makefile b/graphics/lib3ds/Makefile index e3b3e445124d..e611092ce107 100644 --- a/graphics/lib3ds/Makefile +++ b/graphics/lib3ds/Makefile @@ -3,7 +3,7 @@ PORTNAME= lib3ds PORTVERSION= 1.3.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= graphics MASTER_SITES= GOOGLE_CODE diff --git a/graphics/libEGL/Makefile b/graphics/libEGL/Makefile index 288bafc38c27..1c0cbac79b18 100644 --- a/graphics/libEGL/Makefile +++ b/graphics/libEGL/Makefile @@ -3,6 +3,7 @@ PORTNAME= libEGL PORTVERSION= ${MESAVERSION} +PORTREVISION= 1 CATEGORIES= graphics COMMENT= OpenEGL library diff --git a/graphics/libGL/bsd.mesalib.mk b/graphics/libGL/bsd.mesalib.mk index ca37f372afb8..1a87e02bcfc2 100644 --- a/graphics/libGL/bsd.mesalib.mk +++ b/graphics/libGL/bsd.mesalib.mk @@ -27,8 +27,7 @@ MESASUBVERSION= PLIST_SUB+= OLD="" NEW="@comment " .endif -MASTER_SITES= ftp://ftp.freedesktop.org/pub/mesa/${MESABASEVERSION}/ \ - http://files.etoilebsd.net/mesa/ +MASTER_SITES= ftp://ftp.freedesktop.org/pub/mesa/${MESABASEVERSION}/ DISTFILES= MesaLib-${MESADISTVERSION}${EXTRACT_SUFX} MAINTAINER= x11@FreeBSD.org @@ -42,8 +41,8 @@ USE_BZIP2= yes USE_LDCONFIG= yes GNU_CONFIGURE= yes -CPPFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib +CPPFLAGS+= -isystem${LOCALBASE}/include +LDFLAGS+= -Wl,-Y${LOCALBASE}/lib .if ${OSVERSION} < 1000033 BUILD_DEPENDS+= ${LOCALBASE}/bin/flex:${PORTSDIR}/textproc/flex diff --git a/graphics/libafterimage/Makefile b/graphics/libafterimage/Makefile index b2428bffa5ba..5dac010b8481 100644 --- a/graphics/libafterimage/Makefile +++ b/graphics/libafterimage/Makefile @@ -3,7 +3,7 @@ PORTNAME= libafterimage PORTVERSION= 1.20 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics MASTER_SITES= SF/afterstep/libAfterImage/${PORTVERSION} DISTNAME= libAfterImage-${PORTVERSION} diff --git a/graphics/libaux/Makefile b/graphics/libaux/Makefile index 5a98934e6be2..3c74a03867c1 100644 --- a/graphics/libaux/Makefile +++ b/graphics/libaux/Makefile @@ -3,7 +3,7 @@ PORTNAME= libaux PORTVERSION= 1.0 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= graphics MASTER_SITES= http://www.freebsdbrasil.com.br/~jmelo/ DISTFILES= libaux${EXTRACT_SUFX} libtk${EXTRACT_SUFX} diff --git a/graphics/libcaca/Makefile b/graphics/libcaca/Makefile index 934f2f282f12..fedd2c29b881 100644 --- a/graphics/libcaca/Makefile +++ b/graphics/libcaca/Makefile @@ -3,7 +3,7 @@ PORTNAME= libcaca DISTVERSION= 0.99.beta18 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= graphics MASTER_SITES= http://caca.zoy.org/raw-attachment/wiki/libcaca/ diff --git a/graphics/libdrm/Makefile b/graphics/libdrm/Makefile index 648b0c380813..5fd4503eb494 100644 --- a/graphics/libdrm/Makefile +++ b/graphics/libdrm/Makefile @@ -13,8 +13,7 @@ COMMENT= Userspace interface to kernel Direct Rendering Module services LIB_DEPENDS= libpciaccess.so:${PORTSDIR}/devel/libpciaccess \ libpthread-stubs.so:${PORTSDIR}/devel/libpthread-stubs -USES= pkgconfig -USE_BZIP2= yes +USES= pkgconfig tar:bzip2 GNU_CONFIGURE= yes USE_LDCONFIG= yes @@ -49,7 +48,7 @@ CONFIGURE_ARGS+=--disable-manpages PLIST_SUB+= MAN="@comment " .endif -LIBDRM_VERSION= 2.4.50 +LIBDRM_VERSION= 2.4.52 LIBDRM_REVISION=0 PLIST_SUB+= OLD="@comment " NEW="" EXTRA_PATCHES+= ${FILESDIR}/extra-configure \ @@ -65,7 +64,7 @@ LIBDRM_REVISION=1 PLIST_SUB+= OLD="" NEW="@comment " NOUVEAU="" .endif -.if ${ARCH} == "amd64" || ${ARCH} == "i386" +.if ${ARCH} == amd64 || ${ARCH} == i386 PLIST_SUB+= INTEL_DRIVER="" PLIST_SUB+= RADEON_DRIVERS="" .elif ${ARCH} == ia64 || ${ARCH} == powerpc || ${ARCH} == powerpc64 diff --git a/graphics/libdrm/distinfo b/graphics/libdrm/distinfo index c020f636bd86..26791066456d 100644 --- a/graphics/libdrm/distinfo +++ b/graphics/libdrm/distinfo @@ -1,4 +1,4 @@ SHA256 (libdrm-2.4.17.tar.bz2) = b8a4e7c610b0e970546d791c06e28882857a49d34698633a89292d7ae142316a SIZE (libdrm-2.4.17.tar.bz2) = 408882 -SHA256 (libdrm-2.4.50.tar.bz2) = 3823d24cda800c2cd36995e01830b890edb8fb1bebf97d5ea4318b8c3933b045 -SIZE (libdrm-2.4.50.tar.bz2) = 563613 +SHA256 (libdrm-2.4.52.tar.bz2) = fa693c2f1f61befcefbdcc396673e38481110bac9db610afa4b8afb2be0218c1 +SIZE (libdrm-2.4.52.tar.bz2) = 551473 diff --git a/graphics/libetonyek/Makefile b/graphics/libetonyek/Makefile index 8c096571ae08..edc5c39230f5 100644 --- a/graphics/libetonyek/Makefile +++ b/graphics/libetonyek/Makefile @@ -2,7 +2,7 @@ PORTNAME= libetonyek PORTVERSION= 0.0.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics MASTER_SITES= http://dev-www.libreoffice.org/src/ diff --git a/graphics/libggi/Makefile b/graphics/libggi/Makefile index bcbd8ca4f9af..364491c689dc 100644 --- a/graphics/libggi/Makefile +++ b/graphics/libggi/Makefile @@ -3,7 +3,7 @@ PORTNAME= libggi PORTVERSION= 2.2.2 -PORTREVISION= 4 +PORTREVISION= 5 PORTEPOCH= 1 CATEGORIES= graphics devel MASTER_SITES= SF/ggi/ggi-core/${PORTNAME}-${PORTVERSION} diff --git a/graphics/libglesv2/Makefile b/graphics/libglesv2/Makefile index c48744a55079..01c5bfb726c1 100644 --- a/graphics/libglesv2/Makefile +++ b/graphics/libglesv2/Makefile @@ -10,6 +10,8 @@ COMMENT= OpenGL ES v2 library LIB_DEPENDS+= libdrm.so:${PORTSDIR}/graphics/libdrm \ libexpat.so:${PORTSDIR}/textproc/expat2 +.include <bsd.port.options.mk> + .if ! defined(WITH_NEW_XORG) IGNORE= Please enable WITH_NEW_XORG, libglesv2 needs libdrm higher then 2.4.24 .endif diff --git a/graphics/libgltext/Makefile b/graphics/libgltext/Makefile index 84aa11a7b01c..30f144cf9df7 100644 --- a/graphics/libgltext/Makefile +++ b/graphics/libgltext/Makefile @@ -3,7 +3,7 @@ PORTNAME= libgltext PORTVERSION= 0.3.1 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= graphics MASTER_SITES= SF/gltext/gltext/${PORTVERSION} DISTNAME= gltext-${PORTVERSION} @@ -11,7 +11,7 @@ DISTNAME= gltext-${PORTVERSION} MAINTAINER= acm@FreeBSD.org COMMENT= Portable font rendering library for C++ -LIB_DEPENDS= freetype.9:${PORTSDIR}/print/freetype2 +LIB_DEPENDS= libfreetype.so:${PORTSDIR}/print/freetype2 USE_AUTOTOOLS= libtool USES= gmake diff --git a/graphics/libgphoto2/Makefile b/graphics/libgphoto2/Makefile index 01b2644c6059..a7266466f5fe 100644 --- a/graphics/libgphoto2/Makefile +++ b/graphics/libgphoto2/Makefile @@ -3,6 +3,7 @@ PORTNAME= libgphoto2 PORTVERSION= 2.5.3.1 +PORTREVISION= 1 CATEGORIES= graphics MASTER_SITES= SF/gphoto/libgphoto/${PORTVERSION} diff --git a/graphics/libkdcraw-kde4/Makefile b/graphics/libkdcraw-kde4/Makefile index 9185fc2f272f..f322c973e79d 100644 --- a/graphics/libkdcraw-kde4/Makefile +++ b/graphics/libkdcraw-kde4/Makefile @@ -3,6 +3,7 @@ PORTNAME= libkdcraw PORTVERSION= ${KDE4_VERSION} +PORTREVISION= 1 CATEGORIES= graphics kde MASTER_SITES= KDE/${KDE4_BRANCH}/${PORTVERSION}/src DIST_SUBDIR= KDE/${PORTVERSION} diff --git a/graphics/libopenraw/Makefile b/graphics/libopenraw/Makefile index 861736143492..51ff49267ebd 100644 --- a/graphics/libopenraw/Makefile +++ b/graphics/libopenraw/Makefile @@ -3,6 +3,7 @@ PORTNAME= libopenraw PORTVERSION= 0.0.9 +PORTREVISION= 1 CATEGORIES= graphics MASTER_SITES= http://libopenraw.freedesktop.org/download/ diff --git a/graphics/libosmesa/Makefile b/graphics/libosmesa/Makefile index f27caff31491..7413994e270b 100644 --- a/graphics/libosmesa/Makefile +++ b/graphics/libosmesa/Makefile @@ -3,6 +3,7 @@ PORTNAME= libosmesa PORTVERSION= 10.1.0 +PORTREVISION= 1 CATEGORIES= graphics MASTER_SITES= ftp://ftp.freedesktop.org/pub/mesa/${PORTVERSION:R}/ DISTNAME= MesaLib-${PORTVERSION} diff --git a/graphics/libprojectm/Makefile b/graphics/libprojectm/Makefile index 5a8281c6327e..54d4b61776df 100644 --- a/graphics/libprojectm/Makefile +++ b/graphics/libprojectm/Makefile @@ -2,7 +2,7 @@ PORTNAME= libprojectM PORTVERSION= 2.0.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics audio MASTER_SITES= SF/${PORTNAME:L:S/lib//}/${PORTVERSION}/ DISTNAME= ${PORTNAME:S/lib//}-${DISTVERSION}-Source diff --git a/graphics/libreatlas/Makefile b/graphics/libreatlas/Makefile index 66d8717752ea..baf5109de273 100644 --- a/graphics/libreatlas/Makefile +++ b/graphics/libreatlas/Makefile @@ -3,7 +3,7 @@ PORTNAME= libreatlas PORTVERSION= 1.0.0a -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= graphics geography MASTER_SITES= http://www.gaia-gis.it/gaia-sins/ @@ -24,7 +24,7 @@ LIB_DEPENDS= mspack:${PORTSDIR}/archivers/libmspack \ png15:${PORTSDIR}/graphics/png \ proj:${PORTSDIR}/graphics/proj \ tiff:${PORTSDIR}/graphics/tiff \ - freetype:${PORTSDIR}/print/freetype2 \ + libfreetype.so:${PORTSDIR}/print/freetype2 \ expat:${PORTSDIR}/textproc/expat2 \ freexl:${PORTSDIR}/textproc/freexl \ fontconfig:${PORTSDIR}/x11-fonts/fontconfig diff --git a/graphics/librsvg2/Makefile b/graphics/librsvg2/Makefile index 101088e7b6a0..6e0b8c05ab59 100644 --- a/graphics/librsvg2/Makefile +++ b/graphics/librsvg2/Makefile @@ -4,6 +4,7 @@ PORTNAME= librsvg PORTVERSION= 2.36.4 +PORTREVISION= 1 CATEGORIES= graphics gnome MASTER_SITES= GNOME PKGNAMESUFFIX= 2 @@ -12,7 +13,7 @@ DIST_SUBDIR= gnome2 MAINTAINER= gnome@FreeBSD.org COMMENT= Library for parsing and rendering SVG vector-graphic files -LIB_DEPENDS= freetype:${PORTSDIR}/print/freetype2 \ +LIB_DEPENDS= libfreetype.so:${PORTSDIR}/print/freetype2 \ croco-0.6:${PORTSDIR}/textproc/libcroco RUN_DEPENDS= gtk-engines2>=2.7.5_1:${PORTSDIR}/x11-themes/gtk-engines2 diff --git a/graphics/libsvg/Makefile b/graphics/libsvg/Makefile index 3016f5918cb2..dc1eba9e0bde 100644 --- a/graphics/libsvg/Makefile +++ b/graphics/libsvg/Makefile @@ -4,7 +4,7 @@ PORTNAME= libsvg PORTVERSION= 0.1.4 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= graphics MASTER_SITES= http://cairographics.org/snapshots/ diff --git a/graphics/libwmf/Makefile b/graphics/libwmf/Makefile index 2fd3937c4449..cbf623b77b35 100644 --- a/graphics/libwmf/Makefile +++ b/graphics/libwmf/Makefile @@ -3,7 +3,7 @@ PORTNAME= libwmf PORTVERSION= 0.2.8.4 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= graphics MASTER_SITES= SF/wvware/${PORTNAME}/${PORTVERSION} diff --git a/graphics/luxrays/Makefile b/graphics/luxrays/Makefile index 81706f9a8247..c7b4d42df4f8 100644 --- a/graphics/luxrays/Makefile +++ b/graphics/luxrays/Makefile @@ -3,7 +3,7 @@ PORTNAME= luxrays PORTVERSION= 1.2.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics MASTER_SITES= http://src.luxrender.net/luxrays/archive/ DISTNAME= ${HG_NODEID} diff --git a/graphics/makehuman/Makefile b/graphics/makehuman/Makefile index 3e333a536c2d..4e6247373c7b 100644 --- a/graphics/makehuman/Makefile +++ b/graphics/makehuman/Makefile @@ -3,7 +3,7 @@ PORTNAME= makehuman DISTVERSION= 0.9.1-rc1a -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= graphics MASTER_SITES= SF/${PORTNAME}/MakeHuman%20Source/MakeHuman_091 diff --git a/graphics/mapnik/Makefile b/graphics/mapnik/Makefile index 58d9aea5b6d5..652aa45a5e55 100644 --- a/graphics/mapnik/Makefile +++ b/graphics/mapnik/Makefile @@ -4,7 +4,7 @@ PORTNAME= mapnik PORTVERSION= 2.2.0 DISTVERSIONPREFIX= v -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= graphics geography MASTER_SITES= http://mapnik.s3.amazonaws.com/dist/v${PORTVERSION}/ diff --git a/graphics/mapserver/Makefile b/graphics/mapserver/Makefile index 329136e61ebc..2ae778d78d55 100644 --- a/graphics/mapserver/Makefile +++ b/graphics/mapserver/Makefile @@ -3,7 +3,7 @@ PORTNAME= mapserver PORTVERSION= 6.4.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= graphics www geography MASTER_SITES= http://download.osgeo.org/mapserver/ diff --git a/graphics/mate-document-viewer/Makefile b/graphics/mate-document-viewer/Makefile index 8b52e0d5e4a5..8f0085b602d8 100644 --- a/graphics/mate-document-viewer/Makefile +++ b/graphics/mate-document-viewer/Makefile @@ -3,7 +3,7 @@ PORTNAME= mate-document-viewer PORTVERSION= 1.6.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics print mate MASTER_SITES= MATE DIST_SUBDIR= mate diff --git a/graphics/mate-image-viewer/Makefile b/graphics/mate-image-viewer/Makefile index 541d39f73a52..e60c80bc6901 100644 --- a/graphics/mate-image-viewer/Makefile +++ b/graphics/mate-image-viewer/Makefile @@ -3,6 +3,7 @@ PORTNAME= mate-image-viewer PORTVERSION= 1.6.1 +PORTREVISION= 1 CATEGORIES= graphics mate MASTER_SITES= MATE DIST_SUBDIR= mate diff --git a/graphics/mesa-demos/Makefile b/graphics/mesa-demos/Makefile index 81d1212e3960..025b2b4c9760 100644 --- a/graphics/mesa-demos/Makefile +++ b/graphics/mesa-demos/Makefile @@ -3,6 +3,7 @@ PORTNAME= mesa-demos PORTVERSION= 8.1.0 +PORTREVISION= 1 CATEGORIES= graphics MASTER_SITES= ftp://ftp.freedesktop.org/pub/mesa/demos/${PORTVERSION}/ DISTFILES= mesa-demos-${PORTVERSION}${EXTRACT_SUFX} diff --git a/graphics/mhgui/Makefile b/graphics/mhgui/Makefile index 77528fbe5406..689b2594c55b 100644 --- a/graphics/mhgui/Makefile +++ b/graphics/mhgui/Makefile @@ -3,7 +3,7 @@ PORTNAME= mhgui PORTVERSION= 0.2 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= graphics MASTER_SITES= SF/makehuman/MakeHuman%20Source/MakeHuman_091 diff --git a/graphics/ming/Makefile b/graphics/ming/Makefile index 1c13f471e94b..9c37d969df0f 100644 --- a/graphics/ming/Makefile +++ b/graphics/ming/Makefile @@ -3,7 +3,7 @@ PORTNAME= ming PORTVERSION= 0.4.5 -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES= graphics MASTER_SITES= SF/${PORTNAME}/Releases/ diff --git a/graphics/mtpaint/Makefile b/graphics/mtpaint/Makefile index 82169c98c586..4605c0d58257 100644 --- a/graphics/mtpaint/Makefile +++ b/graphics/mtpaint/Makefile @@ -3,7 +3,7 @@ PORTNAME= mtpaint PORTVERSION= 3.40 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics MASTER_SITES= SF @@ -17,7 +17,7 @@ LIB_DEPENDS= jpeg.11:${PORTSDIR}/graphics/jpeg \ png15:${PORTSDIR}/graphics/png \ tiff.4:${PORTSDIR}/graphics/tiff \ gif.5:${PORTSDIR}/graphics/giflib \ - freetype.9:${PORTSDIR}/print/freetype2 + libfreetype.so:${PORTSDIR}/print/freetype2 OPTIONS_DEFINE= LCMS2 OPENJPEG NLS OPTIONS_DEFAULT= LCMS2 OPENJPEG diff --git a/graphics/mupdf/Makefile b/graphics/mupdf/Makefile index 17318da21713..763988a4f06b 100644 --- a/graphics/mupdf/Makefile +++ b/graphics/mupdf/Makefile @@ -3,6 +3,7 @@ PORTNAME= mupdf PORTVERSION= 1.2 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= graphics MASTER_SITES= GOOGLE_CODE \ diff --git a/graphics/netpbm/Makefile b/graphics/netpbm/Makefile index 709652771eda..e4b41b67d32a 100644 --- a/graphics/netpbm/Makefile +++ b/graphics/netpbm/Makefile @@ -3,6 +3,7 @@ PORTNAME= netpbm PORTVERSION= 10.35.89 +PORTREVISION= 1 CATEGORIES= graphics MASTER_SITES= SF/netpbm/super_stable/${PORTVERSION} \ ${MASTER_SITE_LOCAL:S/$/:man/} diff --git a/graphics/nip2/Makefile b/graphics/nip2/Makefile index 311503e20a57..2e01947266d7 100644 --- a/graphics/nip2/Makefile +++ b/graphics/nip2/Makefile @@ -3,7 +3,7 @@ PORTNAME= nip2 PORTVERSION= 7.26.3 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= graphics MASTER_SITES= http://www.vips.ecs.soton.ac.uk/supported/${PORTVERSION:R}/ diff --git a/graphics/ocaml-lablgl/Makefile b/graphics/ocaml-lablgl/Makefile index 963a2d8f6bd6..2aad28c2e976 100644 --- a/graphics/ocaml-lablgl/Makefile +++ b/graphics/ocaml-lablgl/Makefile @@ -3,7 +3,7 @@ PORTNAME= lablgl PORTVERSION= 20120306 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics MASTER_SITES= http://wwwfun.kurims.kyoto-u.ac.jp/soft/lsl/dist/ \ https://forge.ocamlcore.org/frs/download.php/816/ diff --git a/graphics/ogre3d/Makefile b/graphics/ogre3d/Makefile index 9b6df2c7e42a..2891e75c6c27 100644 --- a/graphics/ogre3d/Makefile +++ b/graphics/ogre3d/Makefile @@ -3,6 +3,7 @@ PORTNAME= ogre3d PORTVERSION= 1.9.0 +PORTREVISION= 1 CATEGORIES= graphics devel MASTER_SITES= https://bitbucket.org/sinbad/ogre/get/ DISTNAME= v1-9-0 @@ -12,7 +13,7 @@ MAINTAINER= oliver@FreeBSD.org COMMENT= A scene-oriented, flexible 3D engine written in C++ LIB_DEPENDS= zzip.13:${PORTSDIR}/devel/zziplib \ - freetype.9:${PORTSDIR}/print/freetype2 \ + libfreetype.so:${PORTSDIR}/print/freetype2 \ freeimage.3:${PORTSDIR}/graphics/freeimage OPTIONS_DEFINE= BOOST diff --git a/graphics/okular/Makefile b/graphics/okular/Makefile index 4602699732ae..7e5cb03039c8 100644 --- a/graphics/okular/Makefile +++ b/graphics/okular/Makefile @@ -2,6 +2,7 @@ PORTNAME= okular PORTVERSION= ${KDE4_VERSION} +PORTREVISION= 1 CATEGORIES= graphics kde MASTER_SITES= KDE/${KDE4_BRANCH}/${PORTVERSION}/src DIST_SUBDIR= KDE/${PORTVERSION} diff --git a/graphics/opencollada/Makefile b/graphics/opencollada/Makefile index ca6aee671272..b9be1f12b87e 100644 --- a/graphics/opencollada/Makefile +++ b/graphics/opencollada/Makefile @@ -2,7 +2,7 @@ PORTNAME= opencollada PORTVERSION= 1.2.2.20140214 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics devel MAINTAINER= mva@FreeBSD.org diff --git a/graphics/osg-devel/Makefile b/graphics/osg-devel/Makefile index 852d3e1d805c..d01c073bbe91 100644 --- a/graphics/osg-devel/Makefile +++ b/graphics/osg-devel/Makefile @@ -3,6 +3,7 @@ PORTNAME= osg PORTVERSION= 3.3.0 +PORTREVISION= 1 CATEGORIES= graphics MASTER_SITES= http://trac.openscenegraph.org/downloads/developer_releases/ \ http://mirror.amdmi3.ru/distfiles/ diff --git a/graphics/osg/Makefile b/graphics/osg/Makefile index c54be52f31c4..4f5db8ffb9ea 100644 --- a/graphics/osg/Makefile +++ b/graphics/osg/Makefile @@ -3,6 +3,7 @@ PORTNAME= osg PORTVERSION= 3.2.0 +PORTREVISION= 1 CATEGORIES= graphics MASTER_SITES= http://trac.openscenegraph.org/downloads/developer_releases/ \ http://mirror.amdmi3.ru/distfiles/ diff --git a/graphics/oyranos/Makefile b/graphics/oyranos/Makefile index f2b25d634941..f85d9fed1191 100644 --- a/graphics/oyranos/Makefile +++ b/graphics/oyranos/Makefile @@ -2,7 +2,7 @@ PORTNAME= oyranos PORTVERSION= 0.9.5 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics MASTER_SITES= SF/${PORTNAME}/Oyranos/Oyranos%20${PORTVERSION:C|(.*)\.[0-9]*$|\1|} diff --git a/graphics/p5-Imager/Makefile b/graphics/p5-Imager/Makefile index 84ba8cc8d9a3..d52e5089bef1 100644 --- a/graphics/p5-Imager/Makefile +++ b/graphics/p5-Imager/Makefile @@ -3,6 +3,7 @@ PORTNAME= Imager PORTVERSION= 0.98 +PORTREVISION= 1 CATEGORIES= graphics perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- diff --git a/graphics/p5-OpenGL/Makefile b/graphics/p5-OpenGL/Makefile index bc88e0ce0630..25a39efc8580 100644 --- a/graphics/p5-OpenGL/Makefile +++ b/graphics/p5-OpenGL/Makefile @@ -3,7 +3,7 @@ PORTNAME= OpenGL PORTVERSION= 0.66 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:CHM diff --git a/graphics/partio/Makefile b/graphics/partio/Makefile index ffdb93d0287c..aeecc92b494b 100644 --- a/graphics/partio/Makefile +++ b/graphics/partio/Makefile @@ -2,6 +2,7 @@ PORTNAME= partio PORTVERSION= 1.1.0.20140128 +PORTREVISION= 1 CATEGORIES= graphics math MAINTAINER= mva@FreeBSD.org diff --git a/graphics/pencil/Makefile b/graphics/pencil/Makefile index 9dc2d94584ae..5ba05e331c45 100644 --- a/graphics/pencil/Makefile +++ b/graphics/pencil/Makefile @@ -3,7 +3,7 @@ PORTNAME= pencil PORTVERSION= 0.4.4b -PORTREVISION= 9 +PORTREVISION= 10 CATEGORIES= graphics MASTER_SITES= SF/${PORTNAME}-planner/Pencil/${PORTVERSION}eta DISTNAME= ${PORTNAME}-${PORTVERSION}-src${EXTRACT_SUFFIX} diff --git a/graphics/pfstools/Makefile b/graphics/pfstools/Makefile index 3903cec72620..49cbc0c7ae8a 100644 --- a/graphics/pfstools/Makefile +++ b/graphics/pfstools/Makefile @@ -3,7 +3,7 @@ PORTNAME= pfstools PORTVERSION= 1.6.4 -PORTREVISION= 14 +PORTREVISION= 15 CATEGORIES= graphics MASTER_SITES= SF diff --git a/graphics/phplot/Makefile b/graphics/phplot/Makefile index 4071e63d07fa..492c585e28af 100644 --- a/graphics/phplot/Makefile +++ b/graphics/phplot/Makefile @@ -3,7 +3,7 @@ PORTNAME= phplot PORTVERSION= 6.1.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics www MASTER_SITES= SF:source1 \ SF/${PORTNAME}/Manual/20130511:source2 @@ -32,7 +32,7 @@ NO_STAGE= yes .include <bsd.port.options.mk> .if ${PORT_OPTIONS:MFONTS} -LIB_DEPENDS+= freetype:${PORTSDIR}/print/freetype2 +LIB_DEPENDS+= libfreetype.so:${PORTSDIR}/print/freetype2 .endif do-install: diff --git a/graphics/pngwriter/Makefile b/graphics/pngwriter/Makefile index 1195bfbc444d..e7577ce84fdf 100644 --- a/graphics/pngwriter/Makefile +++ b/graphics/pngwriter/Makefile @@ -3,7 +3,7 @@ PORTNAME= pngwriter PORTVERSION= 0.5.4 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= graphics devel MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} diff --git a/graphics/podofo/Makefile b/graphics/podofo/Makefile index 4b824d5e8c31..8c316e5e283b 100644 --- a/graphics/podofo/Makefile +++ b/graphics/podofo/Makefile @@ -3,7 +3,7 @@ PORTNAME= podofo PORTVERSION= 0.9.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics print MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTVERSION:R} diff --git a/graphics/poppler/Makefile b/graphics/poppler/Makefile index 9c0230592de0..08bda7bf7adf 100644 --- a/graphics/poppler/Makefile +++ b/graphics/poppler/Makefile @@ -4,7 +4,7 @@ PORTNAME= poppler PORTVERSION= 0.24.5 -PORTREVISION?= 1 +PORTREVISION?= 2 CATEGORIES= graphics print MASTER_SITES= http://poppler.freedesktop.org/ diff --git a/graphics/pure-gl/Makefile b/graphics/pure-gl/Makefile index ee67f73f6a55..9ab1f4547d26 100644 --- a/graphics/pure-gl/Makefile +++ b/graphics/pure-gl/Makefile @@ -3,7 +3,7 @@ PORTNAME= pure-gl PORTVERSION= 0.8 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= graphics MASTER_SITES https://cdn.bitbucket.org/purelang/pure-lang/downloads/ DIST_SUBDIR= pure diff --git a/graphics/py-imaging/Makefile b/graphics/py-imaging/Makefile index 72432b99a271..38919acadd62 100644 --- a/graphics/py-imaging/Makefile +++ b/graphics/py-imaging/Makefile @@ -3,7 +3,7 @@ PORTNAME= imaging PORTVERSION= 1.1.7 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= graphics python MASTER_SITES= http://effbot.org/media/downloads/ \ http://www.pythonware.net/storage/ diff --git a/graphics/py-opengl/Makefile b/graphics/py-opengl/Makefile index 622d43f58167..2bbdb7f2eb66 100644 --- a/graphics/py-opengl/Makefile +++ b/graphics/py-opengl/Makefile @@ -3,7 +3,7 @@ PORTNAME= opengl PORTVERSION= 3.0.1 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= graphics python MASTER_SITES= SF/py${PORTNAME}/PyOpenGL/${PORTVERSION} PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/graphics/py-pillow/Makefile b/graphics/py-pillow/Makefile index 8e0158b1a4fb..db1f3d97a075 100644 --- a/graphics/py-pillow/Makefile +++ b/graphics/py-pillow/Makefile @@ -3,6 +3,7 @@ PORTNAME= pillow PORTVERSION= 2.3.0 +PORTREVISION= 1 CATEGORIES= graphics python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} DISTNAME= ${PORTNAME:C/p/P/}-${PORTVERSION} diff --git a/graphics/py-pyglet/Makefile b/graphics/py-pyglet/Makefile index 7ccd7655613f..2b0b1df8c0d9 100644 --- a/graphics/py-pyglet/Makefile +++ b/graphics/py-pyglet/Makefile @@ -3,7 +3,7 @@ PORTNAME= pyglet PORTVERSION= 1.1.4 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= graphics multimedia x11-toolkits python MASTER_SITES= GOOGLE_CODE PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/graphics/py-soya3d/Makefile b/graphics/py-soya3d/Makefile index 3ca647f75a2c..247a28e502e1 100644 --- a/graphics/py-soya3d/Makefile +++ b/graphics/py-soya3d/Makefile @@ -3,7 +3,7 @@ PORTNAME= soya3d PORTVERSION= 0.14 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= graphics python MASTER_SITES= http://download.gna.org/soya/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -17,7 +17,7 @@ COMMENT= Very high level 3D engine for Python BUILD_DEPENDS= ${LOCALBASE}/lib/libode.a:${PORTSDIR}/devel/ode \ ${PYTHON_SITELIBDIR}/PIL.pth:${PORTSDIR}/graphics/py-imaging LIB_DEPENDS= cal3d.12:${PORTSDIR}/graphics/cal3d \ - freetype.9:${PORTSDIR}/print/freetype2 + libfreetype.so:${PORTSDIR}/print/freetype2 RUN_DEPENDS= ${PYTHON_SITELIBDIR}/editobj/editor.py:${PORTSDIR}/graphics/py-editobj \ ${PYTHON_SITELIBDIR}/tofu/client.py:${PORTSDIR}/net/py-tofu \ ${PYTHON_SITELIBDIR}/cerealizer/__init__.py:${PORTSDIR}/security/py-cerealizer diff --git a/graphics/pyro/Makefile b/graphics/pyro/Makefile index 64a7d45377e1..4dbf83d79383 100644 --- a/graphics/pyro/Makefile +++ b/graphics/pyro/Makefile @@ -3,7 +3,7 @@ PORTNAME= pyro PORTVERSION= 1.5 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= graphics MASTER_SITES= http://nostatic.org/pyro/ EXTRACT_SUFX= .tgz diff --git a/graphics/quat-gui/Makefile b/graphics/quat-gui/Makefile index 43b416373631..287b3da4ba0e 100644 --- a/graphics/quat-gui/Makefile +++ b/graphics/quat-gui/Makefile @@ -3,7 +3,7 @@ PORTNAME= quat PORTVERSION= 1.20 -PORTREVISION= 12 +PORTREVISION= 13 CATEGORIES= graphics #MASTER_SITES= http://www.physcip.uni-stuttgart.de/phy11733/download/ MASTER_SITES= http://www.sourcefiles.org/Graphics/Fractals/ diff --git a/graphics/quesa/Makefile b/graphics/quesa/Makefile index 279619d12ba2..9f7fac2a563f 100644 --- a/graphics/quesa/Makefile +++ b/graphics/quesa/Makefile @@ -3,7 +3,7 @@ PORTNAME= quesa PORTVERSION= 1.8 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= graphics MASTER_SITES= SF .ifdef (WITH_EXAMPLES) diff --git a/graphics/quesoglc/Makefile b/graphics/quesoglc/Makefile index f3aa98e873c4..e9fad646d192 100644 --- a/graphics/quesoglc/Makefile +++ b/graphics/quesoglc/Makefile @@ -3,7 +3,7 @@ PORTNAME= quesoglc PORTVERSION= 0.7.2 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= graphics MASTER_SITES= SF/${PORTNAME}/QuesoGLC/${PORTVERSION} diff --git a/graphics/qxv/Makefile b/graphics/qxv/Makefile index 0d3a46637cdf..dadb1ea17d9a 100644 --- a/graphics/qxv/Makefile +++ b/graphics/qxv/Makefile @@ -3,7 +3,7 @@ PORTNAME= qxv PORTVERSION= 0.2 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES+= graphics MASTER_SITES= http://labs.freehackers.org/attachments/download/422/ @@ -21,12 +21,11 @@ LIB_DEPENDS= libpng15.so:${PORTSDIR}/graphics/png \ libintl.so:${PORTSDIR}/devel/gettext \ libpcre.so:${PORTSDIR}/devel/pcre \ libpthread-stubs.so:${PORTSDIR}/devel/libpthread-stubs \ - libexpat.so:${PORTSDIR}/textproc/expat2 \ - libxcb.so:${PORTSDIR}/x11/xcb + libexpat.so:${PORTSDIR}/textproc/expat2 USES= iconv qmake USE_BZIP2= yes -USE_XORG= sm xrender xext x11 xau xdmcp ice +USE_XORG= sm xrender xext x11 xau xdmcp ice xcb USE_QT4= corelib gui moc_build uic_build rcc_build MAKE_JOBS_UNSAFE= yes diff --git a/graphics/rawstudio/Makefile b/graphics/rawstudio/Makefile index f03e6d4d20fb..327790352e3a 100644 --- a/graphics/rawstudio/Makefile +++ b/graphics/rawstudio/Makefile @@ -3,7 +3,7 @@ PORTNAME= rawstudio PORTVERSION= 2.0 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= graphics MASTER_SITES= http://rawstudio.org/files/release/ diff --git a/graphics/reallyslick/Makefile b/graphics/reallyslick/Makefile index dfbea49067c6..371104524f03 100644 --- a/graphics/reallyslick/Makefile +++ b/graphics/reallyslick/Makefile @@ -3,7 +3,7 @@ PORTNAME= reallyslick PORTVERSION= 0.9.1 -PORTREVISION= 9 +PORTREVISION= 10 CATEGORIES= graphics MASTER_SITES= SF/rss-glx/rss-glx/${PORTVERSION} DISTNAME= rss-glx_${PORTVERSION} diff --git a/graphics/ruby-gd/Makefile b/graphics/ruby-gd/Makefile index de1c49a33c91..33c341767c64 100644 --- a/graphics/ruby-gd/Makefile +++ b/graphics/ruby-gd/Makefile @@ -3,7 +3,7 @@ PORTNAME= gd PORTVERSION= 0.8.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= graphics ruby MASTER_SITES= http://www.daifukuya.com/archive/kagemai/lib/ PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX} diff --git a/graphics/rubygem-opengl/Makefile b/graphics/rubygem-opengl/Makefile index 30534e664ba5..d188e1c451af 100644 --- a/graphics/rubygem-opengl/Makefile +++ b/graphics/rubygem-opengl/Makefile @@ -3,6 +3,7 @@ PORTNAME= opengl PORTVERSION= 0.8.0 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= graphics ruby MASTER_SITES= RG diff --git a/graphics/sdl2_ttf/Makefile b/graphics/sdl2_ttf/Makefile index 34e227508db6..e0f24d12e05f 100644 --- a/graphics/sdl2_ttf/Makefile +++ b/graphics/sdl2_ttf/Makefile @@ -2,7 +2,7 @@ PORTNAME= sdl2_ttf PORTVERSION= 2.0.12 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= graphics MASTER_SITES= http://www.libsdl.org/projects/SDL_ttf/release/ DISTNAME= SDL2_ttf-${PORTVERSION} diff --git a/graphics/sdl_ttf/Makefile b/graphics/sdl_ttf/Makefile index a0d30313626e..c2c54e68c720 100644 --- a/graphics/sdl_ttf/Makefile +++ b/graphics/sdl_ttf/Makefile @@ -3,7 +3,7 @@ PORTNAME= sdl_ttf PORTVERSION= 2.0.11 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics MASTER_SITES= http://www.libsdl.org/projects/SDL_ttf/release/ DISTNAME= SDL_ttf-${PORTVERSION} diff --git a/graphics/silgraphite/Makefile b/graphics/silgraphite/Makefile index 75316fa76f82..7dd74f66bc92 100644 --- a/graphics/silgraphite/Makefile +++ b/graphics/silgraphite/Makefile @@ -3,6 +3,7 @@ PORTNAME= silgraphite PORTVERSION= 2.3.1 +PORTREVISION= 1 CATEGORIES= graphics devel MASTER_SITES= SF @@ -20,7 +21,7 @@ CONFIGURE_ARGS= --without-xft --without-pangographite .include <bsd.port.options.mk> .if ${PORT_OPTIONS:MFREETYPE} -LIB_DEPENDS+= freetype.9:${PORTSDIR}/print/freetype2 +LIB_DEPENDS+= libfreetype.so:${PORTSDIR}/print/freetype2 USES+= iconv CONFIGURE_ARGS+= --with-freetype PLIST_SUB+= WITH_FREETYPE="" diff --git a/graphics/simpleviewer/Makefile b/graphics/simpleviewer/Makefile index 16ae546ac6ce..1479670fa67b 100644 --- a/graphics/simpleviewer/Makefile +++ b/graphics/simpleviewer/Makefile @@ -3,7 +3,7 @@ PORTNAME= simpleviewer PORTVERSION= 1.7.1553.8560 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= graphics MASTER_SITES= SF/${PORTNAME}/OpenGL%20edition DISTNAME= sviewgl-src-${PORTVERSION} diff --git a/graphics/sk1libs/Makefile b/graphics/sk1libs/Makefile index 415589a10622..b46d6a2a7819 100644 --- a/graphics/sk1libs/Makefile +++ b/graphics/sk1libs/Makefile @@ -3,6 +3,7 @@ PORTNAME= sk1libs PORTVERSION= 0.9.1 +PORTREVISION= 1 CATEGORIES= graphics python MASTER_SITES= GOOGLE_CODE \ http://mirror.amdmi3.ru/distfiles/ diff --git a/graphics/sswf/Makefile b/graphics/sswf/Makefile index 0dec0bf858f4..b3f61035c919 100644 --- a/graphics/sswf/Makefile +++ b/graphics/sswf/Makefile @@ -3,7 +3,7 @@ PORTNAME= sswf PORTVERSION= 1.8.4 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= graphics MASTER_SITES= SF DISTNAME= ${PORTNAME}-${PORTVERSION}-src diff --git a/graphics/swfmill/Makefile b/graphics/swfmill/Makefile index 7ef5103dc64f..2fe6a6537cef 100644 --- a/graphics/swfmill/Makefile +++ b/graphics/swfmill/Makefile @@ -3,6 +3,7 @@ PORTNAME= swfmill PORTVERSION= 0.3.3 +PORTREVISION= 1 CATEGORIES= graphics MASTER_SITES= http://swfmill.org/releases/ diff --git a/graphics/swftools/Makefile b/graphics/swftools/Makefile index daa32d375c99..b96dc18c74fd 100644 --- a/graphics/swftools/Makefile +++ b/graphics/swftools/Makefile @@ -3,7 +3,7 @@ PORTNAME= swftools PORTVERSION= 0.9.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics MASTER_SITES= http://www.swftools.org/ \ http://www.c-s.li/ports/ diff --git a/graphics/tiff/Makefile b/graphics/tiff/Makefile index 5c8f73047a8e..56a46e552963 100644 --- a/graphics/tiff/Makefile +++ b/graphics/tiff/Makefile @@ -3,6 +3,7 @@ PORTNAME= tiff PORTVERSION= 4.0.3 +PORTREVISION= 1 CATEGORIES= graphics MASTER_SITES= ftp://ftp.remotesensing.org/pub/libtiff/ \ http://download.osgeo.org/libtiff/ diff --git a/graphics/tinyows/Makefile b/graphics/tinyows/Makefile index 8cfc81cc5fd7..f043030fd47f 100644 --- a/graphics/tinyows/Makefile +++ b/graphics/tinyows/Makefile @@ -3,6 +3,7 @@ PORTNAME= tinyows PORTVERSION= 1.1.0 +PORTREVISION= 1 CATEGORIES= graphics www geography MASTER_SITES= http://download.osgeo.org/mapserver/ diff --git a/graphics/tulip/Makefile b/graphics/tulip/Makefile index 082f44933cd8..68907dc0437b 100644 --- a/graphics/tulip/Makefile +++ b/graphics/tulip/Makefile @@ -3,7 +3,7 @@ PORTNAME= tulip PORTVERSION= 3.8.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= graphics MASTER_SITES= SF/auber/${PORTNAME}/${PORTNAME}-${PORTVERSION} DISTFILES= ${DISTNAME}-src${EXTRACT_SUFX} @@ -11,7 +11,7 @@ DISTFILES= ${DISTNAME}-src${EXTRACT_SUFX} MAINTAINER= gahr@FreeBSD.org COMMENT= A system dedicated to the visualization of huge graphs -LIB_DEPENDS= freetype.9:${PORTSDIR}/print/freetype2 \ +LIB_DEPENDS= libfreetype.so:${PORTSDIR}/print/freetype2 \ gzstream.0:${PORTSDIR}/devel/gzstream \ ftgl.2:${PORTSDIR}/graphics/ftgl \ qscintilla2:${PORTSDIR}/devel/qscintilla2 \ diff --git a/graphics/vips/Makefile b/graphics/vips/Makefile index ddbc676a4ef4..ec3bef1acd5c 100644 --- a/graphics/vips/Makefile +++ b/graphics/vips/Makefile @@ -3,7 +3,7 @@ PORTNAME= vips PORTVERSION= 7.26.3 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= graphics MASTER_SITES= http://www.vips.ecs.soton.ac.uk/supported/${PORTVERSION:R}/ diff --git a/graphics/webp/Makefile b/graphics/webp/Makefile index d39640300f6a..714ecca49472 100644 --- a/graphics/webp/Makefile +++ b/graphics/webp/Makefile @@ -3,7 +3,7 @@ PORTNAME= webp PORTVERSION= 0.3.1 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= graphics MASTER_SITES= GOOGLE_CODE DISTNAME= lib${PORTNAME}-${PORTVERSION} diff --git a/graphics/white_dune/Makefile b/graphics/white_dune/Makefile index fbb329547069..504655110e2b 100644 --- a/graphics/white_dune/Makefile +++ b/graphics/white_dune/Makefile @@ -4,7 +4,7 @@ PORTNAME= white_dune PORTVERSION= ${DISTVERSION:S/pl/./} DISTVERSION= 0.30pl5 -PORTREVISION= 4 +PORTREVISION= 5 PORTEPOCH= 1 CATEGORIES= graphics MASTER_SITES= http://vrml.cip.ica.uni-stuttgart.de/dune/ diff --git a/graphics/xpaint/Makefile b/graphics/xpaint/Makefile index 565cfd6877d4..d5e0db43c102 100644 --- a/graphics/xpaint/Makefile +++ b/graphics/xpaint/Makefile @@ -3,6 +3,7 @@ PORTNAME= xpaint PORTVERSION= 2.9.10 +PORTREVISION= 1 CATEGORIES= graphics MASTER_SITES= SF/sf-${PORTNAME}/sf-${PORTNAME}/${PORTNAME}-${PORTVERSION} diff --git a/graphics/xpdf/Makefile b/graphics/xpdf/Makefile index 4b78c0c2b56e..f2a02d01d124 100644 --- a/graphics/xpdf/Makefile +++ b/graphics/xpdf/Makefile @@ -2,7 +2,7 @@ PORTNAME= xpdf PORTVERSION= 3.03 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= graphics print MASTER_SITES= ftp://ftp.foolabs.com/pub/xpdf/ \ ${MASTER_SITE_TEX_CTAN} diff --git a/graphics/xsane/Makefile b/graphics/xsane/Makefile index ea97cddadadb..4a9441138265 100644 --- a/graphics/xsane/Makefile +++ b/graphics/xsane/Makefile @@ -3,6 +3,7 @@ PORTNAME= xsane PORTVERSION= 0.999 +PORTREVISION= 1 CATEGORIES= graphics MASTER_SITES= http://www.xsane.org/download/ diff --git a/graphics/zbar/Makefile b/graphics/zbar/Makefile index 6d0f21b6456f..aca20cbe7b18 100644 --- a/graphics/zbar/Makefile +++ b/graphics/zbar/Makefile @@ -3,7 +3,7 @@ PORTNAME= zbar PORTVERSION= 0.10 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= graphics MASTER_SITES= SF diff --git a/irc/hexchat/Makefile b/irc/hexchat/Makefile index 86b49e92ba5f..c1f4347b0f51 100644 --- a/irc/hexchat/Makefile +++ b/irc/hexchat/Makefile @@ -3,7 +3,7 @@ PORTNAME= hexchat PORTVERSION= 2.9.6.1 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= irc gnome ipv6 MASTER_SITES= http://dl.hexchat.org/${PORTNAME}/ diff --git a/irc/minbif/Makefile b/irc/minbif/Makefile index 23523fea1475..7fb770e9c2d8 100644 --- a/irc/minbif/Makefile +++ b/irc/minbif/Makefile @@ -3,7 +3,7 @@ PORTNAME= minbif PORTVERSION= 1.0.5 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= irc net-im MASTER_SITES= https://symlink.me/attachments/download/148/ diff --git a/japanese/mozc-server/Makefile b/japanese/mozc-server/Makefile index 57d787bef258..028d6a983ce0 100644 --- a/japanese/mozc-server/Makefile +++ b/japanese/mozc-server/Makefile @@ -3,6 +3,7 @@ PORTNAME= mozc PORTVERSION= 1.11.1502.102 +PORTREVISION= 1 CATEGORIES= japanese MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} DISTFILES= ${DISTNAME}${EXTRACT_SUFX} diff --git a/japanese/ochusha/Makefile b/japanese/ochusha/Makefile index 11af67813f29..627cc1c741b4 100644 --- a/japanese/ochusha/Makefile +++ b/japanese/ochusha/Makefile @@ -3,7 +3,7 @@ PORTNAME= ochusha PORTVERSION= 0.5.8.2 -PORTREVISION= 11 +PORTREVISION= 12 CATEGORIES= japanese MASTER_SITES= ${MASTER_SITE_SOURCEFORGE_JP} MASTER_SITE_SUBDIR= ochusha/16560 diff --git a/japanese/xdtp/Makefile b/japanese/xdtp/Makefile index 210154d228e8..f05e9187d4ff 100644 --- a/japanese/xdtp/Makefile +++ b/japanese/xdtp/Makefile @@ -3,7 +3,7 @@ PORTNAME= xdtp PORTVERSION= 1.5.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= japanese MASTER_SITES= http://www.ongs.co.jp/software/xdtp/ EXTRACT_SUFX= .tgz diff --git a/japanese/xdvik/Makefile b/japanese/xdvik/Makefile index e92619befa6a..40327193bb68 100644 --- a/japanese/xdvik/Makefile +++ b/japanese/xdvik/Makefile @@ -3,7 +3,7 @@ PORTNAME= xdvik PORTVERSION= ${VERSION_XDVIK}.${VERSION_JPATCH} -PORTREVISION= 15 +PORTREVISION= 16 CATEGORIES= japanese print MASTER_SITES= SF/xdvi/OldFiles PKGNAMESUFFIX= -tetex @@ -19,7 +19,7 @@ COMMENT= DVI Previewer(kpathsearch) for X. + freetype support RUN_DEPENDS= ${LOCALBASE}/${TEXMFDIR}/fonts/tfm/ptex/min10.tfm:${PORTSDIR}/japanese/ptex \ ${LOCALBASE}/${MINCHO}:${PORTSDIR}/japanese/font-std \ ${LOCALBASE}/${GOTHIC}:${PORTSDIR}/japanese/font-std -LIB_DEPENDS= freetype.9:${PORTSDIR}/print/freetype2 \ +LIB_DEPENDS= libfreetype.so:${PORTSDIR}/print/freetype2 \ wwwcore.1:${PORTSDIR}/www/libwww \ t1.5:${PORTSDIR}/devel/t1lib diff --git a/java/openjdk6/Makefile b/java/openjdk6/Makefile index 76f3b3e099c0..dc690fa4233c 100644 --- a/java/openjdk6/Makefile +++ b/java/openjdk6/Makefile @@ -3,7 +3,7 @@ PORTNAME= openjdk6 PORTVERSION= b31 -PORTREVISION?= 0 +PORTREVISION?= 1 PORTEPOCH= 1 CATEGORIES= java devel MASTER_SITES= ${MASTER_SITE_APACHE:S,%SUBDIR%/,ant/binaries/:ant,} \ diff --git a/java/openjdk7/Makefile b/java/openjdk7/Makefile index 721d7f516a80..b163d268d05d 100644 --- a/java/openjdk7/Makefile +++ b/java/openjdk7/Makefile @@ -3,7 +3,7 @@ PORTNAME= openjdk PORTVERSION= ${JDK_MAJOR_VERSION}.${PORT_MINOR_VERSION}.${PORT_BUILD_NUMBER} -PORTREVISION= 2 +PORTREVISION= 3 PORTEPOCH= 1 CATEGORIES= java devel MASTER_SITES= http://download.java.net/openjdk/jdk${JDK_MAJOR_VERSION}u${JDK_MINOR_VERSION}/promoted/b${JDK_BUILD_NUMBER}/ \ diff --git a/java/openjdk8/Makefile b/java/openjdk8/Makefile index 932f8cb9c41c..6892d10d1d21 100644 --- a/java/openjdk8/Makefile +++ b/java/openjdk8/Makefile @@ -2,6 +2,7 @@ PORTNAME= openjdk PORTVERSION= ${JDK_MAJOR_VERSION}.${PORT_MINOR_VERSION}.${PORT_BUILD_NUMBER:S/^0//} +PORTREVISION= 1 CATEGORIES= java devel MASTER_SITES= http://download.java.net/openjdk/jdk${JDK_MAJOR_VERSION}/promoted/b${JDK_BUILD_NUMBER}/:jdk \ https://adopt-openjdk.ci.cloudbees.com/job/jtreg/${JTREG_JENKINS_BUILD}/artifact/:jtreg \ diff --git a/lang/ferite/Makefile b/lang/ferite/Makefile index 296102f1a577..670f8bac7407 100644 --- a/lang/ferite/Makefile +++ b/lang/ferite/Makefile @@ -3,7 +3,7 @@ PORTNAME= ferite PORTVERSION= 1.0.2 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= lang MASTER_SITES= SF @@ -11,7 +11,7 @@ MAINTAINER= ports@FreeBSD.org COMMENT= An embeddable scripting language LIB_DEPENDS= pcre.3:${PORTSDIR}/devel/pcre \ - xml2.5:${PORTSDIR}/textproc/libxml2 + libxml2.so:${PORTSDIR}/textproc/libxml2 USE_AUTOTOOLS= libtool USE_GMAKE= yes diff --git a/lang/fpc-units/Makefile b/lang/fpc-units/Makefile index 6928a58790ff..5e92f64ae0be 100644 --- a/lang/fpc-units/Makefile +++ b/lang/fpc-units/Makefile @@ -3,7 +3,7 @@ PORTNAME= units PORTVERSION= 2.6.4 -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= lang MASTER_SITES= # none PKGNAMEPREFIX= fpc- diff --git a/lang/gnustep-base/Makefile b/lang/gnustep-base/Makefile index 7d32eea721e1..6a1751c48b14 100644 --- a/lang/gnustep-base/Makefile +++ b/lang/gnustep-base/Makefile @@ -3,7 +3,7 @@ PORTNAME= gnustep-base PORTVERSION= 1.24.6 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= lang devel gnustep MASTER_SITES= ${MASTER_SITE_GNUSTEP} MASTER_SITE_SUBDIR= core diff --git a/lang/hiphop-php/Makefile b/lang/hiphop-php/Makefile index c2c23ef74753..ea51dcc988bc 100644 --- a/lang/hiphop-php/Makefile +++ b/lang/hiphop-php/Makefile @@ -3,7 +3,7 @@ PORTNAME= hiphop-php PORTVERSION= 2.1 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= lang devel www MASTER_SITES= https://github.com/facebook/hiphop-php/archive/:main \ http://unicode.org/Public/UNIDATA/:unidata \ diff --git a/lang/hugs/Makefile b/lang/hugs/Makefile index 9bdabe52c76d..cb1c457d23ae 100644 --- a/lang/hugs/Makefile +++ b/lang/hugs/Makefile @@ -3,7 +3,7 @@ PORTNAME= hugs98 PORTVERSION= 200609 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= lang haskell MASTER_SITES= http://cvs.haskell.org/Hugs/downloads/2006-09/ DISTNAME= ${PORTNAME}-plus-${HUGS_DATE} diff --git a/lang/ofc/Makefile b/lang/ofc/Makefile index 895f7330ecf4..07285a048075 100644 --- a/lang/ofc/Makefile +++ b/lang/ofc/Makefile @@ -3,7 +3,7 @@ PORTNAME= ofc PORTVERSION= 0.8.1 -PORTREVISION= 9 +PORTREVISION= 10 CATEGORIES= lang MASTER_SITES= GOOGLE_CODE diff --git a/lang/phantomjs/Makefile b/lang/phantomjs/Makefile index 763ad8e783d1..7135ff6372d0 100644 --- a/lang/phantomjs/Makefile +++ b/lang/phantomjs/Makefile @@ -2,7 +2,7 @@ PORTNAME= phantomjs PORTVERSION= 1.9.2 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= lang MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} DISTNAME= ${PORTNAME}-${PORTVERSION}-source diff --git a/lang/php5/Makefile b/lang/php5/Makefile index c1e7d63724c2..b439544fba83 100644 --- a/lang/php5/Makefile +++ b/lang/php5/Makefile @@ -3,7 +3,7 @@ PORTNAME= php5 PORTVERSION= 5.4.27 -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES?= lang devel www MASTER_SITES= ${MASTER_SITE_PHP} MASTER_SITE_SUBDIR= distributions diff --git a/lang/php53/Makefile b/lang/php53/Makefile index 71223cf63818..4d67c04addef 100644 --- a/lang/php53/Makefile +++ b/lang/php53/Makefile @@ -3,7 +3,7 @@ PORTNAME= php53 PORTVERSION= 5.3.28 -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES?= lang devel www MASTER_SITES= ${MASTER_SITE_PHP} MASTER_SITE_SUBDIR= distributions diff --git a/lang/php55/Makefile b/lang/php55/Makefile index f909d9fac400..c57c3993ce40 100644 --- a/lang/php55/Makefile +++ b/lang/php55/Makefile @@ -3,7 +3,7 @@ PORTNAME= php55 PORTVERSION= 5.5.11 -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES?= lang devel www MASTER_SITES= ${MASTER_SITE_PHP} MASTER_SITE_SUBDIR= distributions diff --git a/lang/pike76/Makefile b/lang/pike76/Makefile index a30a4f9ef34c..7deb2ae9e777 100644 --- a/lang/pike76/Makefile +++ b/lang/pike76/Makefile @@ -3,6 +3,7 @@ PORTNAME= pike76 PORTVERSION= 7.6.132 +PORTREVISION= 1 CATEGORIES= lang MASTER_SITES= ftp://pike.ida.liu.se/pub/pike/beta/${PORTVERSION}/ \ http://pike.ida.liu.se/pub/pike/beta/${PORTVERSION}/ \ diff --git a/lang/pike78/Makefile b/lang/pike78/Makefile index e7156b04b2dd..bad17abd5654 100644 --- a/lang/pike78/Makefile +++ b/lang/pike78/Makefile @@ -2,7 +2,7 @@ PORTNAME= pike78 PORTVERSION= 7.8.700 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= lang MASTER_SITES= http://pike.ida.liu.se/pub/pike/all/${PORTVERSION}/ \ ftp://pike.ida.liu.se/pub/pike/beta/${PORTVERSION}/ \ diff --git a/lang/smalltalk/Makefile b/lang/smalltalk/Makefile index b798d83ccba2..6425d5ea159a 100644 --- a/lang/smalltalk/Makefile +++ b/lang/smalltalk/Makefile @@ -3,7 +3,7 @@ PORTNAME= smalltalk PORTVERSION= 3.2.5 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= lang MASTER_SITES= GNU diff --git a/mail/cone/Makefile b/mail/cone/Makefile index ae64aae5d4ca..6a67868baf52 100644 --- a/mail/cone/Makefile +++ b/mail/cone/Makefile @@ -3,7 +3,7 @@ PORTNAME= cone PORTVERSION= 0.90 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= mail NO_STAGE= yes # This is for beta versions, leave it in please: diff --git a/mail/gnome-gmail-notifier/Makefile b/mail/gnome-gmail-notifier/Makefile index 5e651f8f217a..cf824badb573 100644 --- a/mail/gnome-gmail-notifier/Makefile +++ b/mail/gnome-gmail-notifier/Makefile @@ -2,7 +2,7 @@ PORTNAME= gnome-gmail-notifier PORTVERSION= 0.10.1 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= mail deskutils MASTER_SITES= GOOGLE_CODE diff --git a/mail/hotwayd/Makefile b/mail/hotwayd/Makefile index 4e3170c20176..40c5967cfe5d 100644 --- a/mail/hotwayd/Makefile +++ b/mail/hotwayd/Makefile @@ -3,7 +3,7 @@ PORTNAME= hotwayd PORTVERSION= 0.8.4 -PORTREVISION= 1 +PORTREVISION= 2 PORTEPOCH= 1 CATEGORIES= mail MASTER_SITES= SF @@ -11,13 +11,12 @@ MASTER_SITES= SF MAINTAINER= john@jnielsen.net COMMENT= A Hotmail -> POP3 gateway -LIB_DEPENDS= xml2.5:${PORTSDIR}/textproc/libxml2 \ - sasl2:${PORTSDIR}/security/cyrus-sasl2 +LIB_DEPENDS= sasl2:${PORTSDIR}/security/cyrus-sasl2 USE_BZIP2= yes GNU_CONFIGURE= yes -USE_GMAKE= yes -USES= iconv +USES= iconv gmake +USE_GNOME= libxml2 MAN1= hotwayd.1 \ hotsmtpd.1 diff --git a/mail/mail-notification/Makefile b/mail/mail-notification/Makefile index 76e22ad09fcd..2721945aabcc 100644 --- a/mail/mail-notification/Makefile +++ b/mail/mail-notification/Makefile @@ -3,7 +3,7 @@ PORTNAME= mail-notification DISTVERSION= 5.4 -PORTREVISION= 11 +PORTREVISION= 12 CATEGORIES= mail ipv6 MASTER_SITES= ${MASTER_SITE_SAVANNAH} MASTER_SITE_SUBDIR= mailnotify diff --git a/mail/synonym/Makefile b/mail/synonym/Makefile index 15d515e3e5db..820787897158 100644 --- a/mail/synonym/Makefile +++ b/mail/synonym/Makefile @@ -3,6 +3,7 @@ PORTNAME= synonym PORTVERSION= 0.4.3 +PORTREVISION= 1 CATEGORIES= mail security MASTER_SITES= http://www.dv8.ro/Synonym/Synonym/source/ DISTNAME= ${PORTNAME}-0.4-3 diff --git a/math/abs/Makefile b/math/abs/Makefile index 50f2406f736f..01a72290dc82 100644 --- a/math/abs/Makefile +++ b/math/abs/Makefile @@ -3,7 +3,7 @@ PORTNAME= abs PORTVERSION= 0908 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= math MASTER_SITES= http://utenti.gufi.org/~gmarco/files/distfiles/ \ http://fresh.t-systems-sfr.com/unix/src/privat2/ diff --git a/math/asir2000/Makefile b/math/asir2000/Makefile index 3347fd7b5cbb..d7273e71f730 100644 --- a/math/asir2000/Makefile +++ b/math/asir2000/Makefile @@ -3,6 +3,7 @@ PORTNAME= asir PORTVERSION= 20110810 +PORTREVISION= 1 CATEGORIES= math MASTER_SITES= ftp://ftp.jssac.org/pub/distfiles/asir/ \ ftp://ftp.asir.org/pub/asir/src/ \ diff --git a/math/asymptote/Makefile b/math/asymptote/Makefile index fe634337ece6..efc505480696 100644 --- a/math/asymptote/Makefile +++ b/math/asymptote/Makefile @@ -3,7 +3,7 @@ PORTNAME= asymptote PORTVERSION= 2.16 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= math MASTER_SITES= SF MASTER_SITE_SUBDIR= ${PORTNAME}/${PORTVERSION} diff --git a/math/carve/Makefile b/math/carve/Makefile index adf0e29f797d..fd315ef69d5c 100644 --- a/math/carve/Makefile +++ b/math/carve/Makefile @@ -3,7 +3,7 @@ PORTNAME= carve PORTVERSION= 1.4.0 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= math MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} EXTRACT_SUFX= .tgz diff --git a/math/ggobi/Makefile b/math/ggobi/Makefile index 63a87d150943..3e7cd9fdbe00 100644 --- a/math/ggobi/Makefile +++ b/math/ggobi/Makefile @@ -3,7 +3,7 @@ PORTNAME= ggobi PORTVERSION= 2.1.9 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= math graphics MASTER_SITES= http://www.ggobi.org/downloads/ diff --git a/math/gkmap/Makefile b/math/gkmap/Makefile index ca5aa4fe9697..2e1d60384605 100644 --- a/math/gkmap/Makefile +++ b/math/gkmap/Makefile @@ -3,6 +3,7 @@ PORTNAME= gkmap PORTVERSION= 0.2 +PORTREVISION= 1 CATEGORIES= math MASTER_SITES= SF/gkmap/gkmap/gkmap-${PORTVERSION}/ diff --git a/math/gnuplot/Makefile b/math/gnuplot/Makefile index 7127fddcbd6a..36d80b226eb3 100644 --- a/math/gnuplot/Makefile +++ b/math/gnuplot/Makefile @@ -2,6 +2,7 @@ PORTNAME= gnuplot PORTVERSION= 4.6.5 +PORTREVISION= 1 CATEGORIES= math graphics MASTER_SITES= SF diff --git a/math/gretl/Makefile b/math/gretl/Makefile index 9e95383fe21b..3b11956cee28 100644 --- a/math/gretl/Makefile +++ b/math/gretl/Makefile @@ -3,7 +3,7 @@ PORTNAME= gretl PORTVERSION= 1.9.13 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= math finance MASTER_SITES= SF diff --git a/math/hexcalc/Makefile b/math/hexcalc/Makefile index bd5c3e79a2b0..bfecdf75abee 100644 --- a/math/hexcalc/Makefile +++ b/math/hexcalc/Makefile @@ -3,7 +3,7 @@ PORTNAME= hexcalc PORTVERSION= 1.11 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= math MASTER_SITES= http://www.berklix.com/~jhs/ftp/FreeBSD/ports/distfiles/ DISTNAME= ${PORTNAME} diff --git a/math/igraph/Makefile b/math/igraph/Makefile index c9775423da31..603e84395a15 100644 --- a/math/igraph/Makefile +++ b/math/igraph/Makefile @@ -3,18 +3,19 @@ PORTNAME= igraph PORTVERSION= 0.5.4 +PORTREVISION= 1 CATEGORIES= math MASTER_SITES= SF/${PORTNAME}/C%20library/${PORTVERSION} MAINTAINER= wen@FreeBSD.org COMMENT= Package For Manipulating Undirected And Directed Graphs -LIB_DEPENDS= gmp.10:${PORTSDIR}/math/gmp \ - xml2.5:${PORTSDIR}/textproc/libxml2 +LIB_DEPENDS= gmp.10:${PORTSDIR}/math/gmp GNU_CONFIGURE= yes USE_GCC= any USES= gmake +USE_GNOME= libxml2 CONFIGURE_ARGS+= --enable-gmp CFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib diff --git a/math/libqalculate/Makefile b/math/libqalculate/Makefile index 79682108ec76..c8cb311c24bb 100644 --- a/math/libqalculate/Makefile +++ b/math/libqalculate/Makefile @@ -3,7 +3,7 @@ PORTNAME= libqalculate PORTVERSION= 0.9.7 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= math MASTER_SITES= SF/qalculate/${PORTNAME}/${PORTNAME}-${PORTVERSION} diff --git a/math/mate-calc/Makefile b/math/mate-calc/Makefile index 7eaa94ca95c1..fa923b4cb9d9 100644 --- a/math/mate-calc/Makefile +++ b/math/mate-calc/Makefile @@ -3,6 +3,7 @@ PORTNAME= mate-calc PORTVERSION= 1.6.0 +PORTREVISION= 1 CATEGORIES= math mate MASTER_SITES= MATE DIST_SUBDIR= mate diff --git a/math/ploticus/Makefile b/math/ploticus/Makefile index 9ca7e22e3886..495d28813046 100644 --- a/math/ploticus/Makefile +++ b/math/ploticus/Makefile @@ -3,7 +3,7 @@ PORTNAME= ploticus PORTVERSION= 2.40 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= math MASTER_SITES= SF DISTNAME= pl${PORTVERSION:S/.//}src @@ -15,7 +15,7 @@ LIB_DEPENDS= gd:${PORTSDIR}/graphics/gd \ jpeg:${PORTSDIR}/graphics/jpeg \ ming:${PORTSDIR}/graphics/ming \ png15:${PORTSDIR}/graphics/png \ - freetype:${PORTSDIR}/print/freetype2 + libfreetype.so:${PORTSDIR}/print/freetype2 BUILD_WRKSRC= ${WRKSRC}/src diff --git a/math/plplot/Makefile b/math/plplot/Makefile index 8c029e70beef..d9e09990804e 100644 --- a/math/plplot/Makefile +++ b/math/plplot/Makefile @@ -3,7 +3,7 @@ PORTNAME= plplot PORTVERSION= 5.10.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= math science MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTVERSION}%20Source diff --git a/math/pspp/Makefile b/math/pspp/Makefile index 7a71e8957ad0..ddcf60dfb893 100644 --- a/math/pspp/Makefile +++ b/math/pspp/Makefile @@ -3,7 +3,7 @@ PORTNAME= pspp PORTVERSION= 0.6.2 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= math MASTER_SITES= GNU diff --git a/math/py-igraph/Makefile b/math/py-igraph/Makefile index 787071778bad..e53884601a1f 100644 --- a/math/py-igraph/Makefile +++ b/math/py-igraph/Makefile @@ -3,7 +3,7 @@ PORTNAME= igraph PORTVERSION= 0.5.4 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= math python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -13,10 +13,10 @@ MAINTAINER= lwhsu@FreeBSD.org COMMENT= High performance graph data structures and algorithms BUILD_DEPENDS= ${LOCALBASE}/lib/libigraph.so:${PORTSDIR}/math/igraph -LIB_DEPENDS= xml2.5:${PORTSDIR}/textproc/libxml2 USE_PYTHON= yes USE_PYDISTUTILS= yes PYDISTUTILS_AUTOPLIST= yes +USE_GNOME= libxml2 .include <bsd.port.mk> diff --git a/math/py-matplotlib/Makefile b/math/py-matplotlib/Makefile index 60dd31c6ea4b..b8ca478e637f 100644 --- a/math/py-matplotlib/Makefile +++ b/math/py-matplotlib/Makefile @@ -3,7 +3,7 @@ PORTNAME= matplotlib PORTVERSION= 1.2.0 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= math python MASTER_SITES= http://cloud.github.com/downloads/matplotlib/matplotlib/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/math/scilab/Makefile b/math/scilab/Makefile index eac6d16bb48e..73209318bf10 100644 --- a/math/scilab/Makefile +++ b/math/scilab/Makefile @@ -3,7 +3,7 @@ PORTNAME= scilab PORTVERSION= 5.3.3 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= math cad parallel java MASTER_SITES= http://www.scilab.org/download/${PORTVERSION}/:scilab \ http://www.predatorlabs.net/dl/:jgraphx \ diff --git a/math/tablix/Makefile b/math/tablix/Makefile index 9db203be951e..8b79df33b253 100644 --- a/math/tablix/Makefile +++ b/math/tablix/Makefile @@ -3,7 +3,7 @@ PORTNAME= tablix2 PORTVERSION= 0.3.5 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= math www MASTER_SITES= http://www.tablix.org/releases/stable/ \ http://my.samba.org/ diff --git a/math/timbl/Makefile b/math/timbl/Makefile index a89b675cf810..5e3fc18f40eb 100644 --- a/math/timbl/Makefile +++ b/math/timbl/Makefile @@ -3,6 +3,7 @@ PORTNAME= timbl PORTVERSION= 6.4.2 +PORTREVISION= 1 CATEGORIES= math MASTER_SITES= http://ilk.uvt.nl/downloads/pub/software/ diff --git a/math/wxMaxima/Makefile b/math/wxMaxima/Makefile index f68caa595536..416db26872db 100644 --- a/math/wxMaxima/Makefile +++ b/math/wxMaxima/Makefile @@ -3,7 +3,7 @@ PORTNAME= wxMaxima PORTVERSION= 13.04.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= math MASTER_SITES= SF MASTER_SITE_SUBDIR= ${PORTNAME:L}/${PORTNAME}/${PORTVERSION} diff --git a/math/xgobi/Makefile b/math/xgobi/Makefile index c1b0f23fb96f..31e970049270 100644 --- a/math/xgobi/Makefile +++ b/math/xgobi/Makefile @@ -3,7 +3,7 @@ PORTNAME= xgobi PORTVERSION= 2002.06.20 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= math graphics MASTER_SITES= http://public.research.att.com/~stat/xgobi/ DISTNAME= xgobi diff --git a/math/xspread/Makefile b/math/xspread/Makefile index 1495dc0abe7a..6ee80103ef2e 100644 --- a/math/xspread/Makefile +++ b/math/xspread/Makefile @@ -3,7 +3,7 @@ PORTNAME= xspread PORTVERSION= 3.1.1c -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= math MASTER_SITES= http://archive.debian.org/%SUBDIR%/ \ http://mirror.safehostnet.com/debian-archive/%SUBDIR%/ \ diff --git a/misc/gimp-help-en/Makefile b/misc/gimp-help-en/Makefile index ed2d5db73bb8..e55f4b72536a 100644 --- a/misc/gimp-help-en/Makefile +++ b/misc/gimp-help-en/Makefile @@ -3,6 +3,7 @@ PORTNAME= gimp-help PORTVERSION= 2.8.1 +PORTREVISION= 1 CATEGORIES?= misc graphics MASTER_SITES= ftp://ftp.gimp.org/pub/%SUBDIR%/ \ http://gimp.mirrors.hoobly.com/%SUBDIR%/ \ diff --git a/misc/hotkeys/Makefile b/misc/hotkeys/Makefile index 6633902ea495..54fa1b32d941 100644 --- a/misc/hotkeys/Makefile +++ b/misc/hotkeys/Makefile @@ -3,7 +3,7 @@ PORTNAME= hotkeys PORTVERSION= 0.5.7.1 -PORTREVISION= 13 +PORTREVISION= 14 CATEGORIES= misc MASTER_SITES= http://ypwong.org/hotkeys/${PORTVERSION}/ DISTNAME= hotkeys_${PORTVERSION} diff --git a/misc/libisocodes/Makefile b/misc/libisocodes/Makefile index bff010139680..e9c8bbe347ec 100644 --- a/misc/libisocodes/Makefile +++ b/misc/libisocodes/Makefile @@ -3,6 +3,7 @@ PORTNAME= libisocodes PORTVERSION= 1.0 +PORTREVISION= 1 CATEGORIES= misc MASTER_SITES= http://pkg-isocodes.alioth.debian.org/downloads/ diff --git a/misc/libmetalink/Makefile b/misc/libmetalink/Makefile index e034d369fb14..df6ca799a1f2 100644 --- a/misc/libmetalink/Makefile +++ b/misc/libmetalink/Makefile @@ -3,6 +3,7 @@ PORTNAME= libmetalink PORTVERSION= 0.1.2 +PORTREVISION= 1 CATEGORIES= misc MASTER_SITES= https://launchpad.net/${PORTNAME}/trunk/${PORTVERSION}/+download/ \ LOCAL/sunpoet diff --git a/misc/libsupertone/Makefile b/misc/libsupertone/Makefile index 7cc15d091113..f0ddfb96b122 100644 --- a/misc/libsupertone/Makefile +++ b/misc/libsupertone/Makefile @@ -3,7 +3,7 @@ PORTNAME= libsupertone PORTVERSION= 0.0.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= misc MASTER_SITES= http://www.soft-switch.org/downloads/unicall/ diff --git a/misc/nut/Makefile b/misc/nut/Makefile index fc6e2eabee1e..75824c6974c8 100644 --- a/misc/nut/Makefile +++ b/misc/nut/Makefile @@ -3,7 +3,7 @@ PORTNAME= nut PORTVERSION= 18.4 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= misc MASTER_SITES= SF PKGNAMEPREFIX= health- @@ -32,7 +32,7 @@ NO_STAGE= yes .if ${PORT_OPTIONS:MFLTK} LIB_DEPENDS+= pthread-stubs:${PORTSDIR}/devel/libpthread-stubs \ - freetype:${PORTSDIR}/print/freetype2 \ + libfreetype.so:${PORTSDIR}/print/freetype2 \ expat:${PORTSDIR}/textproc/expat2 \ fontconfig:${PORTSDIR}/x11-fonts/fontconfig \ fltk_images:${PORTSDIR}/x11-toolkits/fltk diff --git a/misc/parley/Makefile b/misc/parley/Makefile index 20b2dfb51da3..f5a32edb95c8 100644 --- a/misc/parley/Makefile +++ b/misc/parley/Makefile @@ -2,6 +2,7 @@ PORTNAME= parley PORTVERSION= ${KDE4_VERSION} +PORTREVISION= 1 CATEGORIES= misc kde MASTER_SITES= KDE/${KDE4_BRANCH}/${PORTVERSION}/src DIST_SUBDIR= KDE/${PORTVERSION} diff --git a/misc/shared-mime-info/Makefile b/misc/shared-mime-info/Makefile index 5f5b8f3c038c..24ea46b75601 100644 --- a/misc/shared-mime-info/Makefile +++ b/misc/shared-mime-info/Makefile @@ -4,6 +4,7 @@ PORTNAME= shared-mime-info PORTVERSION= 1.1 +PORTREVISION= 1 CATEGORIES= misc gnome MASTER_SITES= http://people.freedesktop.org/~hadess/ diff --git a/misc/xfce4-weather-plugin/Makefile b/misc/xfce4-weather-plugin/Makefile index 4403760b02aa..9971687ab978 100644 --- a/misc/xfce4-weather-plugin/Makefile +++ b/misc/xfce4-weather-plugin/Makefile @@ -3,7 +3,7 @@ PORTNAME= xfce4-weather-plugin PORTVERSION= 0.8.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= misc xfce geography MASTER_SITES= ${MASTER_SITE_XFCE} MASTER_SITE_SUBDIR=src/panel-plugins/${PORTNAME}/${PORTVERSION:R} diff --git a/multimedia/audacious/Makefile b/multimedia/audacious/Makefile index fb2ee5e2f81b..e68ce5d03eae 100644 --- a/multimedia/audacious/Makefile +++ b/multimedia/audacious/Makefile @@ -3,6 +3,7 @@ PORTNAME= audacious PORTVERSION= 3.4.3 +PORTREVISION= 1 CATEGORIES= multimedia audio MASTER_SITES= http://distfiles.audacious-media-player.org/ @@ -12,13 +13,12 @@ COMMENT= A media player based on BMP and XMMS LICENSE= GPLv3 LIB_DEPENDS= libmcs.so:${PORTSDIR}/devel/libmcs \ - libmowgli.so:${PORTSDIR}/devel/libmowgli \ - libxml2.so:${PORTSDIR}/textproc/libxml2 + libmowgli.so:${PORTSDIR}/devel/libmowgli GNU_CONFIGURE= yes USES= pkgconfig gmake tar:bzip2 desktop-file-utils USE_XORG= x11 sm -USE_GNOME= gtk30 +USE_GNOME= gtk30 libxml2 USE_LDCONFIG= yes CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib diff --git a/multimedia/dtv/Makefile b/multimedia/dtv/Makefile index e22c8ea8087f..18fd6ba324d5 100644 --- a/multimedia/dtv/Makefile +++ b/multimedia/dtv/Makefile @@ -3,7 +3,7 @@ PORTNAME= dtv PORTVERSION= 0.50 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= multimedia MASTER_SITES= http://apollo.backplane.com/FreeBSDPorts/ diff --git a/multimedia/dvdauthor/Makefile b/multimedia/dvdauthor/Makefile index 1e3f9a53992e..12ceea0ec690 100644 --- a/multimedia/dvdauthor/Makefile +++ b/multimedia/dvdauthor/Makefile @@ -3,7 +3,7 @@ PORTNAME= dvdauthor PORTVERSION= 0.7.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= multimedia MASTER_SITES= SF diff --git a/multimedia/ffmpeg/Makefile b/multimedia/ffmpeg/Makefile index ec2fca99ab21..4d66e8b8a048 100644 --- a/multimedia/ffmpeg/Makefile +++ b/multimedia/ffmpeg/Makefile @@ -3,7 +3,7 @@ PORTNAME= ffmpeg PORTVERSION= 2.1.1 -PORTREVISION= 1 +PORTREVISION= 2 PORTEPOCH= 1 CATEGORIES= multimedia audio ipv6 net MASTER_SITES= http://ffmpeg.org/releases/ diff --git a/multimedia/ffmpeg0/Makefile b/multimedia/ffmpeg0/Makefile index 14866d5edc84..e4884cc6634d 100644 --- a/multimedia/ffmpeg0/Makefile +++ b/multimedia/ffmpeg0/Makefile @@ -3,7 +3,7 @@ PORTNAME= ffmpeg PORTVERSION= 0.7.16 -PORTREVISION= 1 +PORTREVISION= 2 PORTEPOCH= 1 CATEGORIES= multimedia audio ipv6 net MASTER_SITES= http://ffmpeg.org/releases/ diff --git a/multimedia/freetuxtv/Makefile b/multimedia/freetuxtv/Makefile index f541030d93a0..15766c6b0503 100644 --- a/multimedia/freetuxtv/Makefile +++ b/multimedia/freetuxtv/Makefile @@ -3,7 +3,7 @@ PORTNAME= freetuxtv PORTVERSION= 0.6.5 -PORTREVISION= 9 +PORTREVISION= 10 CATEGORIES= multimedia MASTER_SITES= GOOGLE_CODE diff --git a/multimedia/gmerlin/Makefile b/multimedia/gmerlin/Makefile index 19547e3ead54..3adca1509696 100644 --- a/multimedia/gmerlin/Makefile +++ b/multimedia/gmerlin/Makefile @@ -3,6 +3,7 @@ PORTNAME= gmerlin PORTVERSION= 1.2.0 +PORTREVISION= 1 CATEGORIES= multimedia MASTER_SITES= SF diff --git a/multimedia/gstreamer/Makefile b/multimedia/gstreamer/Makefile index f3d64e980c0b..4cd600e9afd9 100644 --- a/multimedia/gstreamer/Makefile +++ b/multimedia/gstreamer/Makefile @@ -4,6 +4,7 @@ PORTNAME= gstreamer PORTVERSION= 0.10.36 +PORTREVISION= 1 CATEGORIES= multimedia MASTER_SITES= http://gstreamer.freedesktop.org/src/gstreamer/ diff --git a/multimedia/gstreamer1-plugins/Makefile b/multimedia/gstreamer1-plugins/Makefile index ebb825c93b55..d60ef6180eff 100644 --- a/multimedia/gstreamer1-plugins/Makefile +++ b/multimedia/gstreamer1-plugins/Makefile @@ -6,7 +6,7 @@ PORTNAME= gstreamer PORTVERSION?= ${BASE_PORTVERSION} # When chasing a shared library for a plug-in bump the PORTREVISION in the # plug-in port instead, like ${category}/gstreamer1-plugin-${PLUGIN}. -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES?= multimedia audio MASTER_SITES= http://gstreamer.freedesktop.org/src/gst-plugins-base/:base \ http://gstreamer.freedesktop.org/src/gst-plugins-bad/:bad \ diff --git a/multimedia/gxine/Makefile b/multimedia/gxine/Makefile index 318de573f419..6c13cbd78875 100644 --- a/multimedia/gxine/Makefile +++ b/multimedia/gxine/Makefile @@ -3,7 +3,7 @@ PORTNAME= gxine PORTVERSION= 0.5.907 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= multimedia MASTER_SITES= SF/xine/${PORTNAME}/${PORTVERSION} diff --git a/multimedia/handbrake/Makefile b/multimedia/handbrake/Makefile index 2b16018fbdf0..5fc6b6c14c33 100644 --- a/multimedia/handbrake/Makefile +++ b/multimedia/handbrake/Makefile @@ -3,6 +3,7 @@ PORTNAME= handbrake PORTVERSION= 0.9.9 +PORTREVISION= 1 CATEGORIES= multimedia MASTER_SITES= SF/${PORTNAME}/${PORTVERSION} \ http://download.handbrake.fr/handbrake/contrib/:contrib diff --git a/multimedia/libass/Makefile b/multimedia/libass/Makefile index 518967639b74..96db43a22f3d 100644 --- a/multimedia/libass/Makefile +++ b/multimedia/libass/Makefile @@ -2,6 +2,7 @@ PORTNAME= libass PORTVERSION= 0.10.2 +PORTREVISION= 1 CATEGORIES= multimedia devel MASTER_SITES= GOOGLE_CODE diff --git a/multimedia/libav/Makefile b/multimedia/libav/Makefile index 29e1d2c8bbc9..f17473212d37 100644 --- a/multimedia/libav/Makefile +++ b/multimedia/libav/Makefile @@ -2,6 +2,7 @@ PORTNAME= libav PORTVERSION= 10 +PORTREVISION= 1 CATEGORIES= multimedia audio ipv6 net MASTER_SITES= http://libav.org/releases/ diff --git a/multimedia/libbluray/Makefile b/multimedia/libbluray/Makefile index 807e1c4aaad0..0d2d5ae71246 100644 --- a/multimedia/libbluray/Makefile +++ b/multimedia/libbluray/Makefile @@ -3,6 +3,7 @@ PORTNAME= libbluray PORTVERSION= 0.3.0 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= multimedia MASTER_SITES= ftp://ftp.videolan.org/pub/videolan/${PORTNAME}/${PORTVERSION}/ \ diff --git a/multimedia/libxine/Makefile b/multimedia/libxine/Makefile index 7577bc5cd214..3d1c6c9e067a 100644 --- a/multimedia/libxine/Makefile +++ b/multimedia/libxine/Makefile @@ -3,7 +3,7 @@ PORTNAME= xine PORTVERSION= 1.2.4 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= multimedia ipv6 MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-lib/${PORTVERSION} PKGNAMEPREFIX= lib diff --git a/multimedia/mlt/Makefile b/multimedia/mlt/Makefile index eaa751664ed3..baab359ea11a 100644 --- a/multimedia/mlt/Makefile +++ b/multimedia/mlt/Makefile @@ -2,7 +2,7 @@ PORTNAME= mlt PORTVERSION= 0.9.0 -PORTREVISION?= 2 +PORTREVISION?= 3 CATEGORIES?= multimedia MASTER_SITES= SF/${PORTNAME}/${PORTNAME} diff --git a/multimedia/mplayer2/Makefile b/multimedia/mplayer2/Makefile index 25ee0a74277f..50ba391f9778 100644 --- a/multimedia/mplayer2/Makefile +++ b/multimedia/mplayer2/Makefile @@ -2,7 +2,7 @@ PORTNAME= mplayer2 PORTVERSION= ${MPLAYER2_PORT_VERSION} -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= multimedia audio MASTER_SITES= LOCAL/gblach/ diff --git a/multimedia/mythtv-frontend/Makefile b/multimedia/mythtv-frontend/Makefile index 2d46a0b68a79..a8379ce17157 100644 --- a/multimedia/mythtv-frontend/Makefile +++ b/multimedia/mythtv-frontend/Makefile @@ -3,7 +3,7 @@ PORTNAME= mythtv-frontend PORTVERSION= 0.27.0.20140121 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= multimedia MASTER_SITES= http://people.freebsd.org/~decke/distfiles/ DISTNAME= mythtv-${PORTVERSION} diff --git a/multimedia/mythtv/Makefile b/multimedia/mythtv/Makefile index a83986ed1de7..d49d89aca7d9 100644 --- a/multimedia/mythtv/Makefile +++ b/multimedia/mythtv/Makefile @@ -3,7 +3,7 @@ PORTNAME= mythtv PORTVERSION= 0.27.0.20140121 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= multimedia MASTER_SITES= http://people.freebsd.org/~decke/distfiles/ diff --git a/multimedia/ogmrip/Makefile b/multimedia/ogmrip/Makefile index f7141e0c0b54..63bf90ecff08 100644 --- a/multimedia/ogmrip/Makefile +++ b/multimedia/ogmrip/Makefile @@ -3,7 +3,7 @@ PORTNAME= ogmrip PORTVERSION= 1.0.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= multimedia MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTVERSION:R}/${PORTVERSION} diff --git a/multimedia/phonon-gstreamer/Makefile b/multimedia/phonon-gstreamer/Makefile index 82b5d320ab70..a27c5e02947a 100644 --- a/multimedia/phonon-gstreamer/Makefile +++ b/multimedia/phonon-gstreamer/Makefile @@ -3,7 +3,7 @@ PORTNAME= phonon PORTVERSION= 4.7.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= multimedia kde MASTER_SITES= KDE/stable/${PORTNAME}/${PORTNAME}-backend${PKGNAMESUFFIX}/${PORTVERSION} PKGNAMESUFFIX= -gstreamer diff --git a/multimedia/phonon-xine/Makefile b/multimedia/phonon-xine/Makefile index 739a363b4e26..dd6f7a5b1cb5 100644 --- a/multimedia/phonon-xine/Makefile +++ b/multimedia/phonon-xine/Makefile @@ -3,7 +3,7 @@ PORTNAME= phonon PORTVERSION= 4.4.4 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= multimedia kde MASTER_SITES= KDE/stable/${PORTNAME}/${PORTNAME}-backend${PKGNAMESUFFIX}/${PORTVERSION}/src PKGNAMESUFFIX= -xine diff --git a/multimedia/py-gstreamer/Makefile b/multimedia/py-gstreamer/Makefile index 1fd6794b55e9..0d7290c0e601 100644 --- a/multimedia/py-gstreamer/Makefile +++ b/multimedia/py-gstreamer/Makefile @@ -4,7 +4,7 @@ PORTNAME= gstreamer PORTVERSION= 0.10.22 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= multimedia python gnome MASTER_SITES= http://gstreamer.freedesktop.org/src/gst-python/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/multimedia/py-kaa-base/Makefile b/multimedia/py-kaa-base/Makefile index b74876104396..67951f7aeae5 100644 --- a/multimedia/py-kaa-base/Makefile +++ b/multimedia/py-kaa-base/Makefile @@ -3,7 +3,7 @@ PORTNAME= kaa-base PORTVERSION= 0.6.0 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= multimedia python MASTER_SITES= SF/freevo/${PORTNAME}/${PORTVERSION} PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/multimedia/totem-pl-parser/Makefile b/multimedia/totem-pl-parser/Makefile index df3fb2292629..055b08830b6e 100644 --- a/multimedia/totem-pl-parser/Makefile +++ b/multimedia/totem-pl-parser/Makefile @@ -4,7 +4,7 @@ PORTNAME= totem-pl-parser PORTVERSION= 2.32.3 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= multimedia gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome2 diff --git a/multimedia/transcode/Makefile b/multimedia/transcode/Makefile index 9c17f5b0dec2..871b67c7fab5 100644 --- a/multimedia/transcode/Makefile +++ b/multimedia/transcode/Makefile @@ -3,7 +3,7 @@ PORTNAME= transcode PORTVERSION= 1.1.7 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= multimedia MASTER_SITES= http://cdn.bitbucket.org/france/transcode-tcforge/downloads/ diff --git a/multimedia/vcdimager/Makefile b/multimedia/vcdimager/Makefile index f92bc3c55ab5..0ae8e9d61e22 100644 --- a/multimedia/vcdimager/Makefile +++ b/multimedia/vcdimager/Makefile @@ -3,7 +3,7 @@ PORTNAME= vcdimager PORTVERSION= 0.7.24 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= multimedia MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= vcdimager diff --git a/multimedia/vdr-plugin-softhddevice/Makefile b/multimedia/vdr-plugin-softhddevice/Makefile index cb4bdbb4f93c..9d09979eefa4 100644 --- a/multimedia/vdr-plugin-softhddevice/Makefile +++ b/multimedia/vdr-plugin-softhddevice/Makefile @@ -3,7 +3,7 @@ PORTNAME= vdr-plugin-softhddevice PORTVERSION= 0.5.1 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= multimedia MASTER_SITES= http://projects.vdr-developer.org/attachments/download/1000/ DISTNAME= ${PORTNAME:S/-plugin-/-/}-${DISTVERSIONPREFIX}${DISTVERSION}${DISTVERSIONSUFFIX} diff --git a/multimedia/vdr-plugin-xineliboutput/Makefile b/multimedia/vdr-plugin-xineliboutput/Makefile index 64dee3af8c5f..6d08c307f2d6 100644 --- a/multimedia/vdr-plugin-xineliboutput/Makefile +++ b/multimedia/vdr-plugin-xineliboutput/Makefile @@ -3,7 +3,7 @@ PORTNAME= vdr-plugin-xineliboutput PORTVERSION= 1.0.90s20120511 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= multimedia MASTER_SITES= SF:release \ LOCAL:snapshot diff --git a/multimedia/vlc/Makefile b/multimedia/vlc/Makefile index 203b3836a40f..61fb62a70d8d 100644 --- a/multimedia/vlc/Makefile +++ b/multimedia/vlc/Makefile @@ -3,7 +3,7 @@ PORTNAME= vlc DISTVERSION= 2.1.2 -PORTREVISION= 3 +PORTREVISION= 4 PORTEPOCH= 4 CATEGORIES= multimedia audio ipv6 net www MASTER_SITES= http://download.videolan.org/pub/videolan/${PORTNAME}/${DISTVERSION:S/a$//}/ \ diff --git a/net-im/ekiga/Makefile b/net-im/ekiga/Makefile index 9ba74b7ff1d8..247e2c1c25e7 100644 --- a/net-im/ekiga/Makefile +++ b/net-im/ekiga/Makefile @@ -3,7 +3,7 @@ PORTNAME= ekiga PORTVERSION= 4.0.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net-im MASTER_SITES= GNOME #MASTER_SITES= http://www.ekiga.org/admin/downloads/latest/sources/ekiga_${PORTVERSION}/ diff --git a/net-im/kmess-kde4/Makefile b/net-im/kmess-kde4/Makefile index 58b177224f17..1e33685bc4a8 100644 --- a/net-im/kmess-kde4/Makefile +++ b/net-im/kmess-kde4/Makefile @@ -3,7 +3,7 @@ PORTNAME= kmess PORTVERSION= 2.0.6.2 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= net-im kde MASTER_SITES= SF/${PORTNAME}/Latest%20versions/${PORTVERSION}/ diff --git a/net-im/kopete-kde4/Makefile b/net-im/kopete-kde4/Makefile index 162aea02de93..08ae4b850826 100644 --- a/net-im/kopete-kde4/Makefile +++ b/net-im/kopete-kde4/Makefile @@ -2,6 +2,7 @@ PORTNAME= kopete PORTVERSION= ${KDE4_VERSION} +PORTREVISION= 1 CATEGORIES= net-im kde MASTER_SITES= KDE/${KDE4_BRANCH}/${PORTVERSION}/src DIST_SUBDIR= KDE/${PORTVERSION} diff --git a/net-im/libpurple/Makefile b/net-im/libpurple/Makefile index 09675f06aafa..f49ad400b788 100644 --- a/net-im/libpurple/Makefile +++ b/net-im/libpurple/Makefile @@ -4,7 +4,7 @@ PORTNAME?= libpurple PORTVERSION= 2.10.9 -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES?= net-im MASTER_SITES= SF/pidgin/Pidgin/${PORTVERSION} DISTNAME= pidgin-${PORTVERSION} diff --git a/net-im/pidgin-twitter/Makefile b/net-im/pidgin-twitter/Makefile index 210baeaf8536..7b465398eefb 100644 --- a/net-im/pidgin-twitter/Makefile +++ b/net-im/pidgin-twitter/Makefile @@ -3,7 +3,7 @@ PORTNAME= pidgin-twitter PORTVERSION= 0.9.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net-im MASTER_SITES= http://www.honeyplanet.jp/ diff --git a/net-im/py-pyxmpp/Makefile b/net-im/py-pyxmpp/Makefile index 65ced6fe8231..3aa242383f88 100644 --- a/net-im/py-pyxmpp/Makefile +++ b/net-im/py-pyxmpp/Makefile @@ -3,7 +3,7 @@ PORTNAME= pyxmpp PORTVERSION= 1.1.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net-im python MASTER_SITES= http://cloud.github.com/downloads/Jajcus/pyxmpp/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/net-im/telepathy-logger-qt4/Makefile b/net-im/telepathy-logger-qt4/Makefile index ed158d3d1d64..bd7f0439c839 100644 --- a/net-im/telepathy-logger-qt4/Makefile +++ b/net-im/telepathy-logger-qt4/Makefile @@ -2,6 +2,7 @@ PORTNAME= telepathy-logger-qt4 PORTVERSION= 0.6.0 +PORTREVISION= 1 CATEGORIES= net-im MASTER_SITES= ${MASTER_SITE_KDE} MASTER_SITE_SUBDIR= stable/kde-telepathy/${PORTVERSION}/src diff --git a/net-im/telepathy-logger/Makefile b/net-im/telepathy-logger/Makefile index 6f3894ed4596..96a31aaf9482 100644 --- a/net-im/telepathy-logger/Makefile +++ b/net-im/telepathy-logger/Makefile @@ -4,6 +4,7 @@ PORTNAME= telepathy-logger PORTVERSION= 0.4.0 +PORTREVISION= 1 CATEGORIES= net-im MASTER_SITES= http://telepathy.freedesktop.org/releases/${PORTNAME}/ diff --git a/net-mgmt/collectd/Makefile b/net-mgmt/collectd/Makefile index 667aa8d82f2b..0bea3eea7e95 100644 --- a/net-mgmt/collectd/Makefile +++ b/net-mgmt/collectd/Makefile @@ -3,7 +3,7 @@ PORTNAME= collectd PORTVERSION= 4.10.9 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= net-mgmt MASTER_SITES= http://collectd.org/files/ diff --git a/net-mgmt/collectd5/Makefile b/net-mgmt/collectd5/Makefile index f0a07db8e18b..611822012739 100644 --- a/net-mgmt/collectd5/Makefile +++ b/net-mgmt/collectd5/Makefile @@ -3,6 +3,7 @@ PORTNAME= collectd PORTVERSION= 5.4.1 +PORTREVISION= 1 PKGNAMESUFFIX= 5 CATEGORIES= net-mgmt MASTER_SITES= http://collectd.org/files/ diff --git a/net-mgmt/ndpmon/Makefile b/net-mgmt/ndpmon/Makefile index f0350257c640..1ec24b62dd9b 100644 --- a/net-mgmt/ndpmon/Makefile +++ b/net-mgmt/ndpmon/Makefile @@ -3,7 +3,7 @@ PORTNAME= ndpmon PORTVERSION= 1.4.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= net-mgmt ipv6 MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-1.4/ EXTRACT_SUFX= .tgz diff --git a/net-mgmt/ramond/Makefile b/net-mgmt/ramond/Makefile index a596917976ea..826fef773833 100644 --- a/net-mgmt/ramond/Makefile +++ b/net-mgmt/ramond/Makefile @@ -3,7 +3,7 @@ PORTNAME= ramond PORTVERSION= 0.5 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= net-mgmt ipv6 MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/_${PORTVERSION}/ diff --git a/net-mgmt/scli/Makefile b/net-mgmt/scli/Makefile index c241498c7c7d..27b05608172c 100644 --- a/net-mgmt/scli/Makefile +++ b/net-mgmt/scli/Makefile @@ -3,7 +3,7 @@ PORTNAME= scli PORTVERSION= 0.3.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net-mgmt MASTER_SITES= ftp://ftp.ibr.cs.tu-bs.de/local/${PORTNAME}/ \ http://matt.peterson.org/FreeBSD/ports/ diff --git a/net-mgmt/torrus/Makefile b/net-mgmt/torrus/Makefile index da51cfcc9927..631143b3eae0 100644 --- a/net-mgmt/torrus/Makefile +++ b/net-mgmt/torrus/Makefile @@ -3,6 +3,7 @@ PORTNAME= torrus PORTVERSION= 2.05 +PORTREVISION= 1 CATEGORIES= net-mgmt MASTER_SITES= SF/torrus/torrus/ diff --git a/net-mgmt/zabbix22-server/Makefile b/net-mgmt/zabbix22-server/Makefile index 7560da585e3a..ab50fc7a0b72 100644 --- a/net-mgmt/zabbix22-server/Makefile +++ b/net-mgmt/zabbix22-server/Makefile @@ -3,7 +3,7 @@ PORTNAME= zabbix22 PORTVERSION= 2.2.2 -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES= net-mgmt MASTER_SITES= SF/zabbix/ZABBIX%20Latest%20Stable/${PORTVERSION} PKGNAMESUFFIX?= -server diff --git a/net-p2p/dclib/Makefile b/net-p2p/dclib/Makefile index 65385cf2291c..bcb76a8b537e 100644 --- a/net-p2p/dclib/Makefile +++ b/net-p2p/dclib/Makefile @@ -3,7 +3,7 @@ PORTNAME= dclib PORTVERSION= 0.3.23 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= net-p2p MASTER_SITES= SF/wxdcgui/${PORTNAME}/${PORTVERSION} diff --git a/net-p2p/gtk-gnutella/Makefile b/net-p2p/gtk-gnutella/Makefile index 8419b08f88bd..9c7405fcb201 100644 --- a/net-p2p/gtk-gnutella/Makefile +++ b/net-p2p/gtk-gnutella/Makefile @@ -34,6 +34,7 @@ PORTNAME= gtk-gnutella PORTVERSION= 1.0.1 +PORTREVISION= 1 CATEGORIES= net-p2p ipv6 MASTER_SITES= SF diff --git a/net-p2p/microdc2/Makefile b/net-p2p/microdc2/Makefile index d3d1d409187c..ba368149543a 100644 --- a/net-p2p/microdc2/Makefile +++ b/net-p2p/microdc2/Makefile @@ -3,7 +3,7 @@ PORTNAME= microdc2 PORTVERSION= 0.15.6 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= net-p2p MASTER_SITES= http://corsair626.no-ip.org/microdc/ diff --git a/net-p2p/minder/Makefile b/net-p2p/minder/Makefile index addd25301ebb..4d04ecd58fb3 100644 --- a/net-p2p/minder/Makefile +++ b/net-p2p/minder/Makefile @@ -3,6 +3,7 @@ PORTNAME= minder PORTVERSION= 2.0.2 +PORTREVISION= 1 CATEGORIES= net-p2p MASTER_SITES= http://www.alhem.net/project/minder/ diff --git a/net-p2p/retroshare/Makefile b/net-p2p/retroshare/Makefile index 0705d6d2817b..c33a55c4135f 100644 --- a/net-p2p/retroshare/Makefile +++ b/net-p2p/retroshare/Makefile @@ -3,6 +3,7 @@ PORTNAME= retroshare PORTVERSION= 0.5.5a +PORTREVISION= 1 CATEGORIES= net-p2p MASTER_SITES= SF MASTER_SITE_SUBDIR=${PORTNAME}/${BINARY}/${PORTVERSION} diff --git a/net-p2p/valknut/Makefile b/net-p2p/valknut/Makefile index ef03ff425e14..d9b7db9ddaeb 100644 --- a/net-p2p/valknut/Makefile +++ b/net-p2p/valknut/Makefile @@ -3,7 +3,7 @@ PORTNAME= valknut PORTVERSION= 0.4.9 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= net-p2p MASTER_SITES= SF/wxdcgui/${PORTNAME}-qt4/${PORTVERSION} diff --git a/net/Sockets/Makefile b/net/Sockets/Makefile index af85e437cea3..bca4fd12d65d 100644 --- a/net/Sockets/Makefile +++ b/net/Sockets/Makefile @@ -3,6 +3,7 @@ PORTNAME= Sockets PORTVERSION= 2.3.9.9 +PORTREVISION= 1 CATEGORIES= net MASTER_SITES= http://www.alhem.net/Sockets/ \ http://www.netfence.it/Sockets/ diff --git a/net/asterisk/Makefile b/net/asterisk/Makefile index d406cee42418..94387649c60b 100644 --- a/net/asterisk/Makefile +++ b/net/asterisk/Makefile @@ -3,6 +3,7 @@ PORTNAME= asterisk PORTVERSION= 1.8.26.1 +PORTREVISION= 1 CATEGORIES= net MASTER_SITES= http://downloads.asterisk.org/pub/telephony/asterisk/ \ http://downloads.asterisk.org/pub/telephony/asterisk/old-releases/ diff --git a/net/asterisk11/Makefile b/net/asterisk11/Makefile index a2fb04bc96c1..8b4db5b9556b 100644 --- a/net/asterisk11/Makefile +++ b/net/asterisk11/Makefile @@ -2,6 +2,7 @@ PORTNAME= asterisk PORTVERSION= 11.8.1 +PORTREVISION= 1 CATEGORIES= net MASTER_SITES= http://downloads.asterisk.org/pub/telephony/asterisk/ \ http://downloads.asterisk.org/pub/telephony/asterisk/old-releases/ diff --git a/net/boinc-client/Makefile b/net/boinc-client/Makefile index 8398e66a47db..9fd5b51199ad 100644 --- a/net/boinc-client/Makefile +++ b/net/boinc-client/Makefile @@ -3,6 +3,7 @@ PORTNAME= boinc-client PORTVERSION= 7.2.33 +PORTREVISION= 1 CATEGORIES= net MASTER_SITES= ${MASTER_SITE_LOCAL} \ ftp://rene-ladan.nl/pub/distfiles/ diff --git a/net/cvsup/Makefile b/net/cvsup/Makefile index b5fad298a21d..0a14a4a20701 100644 --- a/net/cvsup/Makefile +++ b/net/cvsup/Makefile @@ -3,7 +3,7 @@ PORTNAME= cvsup PORTVERSION= 16.1h -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= net devel MASTER_SITES= ${MASTER_SITE_FREEBSD_ORG} MASTER_SITE_SUBDIR=development/CVSup/snapshots diff --git a/net/freedbd/Makefile b/net/freedbd/Makefile index 54af407b0878..d2177d7aadc6 100644 --- a/net/freedbd/Makefile +++ b/net/freedbd/Makefile @@ -3,6 +3,7 @@ PORTNAME= freedbd PORTVERSION= 0.1 +PORTREVISION= 1 CATEGORIES= net audio MASTER_SITES= http://rink.nu/downloads/projects/ diff --git a/net/libcmis/Makefile b/net/libcmis/Makefile index 546ca7ee46e8..4730db060c2f 100644 --- a/net/libcmis/Makefile +++ b/net/libcmis/Makefile @@ -2,7 +2,7 @@ PORTNAME= libcmis PORTVERSION= 0.4.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net devel MASTER_SITES= SF/${PORTNAME} diff --git a/net/libmateweather/Makefile b/net/libmateweather/Makefile index 9925ef8e2ec9..a031d326a398 100644 --- a/net/libmateweather/Makefile +++ b/net/libmateweather/Makefile @@ -3,6 +3,7 @@ PORTNAME= libmateweather PORTVERSION= 1.6.2 +PORTREVISION= 1 CATEGORIES= net mate MASTER_SITES= MATE DIST_SUBDIR= mate diff --git a/net/ntop/Makefile b/net/ntop/Makefile index f0ddafdbb3d5..d58d44b4c123 100644 --- a/net/ntop/Makefile +++ b/net/ntop/Makefile @@ -3,6 +3,7 @@ PORTNAME= ntop PORTVERSION= 5.0.1 +PORTREVISION= 1 CATEGORIES= net MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/Stable diff --git a/net/openser/Makefile b/net/openser/Makefile index 1b3256edc3c0..11f8a431f368 100644 --- a/net/openser/Makefile +++ b/net/openser/Makefile @@ -3,7 +3,7 @@ PORTNAME= openser PORTVERSION= 1.2.3 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= net MASTER_SITES= http://openser.org/pub/openser/${PORTVERSION}/src/ DISTNAME= ${PORTNAME}-${PORTVERSION}-tls_src diff --git a/net/ser/Makefile b/net/ser/Makefile index 1b531fd33974..754555304a23 100644 --- a/net/ser/Makefile +++ b/net/ser/Makefile @@ -3,7 +3,7 @@ PORTNAME= ser PORTVERSION= 0.9.6 -PORTREVISION= 9 +PORTREVISION= 10 CATEGORIES= net MASTER_SITES= http://download.berlios.de/ser/ \ http://download2.berlios.de/ser/ @@ -15,6 +15,7 @@ COMMENT= Fast and configurable SIP proxy WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} USE_GMAKE= yes +USE_GNOME= # empty USE_RC_SUBR= ser CFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib @@ -50,7 +51,7 @@ MAKE_ENV+= POSTGRESQL=postgres .if !defined(WITHOUT_PRESENCE) PLIST_SUB+= PA="" -LIB_DEPENDS+= xml2.5:${PORTSDIR}/textproc/libxml2 +USE_GNOME+= libxml2 .else PLIST_SUB+= PA="@comment " MAKE_ENV+= PA=pa diff --git a/net/tigervnc/Makefile b/net/tigervnc/Makefile index 01974a54d446..17436f4dc730 100644 --- a/net/tigervnc/Makefile +++ b/net/tigervnc/Makefile @@ -3,7 +3,7 @@ PORTNAME= tigervnc PORTVERSION= 1.3.1 -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= net x11-servers MASTER_SITES= SF:tigervnc MASTER_SITE_SUBDIR= ${PORTNAME}/${PORTNAME}/${PORTVERSION}/:tigervnc diff --git a/net/twitux/Makefile b/net/twitux/Makefile index 782b4e25c101..e7309b4dadd1 100644 --- a/net/twitux/Makefile +++ b/net/twitux/Makefile @@ -1,24 +1,24 @@ # Created by: Arnaud Berthomier # $FreeBSD$ -PORTNAME= twitux +PORTNAME= twitux PORTVERSION= 0.69 -PORTREVISION= 6 -CATEGORIES= net +PORTREVISION= 7 +CATEGORIES= net MASTER_SITES= SF -MAINTAINER= oz@cyprio.net -COMMENT= GNOME client for Twitter +MAINTAINER= oz@cyprio.net +COMMENT= GNOME client for Twitter LIB_DEPENDS= soup-2.4.1:${PORTSDIR}/devel/libsoup \ - sexy.2:${PORTSDIR}/x11-toolkits/libsexy \ - notify.4:${PORTSDIR}/devel/libnotify \ - canberra:${PORTSDIR}/audio/libcanberra + sexy.2:${PORTSDIR}/x11-toolkits/libsexy \ + notify.4:${PORTSDIR}/devel/libnotify \ + canberra:${PORTSDIR}/audio/libcanberra -USE_XORG= x11 -USE_GNOME= glib20 gtk20 gconf2 libxml2 gnomedocutils +USE_XORG= x11 +USE_GNOME= glib20 gtk20 gconf2 libxml2 gnomedocutils INSTALLS_OMF= yes -USE_BZIP2= yes +USE_BZIP2= yes GNU_CONFIGURE= yes USES= gettext gmake pkgconfig CONFIGURE_ENV+= GMSGFMT="${LOCALBASE}/bin/msgfmt" diff --git a/net/x11vnc/Makefile b/net/x11vnc/Makefile index 585edf36515a..249cddaa42d1 100644 --- a/net/x11vnc/Makefile +++ b/net/x11vnc/Makefile @@ -3,7 +3,7 @@ PORTNAME= x11vnc PORTVERSION= 0.9.13 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net MASTER_SITES= SF/libvncserver/${PORTNAME}/${PORTVERSION} diff --git a/net/yaz/Makefile b/net/yaz/Makefile index 5aad5d607f61..c47f4df77876 100644 --- a/net/yaz/Makefile +++ b/net/yaz/Makefile @@ -3,6 +3,7 @@ PORTNAME= yaz PORTVERSION= 5.0.21 +PORTREVISION= 1 CATEGORIES= net MASTER_SITES= http://ftp.indexdata.dk/pub/yaz/ diff --git a/news/nzbget/Makefile b/news/nzbget/Makefile index 1dbc4b10804b..c9e572b6773f 100644 --- a/news/nzbget/Makefile +++ b/news/nzbget/Makefile @@ -3,6 +3,7 @@ PORTNAME= nzbget PORTVERSION= 12.0 +PORTREVISION= 1 CATEGORIES= news MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-stable/${PORTVERSION} diff --git a/print/acroread9/Makefile b/print/acroread9/Makefile index 09007b4c72b0..535374666b10 100644 --- a/print/acroread9/Makefile +++ b/print/acroread9/Makefile @@ -3,6 +3,7 @@ PORTNAME= acroread9 PORTVERSION?= 9.5.5 +PORTREVISION= 1 CATEGORIES?= print linux MASTER_SITES?= http://ardownload.adobe.com/pub/adobe/reader/unix/9.x/${PORTVERSION}/${ADOBE_LANG:L}/ \ ftp://ftp.adobe.com/pub/adobe/reader/unix/9.x/${PORTVERSION}/${ADOBE_LANG:L}/ diff --git a/print/fontforge/Makefile b/print/fontforge/Makefile index 335fb0c17c64..b9c85756391d 100644 --- a/print/fontforge/Makefile +++ b/print/fontforge/Makefile @@ -3,7 +3,7 @@ PORTNAME= fontforge DISTVERSION= 20120731-b -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= print MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-source \ SF/freetype/${PORTNAME}/${PORTVERSION}:freetype \ diff --git a/print/foomatic-db-engine/Makefile b/print/foomatic-db-engine/Makefile index 58abf95a81b2..828d5fbee06c 100644 --- a/print/foomatic-db-engine/Makefile +++ b/print/foomatic-db-engine/Makefile @@ -3,6 +3,7 @@ PORTNAME= engine PORTVERSION= 4.0.11 +PORTREVISION= 1 PORTEPOCH= 2 CATEGORIES= print MASTER_SITES= http://www.openprinting.org/download/foomatic/ \ diff --git a/print/foomatic-db/Makefile b/print/foomatic-db/Makefile index f0aff963dd8d..fc2569b4981c 100644 --- a/print/foomatic-db/Makefile +++ b/print/foomatic-db/Makefile @@ -3,6 +3,7 @@ PORTNAME= db PORTVERSION= 20140331 +PORTREVISION= 1 CATEGORIES= print MASTER_SITES= http://www.openprinting.org/download/foomatic/ \ ftp://ftp.wart.ru/pub/FreeBSD/ports/distfiles/foomatic/ diff --git a/print/freetype2/Makefile b/print/freetype2/Makefile index 33f703a3de69..1573058b200d 100644 --- a/print/freetype2/Makefile +++ b/print/freetype2/Makefile @@ -4,6 +4,7 @@ PORTNAME= freetype2 PORTVERSION= 2.5.3 +PORTREVISION= 1 CATEGORIES= print MASTER_SITES= http://savannah.nongnu.org/download/freetype/ \ SF/freetype/${PORTNAME}/${PORTVERSION:C/^([0-9]+\.[0-9]+\.[0-9]+).*/\1/}/ \ @@ -18,12 +19,10 @@ MAINTAINER= gnome@FreeBSD.org COMMENT= Free and portable TrueType font rendering engine USE_BZIP2= yes -USES= gmake +USES= gmake libtool MAKE_ENV= TOP="" USE_LDCONFIG= yes GNU_CONFIGURE= yes -USE_GNOME= ltverhack:9 -ltverhack_PATCH_FILES= builds/unix/ltmain.sh CONFIGURE_ARGS= --without-harfbuzz CONFIGURE_WRKSRC= ${WRKSRC}/builds/unix diff --git a/print/freetype2/pkg-plist b/print/freetype2/pkg-plist index 287c8abf2bdf..b9ace67891f6 100644 --- a/print/freetype2/pkg-plist +++ b/print/freetype2/pkg-plist @@ -53,7 +53,8 @@ include/freetype2/ttunpat.h lib/libfreetype.a lib/libfreetype.la lib/libfreetype.so -lib/libfreetype.so.9 +lib/libfreetype.so.6 +lib/libfreetype.so.6.11.2 libdata/pkgconfig/freetype2.pc man/man1/freetype-config.1.gz share/aclocal/freetype2.m4 diff --git a/print/ft2demos/Makefile b/print/ft2demos/Makefile index 76f34e64dc61..381438fa41ce 100644 --- a/print/ft2demos/Makefile +++ b/print/ft2demos/Makefile @@ -3,6 +3,7 @@ PORTNAME= ft2demos PORTVERSION= 2.5.3 +PORTREVISION= 1 CATEGORIES= print MASTER_SITES= SF/freetype/freetype-demos/${PORTVERSION} \ RINGSERVER/graphics/freetype/freetype2 diff --git a/print/ghostscript8/Makefile b/print/ghostscript8/Makefile index 075080596f99..b5e26d5203e5 100644 --- a/print/ghostscript8/Makefile +++ b/print/ghostscript8/Makefile @@ -3,7 +3,7 @@ PORTNAME= ghostscript PORTVERSION= 8.71 -PORTREVISION= 14 +PORTREVISION= 15 CATEGORIES= print MASTER_SITES= http://downloads.ghostscript.com/public/:gs_srcs \ SF/ghostscript/GPL%20Ghostscript/${PORTVERSION}:gs_srcs \ diff --git a/print/ghostscript9-agpl/Makefile b/print/ghostscript9-agpl/Makefile index a78a0bbd3c57..8eca6544c8fc 100644 --- a/print/ghostscript9-agpl/Makefile +++ b/print/ghostscript9-agpl/Makefile @@ -2,7 +2,7 @@ PORTNAME= ghostscript PORTVERSION= 9.07 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= print MASTER_SITES= http://downloads.ghostscript.com/public/:gs_srcs \ SF/ghostscript/GPL%20Ghostscript/${PORTVERSION}:gs_srcs \ diff --git a/print/ghostscript9/Makefile b/print/ghostscript9/Makefile index 8a7feb2f013d..c94466bf9280 100644 --- a/print/ghostscript9/Makefile +++ b/print/ghostscript9/Makefile @@ -2,7 +2,7 @@ PORTNAME= ghostscript PORTVERSION= 9.06 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= print MASTER_SITES= http://downloads.ghostscript.com/public/:gs_srcs \ SF/ghostscript/GPL%20Ghostscript/${PORTVERSION}:gs_srcs \ diff --git a/print/harfbuzz/Makefile b/print/harfbuzz/Makefile index bb4200a2d1ce..8199415c0c3b 100644 --- a/print/harfbuzz/Makefile +++ b/print/harfbuzz/Makefile @@ -3,7 +3,7 @@ PORTNAME= harfbuzz PORTVERSION= 0.9.25 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= print MASTER_SITES= http://www.freedesktop.org/software/harfbuzz/release/ diff --git a/print/libgnomeprint/Makefile b/print/libgnomeprint/Makefile index 142e5f325b5f..793469421bf8 100644 --- a/print/libgnomeprint/Makefile +++ b/print/libgnomeprint/Makefile @@ -4,7 +4,7 @@ PORTNAME= libgnomeprint PORTVERSION= 2.18.8 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= print gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome2 diff --git a/print/libotf/Makefile b/print/libotf/Makefile index 5d80caee1b5a..d48c68cb848e 100644 --- a/print/libotf/Makefile +++ b/print/libotf/Makefile @@ -3,6 +3,7 @@ PORTNAME= libotf PORTVERSION= 0.9.13 +PORTREVISION= 1 CATEGORIES= print devel MASTER_SITES= ${MASTER_SITE_SAVANNAH}:m17n MASTER_SITE_SUBDIR= m17n @@ -10,7 +11,7 @@ MASTER_SITE_SUBDIR= m17n MAINTAINER= nikola.lecic@anthesphoria.net COMMENT= Library for handling OpenType fonts -LIB_DEPENDS= freetype.9:${PORTSDIR}/print/freetype2 +LIB_DEPENDS= libfreetype.so:${PORTSDIR}/print/freetype2 USES= pathfix pkgconfig USE_XORG= x11 xt xaw xmu diff --git a/print/lilypond-devel/Makefile b/print/lilypond-devel/Makefile index 094c72d066a4..d108a394c984 100644 --- a/print/lilypond-devel/Makefile +++ b/print/lilypond-devel/Makefile @@ -3,6 +3,7 @@ PORTNAME= lilypond PORTVERSION= 2.19.3 +PORTREVISION= 1 CATEGORIES= print audio MASTER_SITES= http://download.linuxaudio.org/lilypond/sources/v${PORTVERSION:R}/ PKGNAMESUFFIX= -devel diff --git a/print/lilypond/Makefile b/print/lilypond/Makefile index 3d11de1227f4..8c2010ee031e 100644 --- a/print/lilypond/Makefile +++ b/print/lilypond/Makefile @@ -3,6 +3,7 @@ PORTNAME= lilypond PORTVERSION= 2.18.2 +PORTREVISION= 1 CATEGORIES= print audio MASTER_SITES= http://download.linuxaudio.org/lilypond/sources/v${PORTVERSION:R}/ diff --git a/print/p5-Font-FreeType/Makefile b/print/p5-Font-FreeType/Makefile index b233361c9e79..c55caea664ba 100644 --- a/print/p5-Font-FreeType/Makefile +++ b/print/p5-Font-FreeType/Makefile @@ -2,6 +2,7 @@ PORTNAME= Font-FreeType PORTVERSION= 0.03 +PORTREVISION= 1 CATEGORIES= print perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- diff --git a/print/pdfcube/Makefile b/print/pdfcube/Makefile index c1c620353623..88687a24f5fe 100644 --- a/print/pdfcube/Makefile +++ b/print/pdfcube/Makefile @@ -3,7 +3,7 @@ PORTNAME= pdfcube PORTVERSION= 0.0.5 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= print MASTER_SITES= http://code.100allora.it/releases/pdfcube/ diff --git a/print/photoprint/Makefile b/print/photoprint/Makefile index a387562656ea..39657ad6b5cc 100644 --- a/print/photoprint/Makefile +++ b/print/photoprint/Makefile @@ -2,7 +2,7 @@ PORTNAME= photoprint DISTVERSION= 0.4.2-pre2 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= print graphics MASTER_SITES= http://www.blackfiveimaging.co.uk/photoprint/ diff --git a/print/py-reportlab/Makefile b/print/py-reportlab/Makefile index 18837335e3dd..45eb3ee69908 100644 --- a/print/py-reportlab/Makefile +++ b/print/py-reportlab/Makefile @@ -3,6 +3,7 @@ PORTNAME= reportlab PORTVERSION= 3.0 +PORTREVISION= 1 CATEGORIES= print python MASTER_SITES= CHEESESHOP \ http://www.reportlab.com/ftp/ diff --git a/print/py-reportlab2/Makefile b/print/py-reportlab2/Makefile index 3b1b439a2121..f52feec3bd0b 100644 --- a/print/py-reportlab2/Makefile +++ b/print/py-reportlab2/Makefile @@ -3,6 +3,7 @@ PORTNAME= reportlab2 PORTVERSION= 2.5 +PORTREVISION= 1 CATEGORIES= print python MASTER_SITES= http://www.reportlab.com/ftp/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -57,7 +58,7 @@ RUN_DEPENDS+= ${LOCALBASE}/share/fonts/adobe-cmaps/ac15/cid2code.txt:${PORTSDIR} .endif .if ${PORT_OPTIONS:MFREETYPE} -LIB_DEPENDS+= freetype.9:${PORTSDIR}/print/freetype2 +LIB_DEPENDS+= libfreetype.so:${PORTSDIR}/print/freetype2 .endif post-install: diff --git a/print/scribus-devel/Makefile b/print/scribus-devel/Makefile index 40f860d63290..80068d0cf9f9 100644 --- a/print/scribus-devel/Makefile +++ b/print/scribus-devel/Makefile @@ -3,7 +3,7 @@ PORTNAME= scribus PORTVERSION= 1.5.0 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= print editors MASTER_SITES= http://download.tuxfamily.org/bartcoding/FreeBSD/ \ ${MASTER_SITE_LOCAL} diff --git a/print/scribus/Makefile b/print/scribus/Makefile index 92c04071d5b0..c18edc80d21e 100644 --- a/print/scribus/Makefile +++ b/print/scribus/Makefile @@ -3,7 +3,7 @@ PORTNAME= scribus PORTVERSION= 1.4.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= print editors MASTER_SITES= SF \ http://www.scribus.net/downloads/${PORTVERSION}/ diff --git a/print/tex-aleph/Makefile b/print/tex-aleph/Makefile index c73090d32bc5..3531bf965ae7 100644 --- a/print/tex-aleph/Makefile +++ b/print/tex-aleph/Makefile @@ -2,6 +2,7 @@ PORTNAME= aleph PORTVERSION= 0.0.r.4 +PORTREVISION= 1 CATEGORIES= print MASTER_SITES= ftp://tug.org/historic/systems/texlive/2012/ PKGNAMEPREFIX= tex- diff --git a/print/tex-luatex/Makefile b/print/tex-luatex/Makefile index b5b6ea410939..ab6f01129274 100644 --- a/print/tex-luatex/Makefile +++ b/print/tex-luatex/Makefile @@ -2,7 +2,7 @@ PORTNAME= luatex PORTVERSION= 0.70.2 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= print MASTER_SITES= ftp://tug.org/historic/systems/texlive/2012/ PKGNAMEPREFIX= tex- diff --git a/print/tex-xdvik/Makefile b/print/tex-xdvik/Makefile index 5d2b66edce69..7e9c2143992b 100644 --- a/print/tex-xdvik/Makefile +++ b/print/tex-xdvik/Makefile @@ -3,6 +3,7 @@ PORTNAME= xdvik PORTVERSION= 22.86 +PORTREVISION= 1 CATEGORIES= print MASTER_SITES= SF/xdvi/${PORTNAME}/${PORTVERSION} PKGNAMEPREFIX= tex- @@ -11,7 +12,7 @@ DIST_SUBDIR= TeX MAINTAINER= hrs@FreeBSD.org COMMENT= DVI Previewer(kpathsearch) for X -LIB_DEPENDS= freetype:${PORTSDIR}/print/freetype2 \ +LIB_DEPENDS= libfreetype.so:${PORTSDIR}/print/freetype2 \ paper:${PORTSDIR}/print/libpaper USES= iconv gmake motif diff --git a/print/tex-xetex/Makefile b/print/tex-xetex/Makefile index 33596be807d0..251c4a712597 100644 --- a/print/tex-xetex/Makefile +++ b/print/tex-xetex/Makefile @@ -2,7 +2,7 @@ PORTNAME= xetex PORTVERSION= 0.9999 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= print MASTER_SITES= http://people.allbsd.org/~hrs/FreeBSD/:web2c \ ftp://tug.org/historic/systems/texlive/2012/:texmf diff --git a/print/texlive-base/Makefile b/print/texlive-base/Makefile index 50c6d18a489e..c3dae19bc3da 100644 --- a/print/texlive-base/Makefile +++ b/print/texlive-base/Makefile @@ -2,7 +2,7 @@ PORTNAME= texlive PORTVERSION= 20120701 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= print MASTER_SITES= ftp://tug.org/historic/systems/texlive/2012/ PKGNAMESUFFIX= -base diff --git a/print/ttf2pt1/Makefile b/print/ttf2pt1/Makefile index 6f88d0ca2b43..6a2759e420c0 100644 --- a/print/ttf2pt1/Makefile +++ b/print/ttf2pt1/Makefile @@ -3,7 +3,7 @@ PORTNAME= ttf2pt1 PORTVERSION= 3.4.4 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= print MASTER_SITES= SF EXTRACT_SUFX= .tgz diff --git a/print/wprint/Makefile b/print/wprint/Makefile index d21299a3c2a2..7f0709f6236f 100644 --- a/print/wprint/Makefile +++ b/print/wprint/Makefile @@ -3,7 +3,7 @@ PORTNAME= wprint PORTVERSION= 2.05 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= print MASTER_SITES= http://programoj.esperanto.org.uy/angle/ diff --git a/science/flounder/Makefile b/science/flounder/Makefile index 95c4a8058a95..8c86c33bf7d7 100644 --- a/science/flounder/Makefile +++ b/science/flounder/Makefile @@ -3,7 +3,7 @@ PORTNAME= flounder PORTVERSION= 0.40 -PORTREVISION= 17 +PORTREVISION= 18 CATEGORIES= science MASTER_SITES= http://www.enel.ucalgary.ca/People/vigmond/flounder/ EXTRACT_SUFX= .tgz diff --git a/science/gchemutils/Makefile b/science/gchemutils/Makefile index c036a90f6561..b9ce6ebb35b1 100644 --- a/science/gchemutils/Makefile +++ b/science/gchemutils/Makefile @@ -3,6 +3,7 @@ PORTNAME= gchemutils PORTVERSION= 0.14.7 +PORTREVISION= 1 CATEGORIES= science MASTER_SITES= ${MASTER_SITE_SAVANNAH} MASTER_SITE_SUBDIR= ${PORTNAME}/${PORTVERSION:R} diff --git a/science/ghemical/Makefile b/science/ghemical/Makefile index 456b90c98ff1..ff477823c70f 100644 --- a/science/ghemical/Makefile +++ b/science/ghemical/Makefile @@ -3,7 +3,7 @@ PORTNAME= ghemical PORTVERSION= 3.0.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= science MASTER_SITES= http://bioinformatics.org/ghemical/download/release20111012/ \ http://bioinformatics.org/ghemical/download/current diff --git a/science/gwyddion/Makefile b/science/gwyddion/Makefile index d0ff2466631b..83a66100e365 100644 --- a/science/gwyddion/Makefile +++ b/science/gwyddion/Makefile @@ -3,6 +3,7 @@ PORTNAME= gwyddion PORTVERSION= 2.35 +PORTREVISION= 1 CATEGORIES= science graphics MASTER_SITES= SF diff --git a/science/liboglappth/Makefile b/science/liboglappth/Makefile index fac79e751833..36592a0d86a3 100644 --- a/science/liboglappth/Makefile +++ b/science/liboglappth/Makefile @@ -3,6 +3,7 @@ PORTNAME= liboglappth PORTVERSION= 1.0.0 +PORTREVISION= 1 CATEGORIES= science MASTER_SITES= http://bioinformatics.org/ghemical/download/release20111012/ \ http://bioinformatics.org/ghemical/download/current diff --git a/science/linsmith/Makefile b/science/linsmith/Makefile index 355a8ab1809c..5f3720f08bb6 100644 --- a/science/linsmith/Makefile +++ b/science/linsmith/Makefile @@ -3,6 +3,7 @@ PORTNAME= linsmith PORTVERSION= 0.99.26 +PORTREVISION= 1 CATEGORIES= science hamradio MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} diff --git a/science/massxpert/Makefile b/science/massxpert/Makefile index 4d4380f3fc9d..3929de56c8aa 100644 --- a/science/massxpert/Makefile +++ b/science/massxpert/Makefile @@ -3,6 +3,7 @@ PORTNAME= massxpert PORTVERSION= 3.4.0 +PORTREVISION= 1 CATEGORIES= science MASTER_SITES= http://download.tuxfamily.org/massxpert/source/ diff --git a/science/medit/Makefile b/science/medit/Makefile index 42e3de403f12..502a9e1919e2 100644 --- a/science/medit/Makefile +++ b/science/medit/Makefile @@ -3,6 +3,7 @@ PORTNAME= medit PORTVERSION= 2012.02.05 +PORTREVISION= 1 CATEGORIES= science graphics MASTER_SITES= http://www.ann.jussieu.fr/~frey/ftp/archives/ EXTRACT_SUFX= .tgz diff --git a/science/ncs/Makefile b/science/ncs/Makefile index 998ba8c9f97f..fef22449f8f3 100644 --- a/science/ncs/Makefile +++ b/science/ncs/Makefile @@ -3,7 +3,7 @@ PORTNAME= ncs PORTVERSION= 2.0.4 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= science parallel MASTER_SITES= http://research.edf.com/fichiers/fckeditor/Commun/Innovation/logiciels/code_saturne/Releases/ DISTNAME= ${PORTNAME}-${PORTVERSION:S/.//g} diff --git a/science/openbabel/Makefile b/science/openbabel/Makefile index 05b9f18557e4..237f36ad2efd 100644 --- a/science/openbabel/Makefile +++ b/science/openbabel/Makefile @@ -3,6 +3,7 @@ PORTNAME= openbabel PORTVERSION= 2.3.2 +PORTREVISION= 1 CATEGORIES= science MASTER_SITES= SF diff --git a/science/paraview/Makefile b/science/paraview/Makefile index 39374819efee..832343b19ab0 100644 --- a/science/paraview/Makefile +++ b/science/paraview/Makefile @@ -3,6 +3,7 @@ PORTNAME= paraview PORTVERSION= 4.1.0 +PORTREVISION= 1 CATEGORIES= science graphics MASTER_SITES= http://www.paraview.org/files/v${VERMAJORMINOR}/ DISTNAME= ParaView-v${PORTVERSION}-source diff --git a/science/xmakemol/Makefile b/science/xmakemol/Makefile index f8544c64b5b6..7ff51d92a85e 100644 --- a/science/xmakemol/Makefile +++ b/science/xmakemol/Makefile @@ -3,7 +3,7 @@ PORTNAME= xmakemol PORTVERSION= 5.16 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= science MASTER_SITES= SAVANNAH diff --git a/security/clamav/Makefile b/security/clamav/Makefile index 19bddbc46c59..48382f9ad829 100644 --- a/security/clamav/Makefile +++ b/security/clamav/Makefile @@ -3,6 +3,7 @@ PORTNAME= clamav PORTVERSION= 0.98.1 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= SF diff --git a/security/kc/Makefile b/security/kc/Makefile index 3f59fa0e77e8..33beb08e4db3 100644 --- a/security/kc/Makefile +++ b/security/kc/Makefile @@ -3,6 +3,7 @@ PORTNAME= kc PORTVERSION= 2.3.2 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= http://github.com/levaidaniel/${PORTNAME}/archive/${PORTVERSION}.tar.gz?dummy=/ diff --git a/security/lasso/Makefile b/security/lasso/Makefile index 5fa514ea6ff8..a8b281bdf4ba 100644 --- a/security/lasso/Makefile +++ b/security/lasso/Makefile @@ -3,7 +3,7 @@ PORTNAME= lasso PORTVERSION= 2.1.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= security MASTER_SITES= http://labs.libre-entreprise.org/frs/download.php/594/ diff --git a/security/lsh/Makefile b/security/lsh/Makefile index 9dfd3818072b..da6d48078f8b 100644 --- a/security/lsh/Makefile +++ b/security/lsh/Makefile @@ -3,7 +3,7 @@ PORTNAME= lsh PORTVERSION= 2.0.4 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= security ipv6 MASTER_SITES= ${MASTER_SITE_GNUPG} \ ftp://ftp.lysator.liu.se/pub/security/%SUBDIR%/ diff --git a/security/oath-toolkit/Makefile b/security/oath-toolkit/Makefile index b8963af9cbcb..055021bc7ab8 100644 --- a/security/oath-toolkit/Makefile +++ b/security/oath-toolkit/Makefile @@ -3,6 +3,7 @@ PORTNAME= oath-toolkit PORTVERSION= 2.4.0 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= ${MASTER_SITE_SAVANNAH} MASTER_SITE_SUBDIR= ${PORTNAME} diff --git a/security/openconnect/Makefile b/security/openconnect/Makefile index 953723d8d3ac..9841abe13540 100644 --- a/security/openconnect/Makefile +++ b/security/openconnect/Makefile @@ -3,7 +3,7 @@ PORTNAME= openconnect PORTVERSION= 5.03 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= security MASTER_SITES= ftp://ftp.infradead.org/pub/openconnect/ \ http://mirrors.rit.edu/zi/ diff --git a/security/prelude-manager/Makefile b/security/prelude-manager/Makefile index 1b5c8cf4f094..0aed5c93bc97 100644 --- a/security/prelude-manager/Makefile +++ b/security/prelude-manager/Makefile @@ -3,7 +3,7 @@ PORTNAME= prelude-manager PORTVERSION= 1.0.2 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= security MASTER_SITES= https://www.prelude-ids.org/attachments/download/243/ diff --git a/security/pwman/Makefile b/security/pwman/Makefile index 63dc27e28089..18bee566d215 100644 --- a/security/pwman/Makefile +++ b/security/pwman/Makefile @@ -3,13 +3,14 @@ PORTNAME= pwman PORTVERSION= 0.4.0 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} MAINTAINER= anders@FreeBSD.org COMMENT= Console password management application based on gpg(me) -LIB_DEPENDS= xml2.5:${PORTSDIR}/textproc/libxml2 +LIB_DEPENDS= libxml2.so:${PORTSDIR}/textproc/libxml2 RUN_DEPENDS= gpgv:${PORTSDIR}/security/gnupg1 GNU_CONFIGURE= yes diff --git a/security/py-xmlsec/Makefile b/security/py-xmlsec/Makefile index 7152e432b023..cef20e998e17 100644 --- a/security/py-xmlsec/Makefile +++ b/security/py-xmlsec/Makefile @@ -3,7 +3,7 @@ PORTNAME= xmlsec PORTVERSION= 0.3.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= security python MASTER_SITES= http://labs.libre-entreprise.org/frs/download.php/430/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/security/razorback-scriptNugget/Makefile b/security/razorback-scriptNugget/Makefile index 63d731874573..d3d1d63b48ca 100644 --- a/security/razorback-scriptNugget/Makefile +++ b/security/razorback-scriptNugget/Makefile @@ -3,6 +3,7 @@ PORTNAME= scriptNugget PORTVERSION= 0.5.0 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= SF/razorbacktm/Nuggets PKGNAMEPREFIX= razorback- diff --git a/security/sssd/Makefile b/security/sssd/Makefile index d5c4b18ffcf7..6f5165472fb1 100644 --- a/security/sssd/Makefile +++ b/security/sssd/Makefile @@ -3,6 +3,7 @@ PORTNAME= sssd DISTVERSION= 1.9.6 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= https://fedorahosted.org/released/${PORTNAME}/ \ http://mirrors.rit.edu/zi/ diff --git a/security/xmlsec1/Makefile b/security/xmlsec1/Makefile index 980df7f07ce7..f44c602fbb02 100644 --- a/security/xmlsec1/Makefile +++ b/security/xmlsec1/Makefile @@ -3,6 +3,7 @@ PORTNAME= xmlsec1 PORTVERSION= 1.2.19 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= http://www.aleksey.com/xmlsec/download/ \ ftp://ftp.aleksey.com/pub/xmlsec/releases/ \ diff --git a/sysutils/asfsm/Makefile b/sysutils/asfsm/Makefile index 0f3390ff2ede..aecfd4f167ff 100644 --- a/sysutils/asfsm/Makefile +++ b/sysutils/asfsm/Makefile @@ -3,7 +3,7 @@ PORTNAME= asfsm DISTVERSION= 1.0pre15 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= sysutils afterstep MASTER_SITES= AFTERSTEP/apps/asfsm/ \ http://tigr.net/afterstep/download/asfsm/ diff --git a/sysutils/conky/Makefile b/sysutils/conky/Makefile index cc2deb2e3fab..6e748ecec607 100644 --- a/sysutils/conky/Makefile +++ b/sysutils/conky/Makefile @@ -3,7 +3,7 @@ PORTNAME= conky PORTVERSION= 1.9.0 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= sysutils MASTER_SITES= SF diff --git a/sysutils/createrepo/Makefile b/sysutils/createrepo/Makefile index 448d62b013a5..ae842ce5f08a 100644 --- a/sysutils/createrepo/Makefile +++ b/sysutils/createrepo/Makefile @@ -3,6 +3,7 @@ PORTNAME= createrepo PORTVERSION= 0.9.8 +PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= http://createrepo.baseurl.org/download/ diff --git a/sysutils/dunst/Makefile b/sysutils/dunst/Makefile index 4a2db424690c..dcf71078b8d1 100644 --- a/sysutils/dunst/Makefile +++ b/sysutils/dunst/Makefile @@ -3,6 +3,7 @@ PORTNAME= dunst PORTVERSION= 1.0.0 +PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= http://www.knopwob.org/public/dunst-release/ diff --git a/sysutils/fusefs-s3fs/Makefile b/sysutils/fusefs-s3fs/Makefile index 90af1bf72e07..862238601ca4 100644 --- a/sysutils/fusefs-s3fs/Makefile +++ b/sysutils/fusefs-s3fs/Makefile @@ -3,7 +3,7 @@ PORTNAME= s3fs DISTVERSION= 1.71 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= sysutils MASTER_SITES= GOOGLE_CODE PKGNAMEPREFIX= fusefs- diff --git a/sysutils/grub2/Makefile b/sysutils/grub2/Makefile index caf9c6bcdca2..777eecde9ae3 100644 --- a/sysutils/grub2/Makefile +++ b/sysutils/grub2/Makefile @@ -3,7 +3,7 @@ PORTNAME= grub2 PORTVERSION= 2.00 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= sysutils MASTER_SITES= GNU/grub DISTNAME= grub-${PORTVERSION} @@ -45,7 +45,7 @@ EFIEMU= "@comment " PLIST_SUB+= EFIEMU=${EFIEMU} .if ${PORT_OPTIONS:MMKFONT} -LIB_DEPENDS+= freetype.9:${PORTSDIR}/print/freetype2 +LIB_DEPENDS+= libfreetype.so:${PORTSDIR}/print/freetype2 BUILD_DEPENDS+= ${LOCALBASE}/lib/X11/fonts/dejavu/DejaVuSans.ttf:${PORTSDIR}/x11-fonts/dejavu MAN1+= grub-mkfont.1 .else diff --git a/sysutils/gtk-imonc/Makefile b/sysutils/gtk-imonc/Makefile index f4c592310b09..2ebac168b41e 100644 --- a/sysutils/gtk-imonc/Makefile +++ b/sysutils/gtk-imonc/Makefile @@ -3,7 +3,7 @@ PORTNAME= gtk-imonc PORTVERSION= 0.6.4.1 -PORTREVISION= 14 +PORTREVISION= 15 CATEGORIES= sysutils MASTER_SITES= http://stefan-strigler.de/download/ diff --git a/sysutils/heartbeat/Makefile b/sysutils/heartbeat/Makefile index 1a388a463b2f..007d6f0ee1b9 100644 --- a/sysutils/heartbeat/Makefile +++ b/sysutils/heartbeat/Makefile @@ -3,7 +3,7 @@ PORTNAME= heartbeat PORTVERSION= 2.1.4 -PORTREVISION= 20 +PORTREVISION= 21 CATEGORIES= sysutils #MASTER_SITES= http://hg.linux-ha.org/lha-2.1/archive/STABLE-2.1.4.tar.bz2 MASTER_SITES= ${MASTER_SITE_LOCAL} diff --git a/sysutils/istatd/Makefile b/sysutils/istatd/Makefile index 1060dfc5993d..b8a531f34040 100644 --- a/sysutils/istatd/Makefile +++ b/sysutils/istatd/Makefile @@ -3,6 +3,7 @@ PORTNAME= istatd PORTVERSION= 0.5.8 +PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= http://cloud.github.com/downloads/tiwilliam/${PORTNAME}/ diff --git a/sysutils/krename-kde4/Makefile b/sysutils/krename-kde4/Makefile index fda432161a46..43f94ba7d6b2 100644 --- a/sysutils/krename-kde4/Makefile +++ b/sysutils/krename-kde4/Makefile @@ -2,7 +2,7 @@ PORTNAME= krename PORTVERSION= 4.0.9 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= sysutils kde MASTER_SITES= SF/${PORTNAME}/KDE4%20${PORTNAME}-stable/${PORTVERSION} diff --git a/sysutils/lcdproc/Makefile b/sysutils/lcdproc/Makefile index 15b1d5a4663f..4dda9a58c045 100644 --- a/sysutils/lcdproc/Makefile +++ b/sysutils/lcdproc/Makefile @@ -3,6 +3,7 @@ PORTNAME= lcdproc PORTVERSION= 0.5.6 +PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= SF @@ -110,7 +111,7 @@ PLIST_SUB+= USB="@comment " FTDI="@comment " HID="@comment " .endif .if ${PORT_OPTIONS:MFREETYPE} -LIB_DEPENDS+= freetype:${PORTSDIR}/print/freetype2 +LIB_DEPENDS+= libfreetype.so:${PORTSDIR}/print/freetype2 .else CONFIGURE_ARGS+= --disable-freetype .endif diff --git a/sysutils/libfvde/Makefile b/sysutils/libfvde/Makefile index 52747741bbf7..4b199e0d2965 100644 --- a/sysutils/libfvde/Makefile +++ b/sysutils/libfvde/Makefile @@ -3,6 +3,7 @@ PORTNAME= libfvde PORTVERSION= 20130305 +PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= https://googledrive.com/host/0B3fBvzttpiiSLUVJYl9XRWhKSjg/ DISTFILES= ${PORTNAME}-experimental-${PORTVERSION}${EXTRACT_SUFX} diff --git a/sysutils/lire/Makefile b/sysutils/lire/Makefile index f2f565c79bf3..fd7dc598846e 100644 --- a/sysutils/lire/Makefile +++ b/sysutils/lire/Makefile @@ -9,7 +9,7 @@ PORTNAME= lire PORTVERSION= 2.1 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= sysutils MASTER_SITES= http://download.logreport.org/pub/ diff --git a/sysutils/mate-control-center/Makefile b/sysutils/mate-control-center/Makefile index 916e0c5e7981..44de56a04b4c 100644 --- a/sysutils/mate-control-center/Makefile +++ b/sysutils/mate-control-center/Makefile @@ -3,7 +3,7 @@ PORTNAME= mate-control-center PORTVERSION= 1.6.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= sysutils mate MASTER_SITES= MATE DIST_SUBDIR= mate diff --git a/sysutils/mate-system-monitor/Makefile b/sysutils/mate-system-monitor/Makefile index 831e9f1e0e60..1e409dd86b8a 100644 --- a/sysutils/mate-system-monitor/Makefile +++ b/sysutils/mate-system-monitor/Makefile @@ -3,6 +3,7 @@ PORTNAME= mate-system-monitor PORTVERSION= 1.6.1 +PORTREVISION= 1 CATEGORIES= sysutils mate MASTER_SITES= MATE DIST_SUBDIR= mate diff --git a/sysutils/moreutils/Makefile b/sysutils/moreutils/Makefile index f7b092af9a62..ab4c786e79de 100644 --- a/sysutils/moreutils/Makefile +++ b/sysutils/moreutils/Makefile @@ -3,6 +3,7 @@ PORTNAME= moreutils PORTVERSION= 0.51 +PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= DEBIAN_POOL DISTNAME= ${PORTNAME}_${PORTVERSION} diff --git a/sysutils/nitrogen/Makefile b/sysutils/nitrogen/Makefile index 0a745971c9e9..8cd6f9d17b84 100644 --- a/sysutils/nitrogen/Makefile +++ b/sysutils/nitrogen/Makefile @@ -3,7 +3,7 @@ PORTNAME= nitrogen PORTVERSION= 1.5.2 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= sysutils MASTER_SITES= http://projects.l3ib.org/nitrogen/files/ diff --git a/sysutils/pam_mount/Makefile b/sysutils/pam_mount/Makefile index 414d61354661..d371b344eb48 100644 --- a/sysutils/pam_mount/Makefile +++ b/sysutils/pam_mount/Makefile @@ -3,6 +3,7 @@ PORTNAME= pam_mount PORTVERSION= 2.12 +PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= SF/${PORTNAME:S/_/-/}/${PORTNAME}/${PORTVERSION}/ diff --git a/sysutils/xbatt/Makefile b/sysutils/xbatt/Makefile index 1b8b07126f24..2fa625033852 100644 --- a/sysutils/xbatt/Makefile +++ b/sysutils/xbatt/Makefile @@ -3,7 +3,7 @@ PORTNAME= xbatt PORTVERSION= 1.2.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= sysutils MASTER_SITES= http://www.clave.gr.jp/~eto/xbatt/ diff --git a/sysutils/xcpustate/Makefile b/sysutils/xcpustate/Makefile index e9d33033870a..46b45b6eee9c 100644 --- a/sysutils/xcpustate/Makefile +++ b/sysutils/xcpustate/Makefile @@ -3,7 +3,7 @@ PORTNAME= xcpustate PORTVERSION= 2.9 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= sysutils MASTER_SITES= http://ftp.cs.toronto.edu/pub/jdd/xcpustate/ EXTRACT_SUFX= .shar diff --git a/sysutils/xdu/Makefile b/sysutils/xdu/Makefile index 0ca0fcb4cb8c..9b94c938cb64 100644 --- a/sysutils/xdu/Makefile +++ b/sysutils/xdu/Makefile @@ -3,7 +3,7 @@ PORTNAME= xdu PORTVERSION= 3.0 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= sysutils MASTER_SITES= http://sd.wareonearth.com/~phil/xdu/ EXTRACT_SUFX= .tar.Z diff --git a/sysutils/xsi/Makefile b/sysutils/xsi/Makefile index acbba7b76df9..f72ca3409b0f 100644 --- a/sysutils/xsi/Makefile +++ b/sysutils/xsi/Makefile @@ -3,6 +3,7 @@ PORTNAME= xsi PORTVERSION= 1.0.b2 +PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= SF/xmlsysinfo/xmlsysinfo/1.0-beta2/ DISTNAME= ${PORTNAME}-1.0-beta2 @@ -10,8 +11,7 @@ DISTNAME= ${PORTNAME}-1.0-beta2 MAINTAINER= ports@FreeBSD.org COMMENT= System monitor that provides XML encoded stats -LIB_DEPENDS= xml2.5:${PORTSDIR}/textproc/libxml2 - +USE_GNOME= libxml2 GNU_CONFIGURE= yes CONFIGURE_ARGS+= --enable-user=_xsi diff --git a/textproc/R-cran-XML/Makefile b/textproc/R-cran-XML/Makefile index dd78dc3f7eee..3f1e5ef26d54 100644 --- a/textproc/R-cran-XML/Makefile +++ b/textproc/R-cran-XML/Makefile @@ -3,7 +3,7 @@ PORTNAME= XML DISTVERSION= 3.98-1.1 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= textproc DISTNAME= ${PORTNAME}_${DISTVERSION} diff --git a/textproc/apertium/Makefile b/textproc/apertium/Makefile index 929b3777af8c..4104052a9110 100644 --- a/textproc/apertium/Makefile +++ b/textproc/apertium/Makefile @@ -3,7 +3,7 @@ PORTNAME= apertium PORTVERSION= ${APVER}.${APREV} -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= textproc MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${APVER} diff --git a/textproc/augeas/Makefile b/textproc/augeas/Makefile index 667bf8e88aeb..3c35b84df2ca 100644 --- a/textproc/augeas/Makefile +++ b/textproc/augeas/Makefile @@ -3,6 +3,7 @@ PORTNAME= augeas PORTVERSION= 1.2.0 +PORTREVISION= 1 CATEGORIES= textproc MASTER_SITES= http://download.augeas.net/ diff --git a/textproc/diffmark/Makefile b/textproc/diffmark/Makefile index 9cb3fd76c0d4..d133e0cfc6b6 100644 --- a/textproc/diffmark/Makefile +++ b/textproc/diffmark/Makefile @@ -3,6 +3,7 @@ PORTNAME= diffmark PORTVERSION= 0.10 +PORTREVISION= 1 CATEGORIES= textproc MASTER_SITES= http://www.mangrove.cz/diffmark/ \ http://penguin.cz/~vbarta/diffmark/ diff --git a/textproc/ebook-tools/Makefile b/textproc/ebook-tools/Makefile index 613a19687b49..2e654adfe3ee 100644 --- a/textproc/ebook-tools/Makefile +++ b/textproc/ebook-tools/Makefile @@ -3,6 +3,7 @@ PORTNAME= ebook-tools PORTVERSION= 0.2.2 +PORTREVISION= 1 CATEGORIES= textproc kde MASTER_SITES= SF diff --git a/textproc/ecromedos/Makefile b/textproc/ecromedos/Makefile index 8e44f2a9bda7..9708da0ebc10 100644 --- a/textproc/ecromedos/Makefile +++ b/textproc/ecromedos/Makefile @@ -3,7 +3,7 @@ PORTNAME= ecromedos PORTVERSION= 1.0.1 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= textproc print www MASTER_SITES= http://www.ecromedos.net/files/${PORTVERSION}/ @@ -13,12 +13,11 @@ COMMENT= A document preparation system that allows concurrent publication RUN_DEPENDS= convert:${PORTSDIR}/graphics/ImageMagick \ ${PYTHON_SITELIBDIR}/libxml2.py:${PORTSDIR}/textproc/py-libxml2 \ ${PYTHON_SITELIBDIR}/libxslt.py:${PORTSDIR}/textproc/py-libxslt -LIB_DEPENDS= libxml2.so.5:${PORTSDIR}/textproc/libxml2 \ - libxslt.so.2:${PORTSDIR}/textproc/libxslt NO_BUILD= yes USE_PYTHON= yes USE_TEX= latex +USE_GNOME= libxml2 libxslt OPTIONS_DEFINE= DOCS diff --git a/textproc/exmpp/Makefile b/textproc/exmpp/Makefile index acd9f4968ef4..618ad89ae19f 100644 --- a/textproc/exmpp/Makefile +++ b/textproc/exmpp/Makefile @@ -3,6 +3,7 @@ PORTNAME= exmpp PORTVERSION= 0.9.7 +PORTREVISION= 1 CATEGORIES= textproc net-im MASTER_SITES= http://download.process-one.net/${PORTNAME}/ EXTRACT_SUFX= .tgz @@ -13,7 +14,7 @@ COMMENT= Fast and scalable library for XMPP written in Erlang/OTP BUILD_DEPENDS= erlc:${PORTSDIR}/lang/erlang RUN_DEPENDS= erl:${PORTSDIR}/lang/erlang LIB_DEPENDS= expat.6:${PORTSDIR}/textproc/expat2 \ - xml2.5:${PORTSDIR}/textproc/libxml2 + libxml2.so:${PORTSDIR}/textproc/libxml2 GNU_CONFIGURE= yes CONFIGURE_ARGS+= --enable-static=yes \ diff --git a/textproc/gdome2/Makefile b/textproc/gdome2/Makefile index 4e493ab58980..3c8df0791ad0 100644 --- a/textproc/gdome2/Makefile +++ b/textproc/gdome2/Makefile @@ -3,7 +3,7 @@ PORTNAME= gdome2 PORTVERSION= 0.8.1 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= textproc MASTER_SITES= http://gdome2.cs.unibo.it/tarball/ diff --git a/textproc/gmetadom/Makefile b/textproc/gmetadom/Makefile index f847f6a33808..09541ece0a83 100644 --- a/textproc/gmetadom/Makefile +++ b/textproc/gmetadom/Makefile @@ -3,6 +3,7 @@ PORTNAME= gmetadom PORTVERSION= 0.2.6 +PORTREVISION= 1 CATEGORIES= textproc MASTER_SITES= SF diff --git a/textproc/gnome-doc-utils/Makefile b/textproc/gnome-doc-utils/Makefile index d468e783157b..a6b584dc196d 100644 --- a/textproc/gnome-doc-utils/Makefile +++ b/textproc/gnome-doc-utils/Makefile @@ -4,7 +4,7 @@ PORTNAME= gnome-doc-utils PORTVERSION= 0.20.10 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= textproc gnome MASTER_SITES= GNOME diff --git a/textproc/hs-libxml/Makefile b/textproc/hs-libxml/Makefile index 779ecfce0fec..c52cce9e987c 100644 --- a/textproc/hs-libxml/Makefile +++ b/textproc/hs-libxml/Makefile @@ -2,7 +2,7 @@ PORTNAME= libxml PORTVERSION= 0.1.1 -PORTREVISION= 12 +PORTREVISION= 13 CATEGORIES= textproc haskell MAINTAINER= haskell@FreeBSD.org diff --git a/textproc/itstool/Makefile b/textproc/itstool/Makefile index 0a68e0f458a9..cbcb7e5790de 100644 --- a/textproc/itstool/Makefile +++ b/textproc/itstool/Makefile @@ -3,6 +3,7 @@ PORTNAME= itstool PORTVERSION= 2.0.2 +PORTREVISION= 1 CATEGORIES= textproc MASTER_SITES= http://files.itstool.org/itstool/ diff --git a/textproc/libcroco/Makefile b/textproc/libcroco/Makefile index 1f517d63fea3..8be5829e85dc 100644 --- a/textproc/libcroco/Makefile +++ b/textproc/libcroco/Makefile @@ -3,6 +3,7 @@ PORTNAME= libcroco PORTVERSION= 0.6.8 +PORTREVISION= 1 CATEGORIES= textproc gnome MASTER_SITES= GNOME diff --git a/textproc/liblingoteach/Makefile b/textproc/liblingoteach/Makefile index 91cacdadc82d..aa5f2fd25629 100644 --- a/textproc/liblingoteach/Makefile +++ b/textproc/liblingoteach/Makefile @@ -2,7 +2,7 @@ PORTNAME= liblingoteach PORTVERSION= 0.2.1 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= textproc MASTER_SITES= SF/lingoteach/OldFiles diff --git a/textproc/liblrdf/Makefile b/textproc/liblrdf/Makefile index e406d5a75b07..a20a88363cf3 100644 --- a/textproc/liblrdf/Makefile +++ b/textproc/liblrdf/Makefile @@ -3,7 +3,7 @@ PORTNAME= liblrdf PORTVERSION= 0.5.0 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= textproc MASTER_SITES= GENTOO/distfiles diff --git a/textproc/libtranslate/Makefile b/textproc/libtranslate/Makefile index 5e1604e2abc2..59e562ad89da 100644 --- a/textproc/libtranslate/Makefile +++ b/textproc/libtranslate/Makefile @@ -3,7 +3,7 @@ PORTNAME= libtranslate PORTVERSION= 0.99 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= textproc MASTER_SITES= ${MASTER_SITE_SAVANNAH} MASTER_SITE_SUBDIR= ${PORTNAME} diff --git a/textproc/libxml++26/Makefile b/textproc/libxml++26/Makefile index 6bfc9b19209e..69ec14deeb53 100644 --- a/textproc/libxml++26/Makefile +++ b/textproc/libxml++26/Makefile @@ -4,7 +4,7 @@ PORTNAME= libxml++ PORTVERSION= 2.34.2 -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES= textproc MASTER_SITES= GNOME diff --git a/textproc/libxml2/Makefile b/textproc/libxml2/Makefile index 4c737118242f..2159c33e732f 100644 --- a/textproc/libxml2/Makefile +++ b/textproc/libxml2/Makefile @@ -4,7 +4,7 @@ PORTNAME= libxml2 PORTVERSION= 2.8.0 -PORTREVISION?= 3 +PORTREVISION?= 4 CATEGORIES?= textproc gnome MASTER_SITES= ftp://xmlsoft.org/libxml2/ \ http://xmlsoft.org/sources/ \ @@ -17,7 +17,7 @@ COMMENT?= XML parser library for GNOME .if !defined(REFERENCE_PORT) USE_CSTD= gnu89 GNU_CONFIGURE= yes -USES= pathfix gmake iconv pkgconfig +USES= gmake iconv libtool pathfix pkgconfig USE_LDCONFIG= yes CONFIGURE_ARGS?=--with-iconv=${ICONV_PREFIX} \ --with-html-dir=${PREFIX}/share/doc \ @@ -25,6 +25,9 @@ CONFIGURE_ARGS?=--with-iconv=${ICONV_PREFIX} \ --with-lzma=/usr \ --without-python +LIBVERSION= ${PORTVERSION} +PLIST_SUB+= LIBVERSION=${LIBVERSION} + .if !defined(MASTERDIR) OPTIONS_DEFINE= SCHEMA THREADS MEM_DEBUG XMLLINT_HIST THREAD_ALLOC OPTIONS_DEFAULT=SCHEMA THREADS @@ -60,6 +63,11 @@ post-patch: -e 's|freebsd\[123\]\*)|freebsd[123].*)|g' \$$0; \ touch -mt \$$mtime \$$0" {} \; || /usr/bin/true +.if !defined(MASTERDIR) +post-install: + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libxml2.so.${LIBVERSION} +.endif # !defined(MASTERDIR) + .include <bsd.port.mk> .endif diff --git a/textproc/libxml2/files/patch-Makefile.in b/textproc/libxml2/files/patch-Makefile.in index df4c9761dc52..932138ebe2f9 100644 --- a/textproc/libxml2/files/patch-Makefile.in +++ b/textproc/libxml2/files/patch-Makefile.in @@ -11,15 +11,6 @@ DIST_SUBDIRS = include . doc example python xstc INCLUDES = -I$(top_builddir)/include -I@srcdir@/include @THREAD_CFLAGS@ @Z_CFLAGS@ @LZMA_CFLAGS@ bin_SCRIPTS = xml2-config -@@ -596,7 +596,7 @@ - @USE_VERSION_SCRIPT_TRUE@LIBXML2_VERSION_SCRIPT = $(VERSION_SCRIPT_FLAGS)$(srcdir)/libxml2.syms - libxml2_la_LDFLAGS = @CYGWIN_EXTRA_LDFLAGS@ @WIN32_EXTRA_LDFLAGS@ \ - $(LIBXML2_VERSION_SCRIPT) \ -- -version-info @LIBXML_VERSION_INFO@ \ -+ -version-info 5:0:0 \ - @MODULE_PLATFORM_LIBS@ - - @WITH_TRIO_SOURCES_FALSE@libxml2_la_SOURCES = SAX.c entities.c encoding.c error.c parserInternals.c \ @@ -712,7 +712,7 @@ runxmlconf_DEPENDENCIES = $(DEPS) runxmlconf_LDADD = $(LDADDS) diff --git a/textproc/libxml2/pkg-plist b/textproc/libxml2/pkg-plist index 2d2d90bd6965..f3793da5a9bd 100644 --- a/textproc/libxml2/pkg-plist +++ b/textproc/libxml2/pkg-plist @@ -52,7 +52,8 @@ include/libxml2/libxml/xpointer.h lib/libxml2.a lib/libxml2.la lib/libxml2.so -lib/libxml2.so.5 +lib/libxml2.so.2 +lib/libxml2.so.%%LIBVERSION%% libdata/pkgconfig/libxml-2.0.pc share/aclocal/libxml.m4 man/man1/xml2-config.1.gz diff --git a/textproc/lttoolbox/Makefile b/textproc/lttoolbox/Makefile index dd39e2c984b9..fd0c335e18ee 100644 --- a/textproc/lttoolbox/Makefile +++ b/textproc/lttoolbox/Makefile @@ -3,13 +3,14 @@ PORTNAME= lttoolbox PORTVERSION= ${APVER}.${APREV} +PORTREVISION= 1 CATEGORIES= textproc MASTER_SITES= SF/apertium/${PORTNAME}/${APVER} MAINTAINER= i@levsha.me COMMENT= A tool for lexical, morphological analysis and generation of words -LIB_DEPENDS= xml2:${PORTSDIR}/textproc/libxml2 +LIB_DEPENDS= libxml2.so:${PORTSDIR}/textproc/libxml2 APVER= 3.2 APREV= 0 diff --git a/textproc/mate-doc-utils/Makefile b/textproc/mate-doc-utils/Makefile index 1e22d9d08893..6de4f9020ac6 100644 --- a/textproc/mate-doc-utils/Makefile +++ b/textproc/mate-doc-utils/Makefile @@ -3,7 +3,7 @@ PORTNAME= mate-doc-utils PORTVERSION= 1.6.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= textproc mate MASTER_SITES= MATE DIST_SUBDIR= mate diff --git a/textproc/ots/Makefile b/textproc/ots/Makefile index 8eacb73318f6..0cf961bf6f9e 100644 --- a/textproc/ots/Makefile +++ b/textproc/ots/Makefile @@ -3,7 +3,7 @@ PORTNAME= ots PORTVERSION= 0.5.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= textproc MASTER_SITES= SF/lib${PORTNAME}/lib${PORTNAME}/${PORTNAME}-${PORTVERSION} diff --git a/textproc/p5-XML-CanonicalizeXML/Makefile b/textproc/p5-XML-CanonicalizeXML/Makefile index 0d9d0e424a58..1722cec1cc90 100644 --- a/textproc/p5-XML-CanonicalizeXML/Makefile +++ b/textproc/p5-XML-CanonicalizeXML/Makefile @@ -3,6 +3,7 @@ PORTNAME= XML-CanonicalizeXML PORTVERSION= 0.03 +PORTREVISION= 1 CATEGORIES= textproc perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= XML diff --git a/textproc/p5-XML-LibXML/Makefile b/textproc/p5-XML-LibXML/Makefile index b8b867b87bfd..9ccdce4571b6 100644 --- a/textproc/p5-XML-LibXML/Makefile +++ b/textproc/p5-XML-LibXML/Makefile @@ -3,6 +3,7 @@ PORTNAME= XML-LibXML PORTVERSION= 2.0108 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= textproc perl5 MASTER_SITES= CPAN diff --git a/textproc/p5-XML-LibXSLT/Makefile b/textproc/p5-XML-LibXSLT/Makefile index e2d0b0c45371..9c4fa7857ee6 100644 --- a/textproc/p5-XML-LibXSLT/Makefile +++ b/textproc/p5-XML-LibXSLT/Makefile @@ -3,6 +3,7 @@ PORTNAME= XML-LibXSLT PORTVERSION= 1.88 +PORTREVISION= 1 CATEGORIES= textproc perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- diff --git a/textproc/pure-xml/Makefile b/textproc/pure-xml/Makefile index 2ae16deaa34e..54645c67fadd 100644 --- a/textproc/pure-xml/Makefile +++ b/textproc/pure-xml/Makefile @@ -3,7 +3,7 @@ PORTNAME= pure-xml PORTVERSION= 0.6 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= textproc MASTER_SITES= https://cdn.bitbucket.org/purelang/pure-lang/downloads/ DIST_SUBDIR= pure diff --git a/textproc/py-libxml2/Makefile b/textproc/py-libxml2/Makefile index 987b88c63dcb..2022fac33493 100644 --- a/textproc/py-libxml2/Makefile +++ b/textproc/py-libxml2/Makefile @@ -1,7 +1,7 @@ # Created by: Alexander Nedotsukov <bland@FreeBSD.org> # $FreeBSD$ -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= textproc gnome python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/textproc/py-pyx12/Makefile b/textproc/py-pyx12/Makefile index 790c87d24d71..5ac9fafd110d 100644 --- a/textproc/py-pyx12/Makefile +++ b/textproc/py-pyx12/Makefile @@ -3,6 +3,7 @@ PORTNAME= pyx12 PORTVERSION= 1.5.0 +PORTREVISION= 1 CATEGORIES= textproc python MASTER_SITES= SF PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/textproc/raptor/Makefile b/textproc/raptor/Makefile index 3b1c8fd15cbb..d008b55dc826 100644 --- a/textproc/raptor/Makefile +++ b/textproc/raptor/Makefile @@ -3,7 +3,7 @@ PORTNAME= raptor PORTVERSION= 1.4.21 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= textproc MASTER_SITES= SF/librdf/${PORTNAME}/${PORTVERSION} \ http://download.librdf.org/source/ diff --git a/textproc/raptor2/Makefile b/textproc/raptor2/Makefile index dcb328e37a37..44ce97a012cb 100644 --- a/textproc/raptor2/Makefile +++ b/textproc/raptor2/Makefile @@ -3,7 +3,7 @@ PORTNAME= raptor2 PORTVERSION= 2.0.13 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= textproc MASTER_SITES= http://download.librdf.org/source/ \ SF/librdf/${PORTNAME}/${PORTVERSION} diff --git a/textproc/rubygem-augeas/Makefile b/textproc/rubygem-augeas/Makefile index b8fe09843647..06f30ecec541 100644 --- a/textproc/rubygem-augeas/Makefile +++ b/textproc/rubygem-augeas/Makefile @@ -3,6 +3,7 @@ PORTNAME= ruby-augeas PORTVERSION= 0.5.0 +PORTREVISION= 1 CATEGORIES= textproc rubygems MASTER_SITES= http://download.augeas.net/ruby/ diff --git a/textproc/rubygem-libxml-ruby/Makefile b/textproc/rubygem-libxml-ruby/Makefile index 53b61c935609..a1caa689d172 100644 --- a/textproc/rubygem-libxml-ruby/Makefile +++ b/textproc/rubygem-libxml-ruby/Makefile @@ -3,6 +3,7 @@ PORTNAME= libxml-ruby PORTVERSION= 2.6.0 +PORTREVISION= 1 CATEGORIES= textproc rubygems MASTER_SITES= RG diff --git a/textproc/rubygem-nokogiri/Makefile b/textproc/rubygem-nokogiri/Makefile index e02cd0dd980f..b5e491ddd795 100644 --- a/textproc/rubygem-nokogiri/Makefile +++ b/textproc/rubygem-nokogiri/Makefile @@ -2,7 +2,7 @@ PORTNAME= nokogiri PORTVERSION= 1.6.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= textproc rubygems MASTER_SITES= RG diff --git a/textproc/scim-kmfl-imengine/Makefile b/textproc/scim-kmfl-imengine/Makefile index 9d74f2da3741..b6ac24464a3c 100644 --- a/textproc/scim-kmfl-imengine/Makefile +++ b/textproc/scim-kmfl-imengine/Makefile @@ -3,7 +3,7 @@ PORTNAME= scim-kmfl-imengine PORTVERSION= 0.9.9 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= textproc MASTER_SITES= SF/kmfl/kmfl/${PORTVERSION} \ http://anthesphoria.net/FreeBSD/ports/distfiles/${DIST_SUBDIR}/ @@ -14,7 +14,7 @@ COMMENT= SCIM KMFL IMEngine platform for Keyman (KMN) language keyboards BUILD_DEPENDS= scim:${PORTSDIR}/textproc/scim LIB_DEPENDS= fontconfig.1:${PORTSDIR}/x11-fonts/fontconfig \ - freetype.9:${PORTSDIR}/print/freetype2 \ + libfreetype.so:${PORTSDIR}/print/freetype2 \ kmfl.0:${PORTSDIR}/textproc/libkmfl \ kmflcomp.0:${PORTSDIR}/textproc/kmflcomp \ png15:${PORTSDIR}/graphics/png diff --git a/textproc/ssddiff/Makefile b/textproc/ssddiff/Makefile index 2c8db5620eb8..be8922aa50aa 100644 --- a/textproc/ssddiff/Makefile +++ b/textproc/ssddiff/Makefile @@ -3,7 +3,7 @@ PORTNAME= ssddiff PORTVERSION= 0.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= textproc MASTER_SITES= http://alioth.debian.org/frs/download.php/1469/ diff --git a/textproc/xml2/Makefile b/textproc/xml2/Makefile index 64d81c68f8d7..ee4c8c77e792 100644 --- a/textproc/xml2/Makefile +++ b/textproc/xml2/Makefile @@ -3,6 +3,7 @@ PORTNAME= xml2 PORTVERSION= 0.5 +PORTREVISION= 1 CATEGORIES= textproc MASTER_SITES= http://download.ofb.net/gale/ \ http://www.it.ca/~paul/src/ diff --git a/textproc/xmlroff/Makefile b/textproc/xmlroff/Makefile index c3f92fb1eb58..fc61cea77d42 100644 --- a/textproc/xmlroff/Makefile +++ b/textproc/xmlroff/Makefile @@ -3,7 +3,7 @@ PORTNAME= xmlroff PORTVERSION= 0.6.2 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= textproc MASTER_SITES= http://xmlroff.org/download/ diff --git a/textproc/xmlto/Makefile b/textproc/xmlto/Makefile index b557fa9036d4..bea79418edef 100644 --- a/textproc/xmlto/Makefile +++ b/textproc/xmlto/Makefile @@ -3,6 +3,7 @@ PORTNAME= xmlto PORTVERSION= 0.0.26 +PORTREVISION= 1 CATEGORIES= textproc MASTER_SITES= https://fedorahosted.org/releases/x/m/xmlto/:xmlto \ LOCAL/mandree/:xmlto \ diff --git a/textproc/xmlwrapp/Makefile b/textproc/xmlwrapp/Makefile index 4200ffc99084..f5eff02db566 100644 --- a/textproc/xmlwrapp/Makefile +++ b/textproc/xmlwrapp/Makefile @@ -3,7 +3,7 @@ PORTNAME= xmlwrapp PORTVERSION= 0.7.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= textproc MASTER_SITES= SF diff --git a/textproc/yelp-tools/Makefile b/textproc/yelp-tools/Makefile index bfae828b2015..5251457cfd0f 100644 --- a/textproc/yelp-tools/Makefile +++ b/textproc/yelp-tools/Makefile @@ -4,6 +4,7 @@ PORTNAME= yelp-tools PORTVERSION= 3.6.1 +PORTREVISION= 1 CATEGORIES= textproc gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome3 diff --git a/textproc/yelp-xsl/Makefile b/textproc/yelp-xsl/Makefile index a9c53bef11f8..62e90eef0fe7 100644 --- a/textproc/yelp-xsl/Makefile +++ b/textproc/yelp-xsl/Makefile @@ -4,6 +4,7 @@ PORTNAME= yelp-xsl PORTVERSION= 3.6.1 +PORTREVISION= 1 CATEGORIES= textproc gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome3 diff --git a/textproc/zorba/Makefile b/textproc/zorba/Makefile index a9138afc1fcc..c864fbff8c9f 100644 --- a/textproc/zorba/Makefile +++ b/textproc/zorba/Makefile @@ -3,7 +3,7 @@ PORTNAME= zorba PORTVERSION= 2.7.0 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= textproc MASTER_SITES= https://launchpadlibrarian.net/119058962/ DISTNAME= ${PORTNAME}-src-${PORTVERSION} diff --git a/www/apache24/Makefile b/www/apache24/Makefile index b69eee48bb4d..36e1c3f095bc 100644 --- a/www/apache24/Makefile +++ b/www/apache24/Makefile @@ -2,7 +2,7 @@ PORTNAME= apache24 PORTVERSION= 2.4.9 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www ipv6 MASTER_SITES= ${MASTER_SITE_APACHE_HTTPD} DISTNAME= httpd-${PORTVERSION} diff --git a/www/aria2/Makefile b/www/aria2/Makefile index 4ef30108f242..9cf4bdcf6ed2 100644 --- a/www/aria2/Makefile +++ b/www/aria2/Makefile @@ -3,6 +3,7 @@ PORTNAME= aria2 PORTVERSION= 1.18.5 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= SF/${PORTNAME}/stable/${PORTNAME}-${PORTVERSION} diff --git a/www/bookmarkbridge/Makefile b/www/bookmarkbridge/Makefile index 716a4b8e5d62..09ce6dbfebc1 100644 --- a/www/bookmarkbridge/Makefile +++ b/www/bookmarkbridge/Makefile @@ -3,7 +3,7 @@ PORTNAME= bookmarkbridge PORTVERSION= 0.76 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= www MASTER_SITES= SF diff --git a/www/castget/Makefile b/www/castget/Makefile index 9ce5120f9a24..cf26f08d52e0 100644 --- a/www/castget/Makefile +++ b/www/castget/Makefile @@ -3,7 +3,7 @@ PORTNAME= castget PORTVERSION= 1.0.1 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= www MASTER_SITES= SAVANNAH CENKES diff --git a/www/chimera/Makefile b/www/chimera/Makefile index 9cd9b9f77f2c..bfa22e029ed5 100644 --- a/www/chimera/Makefile +++ b/www/chimera/Makefile @@ -3,7 +3,7 @@ PORTNAME= chimera PORTVERSION= 1.70p0 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= www MASTER_SITES= http://www.rocklinux.net/people/ripclaw/projects/software/chimera/devel/ diff --git a/www/chromium/Makefile b/www/chromium/Makefile index 070a31dc54dc..7aea01e35e9f 100644 --- a/www/chromium/Makefile +++ b/www/chromium/Makefile @@ -5,6 +5,7 @@ PORTNAME= chromium PORTVERSION= 33.0.1750.152 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= http://commondatastorage.googleapis.com/chromium-browser-official/ DISTFILES= ${DISTNAME}${EXTRACT_SUFX} diff --git a/www/cssed/Makefile b/www/cssed/Makefile index 1fd7e1553035..9fce323b1a41 100644 --- a/www/cssed/Makefile +++ b/www/cssed/Makefile @@ -3,7 +3,7 @@ PORTNAME= cssed PORTVERSION= 0.4.0 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= www MASTER_SITES= SF diff --git a/www/flickcurl/Makefile b/www/flickcurl/Makefile index 3a2ca28e0399..651a2e0b4bd0 100644 --- a/www/flickcurl/Makefile +++ b/www/flickcurl/Makefile @@ -3,7 +3,7 @@ PORTNAME= flickcurl PORTVERSION= 1.25 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www MASTER_SITES= http://download.dajobe.org/flickcurl/ diff --git a/www/kannel/Makefile b/www/kannel/Makefile index 73967428ae95..32bdbd7bcf97 100644 --- a/www/kannel/Makefile +++ b/www/kannel/Makefile @@ -3,7 +3,7 @@ PORTNAME= kannel PORTVERSION= 1.5.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= www MASTER_SITES= http://www.kannel.org/download/${PORTVERSION}/ MASTER_SITE_SUBDIR= ${PORTVERSION} diff --git a/www/kdewebdev4/Makefile b/www/kdewebdev4/Makefile index d14d9103f97b..97b1c30c7a0b 100644 --- a/www/kdewebdev4/Makefile +++ b/www/kdewebdev4/Makefile @@ -3,6 +3,7 @@ PORTNAME= kdewebdev PORTVERSION= ${KDE4_VERSION} +PORTREVISION= 1 CATEGORIES= www kde MASTER_SITES= KDE/${KDE4_BRANCH}/${PORTVERSION}/src DIST_SUBDIR= KDE/${PORTVERSION} diff --git a/www/lighttpd/Makefile b/www/lighttpd/Makefile index d18a28bbb688..1aabb97c4638 100644 --- a/www/lighttpd/Makefile +++ b/www/lighttpd/Makefile @@ -3,6 +3,7 @@ PORTNAME?= lighttpd PORTVERSION= 1.4.35 +PORTREVISION= 1 CATEGORIES?= www MASTER_SITES?= http://download.lighttpd.net/lighttpd/releases-1.4.x/ diff --git a/www/links-hacked/Makefile b/www/links-hacked/Makefile index f54fbec59604..5a12d9f37ed2 100644 --- a/www/links-hacked/Makefile +++ b/www/links-hacked/Makefile @@ -3,7 +3,7 @@ PORTNAME= links-hacked DISTVERSION= 101110 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES?= www MASTER_SITES= http://xray.sai.msu.ru/~karpov/links-hacked/downloads/ http://links-hacked.nm.ru/ @@ -73,7 +73,7 @@ CONFIGURE_ARGS+= --without-x .endif .if ${PORT_OPTIONS:MFREETYPE} -LIB_DEPENDS+= freetype.9:${PORTSDIR}/print/freetype2 +LIB_DEPENDS+= libfreetype.so:${PORTSDIR}/print/freetype2 CONFIGURE_ARGS+= --with-freetype .else CONFIGURE_ARGS+= --without-freetype diff --git a/www/midori/Makefile b/www/midori/Makefile index 316661ffd084..a36bb33e2605 100644 --- a/www/midori/Makefile +++ b/www/midori/Makefile @@ -3,6 +3,7 @@ PORTNAME= midori PORTVERSION= 0.5.8 +PORTREVISION= 1 CATEGORIES= www xfce MASTER_SITES= http://www.midori-browser.org/downloads/ DISTNAME= ${PORTNAME}_${PORTVERSION}_all_ diff --git a/www/mod_authnz_crowd/Makefile b/www/mod_authnz_crowd/Makefile index c0c1d01f86b9..dd3978981a8e 100644 --- a/www/mod_authnz_crowd/Makefile +++ b/www/mod_authnz_crowd/Makefile @@ -3,6 +3,7 @@ PORTNAME= mod_authnz_crowd PORTVERSION= 2.2.2 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= http://downloads.atlassian.com/software/crowd/downloads/cwdapache/ DIST_SUBDIR= apache2 diff --git a/www/mod_proxy_html/Makefile b/www/mod_proxy_html/Makefile index da699de1a61a..96be3d431730 100644 --- a/www/mod_proxy_html/Makefile +++ b/www/mod_proxy_html/Makefile @@ -3,7 +3,7 @@ PORTNAME= mod_proxy_html PORTVERSION= 3.1.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www MASTER_SITES= http://apache.webthing.com/${PORTNAME}/ DISTNAME= ${PORTNAME} diff --git a/www/mod_proxy_xml/Makefile b/www/mod_proxy_xml/Makefile index c7b2d259b8c5..c66ecfbba610 100644 --- a/www/mod_proxy_xml/Makefile +++ b/www/mod_proxy_xml/Makefile @@ -3,7 +3,7 @@ PORTNAME= mod_proxy_xml PORTVERSION= 0.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www MASTER_SITES= http://apache.webthing.com/svn/apache/filters/xmlns/ PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX} diff --git a/www/mod_security/Makefile b/www/mod_security/Makefile index 4fd840b2acfa..bd0277ef8180 100644 --- a/www/mod_security/Makefile +++ b/www/mod_security/Makefile @@ -2,6 +2,7 @@ PORTNAME= mod_security PORTVERSION= 2.7.7 +PORTREVISION= 1 CATEGORIES= www security MASTER_SITES= http://www.modsecurity.org/tarball/${PORTVERSION}/ PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX} diff --git a/www/mod_xml2enc/Makefile b/www/mod_xml2enc/Makefile index b55f966fcb12..53dd53273ae7 100644 --- a/www/mod_xml2enc/Makefile +++ b/www/mod_xml2enc/Makefile @@ -3,6 +3,7 @@ PORTNAME= mod_xml2enc PORTVERSION= 1.0.3 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= http://apache.webthing.com/mod_proxy_html/ DISTNAME= mod_proxy_html diff --git a/www/mod_xmlns/Makefile b/www/mod_xmlns/Makefile index 797288efbe4a..549cd620f180 100644 --- a/www/mod_xmlns/Makefile +++ b/www/mod_xmlns/Makefile @@ -3,7 +3,7 @@ PORTNAME= mod_xmlns PORTVERSION= 0.97 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www MASTER_SITES= http://apache.webthing.com/svn/apache/filters/xmlns/ PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX} diff --git a/www/neon29/Makefile b/www/neon29/Makefile index ea7c0d61e802..c993bbdce833 100644 --- a/www/neon29/Makefile +++ b/www/neon29/Makefile @@ -3,7 +3,7 @@ PORTNAME= neon29 PORTVERSION= 0.29.6 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= www MASTER_SITES= http://www.webdav.org/neon/ DISTNAME= neon-${PORTVERSION} @@ -49,7 +49,7 @@ LIB_DEPENDS+= expat.6:${PORTSDIR}/textproc/expat2 .if ${PORT_OPTIONS:MLIBXML} CONFIGURE_ARGS+=--with-libxml2 -LIB_DEPENDS+= xml2.5:${PORTSDIR}/textproc/libxml2 +USE_GNOME+= libxml2 .endif .if ${PORT_OPTIONS:MOPENSSL} diff --git a/www/newsbeuter/Makefile b/www/newsbeuter/Makefile index a003ae51046d..4a667e79046e 100644 --- a/www/newsbeuter/Makefile +++ b/www/newsbeuter/Makefile @@ -3,7 +3,7 @@ PORTNAME= newsbeuter PORTVERSION= 2.8 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= www MASTER_SITES= http://newsbeuter.org/downloads/ diff --git a/www/nghttp2/Makefile b/www/nghttp2/Makefile index 85966933375b..985521fa005b 100644 --- a/www/nghttp2/Makefile +++ b/www/nghttp2/Makefile @@ -3,6 +3,7 @@ PORTNAME= nghttp2 PORTVERSION= 0.3.2 +PORTREVISION= 1 CATEGORIES= www net MASTER_SITES= https://github.com/tatsuhiro-t/${PORTNAME}/releases/download/v${PORTVERSION}/ \ LOCAL/sunpoet diff --git a/www/nginx-devel/Makefile b/www/nginx-devel/Makefile index 86a57ef889fd..0a8204b8edbd 100644 --- a/www/nginx-devel/Makefile +++ b/www/nginx-devel/Makefile @@ -3,6 +3,7 @@ PORTNAME= nginx PORTVERSION= 1.5.13 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= http://nginx.org/download/ MASTER_SITES+= ${MASTER_SITE_LOCAL} diff --git a/www/nginx/Makefile b/www/nginx/Makefile index 92ba90459166..358999914809 100644 --- a/www/nginx/Makefile +++ b/www/nginx/Makefile @@ -3,6 +3,7 @@ PORTNAME= nginx PORTVERSION= 1.4.7 +PORTREVISION= 1 PORTEPOCH= 2 CATEGORIES= www MASTER_SITES= http://nginx.org/download/ diff --git a/www/opera-devel/Makefile b/www/opera-devel/Makefile index 5d9dc400de2a..ac02ddb77b4b 100644 --- a/www/opera-devel/Makefile +++ b/www/opera-devel/Makefile @@ -2,7 +2,7 @@ PORTNAME= opera PORTVERSION= ${OPERA_VER} -PORTREVISION= 5 +PORTREVISION= 6 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= http://snapshot.opera.com/${MASTER_SITES_VER_PATH}/ @@ -14,7 +14,7 @@ MAINTAINER= acm@FreeBSD.org COMMENT= Blazingly fast, full-featured, standards-compliant browser (Next version) IGNORE= Development version is not currently active. Use www/opera instead of -LIB_DEPENDS= freetype.9:${PORTSDIR}/print/freetype2 \ +LIB_DEPENDS= libfreetype.so:${PORTSDIR}/print/freetype2 \ fontconfig.1:${PORTSDIR}/x11-fonts/fontconfig BUILD_DEPENDS= ${LOCALBASE}/bin/update-mime-database:${PORTSDIR}/misc/shared-mime-info RUN_DEPENDS= ${LOCALBASE}/bin/update-mime-database:${PORTSDIR}/misc/shared-mime-info diff --git a/www/opera/Makefile b/www/opera/Makefile index e665bfbe5c57..365686189d99 100644 --- a/www/opera/Makefile +++ b/www/opera/Makefile @@ -2,6 +2,7 @@ PORTNAME= opera PORTVERSION= ${OPERA_VER} +PORTREVISION= 1 CATEGORIES= www ipv6 MASTER_SITES= ftp://ftp.opera.com/pub/opera/${MASTER_SITES_VER_PATH}/ \ ftp://opera.inode.at/${MASTER_SITES_VER_PATH}/ \ diff --git a/www/pecl-solr/Makefile b/www/pecl-solr/Makefile index 290de607ab9f..32fa78534006 100644 --- a/www/pecl-solr/Makefile +++ b/www/pecl-solr/Makefile @@ -3,7 +3,7 @@ PORTNAME= solr PORTVERSION= 1.0.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- diff --git a/www/rssroll/Makefile b/www/rssroll/Makefile index 18fd8143574b..e59e3aed31e2 100644 --- a/www/rssroll/Makefile +++ b/www/rssroll/Makefile @@ -2,6 +2,7 @@ PORTNAME= rssroll PORTVERSION= 0.4 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= http://chaosophia.net/downloads/rssroll/ \ http://ns1.chaosophia.net/downloads/rssroll/ @@ -12,7 +13,7 @@ COMMENT= RSS collector in C LICENSE= BSD LIB_DEPENDS= curl:${PORTSDIR}/ftp/curl \ - xml2:${PORTSDIR}/textproc/libxml2 \ + libxml2.so:${PORTSDIR}/textproc/libxml2 \ sqlite3:${PORTSDIR}/databases/sqlite3 GNU_CONFIGURE= yes diff --git a/www/rsstool/Makefile b/www/rsstool/Makefile index 497d66b3c78f..b8a2e4f72783 100644 --- a/www/rsstool/Makefile +++ b/www/rsstool/Makefile @@ -3,6 +3,7 @@ PORTNAME= rsstool DISTVERSION= 1.0.0 +PORTREVISION= 1 DISTVERSIONSUFFIX= -src CATEGORIES= www MASTER_SITES= BERLIOS diff --git a/www/sitecopy/Makefile b/www/sitecopy/Makefile index b3be6b65cf63..a28932334f0c 100644 --- a/www/sitecopy/Makefile +++ b/www/sitecopy/Makefile @@ -3,7 +3,7 @@ PORTNAME= sitecopy PORTVERSION= 0.16.6 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= www MASTER_SITES= http://www.manyfish.co.uk/${PORTNAME}/ \ ${MASTER_SITE_GENTOO} diff --git a/www/snownews/Makefile b/www/snownews/Makefile index aa2c37c9a620..1296eaf0f7cc 100644 --- a/www/snownews/Makefile +++ b/www/snownews/Makefile @@ -3,7 +3,7 @@ PORTNAME= snownews PORTVERSION= 1.5.12 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www MASTER_SITES= http://kiza.kcore.de/media/software/snownews/ diff --git a/www/spdylay/Makefile b/www/spdylay/Makefile index 8bb54f9f10e1..317756bea7dc 100644 --- a/www/spdylay/Makefile +++ b/www/spdylay/Makefile @@ -3,6 +3,7 @@ PORTNAME= spdylay PORTVERSION= 1.2.3 +PORTREVISION= 1 CATEGORIES= www net MASTER_SITES= https://github.com/tatsuhiro-t/${PORTNAME}/releases/download/v${PORTVERSION}/ \ LOCAL/sunpoet diff --git a/www/squid32/Makefile b/www/squid32/Makefile index 0990bd36adfc..7572a7df6371 100644 --- a/www/squid32/Makefile +++ b/www/squid32/Makefile @@ -3,6 +3,7 @@ PORTNAME= squid PORTVERSION= 3.2.${SQUID_STABLE_VER} +PORTREVISION= 1 CATEGORIES= www ipv6 MASTER_SITES= ftp://ftp.squid-cache.org/pub/%SUBDIR%/ \ http://mirrors.ccs.neu.edu/Squid/ \ diff --git a/www/squid33/Makefile b/www/squid33/Makefile index 6f25fe060462..a889e5ee9180 100644 --- a/www/squid33/Makefile +++ b/www/squid33/Makefile @@ -3,6 +3,7 @@ PORTNAME= squid PORTVERSION= 3.3.${SQUID_STABLE_VER} +PORTREVISION= 1 CATEGORIES= www ipv6 MASTER_SITES= ftp://ftp.squid-cache.org/pub/%SUBDIR%/ \ http://mirrors.ccs.neu.edu/Squid/ \ diff --git a/www/swish-e/Makefile b/www/swish-e/Makefile index 0505fa82a3a3..fde08fa0dfa2 100644 --- a/www/swish-e/Makefile +++ b/www/swish-e/Makefile @@ -3,6 +3,7 @@ PORTNAME= swish-e PORTVERSION= 2.4.7 +PORTREVISION= 1 CATEGORIES= www textproc MASTER_SITES= http://swish-e.org/distribution/ diff --git a/www/tickr/Makefile b/www/tickr/Makefile index 3451d5e96828..9682f9d09d71 100644 --- a/www/tickr/Makefile +++ b/www/tickr/Makefile @@ -3,7 +3,7 @@ PORTNAME= tickr PORTVERSION= 0.6.4 -#PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= http://www.newsrssticker.com/src/ \ LOCAL/nivit/ diff --git a/www/tinyproxy/Makefile b/www/tinyproxy/Makefile index 11343343fb15..9e912026c5b3 100644 --- a/www/tinyproxy/Makefile +++ b/www/tinyproxy/Makefile @@ -3,6 +3,7 @@ PORTNAME= tinyproxy PORTVERSION= 1.8.3 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= www MASTER_SITES= https://banu.com/pub/tinyproxy/1.8/ diff --git a/www/trafficserver/Makefile b/www/trafficserver/Makefile index 10fc0c65fa06..4089d1ecf629 100644 --- a/www/trafficserver/Makefile +++ b/www/trafficserver/Makefile @@ -3,7 +3,7 @@ PORTNAME= trafficserver PORTVERSION= 4.1.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www MASTER_SITES= APACHE/${PORTNAME} diff --git a/www/webkit-qt5/Makefile b/www/webkit-qt5/Makefile index 0c3a608f398b..74852c54616f 100644 --- a/www/webkit-qt5/Makefile +++ b/www/webkit-qt5/Makefile @@ -2,6 +2,7 @@ PORTNAME= webkit DISTVERSION= ${QT5_VERSION} +PORTREVISION= 1 CATEGORIES= www PKGNAMEPREFIX= qt5- diff --git a/x11-clocks/abclock/Makefile b/x11-clocks/abclock/Makefile index b0f26b8bc565..fcc9f4442a70 100644 --- a/x11-clocks/abclock/Makefile +++ b/x11-clocks/abclock/Makefile @@ -3,7 +3,7 @@ PORTNAME= abclock PORTVERSION= 1.0d -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= x11-clocks MASTER_SITES= http://odur.let.rug.nl/~kleiweg/abclock/ diff --git a/x11-clocks/bbdate/Makefile b/x11-clocks/bbdate/Makefile index 352654b7fe32..4a11ee623300 100644 --- a/x11-clocks/bbdate/Makefile +++ b/x11-clocks/bbdate/Makefile @@ -3,7 +3,7 @@ PORTNAME= bbdate PORTVERSION= 0.2.4 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= x11-clocks MASTER_SITES= SF/bbtools/${PORTNAME}/${PORTNAME}-${PORTVERSION} diff --git a/x11-clocks/eyeclock/Makefile b/x11-clocks/eyeclock/Makefile index cd0a2fefe3c2..ab5e6774bb2c 100644 --- a/x11-clocks/eyeclock/Makefile +++ b/x11-clocks/eyeclock/Makefile @@ -3,7 +3,7 @@ PORTNAME= eyeclock PORTVERSION= 2.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= x11-clocks MASTER_SITES= http://ftp.vector.co.jp/pack/unix/personal/tokei/ DISTNAME= eyeclk20 diff --git a/x11-clocks/glclock/Makefile b/x11-clocks/glclock/Makefile index 426170926673..c53a60d66885 100644 --- a/x11-clocks/glclock/Makefile +++ b/x11-clocks/glclock/Makefile @@ -3,7 +3,7 @@ PORTNAME= glclock DISTVERSION= 6.0b6.0 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= x11-clocks MASTER_SITES= http://www.daionet.gr.jp/~masa/archives/ diff --git a/x11-clocks/mlclock/Makefile b/x11-clocks/mlclock/Makefile index 272fdbcbdc38..85cf087cf3a2 100644 --- a/x11-clocks/mlclock/Makefile +++ b/x11-clocks/mlclock/Makefile @@ -3,7 +3,7 @@ PORTNAME= mlclock PORTVERSION= 1.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= x11-clocks MASTER_SITES= http://www2u.biglobe.ne.jp/~y-miyata/mlvwm/ diff --git a/x11-clocks/pclock/Makefile b/x11-clocks/pclock/Makefile index 08568846fa7e..26db48220358 100644 --- a/x11-clocks/pclock/Makefile +++ b/x11-clocks/pclock/Makefile @@ -3,7 +3,7 @@ PORTNAME= pclock PORTVERSION= 0.13.1 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= x11-clocks windowmaker afterstep MASTER_SITES= ${MASTER_SITE_DEBIAN_POOL} DISTNAME= ${PORTNAME}_${PORTVERSION}.orig diff --git a/x11-clocks/rclock/Makefile b/x11-clocks/rclock/Makefile index b70aca721ef4..a49ec2a71eef 100644 --- a/x11-clocks/rclock/Makefile +++ b/x11-clocks/rclock/Makefile @@ -3,7 +3,7 @@ PORTNAME= rclock PORTVERSION= 2.7.10 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= x11-clocks MASTER_SITES= SF/rxvt/rxvt-dev/${PORTVERSION} DISTNAME= rxvt-${PORTVERSION} diff --git a/x11-clocks/wmblueclock/Makefile b/x11-clocks/wmblueclock/Makefile index 3241c791f161..6a3ec6ca1b6b 100644 --- a/x11-clocks/wmblueclock/Makefile +++ b/x11-clocks/wmblueclock/Makefile @@ -3,7 +3,7 @@ PORTNAME= wmblueclock PORTVERSION= 0.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= x11-clocks windowmaker MASTER_SITES= ${MASTER_SITE_SUNSITE} MASTER_SITE_SUBDIR= X11/xutils diff --git a/x11-clocks/wmtimer/Makefile b/x11-clocks/wmtimer/Makefile index 6682fd721172..5c286c59763e 100644 --- a/x11-clocks/wmtimer/Makefile +++ b/x11-clocks/wmtimer/Makefile @@ -3,7 +3,7 @@ PORTNAME= wmtimer PORTVERSION= 2.92 -PORTREVISION= 9 +PORTREVISION= 10 CATEGORIES= x11-clocks windowmaker MASTER_SITES= http://www.darkops.net/wmtimer/ \ ${MASTER_SITE_LOCAL} diff --git a/x11-drivers/input-wacom/Makefile b/x11-drivers/input-wacom/Makefile index d909e434df8e..de3e72efb844 100644 --- a/x11-drivers/input-wacom/Makefile +++ b/x11-drivers/input-wacom/Makefile @@ -3,7 +3,7 @@ PORTNAME= input-wacom PORTVERSION= ${KLD_VERSION}.${WACOM_VERSION:C/-/./g} -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= x11-drivers kld MASTER_SITES= http://www.chillt.de/bsdwacom/:bsdwacom \ SF/linuxwacom/xf86-input-wacom/:linuxwacom diff --git a/x11-drivers/xf86-input-acecad/Makefile b/x11-drivers/xf86-input-acecad/Makefile index 36840f9987f1..bda9d5b8c815 100644 --- a/x11-drivers/xf86-input-acecad/Makefile +++ b/x11-drivers/xf86-input-acecad/Makefile @@ -2,7 +2,7 @@ PORTNAME= xf86-input-acecad PORTVERSION= 1.5.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org diff --git a/x11-drivers/xf86-input-fpit/Makefile b/x11-drivers/xf86-input-fpit/Makefile index b2c03ed78b04..3857aa01074c 100644 --- a/x11-drivers/xf86-input-fpit/Makefile +++ b/x11-drivers/xf86-input-fpit/Makefile @@ -2,7 +2,7 @@ PORTNAME= xf86-input-fpit PORTVERSION= 1.4.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org diff --git a/x11-drivers/xf86-input-fpit/pkg-plist b/x11-drivers/xf86-input-fpit/pkg-plist index fdc01d021e1c..9a8ba176754b 100644 --- a/x11-drivers/xf86-input-fpit/pkg-plist +++ b/x11-drivers/xf86-input-fpit/pkg-plist @@ -2,6 +2,7 @@ lib/xorg/modules/input/fpit_drv.la lib/xorg/modules/input/fpit_drv.so share/X11/xorg.conf.d/50-fpit.conf man/man4/fpit.4x.gz +@dirrmtry share/X11/xorg.conf.d @dirrmtry lib/xorg/modules/input @dirrmtry lib/xorg/modules @dirrmtry lib/xorg diff --git a/x11-drivers/xf86-input-keyboard/Makefile b/x11-drivers/xf86-input-keyboard/Makefile index 841bd4cdbd5e..3518e1752747 100644 --- a/x11-drivers/xf86-input-keyboard/Makefile +++ b/x11-drivers/xf86-input-keyboard/Makefile @@ -2,6 +2,7 @@ PORTNAME= xf86-input-keyboard PORTVERSION= 1.8.0 +PORTREVISION= 1 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org diff --git a/x11-drivers/xf86-input-magictouch/Makefile b/x11-drivers/xf86-input-magictouch/Makefile index 469e03c0c961..4ef2b129dad3 100644 --- a/x11-drivers/xf86-input-magictouch/Makefile +++ b/x11-drivers/xf86-input-magictouch/Makefile @@ -2,13 +2,15 @@ PORTNAME= xf86-input-magictouch PORTVERSION= 1.0.0.5 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org COMMENT= X.Org magictouch input driver BROKEN= Does not compile +DEPRECATED= Does not compile +EXPIRATION_DATE=2014-05-01 .include <bsd.port.options.mk> @@ -17,6 +19,6 @@ IGNORE= needs xf86_ansic.h which doesn't exist with recent xserver .endif XORG_CAT= driver -USE_AUTOTOOLS= libtool +USES= libtool .include <bsd.port.mk> diff --git a/x11-drivers/xf86-input-mouse/Makefile b/x11-drivers/xf86-input-mouse/Makefile index c5fe1623806d..4c28509c2c6b 100644 --- a/x11-drivers/xf86-input-mouse/Makefile +++ b/x11-drivers/xf86-input-mouse/Makefile @@ -2,7 +2,7 @@ PORTNAME= xf86-input-mouse PORTVERSION= 1.9.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org diff --git a/x11-drivers/xf86-input-synaptics/Makefile b/x11-drivers/xf86-input-synaptics/Makefile index d0e1183787ea..5874922b4f8a 100644 --- a/x11-drivers/xf86-input-synaptics/Makefile +++ b/x11-drivers/xf86-input-synaptics/Makefile @@ -14,8 +14,10 @@ USES= pathfix USE_XORG= x11 xtst XORG_CAT= driver +.include <bsd.port.options.mk> + .if defined(WITH_NEW_XORG) -SYNAPTICS_VERSION= 1.7.2 +SYNAPTICS_VERSION= 1.7.4 SYNAPTICS_REVISION= 0 PLIST_SUB+= NEW="" OLD="@comment " .else diff --git a/x11-drivers/xf86-input-synaptics/distinfo b/x11-drivers/xf86-input-synaptics/distinfo index a82a418573c0..a7440fb036c0 100644 --- a/x11-drivers/xf86-input-synaptics/distinfo +++ b/x11-drivers/xf86-input-synaptics/distinfo @@ -1,4 +1,4 @@ SHA256 (xorg/driver/xf86-input-synaptics-1.6.4.tar.bz2) = fe15b1afc61b40800f74a0dcf976c15b299ca0680ae5e537baef543455a732ee SIZE (xorg/driver/xf86-input-synaptics-1.6.4.tar.bz2) = 447004 -SHA256 (xorg/driver/xf86-input-synaptics-1.7.2.tar.bz2) = 63957fa55f0d8662ef8c57f6325155c9884a854554d33921f0738e097f2a7dcd -SIZE (xorg/driver/xf86-input-synaptics-1.7.2.tar.bz2) = 448170 +SHA256 (xorg/driver/xf86-input-synaptics-1.7.4.tar.bz2) = 56a2d2df7bd39e29f56102c62f153e023f3e9b2f5e255309d33fab8e81945af7 +SIZE (xorg/driver/xf86-input-synaptics-1.7.4.tar.bz2) = 451614 diff --git a/x11-drivers/xf86-input-vmmouse/Makefile b/x11-drivers/xf86-input-vmmouse/Makefile index 0bb4ac9847b1..d84420ad8379 100644 --- a/x11-drivers/xf86-input-vmmouse/Makefile +++ b/x11-drivers/xf86-input-vmmouse/Makefile @@ -3,7 +3,7 @@ PORTNAME= xf86-input-vmmouse PORTVERSION= 13.0.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org diff --git a/x11-drivers/xf86-input-vmmouse/pkg-plist b/x11-drivers/xf86-input-vmmouse/pkg-plist index 35717b9231d7..6d3a44183402 100644 --- a/x11-drivers/xf86-input-vmmouse/pkg-plist +++ b/x11-drivers/xf86-input-vmmouse/pkg-plist @@ -6,6 +6,7 @@ man/man1/vmmouse_detect.1.gz man/man4/vmmouse.4x.gz %%NEW%%share/X11/xorg.conf.d/50-vmmouse.conf share/hal/fdi/policy/20thirdparty/11-x11-vmmouse.fdi +%%NEW%%@dirrmtry share/X11/xorg.conf.d @dirrmtry lib/xorg/modules/input @dirrmtry lib/xorg/modules @dirrmtry lib/xorg diff --git a/x11-drivers/xf86-video-apm/Makefile b/x11-drivers/xf86-video-apm/Makefile index 49f83a350775..e4a5bc41873e 100644 --- a/x11-drivers/xf86-video-apm/Makefile +++ b/x11-drivers/xf86-video-apm/Makefile @@ -2,7 +2,7 @@ PORTNAME= xf86-video-apm PORTVERSION= 1.2.5 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org diff --git a/x11-drivers/xf86-video-ark/Makefile b/x11-drivers/xf86-video-ark/Makefile index df031c8d07c7..1e9a526f6c30 100644 --- a/x11-drivers/xf86-video-ark/Makefile +++ b/x11-drivers/xf86-video-ark/Makefile @@ -2,7 +2,7 @@ PORTNAME= xf86-video-ark PORTVERSION= 0.7.5 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org diff --git a/x11-drivers/xf86-video-ati/Makefile b/x11-drivers/xf86-video-ati/Makefile index e0efe72d4834..be942d399d45 100644 --- a/x11-drivers/xf86-video-ati/Makefile +++ b/x11-drivers/xf86-video-ati/Makefile @@ -14,16 +14,16 @@ USE_XORG= xf86driproto xineramaproto xf86miscproto glproto .include <bsd.port.options.mk> -.if ${OSVERSION} < 1000051 || !defined(WITH_NEW_XORG) || \ - (${ARCH} != i386 && ${ARCH} != amd64) +.if ${OSVERSION} < 1000051 || !defined(WITH_NEW_XORG) ATI_VERSION= 6.14.6 -ATI_REVISION= 1 +ATI_REVISION= 2 CONFIGURE_ARGS+=--disable-kms PLIST_SUB+= OLD="" .else ATI_VERSION= 7.2.0 -ATI_REVISION= 1 +ATI_REVISION= 2 CONFIGURE_ARGS+=--disable-udev +CONFIGURE_ARGS+=--disable-glamor EXTRA_PATCHES+= ${FILESDIR}/extra-src__radeon_kms.c PLIST_SUB+= OLD="@comment " .endif diff --git a/x11-drivers/xf86-video-ati/files/extra-src__radeon_kms.c b/x11-drivers/xf86-video-ati/files/extra-src__radeon_kms.c index c8ed5680a9ef..9de83f0dfac5 100644 --- a/x11-drivers/xf86-video-ati/files/extra-src__radeon_kms.c +++ b/x11-drivers/xf86-video-ati/files/extra-src__radeon_kms.c @@ -1,6 +1,15 @@ --- src/radeon_kms.c.orig 2013-08-07 10:44:09.000000000 +0200 -+++ src/radeon_kms.c 2013-08-31 01:20:44.370468797 +0200 -@@ -270,7 +270,7 @@ ++++ src/radeon_kms.c 2013-08-31 19:29:11.369001510 +0200 +@@ -30,6 +30,8 @@ + + #include <errno.h> + #include <sys/ioctl.h> ++#include <sys/param.h> ++#include <sys/linker.h> + /* Driver data structures */ + #include "radeon.h" + #include "radeon_reg.h" +@@ -270,7 +272,7 @@ radeon_dirty_update(ScreenPtr screen) { RegionPtr region; @@ -9,12 +18,20 @@ if (xorg_list_is_empty(&screen->pixmap_dirty_list)) return; -@@ -606,7 +606,7 @@ +@@ -606,6 +608,16 @@ dev->domain, dev->bus, dev->dev, dev->func); #endif -- info->dri2.drm_fd = drmOpen("radeon", busid); -+ info->dri2.drm_fd = drmOpen("radeonkms", busid); ++ err = kldload("radeonkms"); ++ if (err == -1 && errno != EEXIST) { ++ ++ xf86DrvMsg(pScrn->scrnIndex, X_ERROR, ++ "[drm] Failed to load kernel module for %s: %s\n", ++ busid, strerror(errno)); ++ free(busid); ++ return FALSE; ++ } ++ + info->dri2.drm_fd = drmOpen("radeon", busid); if (info->dri2.drm_fd == -1) { - xf86DrvMsg(pScrn->scrnIndex, X_ERROR, diff --git a/x11-drivers/xf86-video-chips/Makefile b/x11-drivers/xf86-video-chips/Makefile index cefa98a2b766..4874a28863bf 100644 --- a/x11-drivers/xf86-video-chips/Makefile +++ b/x11-drivers/xf86-video-chips/Makefile @@ -2,7 +2,7 @@ PORTNAME= xf86-video-chips PORTVERSION= 1.2.5 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org diff --git a/x11-drivers/xf86-video-cirrus/Makefile b/x11-drivers/xf86-video-cirrus/Makefile index a6dd1a257dc3..854ab4718a20 100644 --- a/x11-drivers/xf86-video-cirrus/Makefile +++ b/x11-drivers/xf86-video-cirrus/Makefile @@ -2,7 +2,7 @@ PORTNAME= xf86-video-cirrus PORTVERSION= 1.5.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org diff --git a/x11-drivers/xf86-video-cyrix/Makefile b/x11-drivers/xf86-video-cyrix/Makefile index ccce8e78cc51..9ac0270fef4f 100644 --- a/x11-drivers/xf86-video-cyrix/Makefile +++ b/x11-drivers/xf86-video-cyrix/Makefile @@ -2,13 +2,15 @@ PORTNAME= xf86-video-cyrix PORTVERSION= 1.1.0 -PORTREVISION= 9 +PORTREVISION= 10 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org COMMENT= X.Org cyrix display driver IGNORE= requires pciVideoPtr typedef +DEPRECATED= requires pciVideoPtr typedef +EXPIRATION_DATE=2014-05-01 XORG_CAT= driver USE_XORG= xextproto xf86dgaproto diff --git a/x11-drivers/xf86-video-dummy/Makefile b/x11-drivers/xf86-video-dummy/Makefile index 59937958e703..7028fafe5e38 100644 --- a/x11-drivers/xf86-video-dummy/Makefile +++ b/x11-drivers/xf86-video-dummy/Makefile @@ -2,7 +2,7 @@ PORTNAME= xf86-video-dummy PORTVERSION= 0.3.7 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org diff --git a/x11-drivers/xf86-video-fbdev/Makefile b/x11-drivers/xf86-video-fbdev/Makefile index dea21f99d36c..6110bb766780 100644 --- a/x11-drivers/xf86-video-fbdev/Makefile +++ b/x11-drivers/xf86-video-fbdev/Makefile @@ -2,7 +2,7 @@ PORTNAME= xf86-video-fbdev PORTVERSION= 0.4.4 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org diff --git a/x11-drivers/xf86-video-glint/Makefile b/x11-drivers/xf86-video-glint/Makefile index 0a787d88265f..a4e70b1eff56 100644 --- a/x11-drivers/xf86-video-glint/Makefile +++ b/x11-drivers/xf86-video-glint/Makefile @@ -2,7 +2,7 @@ PORTNAME= xf86-video-glint PORTVERSION= 1.2.8 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org diff --git a/x11-drivers/xf86-video-i128/Makefile b/x11-drivers/xf86-video-i128/Makefile index a7b205367041..fdfcf2114ae9 100644 --- a/x11-drivers/xf86-video-i128/Makefile +++ b/x11-drivers/xf86-video-i128/Makefile @@ -2,7 +2,7 @@ PORTNAME= xf86-video-i128 PORTVERSION= 1.3.6 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org diff --git a/x11-drivers/xf86-video-i740/Makefile b/x11-drivers/xf86-video-i740/Makefile index bb0ab79dddb3..f80256232791 100644 --- a/x11-drivers/xf86-video-i740/Makefile +++ b/x11-drivers/xf86-video-i740/Makefile @@ -2,7 +2,7 @@ PORTNAME= xf86-video-i740 PORTVERSION= 1.3.4 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org diff --git a/x11-drivers/xf86-video-intel/Makefile b/x11-drivers/xf86-video-intel/Makefile index 708df7ff0999..5b343e12265b 100644 --- a/x11-drivers/xf86-video-intel/Makefile +++ b/x11-drivers/xf86-video-intel/Makefile @@ -27,10 +27,10 @@ USE_XORG= glproto \ .if defined(WITH_NEW_XORG) INTEL_VERSION= 2.21.15 -INTEL_REVISION= 1 +INTEL_REVISION= 2 CONFIGURE_ENV+= xorg_cv_cc_flag__Wno_maybe_uninitialized=no CONFIGURE_ARGS+= --enable-sna -MAKE_JOBS_UNSAFE=yes +CONFIGURE_ARGS+= --disable-glamor PLIST_SUB+= OLD="@comment " EXTRA_PATCHES+= ${PATCHDIR}/extra-src__sna__sna_threads.c \ ${PATCHDIR}/extra-src_sna_kgem.c \ @@ -39,7 +39,7 @@ EXTRA_PATCHES+= ${PATCHDIR}/extra-src__sna__sna_threads.c \ LIB_DEPENDS+= libxcb-util.so:${PORTSDIR}/x11/xcb-util .else INTEL_VERSION= 2.7.1 -INTEL_REVISION= 6 +INTEL_REVISION= 7 PLIST_SUB+= OLD="" EXTRA_PATCHES+= ${PATCHDIR}/extra-src_ch7017_ch7017.c \ diff --git a/x11-drivers/xf86-video-intel/pkg-plist b/x11-drivers/xf86-video-intel/pkg-plist index 2d3ca12deb10..948876757621 100644 --- a/x11-drivers/xf86-video-intel/pkg-plist +++ b/x11-drivers/xf86-video-intel/pkg-plist @@ -1,9 +1,11 @@ lib/libI810XvMC.la lib/libI810XvMC.so lib/libI810XvMC.so.1 +lib/libI810XvMC.so.1.0.0 lib/libIntelXvMC.la lib/libIntelXvMC.so.1 lib/libIntelXvMC.so +lib/libIntelXvMC.so.1.0.0 %%OLD%%lib/xorg/modules/drivers/ch7017.la %%OLD%%lib/xorg/modules/drivers/ch7017.so %%OLD%%lib/xorg/modules/drivers/ch7xxx.la diff --git a/x11-drivers/xf86-video-mach64/Makefile b/x11-drivers/xf86-video-mach64/Makefile index 3c1cf88e242f..327c98796b87 100644 --- a/x11-drivers/xf86-video-mach64/Makefile +++ b/x11-drivers/xf86-video-mach64/Makefile @@ -2,7 +2,7 @@ PORTNAME= xf86-video-mach64 PORTVERSION= 6.9.4 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org diff --git a/x11-drivers/xf86-video-mga/Makefile b/x11-drivers/xf86-video-mga/Makefile index 036b5a9df829..48c872b7e7c4 100644 --- a/x11-drivers/xf86-video-mga/Makefile +++ b/x11-drivers/xf86-video-mga/Makefile @@ -2,7 +2,7 @@ PORTNAME= xf86-video-mga PORTVERSION= 1.6.3 -PORTREVISION= 1 +PORTREVISION= 2 PORTEPOCH= 3 CATEGORIES= x11-drivers diff --git a/x11-drivers/xf86-video-neomagic/Makefile b/x11-drivers/xf86-video-neomagic/Makefile index a9503712e748..2a86d787c41a 100644 --- a/x11-drivers/xf86-video-neomagic/Makefile +++ b/x11-drivers/xf86-video-neomagic/Makefile @@ -2,7 +2,7 @@ PORTNAME= xf86-video-neomagic PORTVERSION= 1.2.8 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org diff --git a/x11-drivers/xf86-video-newport/Makefile b/x11-drivers/xf86-video-newport/Makefile index e03da55a9166..60197b5a582d 100644 --- a/x11-drivers/xf86-video-newport/Makefile +++ b/x11-drivers/xf86-video-newport/Makefile @@ -2,7 +2,7 @@ PORTNAME= xf86-video-newport PORTVERSION= 0.2.4 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org diff --git a/x11-drivers/xf86-video-nv/Makefile b/x11-drivers/xf86-video-nv/Makefile index 28cf7fc8496e..1bec3944ca77 100644 --- a/x11-drivers/xf86-video-nv/Makefile +++ b/x11-drivers/xf86-video-nv/Makefile @@ -2,7 +2,7 @@ PORTNAME= xf86-video-nv PORTVERSION= 2.1.20 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org diff --git a/x11-drivers/xf86-video-openchrome/Makefile b/x11-drivers/xf86-video-openchrome/Makefile index 3e404a4bb4a3..0cb95f2ed4ed 100644 --- a/x11-drivers/xf86-video-openchrome/Makefile +++ b/x11-drivers/xf86-video-openchrome/Makefile @@ -2,7 +2,7 @@ PORTNAME= xf86-video-openchrome PORTVERSION= 0.3.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org diff --git a/x11-drivers/xf86-video-openchrome/pkg-plist b/x11-drivers/xf86-video-openchrome/pkg-plist index e936c4ef4609..8cfd05855e10 100644 --- a/x11-drivers/xf86-video-openchrome/pkg-plist +++ b/x11-drivers/xf86-video-openchrome/pkg-plist @@ -1,9 +1,11 @@ lib/libchromeXvMC.la lib/libchromeXvMC.so lib/libchromeXvMC.so.1 +lib/libchromeXvMC.so.1.0.0 lib/libchromeXvMCPro.la lib/libchromeXvMCPro.so lib/libchromeXvMCPro.so.1 +lib/libchromeXvMCPro.so.1.0.0 lib/xorg/modules/drivers/openchrome_drv.la lib/xorg/modules/drivers/openchrome_drv.so man/man4/openchrome.4x.gz diff --git a/x11-drivers/xf86-video-r128/Makefile b/x11-drivers/xf86-video-r128/Makefile index 2f976e966744..53ad516a7f35 100644 --- a/x11-drivers/xf86-video-r128/Makefile +++ b/x11-drivers/xf86-video-r128/Makefile @@ -2,7 +2,7 @@ PORTNAME= xf86-video-r128 PORTVERSION= 6.9.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org diff --git a/x11-drivers/xf86-video-rdc/Makefile b/x11-drivers/xf86-video-rdc/Makefile index 136511e8b6db..eb4a887a5f5b 100644 --- a/x11-drivers/xf86-video-rdc/Makefile +++ b/x11-drivers/xf86-video-rdc/Makefile @@ -3,7 +3,7 @@ PORTNAME= xf86-video-rdc PORTVERSION= 0.9 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11-drivers MASTER_SITES= http://www.SpringDaemons.com/stas/ diff --git a/x11-drivers/xf86-video-rendition/Makefile b/x11-drivers/xf86-video-rendition/Makefile index 6f16dcbb7cc0..18de975902e2 100644 --- a/x11-drivers/xf86-video-rendition/Makefile +++ b/x11-drivers/xf86-video-rendition/Makefile @@ -2,7 +2,7 @@ PORTNAME= xf86-video-rendition PORTVERSION= 4.2.5 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org diff --git a/x11-drivers/xf86-video-s3/Makefile b/x11-drivers/xf86-video-s3/Makefile index fb0dd1c4bc57..40867810c832 100644 --- a/x11-drivers/xf86-video-s3/Makefile +++ b/x11-drivers/xf86-video-s3/Makefile @@ -2,7 +2,7 @@ PORTNAME= xf86-video-s3 PORTVERSION= 0.6.5 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org diff --git a/x11-drivers/xf86-video-s3virge/Makefile b/x11-drivers/xf86-video-s3virge/Makefile index 0da4a4c95d2a..1f5e1136fbbf 100644 --- a/x11-drivers/xf86-video-s3virge/Makefile +++ b/x11-drivers/xf86-video-s3virge/Makefile @@ -2,7 +2,7 @@ PORTNAME= xf86-video-s3virge PORTVERSION= 1.10.6 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org diff --git a/x11-drivers/xf86-video-savage/Makefile b/x11-drivers/xf86-video-savage/Makefile index 414be7e07de5..7faa59529cbe 100644 --- a/x11-drivers/xf86-video-savage/Makefile +++ b/x11-drivers/xf86-video-savage/Makefile @@ -2,7 +2,7 @@ PORTNAME= xf86-video-savage PORTVERSION= 2.3.7 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org diff --git a/x11-drivers/xf86-video-scfb/Makefile b/x11-drivers/xf86-video-scfb/Makefile index f5327d6db780..65ef88a888c2 100644 --- a/x11-drivers/xf86-video-scfb/Makefile +++ b/x11-drivers/xf86-video-scfb/Makefile @@ -3,6 +3,7 @@ PORTNAME= xf86-video-scfb PORTVERSION= 0.0.3 +PORTREVISION= 1 CATEGORIES= x11-drivers MASTER_SITES= ftp://rene-ladan.nl/pub/distfiles/ \ LOCAL/rene diff --git a/x11-drivers/xf86-video-siliconmotion/Makefile b/x11-drivers/xf86-video-siliconmotion/Makefile index 117af602b55f..66665ea8b072 100644 --- a/x11-drivers/xf86-video-siliconmotion/Makefile +++ b/x11-drivers/xf86-video-siliconmotion/Makefile @@ -2,7 +2,7 @@ PORTNAME= xf86-video-siliconmotion PORTVERSION= 1.7.7 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org diff --git a/x11-drivers/xf86-video-sis-intel/Makefile b/x11-drivers/xf86-video-sis-intel/Makefile index 40e4b47cc459..4f07b9e425fd 100644 --- a/x11-drivers/xf86-video-sis-intel/Makefile +++ b/x11-drivers/xf86-video-sis-intel/Makefile @@ -3,7 +3,7 @@ PORTNAME= xf86-video-sis-intel PORTVERSION= 300407 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= x11-drivers MASTER_SITES= http://downloadmirror.intel.com/15443/eng/ DISTNAME= sis_drv_src_300407 @@ -12,6 +12,8 @@ MAINTAINER= littlesavage@orionet.ru COMMENT= X.Org sis display driver provided by Intel IGNORE= requires pciVideoPtr typedef +DEPRECATED= requires pciVideoPtr typedef +EXPIRATION_DATE=2014-05-01 CONFLICTS= xf86-video-sis-[0-9]* WRKSRC= ${WRKDIR}/2d-driver diff --git a/x11-drivers/xf86-video-sis/Makefile b/x11-drivers/xf86-video-sis/Makefile index 63d58c856b1d..27adeeb6fa94 100644 --- a/x11-drivers/xf86-video-sis/Makefile +++ b/x11-drivers/xf86-video-sis/Makefile @@ -2,7 +2,7 @@ PORTNAME= xf86-video-sis PORTVERSION= 0.10.7 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org diff --git a/x11-drivers/xf86-video-sunffb/Makefile b/x11-drivers/xf86-video-sunffb/Makefile index 5ecb9e27dc1b..0504641a9ae7 100644 --- a/x11-drivers/xf86-video-sunffb/Makefile +++ b/x11-drivers/xf86-video-sunffb/Makefile @@ -2,7 +2,7 @@ PORTNAME= xf86-video-sunffb PORTVERSION= 1.2.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org diff --git a/x11-drivers/xf86-video-tdfx/Makefile b/x11-drivers/xf86-video-tdfx/Makefile index 5e17cc359bdc..7ac894d0ee45 100644 --- a/x11-drivers/xf86-video-tdfx/Makefile +++ b/x11-drivers/xf86-video-tdfx/Makefile @@ -2,7 +2,7 @@ PORTNAME= xf86-video-tdfx PORTVERSION= 1.4.5 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org diff --git a/x11-drivers/xf86-video-tga/Makefile b/x11-drivers/xf86-video-tga/Makefile index 827dc8b06a94..2a33d01aa08a 100644 --- a/x11-drivers/xf86-video-tga/Makefile +++ b/x11-drivers/xf86-video-tga/Makefile @@ -2,7 +2,7 @@ PORTNAME= xf86-video-tga PORTVERSION= 1.2.2 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org diff --git a/x11-drivers/xf86-video-trident/Makefile b/x11-drivers/xf86-video-trident/Makefile index 56c9fc522a6d..a6db3d6c9d8c 100644 --- a/x11-drivers/xf86-video-trident/Makefile +++ b/x11-drivers/xf86-video-trident/Makefile @@ -2,7 +2,7 @@ PORTNAME= xf86-video-trident PORTVERSION= 1.3.6 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org diff --git a/x11-drivers/xf86-video-tseng/Makefile b/x11-drivers/xf86-video-tseng/Makefile index 71baafaf94a6..c6afdadc9e36 100644 --- a/x11-drivers/xf86-video-tseng/Makefile +++ b/x11-drivers/xf86-video-tseng/Makefile @@ -2,7 +2,7 @@ PORTNAME= xf86-video-tseng PORTVERSION= 1.2.5 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org diff --git a/x11-drivers/xf86-video-vesa/Makefile b/x11-drivers/xf86-video-vesa/Makefile index 6b2ed137f5e1..b9785b8a7865 100644 --- a/x11-drivers/xf86-video-vesa/Makefile +++ b/x11-drivers/xf86-video-vesa/Makefile @@ -2,7 +2,7 @@ PORTNAME= xf86-video-vesa PORTVERSION= 2.3.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org diff --git a/x11-drivers/xf86-video-vmware/Makefile b/x11-drivers/xf86-video-vmware/Makefile index de0c5dcf8cf0..31dbda7d42c7 100644 --- a/x11-drivers/xf86-video-vmware/Makefile +++ b/x11-drivers/xf86-video-vmware/Makefile @@ -2,7 +2,7 @@ PORTNAME= xf86-video-vmware PORTVERSION= 13.0.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org diff --git a/x11-drivers/xf86-video-voodoo/Makefile b/x11-drivers/xf86-video-voodoo/Makefile index 0e23246f93ec..81ad6d1a4e2c 100644 --- a/x11-drivers/xf86-video-voodoo/Makefile +++ b/x11-drivers/xf86-video-voodoo/Makefile @@ -2,7 +2,7 @@ PORTNAME= xf86-video-voodoo PORTVERSION= 1.2.5 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org diff --git a/x11-fm/mate-file-manager/Makefile b/x11-fm/mate-file-manager/Makefile index cff4cf7a19f2..6283a4566fe0 100644 --- a/x11-fm/mate-file-manager/Makefile +++ b/x11-fm/mate-file-manager/Makefile @@ -3,6 +3,7 @@ PORTNAME= mate-file-manager PORTVERSION= 1.6.2 +PORTREVISION= 1 CATEGORIES= x11-fm mate MASTER_SITES= MATE DIST_SUBDIR= mate diff --git a/x11-fm/rodent/Makefile b/x11-fm/rodent/Makefile index 8f5d5ca3a3f1..a2ec2fc1105c 100644 --- a/x11-fm/rodent/Makefile +++ b/x11-fm/rodent/Makefile @@ -3,6 +3,7 @@ PORTNAME= rodent PORTVERSION= 4.8.0 +PORTREVISION= 1 CATEGORIES= x11-fm MASTER_SITES= SF/xffm/${PORTVERSION}/ diff --git a/x11-fm/rox-filer/Makefile b/x11-fm/rox-filer/Makefile index 9cd0704ef0f0..f340f5ec0473 100644 --- a/x11-fm/rox-filer/Makefile +++ b/x11-fm/rox-filer/Makefile @@ -2,7 +2,7 @@ PORTNAME= rox-filer PORTVERSION= 2.11 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11-fm gnome MASTER_SITES= SF/rox/rox/${PORTVERSION} DISTNAME= rox-filer-${PORTVERSION} diff --git a/x11-fm/rox-session/Makefile b/x11-fm/rox-session/Makefile index 40797cca0e33..a42478b07cad 100644 --- a/x11-fm/rox-session/Makefile +++ b/x11-fm/rox-session/Makefile @@ -2,7 +2,7 @@ PORTNAME= rox-session PORTVERSION= 0.40.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11-fm MASTER_SITES= SF/rox/ROX-Session/${PORTVERSION}/ diff --git a/x11-fm/tdfsb/Makefile b/x11-fm/tdfsb/Makefile index 3360cf44d03d..1ac76f201e88 100644 --- a/x11-fm/tdfsb/Makefile +++ b/x11-fm/tdfsb/Makefile @@ -3,7 +3,7 @@ PORTNAME= tdfsb PORTVERSION= 0.0.10 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= x11-fm MASTER_SITES= http://www.determinate.net/webdata/data/ diff --git a/x11-fm/thunar-vfs/Makefile b/x11-fm/thunar-vfs/Makefile index 426c7ced9290..05ac28980232 100644 --- a/x11-fm/thunar-vfs/Makefile +++ b/x11-fm/thunar-vfs/Makefile @@ -3,7 +3,7 @@ PORTNAME= thunar-vfs PORTVERSION= 1.2.0 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= x11-fm xfce MASTER_SITES= ${MASTER_SITE_XFCE} MASTER_SITE_SUBDIR= src/archive/${PORTNAME}/${PORTVERSION:R} diff --git a/x11-fonts/alfont/Makefile b/x11-fonts/alfont/Makefile index 2a56d7caa71e..c9de0a5cd062 100644 --- a/x11-fonts/alfont/Makefile +++ b/x11-fonts/alfont/Makefile @@ -3,6 +3,7 @@ PORTNAME= alfont PORTVERSION= 209 +PORTREVISION= 1 CATEGORIES= x11-fonts MASTER_SITES= http://opensnc.sourceforge.net/alfont/mirror/ \ SF/nemysisfreebsdp/${CATEGORIES}/${PORTNAME}/:nemysis diff --git a/x11-fonts/font-manager/Makefile b/x11-fonts/font-manager/Makefile index 00396993f96c..f1f5d1ae4b25 100644 --- a/x11-fonts/font-manager/Makefile +++ b/x11-fonts/font-manager/Makefile @@ -3,7 +3,7 @@ PORTNAME= font-manager PORTVERSION= 0.5.7 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= x11-fonts gnome MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} diff --git a/x11-fonts/fontconfig/Makefile b/x11-fonts/fontconfig/Makefile index c4da6c4e2ef7..08c5ee28f78d 100644 --- a/x11-fonts/fontconfig/Makefile +++ b/x11-fonts/fontconfig/Makefile @@ -4,7 +4,7 @@ PORTNAME= fontconfig PORTVERSION= 2.11.0 -PORTREVISION?= 1 +PORTREVISION?= 2 PORTEPOCH?= 1 CATEGORIES= x11-fonts MASTER_SITES= http://www.freedesktop.org/software/fontconfig/release/ diff --git a/x11-fonts/fonttosfnt/Makefile b/x11-fonts/fonttosfnt/Makefile index 541832855a77..44ca510d8f4f 100644 --- a/x11-fonts/fonttosfnt/Makefile +++ b/x11-fonts/fonttosfnt/Makefile @@ -2,12 +2,13 @@ PORTNAME= fonttosfnt PORTVERSION= 1.0.4 +PORTREVISION= 1 CATEGORIES= x11-fonts MAINTAINER= x11@FreeBSD.org COMMENT= Wrap a bitmap font in a sftn wrapper -LIB_DEPENDS= freetype.9:${PORTSDIR}/print/freetype2 +LIB_DEPENDS= libfreetype.so:${PORTSDIR}/print/freetype2 XORG_CAT= app USE_XORG= xproto fontenc diff --git a/x11-fonts/libFS/Makefile b/x11-fonts/libFS/Makefile index dd8b61c0e79c..5f70f23b6e52 100644 --- a/x11-fonts/libFS/Makefile +++ b/x11-fonts/libFS/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= libFS -PORTVERSION= 1.0.5 +PORTVERSION= 1.0.6 CATEGORIES= x11-fonts MAINTAINER= x11@FreeBSD.org @@ -9,6 +9,5 @@ COMMENT= The FS library XORG_CAT= lib USE_XORG= fontsproto:both xproto:both xtrans -USE_AUTOTOOLS= libtool .include <bsd.port.mk> diff --git a/x11-fonts/libFS/distinfo b/x11-fonts/libFS/distinfo index 03acb5f3abbe..de1ed2b2bebb 100644 --- a/x11-fonts/libFS/distinfo +++ b/x11-fonts/libFS/distinfo @@ -1,2 +1,2 @@ -SHA256 (xorg/lib/libFS-1.0.5.tar.bz2) = 22eb3005dd8053aef7ff82758da5dd59ca9738410bcf847e675780e3a1f96107 -SIZE (xorg/lib/libFS-1.0.5.tar.bz2) = 303806 +SHA256 (xorg/lib/libFS-1.0.6.tar.bz2) = 9007fcfbd37bfa6ede4000ec4b5c2dc6dc0f52789358361b43f68e9ae4d6aed7 +SIZE (xorg/lib/libFS-1.0.6.tar.bz2) = 323246 diff --git a/x11-fonts/libFS/pkg-plist b/x11-fonts/libFS/pkg-plist index 56fe50731226..22dd2d351516 100644 --- a/x11-fonts/libFS/pkg-plist +++ b/x11-fonts/libFS/pkg-plist @@ -1,9 +1,10 @@ %%DOCSDIR%%/FSlib.txt include/X11/fonts/FSlib.h -lib/libFS.so.6 -lib/libFS.so -lib/libFS.la lib/libFS.a +lib/libFS.la +lib/libFS.so +lib/libFS.so.6 +lib/libFS.so.6.0.0 libdata/pkgconfig/libfs.pc @dirrmtry include/X11/fonts @dirrm %%DOCSDIR%% diff --git a/x11-fonts/libXfont/Makefile b/x11-fonts/libXfont/Makefile index 8d79ce8a7b85..44ad884decce 100644 --- a/x11-fonts/libXfont/Makefile +++ b/x11-fonts/libXfont/Makefile @@ -3,6 +3,7 @@ PORTNAME= libXfont PORTVERSION= 1.4.7 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= x11-fonts diff --git a/x11-fonts/libXfont/pkg-plist b/x11-fonts/libXfont/pkg-plist index 213eebd3d9e4..b549520c5001 100644 --- a/x11-fonts/libXfont/pkg-plist +++ b/x11-fonts/libXfont/pkg-plist @@ -17,5 +17,6 @@ lib/libXfont.a lib/libXfont.la lib/libXfont.so lib/libXfont.so.1 +lib/libXfont.so.1.4.1 libdata/pkgconfig/xfont.pc @dirrmtry include/X11/fonts diff --git a/x11-fonts/libXfontcache/Makefile b/x11-fonts/libXfontcache/Makefile index 1cf063cf297c..dde13cc62c68 100644 --- a/x11-fonts/libXfontcache/Makefile +++ b/x11-fonts/libXfontcache/Makefile @@ -2,6 +2,7 @@ PORTNAME= libXfontcache PORTVERSION= 1.0.5 +PORTREVISION= 1 CATEGORIES= x11-fonts MAINTAINER= x11@FreeBSD.org diff --git a/x11-fonts/libXfontcache/pkg-plist b/x11-fonts/libXfontcache/pkg-plist index cb25d17c1d80..d41b929f295c 100644 --- a/x11-fonts/libXfontcache/pkg-plist +++ b/x11-fonts/libXfontcache/pkg-plist @@ -2,6 +2,7 @@ lib/libXfontcache.a lib/libXfontcache.la lib/libXfontcache.so lib/libXfontcache.so.1 +lib/libXfontcache.so.1.0.0 libdata/pkgconfig/xfontcache.pc man/man3/FontCacheChangeCacheSettings.3.gz man/man3/FontCacheQueryExtension.3.gz diff --git a/x11-fonts/libXft/Makefile b/x11-fonts/libXft/Makefile index 9cf1b5528f24..32b9d0bb0a3c 100644 --- a/x11-fonts/libXft/Makefile +++ b/x11-fonts/libXft/Makefile @@ -2,6 +2,7 @@ PORTNAME= libXft PORTVERSION= 2.3.1 +PORTREVISION= 1 CATEGORIES= x11-fonts MAINTAINER= gnome@FreeBSD.org diff --git a/x11-fonts/libXft/pkg-plist b/x11-fonts/libXft/pkg-plist index 8f888b747cc4..74971f423fc6 100644 --- a/x11-fonts/libXft/pkg-plist +++ b/x11-fonts/libXft/pkg-plist @@ -5,6 +5,7 @@ lib/libXft.a lib/libXft.la lib/libXft.so lib/libXft.so.2 +lib/libXft.so.2.3.1 libdata/pkgconfig/xft.pc man/man3/Xft.3.gz @dirrm include/X11/Xft diff --git a/x11-fonts/libfontenc/Makefile b/x11-fonts/libfontenc/Makefile index 163fd2173b61..bde12d7c2b59 100644 --- a/x11-fonts/libfontenc/Makefile +++ b/x11-fonts/libfontenc/Makefile @@ -3,6 +3,7 @@ PORTNAME= libfontenc PORTVERSION= 1.1.2 +PORTREVISION= 1 CATEGORIES= x11-fonts MAINTAINER= x11@FreeBSD.org diff --git a/x11-fonts/libfontenc/pkg-plist b/x11-fonts/libfontenc/pkg-plist index 390f0d5d79fd..9ad0ae84732b 100644 --- a/x11-fonts/libfontenc/pkg-plist +++ b/x11-fonts/libfontenc/pkg-plist @@ -3,5 +3,6 @@ lib/libfontenc.a lib/libfontenc.la lib/libfontenc.so lib/libfontenc.so.1 +lib/libfontenc.so.1.0.0 libdata/pkgconfig/fontenc.pc @dirrmtry include/X11/fonts diff --git a/x11-fonts/mkfontscale/Makefile b/x11-fonts/mkfontscale/Makefile index c2005428d82d..4d14a8a116a7 100644 --- a/x11-fonts/mkfontscale/Makefile +++ b/x11-fonts/mkfontscale/Makefile @@ -3,12 +3,13 @@ PORTNAME= mkfontscale PORTVERSION= 1.1.1 +PORTREVISION= 1 CATEGORIES= x11-fonts MAINTAINER= x11@FreeBSD.org COMMENT= Creates an index of scalable font files for X -LIB_DEPENDS= freetype.9:${PORTSDIR}/print/freetype2 +LIB_DEPENDS= libfreetype.so:${PORTSDIR}/print/freetype2 XORG_CAT= app USE_XORG= xproto fontenc diff --git a/x11-fonts/ttmkfdir/Makefile b/x11-fonts/ttmkfdir/Makefile index a9b353635d4c..79cc08cc58e3 100644 --- a/x11-fonts/ttmkfdir/Makefile +++ b/x11-fonts/ttmkfdir/Makefile @@ -3,7 +3,7 @@ PORTNAME= ttmkfdir PORTVERSION= 3.0.9 -PORTREVISION= 2 +PORTREVISION= 3 PORTEPOCH= 1 CATEGORIES= x11-fonts x11 MASTER_SITES= ${MASTER_SITE_GENTOO} diff --git a/x11-servers/xephyr/Makefile b/x11-servers/xephyr/Makefile index 6b33cf0bb6d8..f62b4b09b5b4 100644 --- a/x11-servers/xephyr/Makefile +++ b/x11-servers/xephyr/Makefile @@ -21,6 +21,8 @@ CONFIGURE_ARGS= --enable-kdrive --enable-xephyr --disable-dmx --disable-xvfb \ SLAVE_PORT= yes PLIST_FILES= bin/Xephyr man/man1/Xephyr.1.gz +.include <bsd.port.options.mk> + do-install: ${INSTALL_PROGRAM} ${WRKSRC}/hw/kdrive/ephyr/Xephyr ${STAGEDIR}${PREFIX}/bin/ .if defined(WITH_NEW_XORG) diff --git a/x11-servers/xorg-nestserver/Makefile b/x11-servers/xorg-nestserver/Makefile index 78a12a91ee9b..3257a20e1d13 100644 --- a/x11-servers/xorg-nestserver/Makefile +++ b/x11-servers/xorg-nestserver/Makefile @@ -22,6 +22,8 @@ CONFIGURE_ARGS= --disable-dmx --disable-xvfb \ SLAVE_PORT= yes PLIST_FILES= bin/Xnest man/man1/Xnest.1.gz +.include <bsd.port.options.mk> + do-install: ${INSTALL_PROGRAM} ${WRKSRC}/hw/xnest/Xnest ${STAGEDIR}${PREFIX}/bin/ .if defined(WITH_NEW_XORG) diff --git a/x11-servers/xorg-server/Makefile b/x11-servers/xorg-server/Makefile index f215aa7c9786..aecc5442cc9e 100644 --- a/x11-servers/xorg-server/Makefile +++ b/x11-servers/xorg-server/Makefile @@ -35,14 +35,14 @@ OPTIONS_EXCLUDE_sparc64= HAL .if defined(WITH_NEW_XORG) XORG_VERSION= 1.12.4 -XORG_REVISION= 4 +XORG_REVISION= 5 PLIST_SUB+= OLD="@comment " NEW="" EXTRA_PATCHES+= ${FILESDIR}/extra-clang \ ${FILESDIR}/extra-configure \ ${FILESDIR}/extra-new-dix_dixfonts.c .else XORG_VERSION= 1.7.7 -XORG_REVISION= 11 +XORG_REVISION= 12 PLIST_SUB+= OLD="" NEW="@comment " EXTRA_PATCHES+= ${FILESDIR}/extra-Xext-xace.c \ ${FILESDIR}/extra-Xserver-os-xprintf.c \ @@ -54,7 +54,7 @@ EXTRA_PATCHES+= ${FILESDIR}/extra-Xext-xace.c \ .endif USE_BZIP2= yes -USES= gmake perl5 +USES= gmake perl5 libtool USE_PERL5= build USE_GL= gl USE_XORG?= xf86driproto glproto xdmcp x11 xkbfile xxf86misc xxf86vm xaw7 \ @@ -65,7 +65,6 @@ USE_XORG?= xf86driproto glproto xdmcp x11 xkbfile xxf86misc xxf86vm xaw7 \ videoproto compositeproto trapproto recordproto xineramaproto \ xinerama evieproto xfont fontenc xkbui pixman pciaccess -MAKE_JOBS_UNSAFE= yes USE_OPENSSL= yes CONFIGURE_ARGS?=--disable-dmx --disable-xvfb --disable-xnest \ --without-xmlto --disable-docs --disable-devel-docs \ diff --git a/x11-servers/xorg-vfbserver/Makefile b/x11-servers/xorg-vfbserver/Makefile index c702f680e638..70e0c329e826 100644 --- a/x11-servers/xorg-vfbserver/Makefile +++ b/x11-servers/xorg-vfbserver/Makefile @@ -20,14 +20,10 @@ CONFIGURE_ARGS= --disable-dmx --disable-xnest \ --localstatedir=/var --without-dtrace SLAVE_PORT= yes -PLIST_FILES= bin/Xvfb man/man1/Xvfb.1.gz +PLIST_FILES= bin/Xvfb \ + man/man1/Xvfb.1.gz do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/hw/vfb/Xvfb ${STAGEDIR}${PREFIX}/bin/ - if [ -f ${WRKSRC}/hw/vfb/man/Xvfb.1 ] ; then \ - ${INSTALL_MAN} ${WRKSRC}/hw/vfb/man/Xvfb.1 ${STAGEDIR}${PREFIX}/man/man1/ ; \ - else \ - ${INSTALL_MAN} ${WRKSRC}/hw/vfb/Xvfb.1 ${STAGEDIR}${PREFIX}/man/man1/ ; \ - fi + cd ${WRKSRC}/hw/vfb; DESTDIR=${STAGEDIR} ${MAKE} install .include "${MASTERDIR}/Makefile" diff --git a/x11-themes/gtk-murrine-engine/Makefile b/x11-themes/gtk-murrine-engine/Makefile index 0ae327fa8dde..9a55bad85b9e 100644 --- a/x11-themes/gtk-murrine-engine/Makefile +++ b/x11-themes/gtk-murrine-engine/Makefile @@ -3,7 +3,7 @@ PORTNAME= murrine PORTVERSION= 0.98.2 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= x11-themes MASTER_SITES= GNOME PKGNAMEPREFIX= gtk- diff --git a/x11-toolkits/fltk-devel/Makefile b/x11-toolkits/fltk-devel/Makefile index 6feaab7860b9..8cac9f4c649a 100644 --- a/x11-toolkits/fltk-devel/Makefile +++ b/x11-toolkits/fltk-devel/Makefile @@ -3,6 +3,7 @@ PORTNAME= fltk DISTVERSION= 1.3.x-r${SNAPSHOT_VERS} +PORTREVISION= 1 CATEGORIES= x11-toolkits MASTER_SITES= http://fltk.org/pub/${PORTNAME}/snapshots/ PKGNAMESUFFIX= -devel diff --git a/x11-toolkits/fox17/Makefile b/x11-toolkits/fox17/Makefile index 3d80027adf35..afbee6c6ca89 100644 --- a/x11-toolkits/fox17/Makefile +++ b/x11-toolkits/fox17/Makefile @@ -3,7 +3,7 @@ PORTNAME= fox PORTVERSION= 1.7.46 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11-toolkits MASTER_SITES= http://ftp.fox-toolkit.org/pub/ \ ftp://ftp.fox-toolkit.org/pub/ diff --git a/x11-toolkits/gigi/Makefile b/x11-toolkits/gigi/Makefile index dfe7ff4c51f1..6a73da78b556 100644 --- a/x11-toolkits/gigi/Makefile +++ b/x11-toolkits/gigi/Makefile @@ -3,7 +3,7 @@ PORTNAME= gigi PORTVERSION= 0.8.0.1074 -PORTREVISION= 4 +PORTREVISION= 5 PORTEPOCH= 1 CATEGORIES= x11-toolkits MASTER_SITES= ${MASTER_SITE_LOCAL} diff --git a/x11-toolkits/gnustep-back/Makefile b/x11-toolkits/gnustep-back/Makefile index 05e2cdd31220..15f41a250636 100644 --- a/x11-toolkits/gnustep-back/Makefile +++ b/x11-toolkits/gnustep-back/Makefile @@ -2,7 +2,7 @@ PORTNAME= gnustep-back PORTVERSION= 0.24.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11-toolkits gnustep MASTER_SITES= ${MASTER_SITE_GNUSTEP} MASTER_SITE_SUBDIR= core diff --git a/x11-toolkits/gtk20/Makefile b/x11-toolkits/gtk20/Makefile index 9a3bc264b0ff..76844506c8f0 100644 --- a/x11-toolkits/gtk20/Makefile +++ b/x11-toolkits/gtk20/Makefile @@ -4,7 +4,7 @@ PORTNAME= gtk PORTVERSION= 2.24.22 -PORTREVISION?= 1 +PORTREVISION?= 2 CATEGORIES= x11-toolkits MASTER_SITES= GNOME MASTER_SITE_SUBDIR= sources/gtk+/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} diff --git a/x11-toolkits/gtkglext/Makefile b/x11-toolkits/gtkglext/Makefile index 49aa44a16f48..a5a243bc6f58 100644 --- a/x11-toolkits/gtkglext/Makefile +++ b/x11-toolkits/gtkglext/Makefile @@ -3,7 +3,7 @@ PORTNAME= gtkglext PORTVERSION= 1.2.0 -PORTREVISION= 13 +PORTREVISION= 14 CATEGORIES= x11-toolkits MASTER_SITES= SF DIST_SUBDIR= gnome2 diff --git a/x11-toolkits/gtkmathview/Makefile b/x11-toolkits/gtkmathview/Makefile index 54fb767bcd42..d9e8e072a7e3 100644 --- a/x11-toolkits/gtkmathview/Makefile +++ b/x11-toolkits/gtkmathview/Makefile @@ -3,7 +3,7 @@ PORTNAME= gtkmathview PORTVERSION= 0.8.0 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= x11-toolkits MASTER_SITES= http://helm.cs.unibo.it/mml-widget/sources/ diff --git a/x11-toolkits/gtksourceview2/Makefile b/x11-toolkits/gtksourceview2/Makefile index c86748bf19f1..9597e695b82f 100644 --- a/x11-toolkits/gtksourceview2/Makefile +++ b/x11-toolkits/gtksourceview2/Makefile @@ -4,7 +4,7 @@ PORTNAME= gtksourceview2 PORTVERSION= 2.10.5 -PORTREVISION?= 1 +PORTREVISION?= 2 CATEGORIES= x11-toolkits gnome MASTER_SITES= GNOME MASTER_SITE_SUBDIR= sources/${PORTNAME:S/2$//}/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} diff --git a/x11-toolkits/gtksourceview3/Makefile b/x11-toolkits/gtksourceview3/Makefile index 1de5f30b7a50..2aae0031a6a3 100644 --- a/x11-toolkits/gtksourceview3/Makefile +++ b/x11-toolkits/gtksourceview3/Makefile @@ -4,7 +4,7 @@ PORTNAME= gtksourceview PORTVERSION= 3.4.2 -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES= x11-toolkits gnome MASTER_SITES= GNOME PKGNAMESUFFIX= 3 diff --git a/x11-toolkits/hs-GLUT/Makefile b/x11-toolkits/hs-GLUT/Makefile index 72b5db205d14..a59785ea00b6 100644 --- a/x11-toolkits/hs-GLUT/Makefile +++ b/x11-toolkits/hs-GLUT/Makefile @@ -3,7 +3,7 @@ PORTNAME= GLUT PORTVERSION= 2.4.0.0 -PORTREVISION= 4 +PORTREVISION= 5 PORTEPOCH= 1 CATEGORIES= x11-toolkits haskell diff --git a/x11-toolkits/hs-OpenGLRaw/Makefile b/x11-toolkits/hs-OpenGLRaw/Makefile index 993c7e20d2b8..9877f41667b1 100644 --- a/x11-toolkits/hs-OpenGLRaw/Makefile +++ b/x11-toolkits/hs-OpenGLRaw/Makefile @@ -2,7 +2,7 @@ PORTNAME= OpenGLRaw PORTVERSION= 1.3.0.0 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= x11-toolkits haskell MAINTAINER= haskell@FreeBSD.org diff --git a/x11-toolkits/lesstif/Makefile b/x11-toolkits/lesstif/Makefile index b666586a77fd..220f1212db40 100644 --- a/x11-toolkits/lesstif/Makefile +++ b/x11-toolkits/lesstif/Makefile @@ -3,7 +3,7 @@ PORTNAME= lesstif PORTVERSION= 0.95.2 -PORTREVISION= 2 +PORTREVISION= 3 PORTEPOCH= 2 CATEGORIES= x11-toolkits MASTER_SITES= SF diff --git a/x11-toolkits/libXaw/Makefile b/x11-toolkits/libXaw/Makefile index 2dd6999454b1..24f4e9d75eec 100644 --- a/x11-toolkits/libXaw/Makefile +++ b/x11-toolkits/libXaw/Makefile @@ -3,6 +3,7 @@ PORTNAME= libXaw PORTVERSION= 1.0.12 +PORTREVISION= 1 PORTEPOCH= 2 CATEGORIES= x11-toolkits diff --git a/x11-toolkits/libXaw/pkg-plist b/x11-toolkits/libXaw/pkg-plist index 1d6a6c3040bb..b6890d781e29 100644 --- a/x11-toolkits/libXaw/pkg-plist +++ b/x11-toolkits/libXaw/pkg-plist @@ -76,10 +76,12 @@ lib/libXaw6.a lib/libXaw6.la lib/libXaw6.so lib/libXaw6.so.6 +lib/libXaw6.so.6.0.1 lib/libXaw7.a lib/libXaw7.la lib/libXaw7.so lib/libXaw7.so.7 +lib/libXaw7.so.7.0.0 libdata/pkgconfig/xaw6.pc libdata/pkgconfig/xaw7.pc man/man3/Xaw.3.gz diff --git a/x11-toolkits/libXmu/Makefile b/x11-toolkits/libXmu/Makefile index e0c0383510fa..6463fa5537ab 100644 --- a/x11-toolkits/libXmu/Makefile +++ b/x11-toolkits/libXmu/Makefile @@ -3,6 +3,7 @@ PORTNAME= libXmu PORTVERSION= 1.1.2 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= x11-toolkits diff --git a/x11-toolkits/libXmu/pkg-plist b/x11-toolkits/libXmu/pkg-plist index a19fba0b3bc4..1017da6ee9ed 100644 --- a/x11-toolkits/libXmu/pkg-plist +++ b/x11-toolkits/libXmu/pkg-plist @@ -25,10 +25,12 @@ lib/libXmu.a lib/libXmu.la lib/libXmu.so lib/libXmu.so.6 +lib/libXmu.so.6.2.0 lib/libXmuu.a lib/libXmuu.la lib/libXmuu.so lib/libXmuu.so.1 +lib/libXmuu.so.1.0.0 libdata/pkgconfig/xmu.pc libdata/pkgconfig/xmuu.pc %%DOCSDIR%%/Xmu.xml diff --git a/x11-toolkits/libXt/Makefile b/x11-toolkits/libXt/Makefile index 9b09cf61aee6..5fe8f304528d 100644 --- a/x11-toolkits/libXt/Makefile +++ b/x11-toolkits/libXt/Makefile @@ -3,6 +3,7 @@ PORTNAME= libXt PORTVERSION= 1.1.4 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= x11-toolkits diff --git a/x11-toolkits/libXt/pkg-plist b/x11-toolkits/libXt/pkg-plist index 1f049a9bf633..09fd7ff69cc6 100644 --- a/x11-toolkits/libXt/pkg-plist +++ b/x11-toolkits/libXt/pkg-plist @@ -35,6 +35,7 @@ lib/libXt.a lib/libXt.la lib/libXt.so lib/libXt.so.6 +lib/libXt.so.6.0.0 libdata/pkgconfig/xt.pc man/man3/MenuPopdown.3.gz man/man3/MenuPopup.3.gz diff --git a/x11-toolkits/libsexy/Makefile b/x11-toolkits/libsexy/Makefile index b8fde37824b4..84971b4f0cde 100644 --- a/x11-toolkits/libsexy/Makefile +++ b/x11-toolkits/libsexy/Makefile @@ -3,7 +3,7 @@ PORTNAME= libsexy PORTVERSION= 0.1.11 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= x11-toolkits devel MASTER_SITES= http://releases.chipx86.com/libsexy/libsexy/ diff --git a/x11-toolkits/libxaw3dxft/Makefile b/x11-toolkits/libxaw3dxft/Makefile index d8f72062cf4f..b9076ca79eb9 100644 --- a/x11-toolkits/libxaw3dxft/Makefile +++ b/x11-toolkits/libxaw3dxft/Makefile @@ -2,6 +2,7 @@ PORTNAME= libxaw3dxft DISTVERSION= 1.6.2c +PORTREVISION= 1 CATEGORIES= x11-toolkits MASTER_SITES= SF/sf-xpaint/${PORTNAME} DISTNAME= libXaw3dXft-${DISTVERSION} diff --git a/x11-toolkits/mygui/Makefile b/x11-toolkits/mygui/Makefile index 30b8898a0c81..21ef33f0ca99 100644 --- a/x11-toolkits/mygui/Makefile +++ b/x11-toolkits/mygui/Makefile @@ -3,7 +3,7 @@ PORTNAME= mygui PORTVERSION= 3.2.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= x11-toolkits graphics devel MASTER_SITES= SF/my-gui/MyGUI/MyGUI_${PORTVERSION} DISTNAME= MyGUI_${PORTVERSION} diff --git a/x11-toolkits/nucleo/Makefile b/x11-toolkits/nucleo/Makefile index 1f14dd78b904..1960b855e548 100644 --- a/x11-toolkits/nucleo/Makefile +++ b/x11-toolkits/nucleo/Makefile @@ -3,7 +3,7 @@ PORTNAME= nucleo PORTVERSION= 0.7.6 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= x11-toolkits MASTER_SITES= http://insitu.lri.fr/metisse/download/nucleo/ diff --git a/x11-toolkits/otk/Makefile b/x11-toolkits/otk/Makefile index 7d171323fd94..ebbc9edc7fb1 100644 --- a/x11-toolkits/otk/Makefile +++ b/x11-toolkits/otk/Makefile @@ -3,6 +3,7 @@ PORTNAME= otk PORTVERSION= 0.96 +PORTREVISION= 1 CATEGORIES= x11-toolkits graphics MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/v${PORTVERSION} DISTNAME= ${PORTNAME}_lib_${PORTVERSION} diff --git a/x11-toolkits/pango/Makefile b/x11-toolkits/pango/Makefile index 27e77132e5bb..2f4961dc972d 100644 --- a/x11-toolkits/pango/Makefile +++ b/x11-toolkits/pango/Makefile @@ -4,7 +4,7 @@ PORTNAME= pango PORTVERSION= 1.34.1 -PORTREVISION?= 2 +PORTREVISION?= 3 CATEGORIES= x11-toolkits MASTER_SITES= GNOME DIST_SUBDIR= gnome2 diff --git a/x11-toolkits/paragui-devel/Makefile b/x11-toolkits/paragui-devel/Makefile index 2e9e5dd7bb66..90d538a943ee 100644 --- a/x11-toolkits/paragui-devel/Makefile +++ b/x11-toolkits/paragui-devel/Makefile @@ -3,7 +3,7 @@ PORTNAME= paragui PORTVERSION= 1.1.8 -PORTREVISION= 12 +PORTREVISION= 13 CATEGORIES= x11-toolkits MASTER_SITES= ${MASTER_SITE_SAVANNAH} MASTER_SITE_SUBDIR= ${PORTNAME} @@ -14,7 +14,7 @@ COMMENT= Cross-platform high-level application framework and GUI library(devel) LIB_DEPENDS= physfs.1:${PORTSDIR}/devel/physfs \ expat.6:${PORTSDIR}/textproc/expat2 \ - freetype.9:${PORTSDIR}/print/freetype2 \ + libfreetype.so:${PORTSDIR}/print/freetype2 \ sigc-1.2.5:${PORTSDIR}/devel/libsigc++12 CONFLICTS= paragui-[0-9]* diff --git a/x11-toolkits/py-kivy/Makefile b/x11-toolkits/py-kivy/Makefile index 22985578a450..9a7f4ce2c721 100644 --- a/x11-toolkits/py-kivy/Makefile +++ b/x11-toolkits/py-kivy/Makefile @@ -44,16 +44,6 @@ OPTIONS_GROUP_CAMERA= OPENCV GSTREAMER OPTIONS_GROUP_SPELLING= ENCHANT OPTIONS_GROUP_CLIPBOARD= PYGAME -.if !defined(ARCH) -ARCH!= uname -p -.endif -.if ${ARCH} == i386 -OPTIONS_GROUP_VIDEO+= PYGLET -.if !defined(WITH_NEW_XORG) -BROKEN= Does not compile with old libGL on i386: Undefined symbol glBlendEquationSeparate -.endif -.endif - CAMERA_DESC= Camera support CLIPBOARD_DESC= Clipboard support IMAGE_DESC= Image support @@ -84,8 +74,22 @@ TEST_USES= display:build X11_MAKE_ENV= USE_X11=1 X11_USE= XORG=x11 +.if !defined(ARCH) +ARCH!= uname -p +.endif + +.if ${ARCH} == i386 +OPTIONS_GROUP_VIDEO+= PYGLET +.endif + .include <bsd.port.options.mk> +.if ${ARCH} == i386 +.if !defined(WITH_NEW_XORG) +BROKEN= Does not compile with old libGL on i386: Undefined symbol glBlendEquationSeparate +.endif +.endif + .if ${PORT_OPTIONS:MPDF} .if empty(PORT_OPTIONS:MDOCS) IGNORE= option PDF requires DOCS diff --git a/x11-toolkits/py-wmdockapps/Makefile b/x11-toolkits/py-wmdockapps/Makefile index 2bd257d8bc82..ce78280bb958 100644 --- a/x11-toolkits/py-wmdockapps/Makefile +++ b/x11-toolkits/py-wmdockapps/Makefile @@ -3,7 +3,7 @@ PORTNAME= wmdockapps PORTVERSION= 1.21 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= x11-toolkits python windowmaker MASTER_SITES= SF/py${PORTNAME}/py${PORTNAME}/${PORTVERSION} PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/x11-toolkits/qt5-gui/Makefile b/x11-toolkits/qt5-gui/Makefile index 9b9eacb1503c..7ab71cd4d493 100644 --- a/x11-toolkits/qt5-gui/Makefile +++ b/x11-toolkits/qt5-gui/Makefile @@ -2,6 +2,7 @@ PORTNAME= gui DISTVERSION= ${QT5_VERSION} +PORTREVISION= 1 CATEGORIES= x11-toolkits graphics PKGNAMEPREFIX= qt5- diff --git a/x11-toolkits/v/Makefile b/x11-toolkits/v/Makefile index ae25ededba80..f25596492e21 100644 --- a/x11-toolkits/v/Makefile +++ b/x11-toolkits/v/Makefile @@ -3,7 +3,7 @@ PORTNAME= v PORTVERSION= 1.90 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= x11-toolkits devel graphics MASTER_SITES= SF/${PORTNAME}gui/V%20GUI/${PORTVERSION} DISTFILES= ${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX} \ diff --git a/x11-wm/afterstep-stable/Makefile b/x11-wm/afterstep-stable/Makefile index 53bd3bc48db4..f80aaa7701a5 100644 --- a/x11-wm/afterstep-stable/Makefile +++ b/x11-wm/afterstep-stable/Makefile @@ -3,6 +3,7 @@ PORTNAME= afterstep PORTVERSION= 2.2.12 +PORTREVISION= 1 CATEGORIES= x11-wm afterstep MASTER_SITES= ${MASTER_SITE_AFTERSTEP} MASTER_SITE_SUBDIR= stable diff --git a/x11-wm/awesome/Makefile b/x11-wm/awesome/Makefile index e2b82638ecc1..6a4bde6f87eb 100644 --- a/x11-wm/awesome/Makefile +++ b/x11-wm/awesome/Makefile @@ -3,6 +3,7 @@ PORTNAME= awesome PORTVERSION= 3.5.5 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= x11-wm MASTER_SITES= http://awesome.naquadah.org/download/ diff --git a/x11-wm/awesome2/Makefile b/x11-wm/awesome2/Makefile index 6354f19a1cbb..ba7b41676105 100644 --- a/x11-wm/awesome2/Makefile +++ b/x11-wm/awesome2/Makefile @@ -3,7 +3,7 @@ PORTNAME= awesome2 PORTVERSION= 2.3.6 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= x11-wm MASTER_SITES= http://awesome.naquadah.org/download/ DISTNAME= awesome-${PORTVERSION} @@ -15,7 +15,7 @@ BUILD_DEPENDS= asciidoc:${PORTSDIR}/textproc/asciidoc \ xmlto:${PORTSDIR}/textproc/xmlto LIB_DEPENDS= confuse.0:${PORTSDIR}/devel/libconfuse \ cairo.2:${PORTSDIR}/graphics/cairo \ - freetype.9:${PORTSDIR}/print/freetype2 + libfreetype.so:${PORTSDIR}/print/freetype2 USES= iconv pkgconfig GNU_CONFIGURE= yes diff --git a/x11-wm/bbpager/Makefile b/x11-wm/bbpager/Makefile index adc1f9f3ff14..01c3bd51005b 100644 --- a/x11-wm/bbpager/Makefile +++ b/x11-wm/bbpager/Makefile @@ -3,7 +3,7 @@ PORTNAME= bbpager DISTVERSION= 0.4.7 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= x11-wm MASTER_SITES= SF/bbtools/${PORTNAME}/${PORTNAME}-${PORTVERSION} diff --git a/x11-wm/dwm/Makefile b/x11-wm/dwm/Makefile index 96b808cf0a7d..32a88846c47d 100644 --- a/x11-wm/dwm/Makefile +++ b/x11-wm/dwm/Makefile @@ -3,7 +3,7 @@ PORTNAME= dwm PORTVERSION= 6.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11-wm MASTER_SITES= http://dl.suckless.org/${PORTNAME}/ \ http://schot.a-eskwadraat.nl/files/ diff --git a/x11-wm/echinus/Makefile b/x11-wm/echinus/Makefile index 723d766fc89f..ca596e13a264 100644 --- a/x11-wm/echinus/Makefile +++ b/x11-wm/echinus/Makefile @@ -3,6 +3,7 @@ PORTNAME= echinus PORTVERSION= 0.4.9 +PORTREVISION= 1 CATEGORIES= x11-wm MASTER_SITES= http://plhk.ru/static/echinus/ diff --git a/x11-wm/epplets/Makefile b/x11-wm/epplets/Makefile index 327c642ba06c..aedce2a9f59a 100644 --- a/x11-wm/epplets/Makefile +++ b/x11-wm/epplets/Makefile @@ -3,6 +3,7 @@ PORTNAME= epplets PORTVERSION= 0.14 +PORTREVISION= 1 CATEGORIES= x11-wm MASTER_SITES= SF/enlightenment/${PORTNAME}/${PORTVERSION} diff --git a/x11-wm/i3/Makefile b/x11-wm/i3/Makefile index af901af0da6e..b65768f589f5 100644 --- a/x11-wm/i3/Makefile +++ b/x11-wm/i3/Makefile @@ -3,7 +3,7 @@ PORTNAME= i3 DISTVERSION= 4.7.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11-wm MASTER_SITES= http://i3wm.org/downloads/ diff --git a/x11-wm/libcompizconfig/Makefile b/x11-wm/libcompizconfig/Makefile index afb6d9bf1d33..6c4462ff6b70 100644 --- a/x11-wm/libcompizconfig/Makefile +++ b/x11-wm/libcompizconfig/Makefile @@ -3,7 +3,7 @@ PORTNAME= libcompizconfig PORTVERSION= 0.8.4 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= x11-wm MASTER_SITES= http://releases.compiz.org/${PORTVERSION}/ diff --git a/x11-wm/openbox/Makefile b/x11-wm/openbox/Makefile index 2717e199ef74..8dbcef447b3e 100644 --- a/x11-wm/openbox/Makefile +++ b/x11-wm/openbox/Makefile @@ -3,7 +3,7 @@ PORTNAME= openbox PORTVERSION= 3.5.2 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= x11-wm MASTER_SITES= http://openbox.org/dist/openbox/ diff --git a/x11-wm/spectrwm/Makefile b/x11-wm/spectrwm/Makefile index c491169ad7c0..88717024796c 100644 --- a/x11-wm/spectrwm/Makefile +++ b/x11-wm/spectrwm/Makefile @@ -3,6 +3,7 @@ PORTNAME= spectrwm PORTVERSION= 2.5.0 +PORTREVISION= 1 CATEGORIES= x11-wm MASTER_SITES= https://opensource.conformal.com/snapshots/${PORTNAME}/ EXTRACT_SUFX= .tgz diff --git a/x11-wm/wmfs/Makefile b/x11-wm/wmfs/Makefile index f6722de89f87..9f759cee4aad 100644 --- a/x11-wm/wmfs/Makefile +++ b/x11-wm/wmfs/Makefile @@ -3,7 +3,7 @@ PORTNAME= wmfs DISTVERSION= 201104 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11-wm MASTER_SITES= http://wmfs.info/attachments/download/45/ \ http://cloud.github.com/downloads/xorg62/wmfs/ diff --git a/x11/3ddesktop/Makefile b/x11/3ddesktop/Makefile index 3ab5129a1087..7a564ff3584b 100644 --- a/x11/3ddesktop/Makefile +++ b/x11/3ddesktop/Makefile @@ -3,7 +3,7 @@ PORTNAME= 3ddesktop PORTVERSION= 0.2.9 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= x11 MASTER_SITES= SF/desk3d/${PORTNAME}/${PORTVERSION} diff --git a/x11/apwal/Makefile b/x11/apwal/Makefile index 1f0773a707ad..53065a0aa062 100644 --- a/x11/apwal/Makefile +++ b/x11/apwal/Makefile @@ -3,7 +3,7 @@ PORTNAME= apwal PORTVERSION= 0.4.5 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= x11 MASTER_SITES= http://apwal.free.fr/download/ diff --git a/x11/beforelight/Makefile b/x11/beforelight/Makefile index 54666d6edbbf..14386a0d420d 100644 --- a/x11/beforelight/Makefile +++ b/x11/beforelight/Makefile @@ -2,6 +2,7 @@ PORTNAME= beforelight PORTVERSION= 1.0.5 +PORTREVISION= 1 CATEGORIES= x11 MAINTAINER= x11@FreeBSD.org diff --git a/x11/blast/Makefile b/x11/blast/Makefile index abfd12fac2ae..0238b90f4af3 100644 --- a/x11/blast/Makefile +++ b/x11/blast/Makefile @@ -3,7 +3,7 @@ PORTNAME= blast PORTVERSION= 1.1 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= x11 MASTER_SITES= ${MASTER_SITE_DEBIAN} MASTER_SITE_SUBDIR= pool/main/b/blast diff --git a/x11/eaglemode/Makefile b/x11/eaglemode/Makefile index 755ac00969f1..c17f47eaee76 100644 --- a/x11/eaglemode/Makefile +++ b/x11/eaglemode/Makefile @@ -3,7 +3,7 @@ PORTNAME= eaglemode PORTVERSION= 0.84.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11 MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-${PORTVERSION} diff --git a/x11/gnome-panel/Makefile b/x11/gnome-panel/Makefile index 0a62a764a65d..045735b5062c 100644 --- a/x11/gnome-panel/Makefile +++ b/x11/gnome-panel/Makefile @@ -4,7 +4,7 @@ PORTNAME= gnome-panel PORTVERSION= 2.32.1 -PORTREVISION?= 4 +PORTREVISION?= 5 CATEGORIES= x11 gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome2 diff --git a/x11/gnome-session/Makefile b/x11/gnome-session/Makefile index 83ef5670c390..0194f7437641 100644 --- a/x11/gnome-session/Makefile +++ b/x11/gnome-session/Makefile @@ -4,7 +4,7 @@ PORTNAME= gnome-session PORTVERSION= 2.32.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= x11 gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome2 diff --git a/x11/i3lock/Makefile b/x11/i3lock/Makefile index 296735f856c6..b9f8f76e6f3e 100644 --- a/x11/i3lock/Makefile +++ b/x11/i3lock/Makefile @@ -3,7 +3,7 @@ PORTNAME= i3lock PORTVERSION= 2.5 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11 MASTER_SITES= http://i3wm.org/${PORTNAME}/ diff --git a/x11/kde4-workspace/Makefile b/x11/kde4-workspace/Makefile index 90ff4c9b3ca4..38b54e108589 100644 --- a/x11/kde4-workspace/Makefile +++ b/x11/kde4-workspace/Makefile @@ -2,6 +2,7 @@ PORTNAME= kde-workspace PORTVERSION= ${KDE4_WORKSPACE_VERSION} +PORTREVISION= 1 CATEGORIES= x11 kde MASTER_SITES= KDE/${KDE4_BRANCH}/${KDE4_VERSION}/src DIST_SUBDIR= KDE/${PORTVERSION} diff --git a/x11/kdelibs4/Makefile b/x11/kdelibs4/Makefile index de61f8a8f4a9..ea528049d457 100644 --- a/x11/kdelibs4/Makefile +++ b/x11/kdelibs4/Makefile @@ -3,6 +3,7 @@ PORTNAME= kdelibs PORTVERSION= ${KDE4_VERSION} +PORTREVISION= 1 CATEGORIES= x11 kde MASTER_SITES= KDE/${KDE4_BRANCH}/${PORTVERSION}/src DIST_SUBDIR= KDE/${PORTVERSION} diff --git a/x11/libICE/Makefile b/x11/libICE/Makefile index 4c0e454448a2..5120976ed560 100644 --- a/x11/libICE/Makefile +++ b/x11/libICE/Makefile @@ -3,6 +3,7 @@ PORTNAME= libICE PORTVERSION= 1.0.8 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= x11 diff --git a/x11/libICE/pkg-plist b/x11/libICE/pkg-plist index 4083e3aa8080..48c95dce4eaa 100644 --- a/x11/libICE/pkg-plist +++ b/x11/libICE/pkg-plist @@ -8,6 +8,7 @@ lib/libICE.a lib/libICE.la lib/libICE.so lib/libICE.so.6 +lib/libICE.so.6.3.0 libdata/pkgconfig/ice.pc %%DOCSDIR%%/ICElib.xml %%DOCSDIR%%/ice.xml diff --git a/x11/libSM/Makefile b/x11/libSM/Makefile index e832ad113b03..01233f126c6b 100644 --- a/x11/libSM/Makefile +++ b/x11/libSM/Makefile @@ -3,6 +3,7 @@ PORTNAME= libSM PORTVERSION= 1.2.2 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= x11 diff --git a/x11/libSM/pkg-plist b/x11/libSM/pkg-plist index ccb0046d833c..34d28dfd0b1f 100644 --- a/x11/libSM/pkg-plist +++ b/x11/libSM/pkg-plist @@ -5,5 +5,6 @@ lib/libSM.a lib/libSM.la lib/libSM.so lib/libSM.so.6 +lib/libSM.so.6.0.1 libdata/pkgconfig/sm.pc @dirrm include/X11/SM diff --git a/x11/libX11/Makefile b/x11/libX11/Makefile index 9fd30c59dedd..3df2bb763367 100644 --- a/x11/libX11/Makefile +++ b/x11/libX11/Makefile @@ -3,6 +3,7 @@ PORTNAME= libX11 PORTVERSION= 1.6.2 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= x11 diff --git a/x11/libX11/pkg-plist b/x11/libX11/pkg-plist index be8f6313e2f3..884c63882a4f 100644 --- a/x11/libX11/pkg-plist +++ b/x11/libX11/pkg-plist @@ -199,10 +199,12 @@ lib/libX11-xcb.a lib/libX11-xcb.la lib/libX11-xcb.so lib/libX11-xcb.so.1 +lib/libX11-xcb.so.1.0.0 lib/libX11.a lib/libX11.la lib/libX11.so lib/libX11.so.6 +lib/libX11.so.6.3.0 libdata/pkgconfig/x11-xcb.pc libdata/pkgconfig/x11.pc man/man3/AllPlanes.3.gz diff --git a/x11/libXScrnSaver/Makefile b/x11/libXScrnSaver/Makefile index 5676b8cc922a..be2f48a4f9ea 100644 --- a/x11/libXScrnSaver/Makefile +++ b/x11/libXScrnSaver/Makefile @@ -2,6 +2,7 @@ PORTNAME= libXScrnSaver PORTVERSION= 1.2.2 +PORTREVISION= 1 CATEGORIES= x11 MAINTAINER= x11@FreeBSD.org diff --git a/x11/libXScrnSaver/pkg-plist b/x11/libXScrnSaver/pkg-plist index 01aed8749352..d056b869e48c 100644 --- a/x11/libXScrnSaver/pkg-plist +++ b/x11/libXScrnSaver/pkg-plist @@ -1,8 +1,9 @@ include/X11/extensions/scrnsaver.h -lib/libXss.so.1 -lib/libXss.so -lib/libXss.la lib/libXss.a +lib/libXss.la +lib/libXss.so +lib/libXss.so.1 +lib/libXss.so.1.0.0 libdata/pkgconfig/xscrnsaver.pc man/man3/Xss.3.gz man/man3/XScreenSaverAllocInfo.3.gz diff --git a/x11/libXTrap/Makefile b/x11/libXTrap/Makefile index 5192edac2d8d..b54c61e0d9ec 100644 --- a/x11/libXTrap/Makefile +++ b/x11/libXTrap/Makefile @@ -2,6 +2,7 @@ PORTNAME= libXTrap PORTVERSION= 1.0.1 +PORTREVISION= 1 CATEGORIES= x11 MAINTAINER= x11@FreeBSD.org @@ -9,6 +10,5 @@ COMMENT= The XTrap library XORG_CAT= lib USE_XORG= trapproto:both x11 xext xextproto xt -USE_AUTOTOOLS= libtool .include <bsd.port.mk> diff --git a/x11/libXTrap/pkg-plist b/x11/libXTrap/pkg-plist index 0822c92809fd..e7974e19e43c 100644 --- a/x11/libXTrap/pkg-plist +++ b/x11/libXTrap/pkg-plist @@ -1,5 +1,6 @@ -lib/libXTrap.so.6 -lib/libXTrap.so -lib/libXTrap.la lib/libXTrap.a +lib/libXTrap.la +lib/libXTrap.so +lib/libXTrap.so.6 +lib/libXTrap.so.6.4.0 libdata/pkgconfig/xtrap.pc diff --git a/x11/libXau/Makefile b/x11/libXau/Makefile index 457813397706..addf5113b98f 100644 --- a/x11/libXau/Makefile +++ b/x11/libXau/Makefile @@ -3,6 +3,7 @@ PORTNAME= libXau PORTVERSION= 1.0.8 +PORTREVISION= 1 CATEGORIES= x11 MAINTAINER= x11@FreeBSD.org @@ -11,7 +12,4 @@ COMMENT= Authentication Protocol library for X11 XORG_CAT= lib USE_XORG= xproto:both -post-install: - ${LN} -sf ${PREFIX}/lib/libXau.so.6 ${STAGEDIR}${PREFIX}/lib/libXau.so.0 - .include <bsd.port.mk> diff --git a/x11/libXau/pkg-plist b/x11/libXau/pkg-plist index 38e98d07ebc2..6d3b5383dbd0 100644 --- a/x11/libXau/pkg-plist +++ b/x11/libXau/pkg-plist @@ -2,8 +2,8 @@ include/X11/Xauth.h lib/libXau.a lib/libXau.la lib/libXau.so -lib/libXau.so.0 lib/libXau.so.6 +lib/libXau.so.6.0.0 libdata/pkgconfig/xau.pc man/man3/Xau.3.gz man/man3/XauDisposeAuth.3.gz diff --git a/x11/libXcm/Makefile b/x11/libXcm/Makefile index ffe23a7ff390..2638fb10ae87 100644 --- a/x11/libXcm/Makefile +++ b/x11/libXcm/Makefile @@ -2,6 +2,7 @@ PORTNAME= libXcm PORTVERSION= 0.5.3 +PORTREVISION= 1 CATEGORIES= x11 MASTER_SITES= SF/oyranos/${PORTNAME}/${PORTNAME}-${PORTVERSION:C|(.*)\.[0-9]*$|\1|} diff --git a/x11/libXcm/pkg-plist b/x11/libXcm/pkg-plist index 15018e19af49..447bbee1b7dc 100644 --- a/x11/libXcm/pkg-plist +++ b/x11/libXcm/pkg-plist @@ -7,15 +7,19 @@ lib/cmake/Xcm/XcmConfig.cmake lib/libXcm.la lib/libXcm.so lib/libXcm.so.0 +lib/libXcm.so.0.0.5 lib/libXcmDDC.la lib/libXcmDDC.so lib/libXcmDDC.so.0 +lib/libXcmDDC.so.0.0.5 lib/libXcmEDID.la lib/libXcmEDID.so lib/libXcmEDID.so.0 +lib/libXcmEDID.so.0.0.5 lib/libXcmX11.la lib/libXcmX11.so lib/libXcmX11.so.0 +lib/libXcmX11.so.0.0.5 libdata/pkgconfig/xcm-ddc.pc libdata/pkgconfig/xcm-edid.pc libdata/pkgconfig/xcm-x11.pc diff --git a/x11/libXcomposite/Makefile b/x11/libXcomposite/Makefile index 932a189b2531..6c81c9edb856 100644 --- a/x11/libXcomposite/Makefile +++ b/x11/libXcomposite/Makefile @@ -3,6 +3,7 @@ PORTNAME= libXcomposite PORTVERSION= 0.4.4 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= x11 diff --git a/x11/libXcomposite/pkg-plist b/x11/libXcomposite/pkg-plist index 42f12278c58a..7be1532fe659 100644 --- a/x11/libXcomposite/pkg-plist +++ b/x11/libXcomposite/pkg-plist @@ -3,6 +3,7 @@ lib/libXcomposite.a lib/libXcomposite.la lib/libXcomposite.so lib/libXcomposite.so.1 +lib/libXcomposite.so.1.0.0 libdata/pkgconfig/xcomposite.pc man/man3/Xcomposite.3.gz man/man3/XCompositeQueryExtension.3.gz diff --git a/x11/libXcursor/Makefile b/x11/libXcursor/Makefile index 7d4c122d42d0..63f4ab49b915 100644 --- a/x11/libXcursor/Makefile +++ b/x11/libXcursor/Makefile @@ -3,6 +3,7 @@ PORTNAME= libXcursor PORTVERSION= 1.1.14 +PORTREVISION= 1 CATEGORIES= x11 MAINTAINER= x11@FreeBSD.org diff --git a/x11/libXcursor/pkg-plist b/x11/libXcursor/pkg-plist index 786b7aa4c618..abeb917f76db 100644 --- a/x11/libXcursor/pkg-plist +++ b/x11/libXcursor/pkg-plist @@ -3,6 +3,7 @@ lib/libXcursor.a lib/libXcursor.la lib/libXcursor.so lib/libXcursor.so.1 +lib/libXcursor.so.1.0.2 libdata/pkgconfig/xcursor.pc man/man3/Xcursor.3.gz man/man3/XcursorImageCreate.3.gz diff --git a/x11/libXdamage/Makefile b/x11/libXdamage/Makefile index 0f23abbea8de..24c1dfcd849f 100644 --- a/x11/libXdamage/Makefile +++ b/x11/libXdamage/Makefile @@ -3,6 +3,7 @@ PORTNAME= libXdamage PORTVERSION= 1.1.4 +PORTREVISION= 1 CATEGORIES= x11 MAINTAINER= x11@FreeBSD.org diff --git a/x11/libXdamage/pkg-plist b/x11/libXdamage/pkg-plist index 0db2e1e8fcee..577451cb704d 100644 --- a/x11/libXdamage/pkg-plist +++ b/x11/libXdamage/pkg-plist @@ -3,5 +3,6 @@ lib/libXdamage.a lib/libXdamage.la lib/libXdamage.so lib/libXdamage.so.1 +lib/libXdamage.so.1.1.0 libdata/pkgconfig/xdamage.pc @dirrmtry include/X11/extensions diff --git a/x11/libXdmcp/Makefile b/x11/libXdmcp/Makefile index 3e3c7d21eb72..602ff5685d9f 100644 --- a/x11/libXdmcp/Makefile +++ b/x11/libXdmcp/Makefile @@ -3,6 +3,7 @@ PORTNAME= libXdmcp PORTVERSION= 1.1.1 +PORTREVISION= 1 CATEGORIES= x11 MAINTAINER= x11@FreeBSD.org diff --git a/x11/libXdmcp/pkg-plist b/x11/libXdmcp/pkg-plist index bb8bf3bf2f61..2303160def29 100644 --- a/x11/libXdmcp/pkg-plist +++ b/x11/libXdmcp/pkg-plist @@ -3,4 +3,5 @@ lib/libXdmcp.a lib/libXdmcp.la lib/libXdmcp.so lib/libXdmcp.so.6 +lib/libXdmcp.so.6.0.0 libdata/pkgconfig/xdmcp.pc diff --git a/x11/libXevie/Makefile b/x11/libXevie/Makefile index 36c324553b0e..9e1b46677b8d 100644 --- a/x11/libXevie/Makefile +++ b/x11/libXevie/Makefile @@ -2,6 +2,7 @@ PORTNAME= libXevie PORTVERSION= 1.0.3 +PORTREVISION= 1 CATEGORIES= x11 MAINTAINER= x11@FreeBSD.org diff --git a/x11/libXevie/pkg-plist b/x11/libXevie/pkg-plist index ca7920ee0c83..bff99fce9225 100644 --- a/x11/libXevie/pkg-plist +++ b/x11/libXevie/pkg-plist @@ -1,8 +1,9 @@ include/X11/extensions/Xevie.h -lib/libXevie.so.1 -lib/libXevie.so -lib/libXevie.la lib/libXevie.a +lib/libXevie.la +lib/libXevie.so +lib/libXevie.so.1 +lib/libXevie.so.1.0.0 libdata/pkgconfig/xevie.pc man/man3/Xevie.3.gz man/man3/XevieEnd.3.gz diff --git a/x11/libXext/Makefile b/x11/libXext/Makefile index 48ec2feff1e0..adf905fbc0e3 100644 --- a/x11/libXext/Makefile +++ b/x11/libXext/Makefile @@ -3,6 +3,7 @@ PORTNAME= libXext PORTVERSION= 1.3.2 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= x11 diff --git a/x11/libXext/pkg-plist b/x11/libXext/pkg-plist index 023b27aa5d95..7bc69cf2a8fa 100644 --- a/x11/libXext/pkg-plist +++ b/x11/libXext/pkg-plist @@ -2,6 +2,7 @@ lib/libXext.a lib/libXext.la lib/libXext.so lib/libXext.so.6 +lib/libXext.so.6.4.0 include/X11/extensions/MITMisc.h include/X11/extensions/XEVI.h include/X11/extensions/XLbx.h diff --git a/x11/libXfixes/Makefile b/x11/libXfixes/Makefile index a2df62bb1310..f08c43afa749 100644 --- a/x11/libXfixes/Makefile +++ b/x11/libXfixes/Makefile @@ -3,6 +3,7 @@ PORTNAME= libXfixes PORTVERSION= 5.0.1 +PORTREVISION= 1 CATEGORIES= x11 MAINTAINER= x11@FreeBSD.org diff --git a/x11/libXfixes/pkg-plist b/x11/libXfixes/pkg-plist index 43f539b2f033..13ff3a02fe6c 100644 --- a/x11/libXfixes/pkg-plist +++ b/x11/libXfixes/pkg-plist @@ -3,5 +3,6 @@ lib/libXfixes.a lib/libXfixes.la lib/libXfixes.so lib/libXfixes.so.3 +lib/libXfixes.so.3.1.0 libdata/pkgconfig/xfixes.pc man/man3/Xfixes.3.gz diff --git a/x11/libXi/Makefile b/x11/libXi/Makefile index d83f968496a0..6a6e2ec8a085 100644 --- a/x11/libXi/Makefile +++ b/x11/libXi/Makefile @@ -3,6 +3,7 @@ PORTNAME= libXi PORTVERSION= 1.7.2 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= x11 diff --git a/x11/libXi/pkg-plist b/x11/libXi/pkg-plist index 51bbd1da2e49..008d85f76317 100644 --- a/x11/libXi/pkg-plist +++ b/x11/libXi/pkg-plist @@ -4,6 +4,7 @@ lib/libXi.a lib/libXi.la lib/libXi.so lib/libXi.so.6 +lib/libXi.so.6.1.0 libdata/pkgconfig/xi.pc man/man3/XAllowDeviceEvents.3.gz man/man3/XChangeDeviceControl.3.gz diff --git a/x11/libXinerama/Makefile b/x11/libXinerama/Makefile index e17c983a0fac..c8d3f33cdd34 100644 --- a/x11/libXinerama/Makefile +++ b/x11/libXinerama/Makefile @@ -3,6 +3,7 @@ PORTNAME= libXinerama PORTVERSION= 1.1.3 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= x11 @@ -13,6 +14,5 @@ LICENSE= MIT XORG_CAT= lib USE_XORG= x11 xext xextproto xineramaproto:both -USE_AUTOTOOLS= libtool .include <bsd.port.mk> diff --git a/x11/libXinerama/pkg-plist b/x11/libXinerama/pkg-plist index 5e7b01258d38..21df9532527e 100644 --- a/x11/libXinerama/pkg-plist +++ b/x11/libXinerama/pkg-plist @@ -4,6 +4,7 @@ lib/libXinerama.a lib/libXinerama.la lib/libXinerama.so lib/libXinerama.so.1 +lib/libXinerama.so.1.0.0 libdata/pkgconfig/xinerama.pc man/man3/Xinerama.3.gz man/man3/XineramaQueryExtension.3.gz diff --git a/x11/libXp/Makefile b/x11/libXp/Makefile index 21e92caa49ab..4aaa1a51af44 100644 --- a/x11/libXp/Makefile +++ b/x11/libXp/Makefile @@ -3,6 +3,7 @@ PORTNAME= libXp PORTVERSION= 1.0.2 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= x11 @@ -13,6 +14,5 @@ LICENSE= MIT XORG_CAT= lib USE_XORG= x11 xext xextproto xau printproto:both -USE_AUTOTOOLS= libtool .include <bsd.port.mk> diff --git a/x11/libXp/pkg-plist b/x11/libXp/pkg-plist index 0c120ff02f46..022aae957dfe 100644 --- a/x11/libXp/pkg-plist +++ b/x11/libXp/pkg-plist @@ -2,6 +2,7 @@ lib/libXp.a lib/libXp.la lib/libXp.so lib/libXp.so.6 +lib/libXp.so.6.2.0 libdata/pkgconfig/xp.pc man/man3/XpCancelDoc.3.gz man/man3/XpCancelJob.3.gz diff --git a/x11/libXpm/Makefile b/x11/libXpm/Makefile index 13ca108b9861..b522c7f368a7 100644 --- a/x11/libXpm/Makefile +++ b/x11/libXpm/Makefile @@ -3,6 +3,7 @@ PORTNAME= libXpm PORTVERSION= 3.5.11 +PORTREVISION= 1 CATEGORIES= x11 MAINTAINER= x11@FreeBSD.org diff --git a/x11/libXpm/pkg-plist b/x11/libXpm/pkg-plist index aa4d1743fa36..3c207b0b0d92 100644 --- a/x11/libXpm/pkg-plist +++ b/x11/libXpm/pkg-plist @@ -5,6 +5,7 @@ lib/libXpm.a lib/libXpm.la lib/libXpm.so lib/libXpm.so.4 +lib/libXpm.so.4.11.0 libdata/pkgconfig/xpm.pc man/man1/cxpm.1.gz man/man1/sxpm.1.gz diff --git a/x11/libXprintAppUtil/Makefile b/x11/libXprintAppUtil/Makefile index 4162dd6d7039..d659d4e77555 100644 --- a/x11/libXprintAppUtil/Makefile +++ b/x11/libXprintAppUtil/Makefile @@ -2,6 +2,7 @@ PORTNAME= libXprintAppUtil PORTVERSION= 1.0.1 +PORTREVISION= 1 CATEGORIES= x11 MAINTAINER= x11@FreeBSD.org @@ -9,5 +10,5 @@ COMMENT= The XprintAppUtil library XORG_CAT= lib USE_XORG= printproto x11 xau xp xprintutil xproto:both -USE_AUTOTOOLS= libtool + .include <bsd.port.mk> diff --git a/x11/libXprintAppUtil/pkg-plist b/x11/libXprintAppUtil/pkg-plist index ccbbd7595dfa..596751506e32 100644 --- a/x11/libXprintAppUtil/pkg-plist +++ b/x11/libXprintAppUtil/pkg-plist @@ -1,7 +1,8 @@ include/X11/XprintAppUtil/xpapputil.h -lib/libXprintAppUtil.so.1 -lib/libXprintAppUtil.so -lib/libXprintAppUtil.la lib/libXprintAppUtil.a +lib/libXprintAppUtil.la +lib/libXprintAppUtil.so +lib/libXprintAppUtil.so.1 +lib/libXprintAppUtil.so.1.0.0 libdata/pkgconfig/xprintapputil.pc @dirrm include/X11/XprintAppUtil diff --git a/x11/libXprintUtil/Makefile b/x11/libXprintUtil/Makefile index 69d383985389..5f9c05d3ecc5 100644 --- a/x11/libXprintUtil/Makefile +++ b/x11/libXprintUtil/Makefile @@ -2,6 +2,7 @@ PORTNAME= libXprintUtil PORTVERSION= 1.0.1 +PORTREVISION= 1 CATEGORIES= x11 MAINTAINER= x11@FreeBSD.org @@ -9,5 +10,5 @@ COMMENT= The XprintUtil library XORG_CAT= lib USE_XORG= printproto:both x11 xau xp xt -USE_AUTOTOOLS= libtool + .include <bsd.port.mk> diff --git a/x11/libXprintUtil/pkg-plist b/x11/libXprintUtil/pkg-plist index c7663f7937b1..09385f92d8a9 100644 --- a/x11/libXprintUtil/pkg-plist +++ b/x11/libXprintUtil/pkg-plist @@ -3,5 +3,6 @@ lib/libXprintUtil.a lib/libXprintUtil.la lib/libXprintUtil.so lib/libXprintUtil.so.1 +lib/libXprintUtil.so.1.0.0 libdata/pkgconfig/xprintutil.pc @dirrm include/X11/XprintUtil diff --git a/x11/libXrandr/Makefile b/x11/libXrandr/Makefile index 4dee0f8ec9f0..976773363c1b 100644 --- a/x11/libXrandr/Makefile +++ b/x11/libXrandr/Makefile @@ -3,6 +3,7 @@ PORTNAME= libXrandr PORTVERSION= 1.4.2 +PORTREVISION= 1 CATEGORIES= x11 MAINTAINER= x11@FreeBSD.org diff --git a/x11/libXrandr/pkg-plist b/x11/libXrandr/pkg-plist index cd6f3dfa8fa7..ba615ccde6c6 100644 --- a/x11/libXrandr/pkg-plist +++ b/x11/libXrandr/pkg-plist @@ -3,6 +3,7 @@ lib/libXrandr.a lib/libXrandr.la lib/libXrandr.so lib/libXrandr.so.2 +lib/libXrandr.so.2.2.0 libdata/pkgconfig/xrandr.pc man/man3/Xrandr.3.gz man/man3/XRRConfigCurrentConfiguration.3.gz diff --git a/x11/libXrender/Makefile b/x11/libXrender/Makefile index 3866a0f87db5..a7aaf8d08b9c 100644 --- a/x11/libXrender/Makefile +++ b/x11/libXrender/Makefile @@ -3,6 +3,7 @@ PORTNAME= libXrender PORTVERSION= 0.9.8 +PORTREVISION= 1 CATEGORIES= x11 MAINTAINER= x11@FreeBSD.org diff --git a/x11/libXrender/pkg-plist b/x11/libXrender/pkg-plist index ea82f6f49779..080b88e8a376 100644 --- a/x11/libXrender/pkg-plist +++ b/x11/libXrender/pkg-plist @@ -3,6 +3,7 @@ lib/libXrender.a lib/libXrender.la lib/libXrender.so lib/libXrender.so.1 +lib/libXrender.so.1.3.0 libdata/pkgconfig/xrender.pc %%DOCSDIR%%/libXrender.txt @dirrm %%DOCSDIR%% diff --git a/x11/libXres/Makefile b/x11/libXres/Makefile index 96f8f088b124..0eef9908dea5 100644 --- a/x11/libXres/Makefile +++ b/x11/libXres/Makefile @@ -3,6 +3,7 @@ PORTNAME= libXres PORTVERSION= 1.0.7 +PORTREVISION= 1 CATEGORIES= x11 MAINTAINER= x11@FreeBSD.org diff --git a/x11/libXres/pkg-plist b/x11/libXres/pkg-plist index 1a5b78065af3..274c23b9bbc6 100644 --- a/x11/libXres/pkg-plist +++ b/x11/libXres/pkg-plist @@ -3,6 +3,7 @@ lib/libXRes.a lib/libXRes.la lib/libXRes.so lib/libXRes.so.1 +lib/libXRes.so.1.0.0 libdata/pkgconfig/xres.pc man/man3/XRes.3.gz man/man3/XResQueryClients.3.gz diff --git a/x11/libXtst/Makefile b/x11/libXtst/Makefile index c3c1cadf5de6..ac4c59a13478 100644 --- a/x11/libXtst/Makefile +++ b/x11/libXtst/Makefile @@ -3,6 +3,7 @@ PORTNAME= libXtst PORTVERSION= 1.2.2 +PORTREVISION= 1 CATEGORIES= x11 MAINTAINER= x11@FreeBSD.org @@ -13,7 +14,6 @@ LICENSE= MIT XORG_CAT= lib USE_XORG= x11 xext recordproto:both xextproto inputproto:both \ xi -USE_AUTOTOOLS= libtool CONFIGURE_ARGS+=--disable-specs --without-xmlto diff --git a/x11/libXtst/pkg-plist b/x11/libXtst/pkg-plist index e6ad93863a1f..55b193564ae5 100644 --- a/x11/libXtst/pkg-plist +++ b/x11/libXtst/pkg-plist @@ -4,6 +4,7 @@ lib/libXtst.a lib/libXtst.la lib/libXtst.so lib/libXtst.so.6 +lib/libXtst.so.6.1.0 libdata/pkgconfig/xtst.pc man/man3/XTestCompareCurrentCursorWithWindow.3.gz man/man3/XTestCompareCursorWithWindow.3.gz diff --git a/x11/libXv/Makefile b/x11/libXv/Makefile index 2c21649f3dbe..1555c8dcf3f0 100644 --- a/x11/libXv/Makefile +++ b/x11/libXv/Makefile @@ -3,6 +3,7 @@ PORTNAME= libXv PORTVERSION= 1.0.10 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= x11 diff --git a/x11/libXv/pkg-plist b/x11/libXv/pkg-plist index 9465ee2fe1e0..7c813bc7cf35 100644 --- a/x11/libXv/pkg-plist +++ b/x11/libXv/pkg-plist @@ -3,6 +3,7 @@ lib/libXv.a lib/libXv.la lib/libXv.so lib/libXv.so.1 +lib/libXv.so.1.0.0 libdata/pkgconfig/xv.pc man/man3/Xv.3.gz man/man3/XvFreeAdaptorInfo.3.gz diff --git a/x11/libXvMC/Makefile b/x11/libXvMC/Makefile index d370e052f94e..407966ee772e 100644 --- a/x11/libXvMC/Makefile +++ b/x11/libXvMC/Makefile @@ -3,6 +3,7 @@ PORTNAME= libXvMC PORTVERSION= 1.0.8 +PORTREVISION= 1 CATEGORIES= x11 MAINTAINER= x11@FreeBSD.org diff --git a/x11/libXvMC/pkg-plist b/x11/libXvMC/pkg-plist index b22d278a2167..58531bb74153 100644 --- a/x11/libXvMC/pkg-plist +++ b/x11/libXvMC/pkg-plist @@ -3,10 +3,12 @@ lib/libXvMC.a lib/libXvMC.la lib/libXvMC.so lib/libXvMC.so.1 +lib/libXvMC.so.1.0.0 lib/libXvMCW.a lib/libXvMCW.la lib/libXvMCW.so lib/libXvMCW.so.1 +lib/libXvMCW.so.1.0.0 libdata/pkgconfig/xvmc.pc %%DOCSDIR%%/XvMC_API.txt @dirrm %%DOCSDIR%% diff --git a/x11/libXxf86dga/Makefile b/x11/libXxf86dga/Makefile index f46f39662d34..cb6fe45a8b72 100644 --- a/x11/libXxf86dga/Makefile +++ b/x11/libXxf86dga/Makefile @@ -3,6 +3,7 @@ PORTNAME= libXxf86dga PORTVERSION= 1.1.4 +PORTREVISION= 1 CATEGORIES= x11 MAINTAINER= x11@FreeBSD.org diff --git a/x11/libXxf86dga/pkg-plist b/x11/libXxf86dga/pkg-plist index 23fb304bb49a..50d284b68a2a 100644 --- a/x11/libXxf86dga/pkg-plist +++ b/x11/libXxf86dga/pkg-plist @@ -4,6 +4,7 @@ lib/libXxf86dga.a lib/libXxf86dga.la lib/libXxf86dga.so lib/libXxf86dga.so.1 +lib/libXxf86dga.so.1.0.0 libdata/pkgconfig/xxf86dga.pc man/man3/XDGA.3.gz man/man3/XDGAOpenFramebuffer.3.gz diff --git a/x11/libXxf86misc/Makefile b/x11/libXxf86misc/Makefile index 43f39b9c7cc4..5031242190ab 100644 --- a/x11/libXxf86misc/Makefile +++ b/x11/libXxf86misc/Makefile @@ -3,6 +3,7 @@ PORTNAME= libXxf86misc PORTVERSION= 1.0.3 +PORTREVISION= 1 CATEGORIES= x11 MAINTAINER= x11@FreeBSD.org diff --git a/x11/libXxf86misc/pkg-plist b/x11/libXxf86misc/pkg-plist index 3b8091f49ec7..893a2ff7345e 100644 --- a/x11/libXxf86misc/pkg-plist +++ b/x11/libXxf86misc/pkg-plist @@ -2,6 +2,7 @@ lib/libXxf86misc.a lib/libXxf86misc.la lib/libXxf86misc.so lib/libXxf86misc.so.1 +lib/libXxf86misc.so.1.1.0 libdata/pkgconfig/xxf86misc.pc man/man3/XF86Misc.3.gz man/man3/XF86MiscGetKbdSettings.3.gz diff --git a/x11/libXxf86vm/Makefile b/x11/libXxf86vm/Makefile index 4593ad541d8f..acd2f95c14f1 100644 --- a/x11/libXxf86vm/Makefile +++ b/x11/libXxf86vm/Makefile @@ -3,6 +3,7 @@ PORTNAME= libXxf86vm PORTVERSION= 1.1.3 +PORTREVISION= 1 CATEGORIES= x11 MAINTAINER= x11@FreeBSD.org diff --git a/x11/libXxf86vm/pkg-plist b/x11/libXxf86vm/pkg-plist index 050fb6c9066d..ec81c2d7bb7b 100644 --- a/x11/libXxf86vm/pkg-plist +++ b/x11/libXxf86vm/pkg-plist @@ -3,6 +3,7 @@ lib/libXxf86vm.a lib/libXxf86vm.la lib/libXxf86vm.so lib/libXxf86vm.so.1 +lib/libXxf86vm.so.1.0.0 libdata/pkgconfig/xxf86vm.pc man/man3/XF86VM.3.gz man/man3/XF86VidModeLockModeSwitch.3.gz diff --git a/x11/libdmx/Makefile b/x11/libdmx/Makefile index 2c209dd92580..4ffb3ebe4806 100644 --- a/x11/libdmx/Makefile +++ b/x11/libdmx/Makefile @@ -3,6 +3,7 @@ PORTNAME= libdmx PORTVERSION= 1.1.3 +PORTREVISION= 1 CATEGORIES= x11 MAINTAINER= x11@FreeBSD.org diff --git a/x11/libdmx/pkg-plist b/x11/libdmx/pkg-plist index f6cbd3319195..229594c9111d 100644 --- a/x11/libdmx/pkg-plist +++ b/x11/libdmx/pkg-plist @@ -3,6 +3,7 @@ lib/libdmx.a lib/libdmx.la lib/libdmx.so lib/libdmx.so.1 +lib/libdmx.so.1.0.0 libdata/pkgconfig/dmx.pc man/man3/DMX.3.gz man/man3/DMXAddInput.3.gz diff --git a/x11/liboldX/Makefile b/x11/liboldX/Makefile index 4edd444c1c98..f1b615773d38 100644 --- a/x11/liboldX/Makefile +++ b/x11/liboldX/Makefile @@ -2,6 +2,7 @@ PORTNAME= liboldX PORTVERSION= 1.0.1 +PORTREVISION= 1 CATEGORIES= x11 MAINTAINER= x11@FreeBSD.org @@ -9,5 +10,5 @@ COMMENT= Old X library XORG_CAT= lib USE_XORG= x11 -USE_AUTOTOOLS= libtool + .include <bsd.port.mk> diff --git a/x11/liboldX/pkg-plist b/x11/liboldX/pkg-plist index aa4938cc0f2d..c9ceec94ea32 100644 --- a/x11/liboldX/pkg-plist +++ b/x11/liboldX/pkg-plist @@ -3,4 +3,5 @@ lib/liboldX.a lib/liboldX.la lib/liboldX.so lib/liboldX.so.6 +lib/liboldX.so.6.0.0 libdata/pkgconfig/oldx.pc diff --git a/x11/libxcb/Makefile b/x11/libxcb/Makefile index f204cf2de9ef..86f35e57ecda 100644 --- a/x11/libxcb/Makefile +++ b/x11/libxcb/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= libxcb -PORTVERSION= 1.9.3 +PORTVERSION= 1.10 CATEGORIES= x11 python MASTER_SITES= http://xcb.freedesktop.org/dist/ @@ -19,14 +19,12 @@ RUN_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/pthread-stubs.pc:${PORTSDIR}/devel/l CONFIGURE_ARGS+= --disable-build-docs --without-doxygen --enable-xinput -USE_BZIP2= yes -USES= gmake pathfix pkgconfig +XORG_CAT= lib +USES= gmake USE_GNOME= libxslt:build -USE_LDCONFIG= yes USE_XORG= xau xdmcp -USE_PYTHON_BUILD= yes +USE_PYTHON_BUILD=YES -GNU_CONFIGURE= yes .for f in XPROTO_CFLAGS XPROTO_LIBS XDMCP_CFLAGS XDMCP_LIBS NEEDED_CFLAGS NEEDED_LIBS CONFIGURE_ARGS+=${f}="${${f}}" .endfor diff --git a/x11/libxcb/distinfo b/x11/libxcb/distinfo index a5aff8e252ca..333e256967e6 100644 --- a/x11/libxcb/distinfo +++ b/x11/libxcb/distinfo @@ -1,2 +1,2 @@ -SHA256 (libxcb-1.9.3.tar.bz2) = aad09d223fcb5bd345ce4d1737f178a557b6f2e201128e1ee3c83af46028018b -SIZE (libxcb-1.9.3.tar.bz2) = 400283 +SHA256 (xorg/lib/libxcb-1.10.tar.bz2) = 98d9ab05b636dd088603b64229dd1ab2d2cc02ab807892e107d674f9c3f2d5b5 +SIZE (xorg/lib/libxcb-1.10.tar.bz2) = 475211 diff --git a/x11/libxcb/files/patch-64bit-packed b/x11/libxcb/files/patch-64bit-packed new file mode 100644 index 000000000000..467c9d95fa04 --- /dev/null +++ b/x11/libxcb/files/patch-64bit-packed @@ -0,0 +1,102 @@ +From 3b72a2c9d1d656c74c691a45689e1d637f669e3a Mon Sep 17 00:00:00 2001 +From: Kenneth Graunke <kenneth@whitecape.org> +Date: Fri, 03 Jan 2014 23:08:33 +0000 +Subject: Force XCB event structures with 64-bit extended fields to be packed. + +With the advent of the Present extension, some events (such as +PresentCompleteNotify) now use native 64-bit types on the wire. + +For XGE events, we insert an extra "uint32_t full_sequence" field +immediately after the first 32 bytes of data. Normally, this causes +the subsequent fields to be shifted over by 4 bytes, and the structure +to grow in size by 4 bytes. Everything works fine. + +However, if event contains 64-bit extended fields, this may result in +the compiler adding an extra 4 bytes of padding so that those fields +remain aligned on 64-bit boundaries. This causes the structure to grow +by 8 bytes, not 4. Unfortunately, XCB doesn't realize this, and +always believes that the length only increased by 4. read_packet() +then fails to malloc enough memory to hold the event, and the event +processing code uses the wrong offsets. + +To fix this, mark any event structures containing 64-bit extended +fields with __attribute__((__packed__)). + +v2: Use any(...) instead of True in (...), as suggested by + Daniel Martin. + +v3 (Alan Coopersmith): Fix build with Solaris Studio 12.3 by moving the +attribute to after the structure definition. + +Signed-off-by: Kenneth Graunke <kenneth@whitecape.org> +Reviewed-by: Keith Packard <keithp@keithp.com> [v1] +Reviewed-by: Josh Triplett <josh@joshtriplett.org> [v1] +Reviewed-by: Daniel Martin <consume.noise@gmail.com> +Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> +--- +diff --git a/src/c_client.py b/src/c_client.py +index 99fd307..45de544 100644 +--- src/c_client.py ++++ src/c_client.py +@@ -1762,7 +1762,7 @@ def c_simple(self, name): + # Iterator + _c_iterator(self, name) + +-def _c_complex(self): ++def _c_complex(self, force_packed = False): + ''' + Helper function for handling all structure types. + Called for all structs, requests, replies, events, errors. +@@ -1817,7 +1817,7 @@ def _c_complex(self): + if b.type.has_name: + _h(' } %s;', b.c_field_name) + +- _h('} %s;', self.c_type) ++ _h('} %s%s;', 'XCB_PACKED ' if force_packed else '', self.c_type) + + def c_struct(self, name): + ''' +@@ -2902,6 +2902,7 @@ def c_event(self, name): + # events while generating the structure for them. Otherwise we would read + # garbage (the internal full_sequence) when accessing normal event fields + # there. ++ force_packed = False + if hasattr(self, 'is_ge_event') and self.is_ge_event and self.name == name: + event_size = 0 + for field in self.fields: +@@ -2911,6 +2912,11 @@ def c_event(self, name): + full_sequence = Field(tcard32, tcard32.name, 'full_sequence', False, True, True) + idx = self.fields.index(field) + self.fields.insert(idx + 1, full_sequence) ++ ++ # If the event contains any 64-bit extended fields, they need ++ # to remain aligned on a 64-bit boundary. Adding full_sequence ++ # would normally break that; force the struct to be packed. ++ force_packed = any(f.type.size == 8 and f.type.is_simple for f in self.fields[(idx+1):]) + break + + _c_type_setup(self, name, ('event',)) +@@ -2920,7 +2926,7 @@ def c_event(self, name): + + if self.name == name: + # Structure definition +- _c_complex(self) ++ _c_complex(self, force_packed) + else: + # Typedef + _h('') +diff --git a/src/xcb.h b/src/xcb.h +index e62c985..73c77a3 100644 +--- src/xcb.h ++++ src/xcb.h +@@ -51,6 +51,8 @@ extern "C" { + * @file xcb.h + */ + ++#define XCB_PACKED __attribute__((__packed__)) ++ + /** + * @defgroup XCB_Core_API XCB Core API + * @brief Core API of the XCB library. +-- +cgit v0.9.0.2-2-gbebe diff --git a/x11/libxcb/files/patch-src__c_client.py b/x11/libxcb/files/patch-src__c_client.py deleted file mode 100644 index bfd9524ac691..000000000000 --- a/x11/libxcb/files/patch-src__c_client.py +++ /dev/null @@ -1,34 +0,0 @@ ---- src/c_client.py.orig 2013-11-11 14:30:55.471622828 +0100 -+++ src/c_client.py 2013-11-11 14:32:05.334624142 +0100 -@@ -1133,11 +1133,11 @@ - _c(' %s *xcb_out = *_buffer;', self.c_type) - _c(' unsigned int xcb_out_pad = -sizeof(%s) & 3;', self.c_type) - _c(' unsigned int xcb_buffer_len = sizeof(%s) + xcb_out_pad;', self.c_type) -- _c(' unsigned int xcb_align_to;') -+ _c(' unsigned int xcb_align_to = 0;') - else: - _c(' char *xcb_out = *_buffer;') - _c(' unsigned int xcb_buffer_len = 0;') -- _c(' unsigned int xcb_align_to;') -+ _c(' unsigned int xcb_align_to = 0;') - prefix = [('_aux', '->', self)] - aux_ptr = 'xcb_out' - -@@ -1160,7 +1160,7 @@ - _c(' unsigned int xcb_buffer_len = 0;') - _c(' unsigned int xcb_block_len = 0;') - _c(' unsigned int xcb_pad = 0;') -- _c(' unsigned int xcb_align_to;') -+ _c(' unsigned int xcb_align_to = 0;') - - elif 'sizeof' == context: - param_names = [p[2] for p in params] -@@ -1205,7 +1205,7 @@ - _c(' unsigned int xcb_buffer_len = 0;') - _c(' unsigned int xcb_block_len = 0;') - _c(' unsigned int xcb_pad = 0;') -- _c(' unsigned int xcb_align_to;') -+ _c(' unsigned int xcb_align_to = 0;') - - _c('') - for t in temp_vars: diff --git a/x11/libxcb/pkg-plist b/x11/libxcb/pkg-plist index c40714c64646..73bba0157c08 100644 --- a/x11/libxcb/pkg-plist +++ b/x11/libxcb/pkg-plist @@ -33,106 +33,132 @@ lib/libxcb-composite.a lib/libxcb-composite.la lib/libxcb-composite.so lib/libxcb-composite.so.0 +lib/libxcb-composite.so.0.0.0 lib/libxcb-damage.a lib/libxcb-damage.la lib/libxcb-damage.so lib/libxcb-damage.so.0 +lib/libxcb-damage.so.0.0.0 lib/libxcb-dpms.a lib/libxcb-dpms.la lib/libxcb-dpms.so lib/libxcb-dpms.so.0 +lib/libxcb-dpms.so.0.0.0 lib/libxcb-dri2.a lib/libxcb-dri2.la lib/libxcb-dri2.so lib/libxcb-dri2.so.0 +lib/libxcb-dri2.so.0.0.0 lib/libxcb-dri3.a lib/libxcb-dri3.la lib/libxcb-dri3.so lib/libxcb-dri3.so.0 +lib/libxcb-dri3.so.0.0.0 lib/libxcb-glx.a lib/libxcb-glx.la lib/libxcb-glx.so lib/libxcb-glx.so.0 +lib/libxcb-glx.so.0.0.0 lib/libxcb-present.a lib/libxcb-present.la lib/libxcb-present.so lib/libxcb-present.so.0 +lib/libxcb-present.so.0.0.0 lib/libxcb-randr.a lib/libxcb-randr.la lib/libxcb-randr.so -lib/libxcb-randr.so.1 +lib/libxcb-randr.so.0 +lib/libxcb-randr.so.0.1.0 lib/libxcb-record.a lib/libxcb-record.la lib/libxcb-record.so lib/libxcb-record.so.0 +lib/libxcb-record.so.0.0.0 lib/libxcb-render.a lib/libxcb-render.la lib/libxcb-render.so lib/libxcb-render.so.0 +lib/libxcb-render.so.0.0.0 lib/libxcb-res.a lib/libxcb-res.la lib/libxcb-res.so lib/libxcb-res.so.0 +lib/libxcb-res.so.0.0.0 lib/libxcb-screensaver.a lib/libxcb-screensaver.la lib/libxcb-screensaver.so lib/libxcb-screensaver.so.0 +lib/libxcb-screensaver.so.0.0.0 lib/libxcb-shape.a lib/libxcb-shape.la lib/libxcb-shape.so lib/libxcb-shape.so.0 +lib/libxcb-shape.so.0.0.0 lib/libxcb-shm.a lib/libxcb-shm.la lib/libxcb-shm.so lib/libxcb-shm.so.0 +lib/libxcb-shm.so.0.0.0 lib/libxcb-sync.a lib/libxcb-sync.la lib/libxcb-sync.so -lib/libxcb-sync.so.0 +lib/libxcb-sync.so.1 +lib/libxcb-sync.so.1.0.0 lib/libxcb-xevie.a lib/libxcb-xevie.la lib/libxcb-xevie.so lib/libxcb-xevie.so.0 +lib/libxcb-xevie.so.0.0.0 lib/libxcb-xf86dri.a lib/libxcb-xf86dri.la lib/libxcb-xf86dri.so lib/libxcb-xf86dri.so.0 +lib/libxcb-xf86dri.so.0.0.0 lib/libxcb-xfixes.a lib/libxcb-xfixes.la lib/libxcb-xfixes.so lib/libxcb-xfixes.so.0 +lib/libxcb-xfixes.so.0.0.0 lib/libxcb-xinerama.a lib/libxcb-xinerama.la lib/libxcb-xinerama.so lib/libxcb-xinerama.so.0 +lib/libxcb-xinerama.so.0.0.0 lib/libxcb-xinput.a lib/libxcb-xinput.la lib/libxcb-xinput.so lib/libxcb-xinput.so.0 +lib/libxcb-xinput.so.0.1.0 lib/libxcb-xkb.a lib/libxcb-xkb.la lib/libxcb-xkb.so -lib/libxcb-xkb.so.0 +lib/libxcb-xkb.so.1 +lib/libxcb-xkb.so.1.0.0 lib/libxcb-xprint.a lib/libxcb-xprint.la lib/libxcb-xprint.so lib/libxcb-xprint.so.0 +lib/libxcb-xprint.so.0.0.0 lib/libxcb-xtest.a lib/libxcb-xtest.la lib/libxcb-xtest.so lib/libxcb-xtest.so.0 +lib/libxcb-xtest.so.0.0.0 lib/libxcb-xv.a lib/libxcb-xv.la lib/libxcb-xv.so lib/libxcb-xv.so.0 +lib/libxcb-xv.so.0.0.0 lib/libxcb-xvmc.a lib/libxcb-xvmc.la lib/libxcb-xvmc.so lib/libxcb-xvmc.so.0 +lib/libxcb-xvmc.so.0.0.0 lib/libxcb.a lib/libxcb.la lib/libxcb.so -lib/libxcb.so.2 +lib/libxcb.so.1 +lib/libxcb.so.1.1.0 libdata/pkgconfig/xcb-composite.pc libdata/pkgconfig/xcb-damage.pc libdata/pkgconfig/xcb-dpms.pc @@ -395,7 +421,7 @@ man/man3/xcb_free_gc.3.gz man/man3/xcb_free_gc_checked.3.gz man/man3/xcb_free_pixmap.3.gz man/man3/xcb_free_pixmap_checked.3.gz -man/man3/xcb_ge_event_t.3.gz +man/man3/xcb_ge_generic_event_t.3.gz man/man3/xcb_get_atom_name.3.gz man/man3/xcb_get_atom_name_name.3.gz man/man3/xcb_get_atom_name_name_end.3.gz @@ -2225,23 +2251,6 @@ man/man3/xcb_xkb_get_device_info_name_end.3.gz man/man3/xcb_xkb_get_device_info_name_length.3.gz man/man3/xcb_xkb_get_device_info_reply.3.gz man/man3/xcb_xkb_get_device_info_unchecked.3.gz -man/man3/xcb_xkb_get_geometry.3.gz -man/man3/xcb_xkb_get_geometry_colors_iterator.3.gz -man/man3/xcb_xkb_get_geometry_colors_length.3.gz -man/man3/xcb_xkb_get_geometry_doodads_iterator.3.gz -man/man3/xcb_xkb_get_geometry_doodads_length.3.gz -man/man3/xcb_xkb_get_geometry_key_aliases.3.gz -man/man3/xcb_xkb_get_geometry_key_aliases_iterator.3.gz -man/man3/xcb_xkb_get_geometry_key_aliases_length.3.gz -man/man3/xcb_xkb_get_geometry_label_font.3.gz -man/man3/xcb_xkb_get_geometry_properties_iterator.3.gz -man/man3/xcb_xkb_get_geometry_properties_length.3.gz -man/man3/xcb_xkb_get_geometry_reply.3.gz -man/man3/xcb_xkb_get_geometry_sections_iterator.3.gz -man/man3/xcb_xkb_get_geometry_sections_length.3.gz -man/man3/xcb_xkb_get_geometry_shapes_iterator.3.gz -man/man3/xcb_xkb_get_geometry_shapes_length.3.gz -man/man3/xcb_xkb_get_geometry_unchecked.3.gz man/man3/xcb_xkb_get_indicator_map.3.gz man/man3/xcb_xkb_get_indicator_map_maps.3.gz man/man3/xcb_xkb_get_indicator_map_maps_iterator.3.gz @@ -2305,8 +2314,6 @@ man/man3/xcb_xkb_set_debugging_flags_reply.3.gz man/man3/xcb_xkb_set_debugging_flags_unchecked.3.gz man/man3/xcb_xkb_set_device_info.3.gz man/man3/xcb_xkb_set_device_info_checked.3.gz -man/man3/xcb_xkb_set_geometry.3.gz -man/man3/xcb_xkb_set_geometry_checked.3.gz man/man3/xcb_xkb_set_indicator_map.3.gz man/man3/xcb_xkb_set_indicator_map_checked.3.gz man/man3/xcb_xkb_set_map.3.gz diff --git a/x11/libxkbcommon/Makefile b/x11/libxkbcommon/Makefile index 520048dca889..9abb9a67f072 100644 --- a/x11/libxkbcommon/Makefile +++ b/x11/libxkbcommon/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= libxkbcommon -PORTVERSION= 0.3.1 +PORTVERSION= 0.4.1 CATEGORIES= x11 MASTER_SITES= http://xkbcommon.org/download/ @@ -10,10 +10,11 @@ COMMENT= Keymap handling library for toolkits and window systems LICENSE= MIT -USES= gmake bison pathfix +XORG_CAT= lib +USES= gmake bison -GNU_CONFIGURE= yes USE_XZ= yes +USE_XORG= xcb MAKE_JOBS_UNSAFE= yes CONFIGURE_ARGS= --without-default-layout \ diff --git a/x11/libxkbcommon/distinfo b/x11/libxkbcommon/distinfo index cf2a1aa58843..77004c83901c 100644 --- a/x11/libxkbcommon/distinfo +++ b/x11/libxkbcommon/distinfo @@ -1,2 +1,2 @@ -SHA256 (libxkbcommon-0.3.1.tar.xz) = 9c973581bba0c883a301fa6474d9c3e4f3a06c34e4ae4f1f4e113692cb18b38e -SIZE (libxkbcommon-0.3.1.tar.xz) = 605756 +SHA256 (xorg/lib/libxkbcommon-0.4.1.tar.xz) = 90ee502ec919814533c65e74c208212854f5bae9b9b87932eeb96fb3876b8ff6 +SIZE (xorg/lib/libxkbcommon-0.4.1.tar.xz) = 551424 diff --git a/x11/libxkbcommon/pkg-plist b/x11/libxkbcommon/pkg-plist index 07d175218be1..820d355c8cbd 100644 --- a/x11/libxkbcommon/pkg-plist +++ b/x11/libxkbcommon/pkg-plist @@ -1,10 +1,18 @@ +include/xkbcommon/xkbcommon.h include/xkbcommon/xkbcommon-compat.h include/xkbcommon/xkbcommon-keysyms.h include/xkbcommon/xkbcommon-names.h -include/xkbcommon/xkbcommon.h +include/xkbcommon/xkbcommon-x11.h lib/libxkbcommon.a lib/libxkbcommon.la lib/libxkbcommon.so lib/libxkbcommon.so.0 +lib/libxkbcommon.so.0.0.0 libdata/pkgconfig/xkbcommon.pc +libdata/pkgconfig/xkbcommon-x11.pc +lib/libxkbcommon-x11.a +lib/libxkbcommon-x11.la +lib/libxkbcommon-x11.so +lib/libxkbcommon-x11.so.0 +lib/libxkbcommon-x11.so.0.0.0 @dirrm include/xkbcommon diff --git a/x11/libxkbfile/Makefile b/x11/libxkbfile/Makefile index 304bde7c769c..99c4946809b0 100644 --- a/x11/libxkbfile/Makefile +++ b/x11/libxkbfile/Makefile @@ -3,6 +3,7 @@ PORTNAME= libxkbfile PORTVERSION= 1.0.8 +PORTREVISION= 1 CATEGORIES= x11 MAINTAINER= x11@FreeBSD.org diff --git a/x11/libxkbfile/pkg-plist b/x11/libxkbfile/pkg-plist index cf9ae09cec7d..64a56470fe18 100644 --- a/x11/libxkbfile/pkg-plist +++ b/x11/libxkbfile/pkg-plist @@ -8,5 +8,6 @@ lib/libxkbfile.a lib/libxkbfile.la lib/libxkbfile.so lib/libxkbfile.so.1 +lib/libxkbfile.so.1.0.2 libdata/pkgconfig/xkbfile.pc @dirrmtry include/X11/extensions diff --git a/x11/libxkbui/Makefile b/x11/libxkbui/Makefile index 1217ed3cdc56..a928f8162a95 100644 --- a/x11/libxkbui/Makefile +++ b/x11/libxkbui/Makefile @@ -3,7 +3,7 @@ PORTNAME= libxkbui PORTVERSION= 1.0.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11 MAINTAINER= x11@FreeBSD.org diff --git a/x11/libxkbui/pkg-plist b/x11/libxkbui/pkg-plist index e614a475159d..39d179701192 100644 --- a/x11/libxkbui/pkg-plist +++ b/x11/libxkbui/pkg-plist @@ -3,5 +3,6 @@ lib/libxkbui.a lib/libxkbui.la lib/libxkbui.so lib/libxkbui.so.1 +lib/libxkbui.so.1.0.0 libdata/pkgconfig/xkbui.pc @dirrmtry include/X11/extensions diff --git a/x11/libxklavier/Makefile b/x11/libxklavier/Makefile index 183d3f310db2..2d1602d77ade 100644 --- a/x11/libxklavier/Makefile +++ b/x11/libxklavier/Makefile @@ -4,7 +4,7 @@ PORTNAME= libxklavier PORTVERSION= 5.0 -PORTREVISION= 1 +PORTREVISION= 2 PORTEPOCH= 1 CATEGORIES= x11 gnome MASTER_SITES= GNOME diff --git a/x11/libxshmfence/Makefile b/x11/libxshmfence/Makefile index 84bfdd3c44d2..3acdac95ad63 100644 --- a/x11/libxshmfence/Makefile +++ b/x11/libxshmfence/Makefile @@ -2,6 +2,7 @@ PORTNAME= libxshmfence PORTVERSION= 1.1 +PORTREVISION= 1 CATEGORIES= x11 MAINTAINER= x11@FreeBSD.org diff --git a/x11/libxshmfence/pkg-plist b/x11/libxshmfence/pkg-plist index 462fda09126c..54519a918119 100644 --- a/x11/libxshmfence/pkg-plist +++ b/x11/libxshmfence/pkg-plist @@ -3,4 +3,5 @@ lib/libxshmfence.a lib/libxshmfence.la lib/libxshmfence.so lib/libxshmfence.so.1 +lib/libxshmfence.so.1.0.0 libdata/pkgconfig/xshmfence.pc diff --git a/x11/mate-applets/Makefile b/x11/mate-applets/Makefile index 6a37596b8078..a96fa39863d6 100644 --- a/x11/mate-applets/Makefile +++ b/x11/mate-applets/Makefile @@ -3,7 +3,7 @@ PORTNAME= mate-applets PORTVERSION= 1.6.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= x11 mate MASTER_SITES= MATE DIST_SUBDIR= mate diff --git a/x11/mate-panel/Makefile b/x11/mate-panel/Makefile index 30ba3dc46ec3..cf1f5acbee7e 100644 --- a/x11/mate-panel/Makefile +++ b/x11/mate-panel/Makefile @@ -3,6 +3,7 @@ PORTNAME= mate-panel PORTVERSION= 1.6.1 +PORTREVISION= 1 CATEGORIES= x11 mate MASTER_SITES= MATE DIST_SUBDIR= mate diff --git a/x11/mate-session-manager/Makefile b/x11/mate-session-manager/Makefile index 225753401ff7..14ee5ca22dff 100644 --- a/x11/mate-session-manager/Makefile +++ b/x11/mate-session-manager/Makefile @@ -3,6 +3,7 @@ PORTNAME= mate-session-manager PORTVERSION= 1.6.1 +PORTREVISION= 1 CATEGORIES= x11 mate MASTER_SITES= MATE DIST_SUBDIR= mate diff --git a/x11/ooxcb/Makefile b/x11/ooxcb/Makefile index 923d7396e406..aa86cc80671f 100644 --- a/x11/ooxcb/Makefile +++ b/x11/ooxcb/Makefile @@ -3,6 +3,7 @@ PORTNAME= ooxcb PORTVERSION= 1.1 +PORTREVISION= 1 CATEGORIES= x11 MASTER_SITES= http://samurai-x.org/downloads/ diff --git a/x11/pixman/Makefile b/x11/pixman/Makefile index cd32755053af..43d7a1cf1203 100644 --- a/x11/pixman/Makefile +++ b/x11/pixman/Makefile @@ -2,6 +2,7 @@ PORTNAME= pixman PORTVERSION= 0.32.4 +PORTREVISION= 1 CATEGORIES= x11 MAINTAINER= x11@FreeBSD.org @@ -10,24 +11,7 @@ COMMENT= Low-level pixel manipulation library USES= perl5 USE_PERL5= build XORG_CAT= lib -USE_AUTOTOOLS= libtool CONFIGURE_ARGS= --disable-gtk -USE_GNOME= ltverhack:30 - -OPTIONS_DEFINE= SIMD - -.include <bsd.port.options.mk> - -.if ! ${PORT_OPTIONS:MSIMD} -CONFIGURE_ARGS= --disable-vmx --disable-arm-simd -. if defined(MACHINE_CPU) -. if ! ${MACHINE_CPU:Mmmx} -CONFIGURE_ARGS+= --disable-mmx -. endif -. if ! ${MACHINE_CPU:Msse2} -CONFIGURE_ARGS+= --disable-sse2 -. endif -. endif -.endif +INSTALL_TARGET= install-strip .include <bsd.port.mk> diff --git a/x11/pixman/pkg-plist b/x11/pixman/pkg-plist index 139159fa07c9..f7fddfe1655a 100644 --- a/x11/pixman/pkg-plist +++ b/x11/pixman/pkg-plist @@ -3,6 +3,7 @@ include/pixman-1/pixman.h lib/libpixman-1.a lib/libpixman-1.la lib/libpixman-1.so -lib/libpixman-1.so.30 +lib/libpixman-1.so.0 +lib/libpixman-1.so.0.32.4 libdata/pkgconfig/pixman-1.pc @dirrm include/pixman-1 diff --git a/x11/slim/Makefile b/x11/slim/Makefile index 411a95fd365e..b041381563c7 100644 --- a/x11/slim/Makefile +++ b/x11/slim/Makefile @@ -3,7 +3,7 @@ PORTNAME= slim PORTVERSION= 1.3.6 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11 MASTER_SITES= ftp://ftp.berlios.de/pub/slim/ \ SF/slim.berlios diff --git a/x11/sterm/Makefile b/x11/sterm/Makefile index a6ce8855afe1..750bcdc49c99 100644 --- a/x11/sterm/Makefile +++ b/x11/sterm/Makefile @@ -3,6 +3,7 @@ PORTNAME= sterm PORTVERSION= 0.4.1 +PORTREVISION= 1 CATEGORIES= x11 MASTER_SITES= http://dl.suckless.org/st/ DISTNAME= st-${PORTVERSION} diff --git a/x11/xauth/Makefile b/x11/xauth/Makefile index 094e1083d159..a988624e67ab 100644 --- a/x11/xauth/Makefile +++ b/x11/xauth/Makefile @@ -1,6 +1,7 @@ # $FreeBSD$ PORTNAME= xauth +PORTREVISION= 1 PORTVERSION= 1.0.8 CATEGORIES= x11 diff --git a/x11/xbacklight/Makefile b/x11/xbacklight/Makefile index 09829b4fe91d..9b13f8c308d3 100644 --- a/x11/xbacklight/Makefile +++ b/x11/xbacklight/Makefile @@ -2,6 +2,7 @@ PORTNAME= xbacklight PORTVERSION= 1.2.1 +PORTREVISION= 1 CATEGORIES= x11 MAINTAINER= x11@FreeBSD.org diff --git a/x11/xbitmaps/Makefile b/x11/xbitmaps/Makefile index 872fb52a1f3e..56f314be6ac7 100644 --- a/x11/xbitmaps/Makefile +++ b/x11/xbitmaps/Makefile @@ -10,7 +10,7 @@ COMMENT= X.Org bitmaps data LICENSE= MIT -USES= pathfix +USES= pathfix XORG_CAT= data diff --git a/x11/xcb-proto/Makefile b/x11/xcb-proto/Makefile index 4c3e79f2f7e1..728fb8cd9334 100644 --- a/x11/xcb-proto/Makefile +++ b/x11/xcb-proto/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= xcb-proto -PORTVERSION= 1.9 +PORTVERSION= 1.10 CATEGORIES= x11 python MASTER_SITES= http://xcb.freedesktop.org/dist/ @@ -11,10 +11,8 @@ COMMENT= The X protocol C-language Binding (XCB) protocol BUILD_DEPENDS= xmllint:${PORTSDIR}/textproc/libxml2 -USE_BZIP2= yes -USES= pathfix -USE_PYTHON= yes -GNU_CONFIGURE= yes +XORG_CAT= proto +USE_PYTHON= 2.5+ DATADIR= ${PREFIX}/share/xcb diff --git a/x11/xcb-proto/distinfo b/x11/xcb-proto/distinfo index 27738e9c05c4..e844ae798276 100644 --- a/x11/xcb-proto/distinfo +++ b/x11/xcb-proto/distinfo @@ -1,2 +1,2 @@ -SHA256 (xcb-proto-1.9.tar.bz2) = 895afe21793e6e26c5ce999b1900c02a5984c201d96d55cc42c182d3c3bde43c -SIZE (xcb-proto-1.9.tar.bz2) = 136421 +SHA256 (xorg/proto/xcb-proto-1.10.tar.bz2) = 7ef40ddd855b750bc597d2a435da21e55e502a0fefa85b274f2c922800baaf05 +SIZE (xorg/proto/xcb-proto-1.10.tar.bz2) = 138834 diff --git a/x11/xcb-proto/files/patch-src_sync.xml b/x11/xcb-proto/files/patch-src_sync.xml deleted file mode 100644 index cc530683cabc..000000000000 --- a/x11/xcb-proto/files/patch-src_sync.xml +++ /dev/null @@ -1,50 +0,0 @@ -From 9c343995eacdc39db2ec7f93cbeab00c88a55026 Mon Sep 17 00:00:00 2001 -From: Peter Harris <pharris@opentext.com> -Date: Fri, 15 Nov 2013 16:07:39 +0000 -Subject: sync: Add missing namespace for the INT64 struct - -Signed-off-by: Peter Harris <pharris@opentext.com> -Reviewed-By: Daniel Martin <consume.noise@gmail.com> ---- -diff --git a/src/sync.xml b/src/sync.xml -index bc07c5b..dd70a08 100644 ---- src/sync.xml -+++ src/sync.xml -@@ -147,7 +147,7 @@ for licensing information. - </bitcase> - <bitcase> - <enumref ref="CA">Value</enumref> -- <field type="INT64" name="value" /> -+ <field type="sync:INT64" name="value" /> - </bitcase> - <bitcase> - <enumref ref="CA">TestType</enumref> -@@ -155,7 +155,7 @@ for licensing information. - </bitcase> - <bitcase> - <enumref ref="CA">Delta</enumref> -- <field type="INT64" name="delta" /> -+ <field type="sync:INT64" name="delta" /> - </bitcase> - <bitcase> - <enumref ref="CA">Events</enumref> -@@ -179,7 +179,7 @@ for licensing information. - </bitcase> - <bitcase> - <enumref ref="CA">Value</enumref> -- <field type="INT64" name="value" /> -+ <field type="sync:INT64" name="value" /> - </bitcase> - <bitcase> - <enumref ref="CA">TestType</enumref> -@@ -187,7 +187,7 @@ for licensing information. - </bitcase> - <bitcase> - <enumref ref="CA">Delta</enumref> -- <field type="INT64" name="delta" /> -+ <field type="sync:INT64" name="delta" /> - </bitcase> - <bitcase> - <enumref ref="CA">Events</enumref> --- -cgit v0.9.0.2-2-gbebe diff --git a/x11/xcb-util-cursor/Makefile b/x11/xcb-util-cursor/Makefile index ca52e702e93c..82ba070f8f9c 100644 --- a/x11/xcb-util-cursor/Makefile +++ b/x11/xcb-util-cursor/Makefile @@ -2,6 +2,7 @@ PORTNAME= xcb-util-cursor PORTVERSION= 0.1.1 +PORTREVISION= 1 CATEGORIES= x11 MASTER_SITES= http://xcb.freedesktop.org/dist/ @@ -17,12 +18,10 @@ RUN_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/xcb-util.pc:${PORTSDIR}/x11/xcb-util ${LOCALBASE}/libdata/pkgconfig/xcb-renderutil.pc:${PORTSDIR}/x11/xcb-util-renderutil \ ${LOCALBASE}/libdata/pkgconfig/xcb-image.pc:${PORTSDIR}/x11/xcb-util-image -USE_BZIP2= yes -USE_LDCONFIG= yes -USE_XORG= xcb xorg-macros -USES= gmake pkgconfig +XORG_CAT= lib +USE_XORG= xcb +USES= gmake -GNU_CONFIGURE= yes CONFIGURE_ENV= GPERF="${LOCALBASE}/bin/gperf" post-patch: diff --git a/x11/xcb-util-cursor/distinfo b/x11/xcb-util-cursor/distinfo index 6219f95324bc..49fa1c37ba58 100644 --- a/x11/xcb-util-cursor/distinfo +++ b/x11/xcb-util-cursor/distinfo @@ -1,2 +1,2 @@ -SHA256 (xcb-util-cursor-0.1.1.tar.bz2) = 517a1febcede3bc994e356c4c066e297a12ca219063b7d39047e29c7a8860652 -SIZE (xcb-util-cursor-0.1.1.tar.bz2) = 280852 +SHA256 (xorg/lib/xcb-util-cursor-0.1.1.tar.bz2) = 517a1febcede3bc994e356c4c066e297a12ca219063b7d39047e29c7a8860652 +SIZE (xorg/lib/xcb-util-cursor-0.1.1.tar.bz2) = 280852 diff --git a/x11/xcb-util-cursor/pkg-plist b/x11/xcb-util-cursor/pkg-plist index 0d66af35be0f..766ca4820b88 100644 --- a/x11/xcb-util-cursor/pkg-plist +++ b/x11/xcb-util-cursor/pkg-plist @@ -3,5 +3,6 @@ lib/libxcb-cursor.a lib/libxcb-cursor.la lib/libxcb-cursor.so lib/libxcb-cursor.so.0 +lib/libxcb-cursor.so.0.0.0 libdata/pkgconfig/xcb-cursor.pc @dirrmtry include/xcb diff --git a/x11/xcb-util-image/Makefile b/x11/xcb-util-image/Makefile index e493432e80d1..2649b6b0d425 100644 --- a/x11/xcb-util-image/Makefile +++ b/x11/xcb-util-image/Makefile @@ -2,6 +2,7 @@ PORTNAME= xcb-util-image PORTVERSION= 0.3.9 +PORTREVISION= 1 CATEGORIES= x11 MASTER_SITES= http://xcb.freedesktop.org/dist/ @@ -10,12 +11,9 @@ COMMENT= A port of Xlib's XImage and XShmImage functions LIB_DEPENDS= libxcb-util.so:${PORTSDIR}/x11/xcb-util -USE_BZIP2= yes -USES= gmake pkgconfig -USE_LDCONFIG= yes -USE_XORG= xcb xorg-macros - -GNU_CONFIGURE= yes +XORG_CAT= lib +USES= gmake +USE_XORG= xcb post-patch: @${REINPLACE_CMD} -e \ diff --git a/x11/xcb-util-image/distinfo b/x11/xcb-util-image/distinfo index af941adf27d2..461b24eed527 100644 --- a/x11/xcb-util-image/distinfo +++ b/x11/xcb-util-image/distinfo @@ -1,2 +1,2 @@ -SHA256 (xcb-util-image-0.3.9.tar.bz2) = d35a3c0eaae171f5081ec127fb9cec174b716ce5d78196a87f2785376da021df -SIZE (xcb-util-image-0.3.9.tar.bz2) = 310947 +SHA256 (xorg/lib/xcb-util-image-0.3.9.tar.bz2) = d35a3c0eaae171f5081ec127fb9cec174b716ce5d78196a87f2785376da021df +SIZE (xorg/lib/xcb-util-image-0.3.9.tar.bz2) = 310947 diff --git a/x11/xcb-util-image/pkg-plist b/x11/xcb-util-image/pkg-plist index 6f96343d39a9..d26f27c7bf64 100644 --- a/x11/xcb-util-image/pkg-plist +++ b/x11/xcb-util-image/pkg-plist @@ -1,8 +1,9 @@ include/xcb/xcb_bitops.h include/xcb/xcb_image.h include/xcb/xcb_pixel.h -lib/libxcb-image.so.0 -lib/libxcb-image.so -lib/libxcb-image.la lib/libxcb-image.a +lib/libxcb-image.la +lib/libxcb-image.so +lib/libxcb-image.so.0 +lib/libxcb-image.so.0.0.0 libdata/pkgconfig/xcb-image.pc diff --git a/x11/xcb-util-keysyms/Makefile b/x11/xcb-util-keysyms/Makefile index 6875146d29e4..3bc01bd46222 100644 --- a/x11/xcb-util-keysyms/Makefile +++ b/x11/xcb-util-keysyms/Makefile @@ -2,6 +2,7 @@ PORTNAME= xcb-util-keysyms PORTVERSION= 0.3.9 +PORTREVISION= 1 CATEGORIES= x11 MASTER_SITES= http://xcb.freedesktop.org/dist/ @@ -10,12 +11,9 @@ COMMENT= Standard X key constants and conversion to/from keycodes LIB_DEPENDS= libxcb-util.so:${PORTSDIR}/x11/xcb-util -USES= gmake pkgconfig -USE_BZIP2= yes -USE_LDCONFIG= yes -USE_XORG= xcb xorg-macros - -GNU_CONFIGURE= yes +XORG_CAT= lib +USES= gmake +USE_XORG= xcb post-patch: @${REINPLACE_CMD} -e \ diff --git a/x11/xcb-util-keysyms/distinfo b/x11/xcb-util-keysyms/distinfo index 2cc20a4fe7b2..25ccde26137b 100644 --- a/x11/xcb-util-keysyms/distinfo +++ b/x11/xcb-util-keysyms/distinfo @@ -1,2 +1,2 @@ -SHA256 (xcb-util-keysyms-0.3.9.tar.bz2) = 7be1acf053bd68a1910fc861b2cbcbad7637b5618590dd5484d43a96f7995c6e -SIZE (xcb-util-keysyms-0.3.9.tar.bz2) = 286075 +SHA256 (xorg/lib/xcb-util-keysyms-0.3.9.tar.bz2) = 7be1acf053bd68a1910fc861b2cbcbad7637b5618590dd5484d43a96f7995c6e +SIZE (xorg/lib/xcb-util-keysyms-0.3.9.tar.bz2) = 286075 diff --git a/x11/xcb-util-keysyms/pkg-plist b/x11/xcb-util-keysyms/pkg-plist index 11a78258b5ce..12c7565145a8 100644 --- a/x11/xcb-util-keysyms/pkg-plist +++ b/x11/xcb-util-keysyms/pkg-plist @@ -1,6 +1,7 @@ include/xcb/xcb_keysyms.h -lib/libxcb-keysyms.so.1 -lib/libxcb-keysyms.so -lib/libxcb-keysyms.la lib/libxcb-keysyms.a +lib/libxcb-keysyms.la +lib/libxcb-keysyms.so +lib/libxcb-keysyms.so.1 +lib/libxcb-keysyms.so.1.0.0 libdata/pkgconfig/xcb-keysyms.pc diff --git a/x11/xcb-util-renderutil/Makefile b/x11/xcb-util-renderutil/Makefile index d864e058384f..98c3d78b671a 100644 --- a/x11/xcb-util-renderutil/Makefile +++ b/x11/xcb-util-renderutil/Makefile @@ -2,6 +2,7 @@ PORTNAME= xcb-util-renderutil PORTVERSION= 0.3.8 +PORTREVISION= 1 CATEGORIES= x11 MASTER_SITES= http://xcb.freedesktop.org/dist/ @@ -10,12 +11,9 @@ COMMENT= Convenience functions for the Render extension LIB_DEPENDS= libxcb-util.so:${PORTSDIR}/x11/xcb-util -USE_BZIP2= yes -USES= gmake pkgconfig -USE_XORG= xcb xorg-macros -USE_LDCONFIG= yes - -GNU_CONFIGURE= yes +XORG_CAT= lib +USES= gmake +USE_XORG= xcb post-patch: @${REINPLACE_CMD} -e \ diff --git a/x11/xcb-util-renderutil/distinfo b/x11/xcb-util-renderutil/distinfo index 17e452dfc8e9..55439af62591 100644 --- a/x11/xcb-util-renderutil/distinfo +++ b/x11/xcb-util-renderutil/distinfo @@ -1,2 +1,2 @@ -SHA256 (xcb-util-renderutil-0.3.8.tar.bz2) = 9789a5c55728fa7bae374d9fdf1c61095869bdc68561911760879095644c7452 -SIZE (xcb-util-renderutil-0.3.8.tar.bz2) = 257492 +SHA256 (xorg/lib/xcb-util-renderutil-0.3.8.tar.bz2) = 9789a5c55728fa7bae374d9fdf1c61095869bdc68561911760879095644c7452 +SIZE (xorg/lib/xcb-util-renderutil-0.3.8.tar.bz2) = 257492 diff --git a/x11/xcb-util-renderutil/pkg-plist b/x11/xcb-util-renderutil/pkg-plist index ed7f372fe4e0..4fa985ebfa35 100644 --- a/x11/xcb-util-renderutil/pkg-plist +++ b/x11/xcb-util-renderutil/pkg-plist @@ -1,6 +1,7 @@ include/xcb/xcb_renderutil.h -lib/libxcb-render-util.so.0 -lib/libxcb-render-util.so -lib/libxcb-render-util.la lib/libxcb-render-util.a +lib/libxcb-render-util.la +lib/libxcb-render-util.so +lib/libxcb-render-util.so.0 +lib/libxcb-render-util.so.0.0.0 libdata/pkgconfig/xcb-renderutil.pc diff --git a/x11/xcb-util-wm/Makefile b/x11/xcb-util-wm/Makefile index 75483bb8b8a8..eaed5195ed06 100644 --- a/x11/xcb-util-wm/Makefile +++ b/x11/xcb-util-wm/Makefile @@ -2,6 +2,7 @@ PORTNAME= xcb-util-wm PORTVERSION= 0.4.1 +PORTREVISION= 1 CATEGORIES= x11 MASTER_SITES= http://xcb.freedesktop.org/dist/ @@ -12,12 +13,9 @@ LICNESE= MIT LIB_DEPENDS= libxcb-util.so:${PORTSDIR}/x11/xcb-util -USE_BZIP2= yes -USES= gmake pkgconfig -USE_LDCONFIG= yes -USE_XORG= xcb xorg-macros - -GNU_CONFIGURE= yes +XORG_CAT= lib +USES= gmake +USE_XORG= xcb post-patch: @${REINPLACE_CMD} -e \ diff --git a/x11/xcb-util-wm/distinfo b/x11/xcb-util-wm/distinfo index e613efdb9411..6eea8739d3c7 100644 --- a/x11/xcb-util-wm/distinfo +++ b/x11/xcb-util-wm/distinfo @@ -1,2 +1,2 @@ -SHA256 (xcb-util-wm-0.4.1.tar.bz2) = 28bf8179640eaa89276d2b0f1ce4285103d136be6c98262b6151aaee1d3c2a3f -SIZE (xcb-util-wm-0.4.1.tar.bz2) = 321855 +SHA256 (xorg/lib/xcb-util-wm-0.4.1.tar.bz2) = 28bf8179640eaa89276d2b0f1ce4285103d136be6c98262b6151aaee1d3c2a3f +SIZE (xorg/lib/xcb-util-wm-0.4.1.tar.bz2) = 321855 diff --git a/x11/xcb-util-wm/pkg-plist b/x11/xcb-util-wm/pkg-plist index e77030222152..b4997da93a42 100644 --- a/x11/xcb-util-wm/pkg-plist +++ b/x11/xcb-util-wm/pkg-plist @@ -1,13 +1,15 @@ include/xcb/xcb_icccm.h include/xcb/xcb_ewmh.h -lib/libxcb-icccm.so.4 -lib/libxcb-icccm.so -lib/libxcb-icccm.la lib/libxcb-icccm.a -lib/libxcb-ewmh.so.2 -lib/libxcb-ewmh.so -lib/libxcb-ewmh.la +lib/libxcb-icccm.la +lib/libxcb-icccm.so +lib/libxcb-icccm.so.4 +lib/libxcb-icccm.so.4.0.0 lib/libxcb-ewmh.a +lib/libxcb-ewmh.la +lib/libxcb-ewmh.so +lib/libxcb-ewmh.so.2 +lib/libxcb-ewmh.so.2.0.0 libdata/pkgconfig/xcb-icccm.pc libdata/pkgconfig/xcb-ewmh.pc @dirrmtry include/xcb diff --git a/x11/xcb-util/Makefile b/x11/xcb-util/Makefile index 70ccdfd9249c..cf6bd9a38942 100644 --- a/x11/xcb-util/Makefile +++ b/x11/xcb-util/Makefile @@ -3,7 +3,7 @@ PORTNAME= xcb-util PORTVERSION= 0.3.9 -PORTREVISION= 1 +PORTREVISION= 2 PORTEPOCH= 1 CATEGORIES= x11 MASTER_SITES= http://xcb.freedesktop.org/dist/ @@ -11,13 +11,10 @@ MASTER_SITES= http://xcb.freedesktop.org/dist/ MAINTAINER= garga@FreeBSD.org COMMENT= A module with libxcb/libX11 extension/replacement libraries +XORG_CAT= lib USE_BZIP2= yes -USES= gmake pathfix pkgconfig -USE_LDCONFIG= yes -USE_XORG= xau xcb xdmcp xorg-macros -USE_AUTOTOOLS= libtool - -GNU_CONFIGURE= yes +USES= gmake +USE_XORG= xau xcb xdmcp post-patch: @${REINPLACE_CMD} -e \ diff --git a/x11/xcb-util/distinfo b/x11/xcb-util/distinfo index 73e5a11c3b53..24eee66a69aa 100644 --- a/x11/xcb-util/distinfo +++ b/x11/xcb-util/distinfo @@ -1,2 +1,2 @@ -SHA256 (xcb-util-0.3.9.tar.bz2) = c611259c0ab20fd76f79f48f4684843c18ea9c967eba78a45e8b3636315c18c4 -SIZE (xcb-util-0.3.9.tar.bz2) = 287855 +SHA256 (xorg/lib/xcb-util-0.3.9.tar.bz2) = c611259c0ab20fd76f79f48f4684843c18ea9c967eba78a45e8b3636315c18c4 +SIZE (xorg/lib/xcb-util-0.3.9.tar.bz2) = 287855 diff --git a/x11/xcb-util/pkg-plist b/x11/xcb-util/pkg-plist index b60db5a337aa..472ca54ef309 100644 --- a/x11/xcb-util/pkg-plist +++ b/x11/xcb-util/pkg-plist @@ -1,7 +1,8 @@ -lib/libxcb-util.so.1 -lib/libxcb-util.so -lib/libxcb-util.la lib/libxcb-util.a +lib/libxcb-util.la +lib/libxcb-util.so +lib/libxcb-util.so.1 +lib/libxcb-util.so.1.0.0 libdata/pkgconfig/xcb-atom.pc libdata/pkgconfig/xcb-aux.pc libdata/pkgconfig/xcb-event.pc diff --git a/x11/xconsole/Makefile b/x11/xconsole/Makefile index c0a8299e0c82..9546ebe3a592 100644 --- a/x11/xconsole/Makefile +++ b/x11/xconsole/Makefile @@ -2,6 +2,7 @@ PORTNAME= xconsole PORTVERSION= 1.0.6 +PORTREVISION= 1 CATEGORIES= x11 MAINTAINER= x11@FreeBSD.org diff --git a/x11/xdbedizzy/Makefile b/x11/xdbedizzy/Makefile index ab970b405a42..f4171b3d46b8 100644 --- a/x11/xdbedizzy/Makefile +++ b/x11/xdbedizzy/Makefile @@ -2,6 +2,7 @@ PORTNAME= xdbedizzy PORTVERSION= 1.1.0 +PORTREVISION= 1 CATEGORIES= x11 MAINTAINER= x11@FreeBSD.org diff --git a/x11/xdm/Makefile b/x11/xdm/Makefile index 938efb90a030..96653cd9bef4 100644 --- a/x11/xdm/Makefile +++ b/x11/xdm/Makefile @@ -2,6 +2,7 @@ PORTNAME= xdm PORTVERSION= 1.1.11 +PORTREVISION= 1 CATEGORIES= x11 MAINTAINER= x11@FreeBSD.org diff --git a/x11/xdpyinfo/Makefile b/x11/xdpyinfo/Makefile index 17da952314cc..339069cf3d67 100644 --- a/x11/xdpyinfo/Makefile +++ b/x11/xdpyinfo/Makefile @@ -2,6 +2,7 @@ PORTNAME= xdpyinfo PORTVERSION= 1.3.1 +PORTREVISION= 1 CATEGORIES= x11 MAINTAINER= x11@FreeBSD.org diff --git a/x11/xextproto/Makefile b/x11/xextproto/Makefile index 2777cf8a643f..52708ad808ee 100644 --- a/x11/xextproto/Makefile +++ b/x11/xextproto/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= xextproto -PORTVERSION= 7.2.1 +PORTVERSION= 7.3.0 CATEGORIES= x11 MAINTAINER= x11@FreeBSD.org diff --git a/x11/xextproto/distinfo b/x11/xextproto/distinfo index cadb3dbd5405..ec6b5fe8358e 100644 --- a/x11/xextproto/distinfo +++ b/x11/xextproto/distinfo @@ -1,2 +1,2 @@ -SHA256 (xorg/proto/xextproto-7.2.1.tar.bz2) = 7c53b105407ef3b2eb180a361bd672c1814524a600166a0a7dbbe76b97556d1a -SIZE (xorg/proto/xextproto-7.2.1.tar.bz2) = 229282 +SHA256 (xorg/proto/xextproto-7.3.0.tar.bz2) = f3f4b23ac8db9c3a9e0d8edb591713f3d70ef9c3b175970dd8823dfc92aa5bb0 +SIZE (xorg/proto/xextproto-7.3.0.tar.bz2) = 229310 diff --git a/x11/xf86dga/Makefile b/x11/xf86dga/Makefile index 719a4b1724bf..b3ac04500831 100644 --- a/x11/xf86dga/Makefile +++ b/x11/xf86dga/Makefile @@ -2,6 +2,7 @@ PORTNAME= xf86dga PORTVERSION= 1.0.3 +PORTREVISION= 1 CATEGORIES= x11 MAINTAINER= x11@FreeBSD.org diff --git a/x11/xfce4-terminal/Makefile b/x11/xfce4-terminal/Makefile index 2493f92129ad..d3c3e5e4397a 100644 --- a/x11/xfce4-terminal/Makefile +++ b/x11/xfce4-terminal/Makefile @@ -3,6 +3,7 @@ PORTNAME= xfce4-terminal PORTVERSION= 0.6.3 +PORTREVISION= 1 CATEGORIES= x11 xfce MASTER_SITES= ${MASTER_SITE_XFCE} MASTER_SITE_SUBDIR= src/apps/${PORTNAME}/${PORTVERSION:R} diff --git a/x11/xfd/Makefile b/x11/xfd/Makefile index bd2ba44e3771..0d8bcf37fb1a 100644 --- a/x11/xfd/Makefile +++ b/x11/xfd/Makefile @@ -2,6 +2,7 @@ PORTNAME= xfd PORTVERSION= 1.1.2 +PORTREVISION= 1 CATEGORIES= x11 MAINTAINER= x11@FreeBSD.org @@ -9,7 +10,7 @@ COMMENT= Display all characters in an X font LICENSE= MIT -LIB_DEPENDS= libfreetype.so.9:${PORTSDIR}/print/freetype2 +LIB_DEPENDS= libfreetype.so:${PORTSDIR}/print/freetype2 BUILD_DEPENDS= fc-cache:${PORTSDIR}/x11-fonts/fontconfig RUN_DEPENDS= fc-cache:${PORTSDIR}/x11-fonts/fontconfig diff --git a/x11/xhost/Makefile b/x11/xhost/Makefile index 0038cd1aa4b7..a30ad552123a 100644 --- a/x11/xhost/Makefile +++ b/x11/xhost/Makefile @@ -2,6 +2,7 @@ PORTNAME= xhost PORTVERSION= 1.0.6 +PORTREVISION= 1 CATEGORIES= x11 MAINTAINER= x11@FreeBSD.org diff --git a/x11/xkeyboard-config/Makefile b/x11/xkeyboard-config/Makefile index 73c761d034ff..c0ed58ee1617 100644 --- a/x11/xkeyboard-config/Makefile +++ b/x11/xkeyboard-config/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= xkeyboard-config -PORTVERSION= 2.10.1 +PORTVERSION= 2.11 CATEGORIES= x11 MAINTAINER= x11@FreeBSD.org diff --git a/x11/xkeyboard-config/distinfo b/x11/xkeyboard-config/distinfo index f2a7757fb8a8..8d1bcb13a837 100644 --- a/x11/xkeyboard-config/distinfo +++ b/x11/xkeyboard-config/distinfo @@ -1,2 +1,2 @@ -SHA256 (xorg/data/xkeyboard-config-2.10.1.tar.bz2) = 7d58064d86bb0155a3acc4ca35097dab4dfef334cdd0555fb5965ebca1fca18b -SIZE (xorg/data/xkeyboard-config-2.10.1.tar.bz2) = 908897 +SHA256 (xorg/data/xkeyboard-config-2.11.tar.bz2) = e7125460892c2b5c3a8d843cb18c24b60c46051e925c2888a61fa672a2f76d76 +SIZE (xorg/data/xkeyboard-config-2.11.tar.bz2) = 920222 diff --git a/x11/xlockmore/Makefile b/x11/xlockmore/Makefile index 7fca883d2448..bd2a99dcafee 100644 --- a/x11/xlockmore/Makefile +++ b/x11/xlockmore/Makefile @@ -3,6 +3,7 @@ PORTNAME= xlockmore PORTVERSION= 5.43 +PORTREVISION= 1 CATEGORIES?= x11 MASTER_SITES= http://www.tux.org/~bagleyd/xlock/${PORTNAME}-${PORTVERSION}/ \ ftp://ibiblio.org/pub/Linux/X11/screensavers/ \ diff --git a/x11/xlogo/Makefile b/x11/xlogo/Makefile index 13b340dc89ff..e8abffcec976 100644 --- a/x11/xlogo/Makefile +++ b/x11/xlogo/Makefile @@ -2,6 +2,7 @@ PORTNAME= xlogo PORTVERSION= 1.0.4 +PORTREVISION= 1 CATEGORIES= x11 MAINTAINER= x11@FreeBSD.org diff --git a/x11/xorg-minimal/Makefile b/x11/xorg-minimal/Makefile index 4b588aca1a64..bc1e727d0e4a 100644 --- a/x11/xorg-minimal/Makefile +++ b/x11/xorg-minimal/Makefile @@ -14,6 +14,8 @@ COMMENT= X.Org minimal distribution metaport NO_BUILD= yes NO_MTREE= yes +.include <bsd.port.options.mk> + VIDEO_DRIVER?= vesa RUN_DEPENDS+= ${LOCALBASE}/bin/Xorg:${PORTSDIR}/x11-servers/xorg-server \ diff --git a/x11/xpyb/Makefile b/x11/xpyb/Makefile index e1c9a22a6501..695285f12437 100644 --- a/x11/xpyb/Makefile +++ b/x11/xpyb/Makefile @@ -3,6 +3,7 @@ PORTNAME= xpyb PORTVERSION= 1.3.1 +PORTREVISION= 1 CATEGORIES= x11 python MASTER_SITES= http://xcb.freedesktop.org/%SUBDIR%/ MASTER_SITE_SUBDIR= dist diff --git a/x11/xrandr/Makefile b/x11/xrandr/Makefile index 8d067fa30d73..7916db846b54 100644 --- a/x11/xrandr/Makefile +++ b/x11/xrandr/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= xrandr -PORTVERSION= 1.4.1 +PORTVERSION= 1.4.2 CATEGORIES= x11 MAINTAINER= x11@FreeBSD.org diff --git a/x11/xrandr/distinfo b/x11/xrandr/distinfo index 6fa0135d9fde..dc42f1296741 100644 --- a/x11/xrandr/distinfo +++ b/x11/xrandr/distinfo @@ -1,2 +1,2 @@ -SHA256 (xorg/app/xrandr-1.4.1.tar.bz2) = 67b554ab975652778bef587f86dab7fec8cb95dfd21c11d98a203dac5c241e50 -SIZE (xorg/app/xrandr-1.4.1.tar.bz2) = 171963 +SHA256 (xorg/app/xrandr-1.4.2.tar.bz2) = b2e76ee92ff827f1c52ded7c666fe6f2704ca81cdeef882397da4e3e8ab490bc +SIZE (xorg/app/xrandr-1.4.2.tar.bz2) = 174654 diff --git a/x11/xrx/Makefile b/x11/xrx/Makefile index db83c048f313..7c8a3907493a 100644 --- a/x11/xrx/Makefile +++ b/x11/xrx/Makefile @@ -2,6 +2,7 @@ PORTNAME= xrx PORTVERSION= 1.0.4 +PORTREVISION= 1 CATEGORIES= x11 MAINTAINER= x11@FreeBSD.org @@ -9,8 +10,8 @@ COMMENT= RX helper program XORG_CAT= app USE_XORG= x11 xt xext xtrans xproxymngproto xau xaw ice +USES= libtool USE_LDCONFIG= yes -USE_AUTOTOOLS= libtool post-patch: @${REINPLACE_CMD} -e 's|mozilla-plugin|disabled-libxul-plugin|g' \ diff --git a/x11/xscreensaver/Makefile b/x11/xscreensaver/Makefile index f8e2e24bd630..a0e849dc6370 100644 --- a/x11/xscreensaver/Makefile +++ b/x11/xscreensaver/Makefile @@ -3,6 +3,7 @@ PORTNAME= xscreensaver PORTVERSION= 5.26 +PORTREVISION= 1 CATEGORIES= x11 MASTER_SITES= http://www.jwz.org/xscreensaver/ diff --git a/x11/xtrans/Makefile b/x11/xtrans/Makefile index f70ecdd1dc27..ccfde005795f 100644 --- a/x11/xtrans/Makefile +++ b/x11/xtrans/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= xtrans -PORTVERSION= 1.3.2 +PORTVERSION= 1.3.4 CATEGORIES= x11 MAINTAINER= x11@FreeBSD.org diff --git a/x11/xtrans/distinfo b/x11/xtrans/distinfo index 59088e2cd73a..3f1861d2c248 100644 --- a/x11/xtrans/distinfo +++ b/x11/xtrans/distinfo @@ -1,2 +1,2 @@ -SHA256 (xorg/lib/xtrans-1.3.2.tar.bz2) = 94177c89b74f594bcddc6a12825e9b464e17ab1977de671d25f67a4ea922cb87 -SIZE (xorg/lib/xtrans-1.3.2.tar.bz2) = 177812 +SHA256 (xorg/lib/xtrans-1.3.4.tar.bz2) = 054d4ee3efd52508c753e9f7bc655ef185a29bd2850dd9e2fc2ccc33544f583a +SIZE (xorg/lib/xtrans-1.3.4.tar.bz2) = 182341 diff --git a/x11/xtrans/files/patch-Xtransint.h b/x11/xtrans/files/patch-Xtransint.h deleted file mode 100644 index dad289484542..000000000000 --- a/x11/xtrans/files/patch-Xtransint.h +++ /dev/null @@ -1,11 +0,0 @@ ---- Xtransint.h.orig 2013-11-08 10:46:59.086340096 +0100 -+++ Xtransint.h 2013-11-08 11:02:02.275278727 +0100 -@@ -72,7 +72,7 @@ - # define XTRANSDEBUG 1 - #endif - --#if XTRANS_SEND_FDS && !(defined(linux) || defined(__sun)) -+#if XTRANS_SEND_FDS && !(defined(linux) || defined(__sun) || defined(__FreeBSD__)) - #error "FD passing support only on Linux & Solaris" - #endif - diff --git a/x11/xwininfo/Makefile b/x11/xwininfo/Makefile index 4feb99991279..c20c0aee92fc 100644 --- a/x11/xwininfo/Makefile +++ b/x11/xwininfo/Makefile @@ -2,6 +2,7 @@ PORTNAME= xwininfo PORTVERSION= 1.1.3 +PORTREVISION= 1 CATEGORIES= x11 MAINTAINER= x11@FreeBSD.org |