diff options
author | zeising <zeising@FreeBSD.org> | 2014-04-16 18:28:47 +0000 |
---|---|---|
committer | zeising <zeising@FreeBSD.org> | 2014-04-16 18:28:47 +0000 |
commit | 0d308966c11339773e9f09cdd69a8b5876b4f04e (patch) | |
tree | fc8323f5d400038235fda42a6096107239789049 | |
parent | 2ff2f3dac9805ec42de1b5cab42db4952b63bb93 (diff) | |
download | FreeBSD-ports-0d308966c11339773e9f09cdd69a8b5876b4f04e.zip FreeBSD-ports-0d308966c11339773e9f09cdd69a8b5876b4f04e.tar.gz |
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 6bdf841..3709d7d 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 a2ba251..1064631 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 b6a1442..6f659aa 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 550729e..24cab19 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 3ca9af1..f68a7cc 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 ac076c1..5c8b60e 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 783b60e..daf0f32 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 ad6c352..a706be5 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 1a9ebcd..2c342d9 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 11ff864..7c94f11 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 09ee64d..7de0fff 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 a2d1b38..2c60c3b 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 08a04b2..159e7e3 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 17e3399..d9cf113 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 6c10ba2..f3d706f 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 5227a29..64f0273 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 0134a8d..06decc8 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 3a42069..2de28a7 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 33ecdde..23dd258 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 4d40061..5696161 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 92c71d6..e119b3f 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 63d8b0d..48df834 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 73fb46e..d140c6d 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 4aeb638..809e105 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 83b7b4a..c8c70ca 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 4732a72..fa098df 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 bd01362..8c4c63f 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 178c6a0..180a3d7 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 1b85b63..faab511 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 9636744..d00f939 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 520a97d..9a8bdd9 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 cc33710..258e88b 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 d569dae..090ec99 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 25e37d5..1ec253f 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 ce24d0b..d8a4561 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 a202ec7..f9dc6f6 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 5db7f0e..4153be4 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 1aab9e6..afae2fe 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 9656ed6..669934a 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 169ce18..3725e03 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 7a9f916..841b1bb 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 4056eca..4f7e401 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 1285f29..81f1f41 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 65542c7..47384bc 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 f74ea80..d68ec21 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 617863b..f840c89 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 d797bf8..1832a88 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 e11f279..b63a6f8 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 131b0e4..f80522d 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 ebb86e3..8495295 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 dc4ffcc..0ba93e8 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 6d08943..c0a66dd 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 6e5fb43..aecbd80 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 8440662..6bf547f 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 73dbe64..d3e5590 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 7398dee..487ac36 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 c8bc613..2167fd8 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 aec4f9e..100b260 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 7148b0c..62f7be3 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 2ee65ac..ced2591 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 19b03aa..199a891 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 8acfb74..1706990 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 a2afa9fa..66e7e45 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 95d8bef..adfa4ff 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 8c209ab..e654e53 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 b932957..aa31540 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 8bf7ca5..8db4fe7a 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 790f38a..5c79682 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 7896272..606154e 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 ea972c7..a6772e0 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 0d46e29..67c363a 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 d80427a..32b2bc2 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 75cfbaac..8915e6e 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 358329d..f4c1d9b 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 5faf721..7af85d3 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 4a4d442..4a39006 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 f13327e..5997903 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 d5020af..c06604e 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 aba6992..d9f4f81 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 afb1c37..34333cd 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 55e8600..8eb8bee 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 4375c85..97bf5bb 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 4799409..d87348a 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 107aef3..1af6aeb 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 441698a..e3ccf61 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 78557f9..82115f8 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 11cd33f..25d2289 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 e224e66..bba0bbc 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 6356dbc..825c5fc 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 687c405..3de4fe4 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 b530772..cc28d2f 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 583c160..7bc87fd 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 9a05729..7ef123c 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 e659422..0d819ee 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 a55e789..51730c4 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 e54784f..0fc249d 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 28d7347..678550e 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 e8bd2d1..25f053b 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 d3d18d7..bcf76bc 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 e569e2b..4ff499a 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 df571a1..961c03a 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 3c83445..21bc56b 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 ad66a97..d243bca 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 c7e034f..6536212 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 5184d82..5ec463c 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 e912f07..5d79fad 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 c954bdf..5b057bd 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 7b17ad9..09ae70b 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 100eab1..6d4ed2e 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 6bca76c..cd0e86a 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 29f81a3..4b636a1 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 091be03..5c33ea3 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 f09c7a3..8631420 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 447687c..39c4a51 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 81f72f4..bab8cce 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 24ff44e..889e50c 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 0c0a104..69449ef 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 cd45c35..7c37e2ec 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 3f39e29..3b7818b 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 c0fd488..e45ce1b 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 8845ae6..365c342 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 07632a5..6a9679e 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 5d5f8dd..9a15a90 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 efe09be..b6ad32a 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 77bb861..9478bb0 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 df27987..0c59354 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 9e8e054..7ab256c 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 fda7c7a..cb0e31b 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 8c1020e..6f8557f 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 ed334a5..e201eeb 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 3b1e031..e80bec4 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 84214d9..8216505 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 47a4893..0b6c282 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 a7b823e..3886dc1 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 ddd288f..92140bf 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 a711bb6..34a9aec 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 6151a6b..9796fae 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 3d396cf..db91fcb 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 ab7f953..80a4942 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 3d64ad8..5afe174 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 96c76ab..6a1abc56 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 bb2fda1..b204ac6 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 60b0eb8..64796f2 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 4fe963b..97c5f03 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 cf0a8b2..e628507 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 014f9c1..5ba624b 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 3cc0ac7..6880212 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 7d60636..fda89e7 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 5af0d49..e7b23a6 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 9c0efe9..6f79c25 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 09e9751..8d10ffd 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 ea141c3..417bed5 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 d78c89c..c0232ad 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 5e21d28..ddec226 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 cc99b8e..b70dec7 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 052ae72..fd724d2 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 828258d..d6a38b3 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 aca04be..31a6319f 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 12a0b54..bb12c74 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 f30a1f0..ab47d56 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 c9f6085..8043642 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 5263ac7..30cda10 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 45c26cc..43ccf9c 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 f632251..5d69cfd 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 9b3c17a..1ae5c32 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 a1875ba..d222aab 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 145f441..255dca4 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 613c0a1..78e1f00 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 204fa78..ce7b63c 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 6ea4a68..c556be5 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 e94c001..a385c9d 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 fa1befc..48b2c67 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 7b7aa97..6a744b7 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 a30aaed..67228d2 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 2423139..7b6bbd9 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 794c7cc..5719e37 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 33904cd..0eaa926 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 0879a47..64f26a6 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 cc3c6002..d810121 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 caeab5f..e71b27b 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 de6333a..c4fddf2 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 501df5b..088ab05 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 32de794..c96f249 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 3c1195c..c11532a 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 e6fa3e4..950cbbe 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 2719939..91f16b4 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 3201e3b..729e9df 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 e85e0a3..65db258 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 ff7c533..fa2fde1 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 c9a270a..1a36b0d 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 055aa1b..35e977b 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 7bd265a..66d76ad 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 4c535cc..e3d7f0e 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 d8736f8..590cc17 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 8ed6479..a91cee1 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 b91236f2..987265e 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 752199f..a4e2218 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 4551768..5202e18 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 364ddc2..29d51f7 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 0b12ac1..b18ce99 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 4172e4a..6f8837c 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 73f2418..6e24260 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 fb760a2..3da9b47 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 070cdfb..54b0d06 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 d0d07d8..f10f29c 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 a43f6fb..45961cc 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 61969b0..0a3aeed 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 c6c79db..7b827ec 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 18ec500..6bf5994 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 b9385c8..d1f54cd 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 a11cc0d..86280ec 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 e780bb5..a0480cf 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 d020107..2b33f17 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 a15f8c0..659d2a2 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 32f4ced..bb422f1 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 fe23e48..f492e78 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 b038ded..6753005 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 978db78..584e604 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 275d87c..41096ca 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 3169e82..e152b09 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 c6f5682..7725639 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 f8797f1..0c90481 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 23b262b..2a27cd6 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 283f22c..e9846f2 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 fece468..a7c83ee 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 47542ff..edb6e61 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 a46b08f..453c7e1 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 607aede..b3cfef4 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 050fd8a..0dd9ad0 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 95f03cf..2ae94af 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 37c2b52..ef9ffaf 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 77b4f09..ca36d11 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 18e9d82..e9c6260 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 c1c685e..edb9c9f 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 0c6f630..e408ca6 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 ced64079..eed5494 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 07c9649..0c52ce5 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 a127047..5ef84b6 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 64adecd..acc75ea 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 48ce07c..1f9e243 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 3f0377b..0dd30e2 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 27fd1f0..b654c41 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 381041d..c117154 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 ddc4064..9bd3415 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 286849e..bd626ae 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 2d1966b..63f6e291 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 5d6b8de..2346499 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 96edf26..fd51052 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 e98d9db..eb06e95 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 7e3aee1..7535d43 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 7e5c080..91d45fe 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 10fbbcc..801e33d 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 6a6fcf6..8a25642 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 824ce66..b6bacc5 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 36bd621..fdf7f096 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 fa3d1ae..f573047 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 0d9fbdc..b594a57 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 807bda7..5dab6f6 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 a220c7e..3d48d7a 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 c646df6..419bca0 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 9b9f089..e2e04db 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 93d442a..ed2d7c2 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 e08f2fa..8e30960 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 3bf0ac6d..875ead2 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 081edfe..b5ad7fa 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 01e3be8..b6ae22e 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 a1d3739..1e51947 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 7ee56c1..00258e6 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 353be731..bf765eb 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 590cdd1..fd225c7 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 6c0c84a..c642a18 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 2876b43..dbed8349 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 bef969c..55a1513 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 e73a99c..89f0814 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 1132899..0c4111c 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 bd20f42..0e08d1a 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 50bc5e6..4cb3fea 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 b99506c..e31577f 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 0284aec..2e707a6 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 786100f..8304c0f 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 e113535..e5dfa80 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 f3bc2f4..bee753c 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 14b5102..7c0debb 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 994bff5..aba0c45 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 963d35f..0cf2bed 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 498b847..f397753 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 d5ef030..7dbebd3 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 aa9b945..4714144 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 91a2a30..60f2215 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 1281292..9302406 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 a3ab6ff..8d2df1f 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 02bc277..7c94b58 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 21fd15d..f6e4c94 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 7049893..916af4e 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 5198911..4acfa9e 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 4b07824..3e3b41a 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 6d6fced..200a05b 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 db1cbb7..4ad9182 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 85479cc..86d54de 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 d698611..601c557 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 8fdcce1..4d4c670 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 f8907f3..9979321 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 f32aabb..3d72f2a 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 bcf25fa..d08f850 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 3c3fa7e..2a82395 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 697f674..e2d4bea 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 0b9a817..0b49bc7 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 9e7ac2f..da810c7 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 ce0907e..b3f542c 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 efb6b3d..d0a2e18 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 46af135..d38d997 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 c48f616..2e55551 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 ea250a8..0e1688e 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 350ab34..4ba3a3d 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 b3c9ff3..b817a80 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 6622209..6c849ef 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 03cb866..1a35e99 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 768244f..9d1cc53 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 d5e97fc..b91e095 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 176f13d..b87c95a 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 5d1e539..87754ec 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 cb68366..715e91a 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 1872c20..477822c 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 d5694cc..2a27fa3 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 27800cd..accb3e4 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 7aa89ee..619162d 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 d035a3f..92a102a 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 cbc1463..026b79a 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 688f964..853cc43 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 db97b4f..c3eba6d 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 b32a9a9..012891c 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 afccbaf..8c23e0e 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 057d061..fba3600 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 09fbcf7..ffb3ceb 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 3713348..ec9cb4a 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 93a4391..bfe2e4e 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 a1ba989..0330b4b 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 bb909a5..38d8704 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 0647b0a..781ed6e 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 76794ca..df5359f 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 41b1e61..4db59ab 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 76127bb..b196f96 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 e12abca..8661f7f9 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 306f9a4..183840c 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 c54714a..b8fc6f0 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 b297f88..10db06f 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 5764252..b3b566c 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 9287d58..ea64b0ff 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 8ddb105..85eb20d 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 e5dca5e..54076d8 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 eb42174..c8d7946 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 bcd662a..00b9151 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 8edcc96..5bbb6fa 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 420c08d..03bb184 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 807b2c1..513c435 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 bd481de..66a1c55 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 0e29b1e..726754f 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 eef2fbd..50f7467 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 25a74d8..9e28d56 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 751fd5d..f4fa476 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 4bbd8a5..a87b6a2 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 6d65546..8903e76 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 89eebd9..0eaff9e 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 72925a1..27d5c6d6 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 8dc3fa6..cfebcac 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 037e5cc..9e37629 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 91da471..6d85845 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 98a8970..484ccdc 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 7de8ab9..f93073f 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 0d5ae1d..c21aced 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 e3b3e44..e611092 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 288bafc..1c0cbac 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 ca37f37..1a87e02 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 b2428bf..5dac010 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 5a98934..3c74a03 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 934f2f2..fedd2c2 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 648b0c3..5fd4503 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 c020f63..2679106 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 8c09657..edc5c39 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 bcbd8ca..364491c 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 c48744a..01c5bfb 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 84aa11a..30f144c 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 01b2644..a726646 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 9185fc2..f322c97 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 8617361..51ff492 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 f27caff..7413994 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 5a8281c..54d4b61 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 66d8717..baf5109 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 101088e7..6e0b8c0 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 3016f59..dc1eba9 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 2fd3937..cbf623b 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 81706f9..c7b4d42 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 3e333a5..4e62473 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 58d9aea..652aa45 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 329136e..2ae778d 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 8b52e0d..8f0085b 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 541d39f..e60c80b 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 81d1212..025b2b4 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 77528fb..689b259 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 1c13f47..9c37d96 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 82169c9..4605c0d 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 17318da..763988a 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 7096527..e4b41b6 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 311503e..2e01947 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 963a2d8..2aad28c 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 9b6df2c..2891e75 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 4602699..7e5cb03 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 ca6aee6..b9be1f1 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 852d3e1..d01c073 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 c54be52..4f5db8f 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 f2b25d6..f85d9fe 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 84ba8cc..d52e508 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 bc88e0c..25a39ef 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 ffdb93d..aeecc92 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 9dc2d94..5ba05e3 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 3903cec..49cbc0c 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 4071e63..492c585 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 1195bfb..e7577ce 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 4b824d5..8c316e5 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 9c02305..08bda7b 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 ee67f73..9ab1f45 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 72432b9..38919ac 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 622d43f..2bbdb7f 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 8e0158b..db1f3d9 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 7ccd765..2b0b1df 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 3ca647f..247a28e 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 64a7d45..4dbf83d 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 43b4163..287b3da 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 279619d..9f7fac2 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 f3aa98e..e9fad64 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 0d3a466..dadb1ea 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 f03e6d4..3277903 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 dfbea49..3711045 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 de1c49a..33c3417 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 30534e66..d188e1c 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 34e2275..e0f24d1 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 a0d3031..c2c54e6 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 75316fa..7dd74f6 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 16ae546..1479670 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 415589a..b46d6a2 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 0dec0bf..b3f6103 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 7ef5103..2fe6a65 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 daa32d3..b96dc18 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 5c8f730..56a46e5 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 8cfc81c..f043030 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 082f449..68907dc 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 ddbc676..ec3bef1 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 d396403..714ecca 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 fbb3295..5046551 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 565cfd6..d5e0db4 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 4b78c0c..f2a02d0 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 ea97cdd..4a94411 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 6d0f21b..aca20cb 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 86b49e9..c1f4347 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 23523fe..7fb770e 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 57d787b..028d6a9 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 11af678..627cc1c 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 210154d..f05e918 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 e92619b..4032719 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 76f3b3e..dc690fa 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 721d7f5..b163d26 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 932f8cb..6892d10 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 296102f..670f8ba 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 6928a58..5e92f64 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 7d32eea..6a1751c 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 c2c23ef..ea51dcc9 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 9bdabe5..cb1c457 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 895f733..07285a0 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 763ad8e..7135ff6 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 c1e7d63..b439544 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 71223cf..4d67c04 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 f909d9f..c57c399 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 a30a4f9..7deb2ae 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 e7156b0..bad17ab 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 b798d83..6425d5e 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 ae64aae..6a67868 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 5e651f8..cf824ba 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 4e3170c..40c5967 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 76e22ad..2721945 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 15d515e..8207878 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 50f2406..01a7229 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 3347fd7..d7273e7 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 fe634337..efc5054 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 adf0e29..fd315ef 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 63a87d1..3e7cd9f 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 ca5aa4f..2e1d603 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 7127fdd..36d80b2 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 9e95383..3b11956 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 bd5c3e79..bfecdf7 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 c977542..603e843 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 7968210..c8cb311 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 7eaa94c..fa923b4 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 9ca7e22..495d288 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 8c029e7..d9e0999 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 7a71e89..ddcf60d 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 7870717..e538846 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 60dd31c..b8ca478 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 eac6d16..7320931 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 9db203b..8b79df3 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 a89b675..5e3fc18 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 f68caa5..416db268 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 c1b0f23..31e9700 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 1495dc0..6ee8010 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 ed2d5db..e55f4b7 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 6633902..54fa1b3 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 bff0101..e9c8bbe 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 e034d36..df6ca79 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 7cc15d0..f0ddfb9 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 fc6e2ea..75824c6 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 20b2dfb..f5a32ed 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 5f5b8f3..24ea46b 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 4403760..9971687 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 fb2ee5e..e68ce5d 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 e22c8ea..18fd6ba 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 1e3f9a5..12ceea0 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 ec2fca9..4d66e8b 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 14866d5..e4884cc 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 f541030..15766c6 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 19547e3..3adca15 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 f3d64e9..4cd600e 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 ebb825c..d60ef61 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 318de57..6c13cbd 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 2b16018..5fc6b6c 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 5189676..96db43a 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 29e1d2c..f174732 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 807e1c4..0d2d5ae 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 7577bc5..3d1c6c9 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 eaa7516..baab359 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 25ee0a7..50ba391 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 2d46a0b..a8379ce 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 a83986e..d49d89a 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 f7141e0..63bf90e 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 82b5d32..a27c5e0 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 739a363..dd6f7a5 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 1fd6794..0d7290c 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 b748761..67951f7 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 df3fb22..055b088 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 9c17f5b..871b67c 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 f92bc3c..0ae8e9d 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 cb4bdbb..9d09979 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 64dee3a..6d08c30 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 203b383..61fb62a 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 9ba74b7..247e2c1 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 58b1772..1e33685 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 162aea0..08ae4b8 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 09675f06..f49ad40 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 210baea..7b46539 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 65ced6f..3aa2423 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 ed158d3..bd7f043 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 6f3894e..96a31aa 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 667aa8d..0bea3ee 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 f0a07db..6118220 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 f035025..1ec24b6 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 a596917..826fef7 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 c241498..27b0560 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 da51cfc..631143b 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 7560da5..ab50fc7 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 65385cf..bcb76a8 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 8419b08..9c7405f 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 d3d1d40..ba36814 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 addd253..4d04ecd 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 0705d6d..c33a55c 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 ef03ff4..d9b7db9 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 af85e43..bca4fd1 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 d406cee..9438764 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 a2fb04b..8b4db5b 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 8398e66..9fd5b51 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 b5fad29..0a14a4a 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 54af407..d2177d7 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 546ca7e..4730db0 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 9925ef8..a031d32 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 f0ddafd..d58d44b 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 1b3256e..11f8a43 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 1b531fd..7545553 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 01974a5..17436f4 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 782b4e2..e7309b4 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 585edf3..249cdda 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 5aad5d6..c47f4df 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 1dbc4b1..c9e572b 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 09007b4..5353746 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 335fb0c..b9c8575 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 58abf95..828d5fb 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 f0aff96..fc2569b 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 33f703a..1573058 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 287c8ab..b9ace67 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 76f34e6..381438f 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 0750805..b5e26d5 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 a78a0bb..8eca654 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 8a7feb2..c94466b 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 bb4200a..8199415 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 142e5f3..7934694 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 5d80cae..d48c68c 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 094c72d..d108a39 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 3d11de1..8c2010e 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 b233361..c55caea 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 c1c6203..88687a2 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 a387562..39657ad 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 1883733..45eb3ee 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 3b1b439..f52feec 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 40f860d..80068d0 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 92c0407..c18edc8 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 c73090d..3531bf9 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 b5b6ea4..ab6f011 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 5d2b66e..7e9c214 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 33596be..251c4a7 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 50c6d18..c3dae19 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 6f88d0c..6a2759e 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 d21299a..7f0709f 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 95c4a80..8c86c33 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 c036a90..b9ce6eb 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 456b90c..ff47782 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 d0ff246..83a6610 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 fac79e7..36592a0 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 355a8ab..5f3720f 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 4d4380f..3929de5 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 42e3de4..502a9e1 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 998ba8c..fef2244 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 05b9f18..237f36a 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 3937481..832343b 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 f8544c6..7ff51d9 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 19bddbc..48382f9 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 3f59fa0..33beb08e 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 5fa514e..a8b281b 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 9dfd381..da6d480 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 b8963af..055021b 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 953723d..9841abe 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 1b5c8cf..0aed5c9 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 63dc27e..18bee56 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 7152e43..cef20e9 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 63d7318..d3d1d63 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 d5c4b18..6f51654 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 980df7f..f44c602 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 0f3390f..aecfd4f 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 cc2deb2..6e748ec 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 448d62b..ae842ce 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 4a2db42..dcf7107 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 90af1bf..8622386 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 caf9c6b..777eecd 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 f4c5923..2ebac16 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 1a388a4..007d6f0 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 1060dfc..b8a531f 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 fda4321..43f94ba 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 15b1d5a..4dda9a5 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 5274774..4b199e0 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 f2f565c..fd7dc59 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 916e0c5..44de56a 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 831e9f1..1e409dd 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 f7b092a..ab4c786 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 0a74597..8cd6f9d 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 414d613..d371b34 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 1b8b071..2fa6250 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 e9d3303..46b45b6 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 0ca0fcb..9b94c93 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 acbba7b..f72ca34 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 dd78dc3..3f1e5ef 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 929b377..4104052 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 667bf8e..3c35b84 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 9cb3fd7..d133e0c 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 613a196..2e654ad 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 8e44f2a..9708da0 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 acd9f496..618ad89 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 4e493ab..3c8df07 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 f847f6a..09541ec 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 d468e78..a6b584d 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 779ecfc..c52cce9 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 0a68e0f..cbcb7e5 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 1f517d6..8be5829 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 91cacda..aa5f2fd 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 e406d5a..a20a883 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 5e1604e..59e562a 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 6bfc9b1..69ec14d 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 4c73711..2159c33 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 df4c976..932138e 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 2d2d90b..f3793da 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 dd39e2c..fd0c335 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 1e22d9d..6de4f90 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 8eacb73..0cf961b 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 0d9d0e4..1722cec 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 b8b867b..9ccdce4 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 e2d0b0c..9c4fa78 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 2ae16de..54645c6 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 987b88c..2022fac 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 790c87d..5ac9faf 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 3b1c8fd..d008b55 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 dcb328e..44ce97a 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 b8fe098..06f30ec 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 53b61c9..a1caa68 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 e02cd0d..b5e491d 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 9d74f2d..b6ac244 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 2c8db56..be8922a 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 64d81c6..ee4c8c7 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 c3f92fb..fc61cea 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 b557fa9..bea7941 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 4200ffc..f5eff02 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 bfae828..5251457 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 a9c53be..62e90ee 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 a9138af..c864fbf 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 b69eee4..36e1c3f 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 4ef3010..9cf4bdc 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 716a4b8..09ce6db 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 9ce5120..cf26f08 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 9cd9b9f..bfa22e0 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 070a31d..7aea01e 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 1fd7e15..9fce323 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 3a2ca28..651a2e0 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 7396742..32bdbd7 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 d14d910..97b1c30 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 d18a28b..1aabb97 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 f54fbec..5a12d9f 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 316661f..a36bb33 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 c0c1d01..dd39789 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 da699de..96be3d4 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 c7b2d25..c66ecfb 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 4fd840b..bd0277e 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 b55f966..53dd532 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 797288e..549cd62 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 ea7c0d6..c993bbd 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 a003ae51..4a667e7 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 8596693..985521f 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 86a57ef..0a8204b 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 92ba904..3589999 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 5d9dc40..ac02ddb 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 e665bfb..3656861 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 290de60..32fa785 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 18fd814..e59e3ae 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 497d66b..b8a2e4f 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 b3be6b6..a2893233 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 aa2c37c..1296eaf 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 8bb54f9..317756b 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 0990bd3..7572a7d 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 6f25fe0..a889e5e 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 0505fa82..fde08fa 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 3451d5e..9682f9d 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 1134334..9e91202 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 10fc0c6..4089d1e 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 0c3a608..74852c54 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 b0f26b8..fcc9f44 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 352654b..4a11ee6 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 cd0a2fe..ab5e677 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 4261709..c53a60d 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 272fdbc..85cf087 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 0856884..26db482 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 b70aca7..a49ec2a 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 3241c79..6a3ec6c 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 6682fd7..5c286c5 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 d909e43..de3e72e 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 36840f9..bda9d5b 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 b2c03ed..3857aa0 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 fdc01d0..9a8ba17 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 841bd4c..3518e17 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 469e03c..4ef2b12 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 c5fe162..4c28509 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 d0e1183..5874922 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 a82a418..a7440fb 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 0bb4ac9..d84420a 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 35717b9..6d3a441 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 49f83a3..e4a5bc4 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 df031c8..1e9a526 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 e0efe72..be942d3 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 c8ed568..9de83f0 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 cefa98a..4874a28 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 a6dd1a2..854ab47 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 ccce8e7..9ac0270f 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 5993795..7028faf 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 dea21f9..6110bb7 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 0a787d8..a4e70b1 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 a7b20536..fdfcf21 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 bb0ab79..f802562 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 708df7f..5b343e1 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 2d3ca12..9488767 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 3c1cf88..327c987 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 036b5a9..48c872b 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 a950371..2a86d78 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 e03da55..60197b5 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 28cf7fc..1bec394 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 3e404a4..0cb95f2 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 e936c4e..8cfd058 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 2f976e9..53ad516 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 136511e..eb4a887 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 6f16dcb..18de975 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 fb0dd1c..4086781 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 0da4a4c..1f5e113 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 414be7e..7faa595 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 f5327d6..65ef88a 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 117af60..66665ea 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 40e4b47..4f07b9e 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 63d58c8..27adeeb 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 5ecb9e2..0504641 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 5e17cc3..7ac894d 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 827dc8b..2a33d01 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 56c9fc5..a6db3d6 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 71baafa..c6afdad 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 6b2ed13..b9785b8 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 de0c5dc..31dbda7 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 0e23246..81ad6d1 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 cff4cf7..6283a45 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 8f5d5ca..a2ec2fc 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 9cd0704..f340f5e 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 40797cc..a42478b 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 3360cf4..1ac76f2 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 426c7ce..05ac289 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 2a56d7c..c9de0a5 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 0039699..f1f5d1a 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 c4da6c4..08c5ee2 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 5418328..44ca510 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 dd8b61c..5f70f23 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 03acb5f..de1ed2b 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 56fe507..22dd2d3 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 8d79ce8..44ad884 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 213eebd..b549520 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 1cf063c..dde13cc 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 cb25d17..d41b929 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 9cf1b55..32b9d0b 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 8f888b7..74971f4 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 163fd21..bde12d7 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 390f0d5..9ad0ae8 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 c200542..4d14a8a 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 a9b3536..79cc08c 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 6b33cf0..f62b4b0 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 78a12a9..3257a20 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 f215aa7c..aecc544 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 c702f68..70e0c32 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 0ae327f..9a55bad 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 6feaab7..8cac9f4 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 3d80027..afbee6c 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 dfe7ff4..6a73da7 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 05e2cdd..15f41a2 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 9a3bc26..7684450 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 49aa44a..a5a243b 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 54fb767..d9e8e07 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 c86748b..9597e69 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 1de5f30..2aae003 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 72b5db2..a59785e 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 993c7e2..9877f41 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 b666586..220f121 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 2dd6999..24f4e9d 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 1d6a6c3..b6890d7 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 e0c0383..6463fa5 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 a19fba0..1017da6 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 9b09cf6..5fe8f30 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 1f049a9..09fd7ff 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 b8fde37..84971b4 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 d8f7206..b9076ca 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 30b8898..21ef33f 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 1f14dd7..1960b85 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 7d17132..ebbc9ed 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 27e7713..2f4961d 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 2e9e5dd..90d538a 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 2298557..9a7f4ce 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 2bd257d..ce78280 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 9b9eacb..7ab71cd 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 ae25ede..f255964 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 53bd3bc..f80aaa7 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 e2b8263..6a4bde6 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 6354f19..ba7b416 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 adc1f9f..01c3bd51 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 96b808c..32a8884 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 723d766..ca596e1 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 327c642..aedce2a 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 af901af..b65768f 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 afb6d9b..6c4462f 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 2717e19..8dbcef4 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 c491169..8871702 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 f6722de..9f759ce 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 3ab5129..7a564ff 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 1f0773a..53065a0 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 54666d6..14386a0 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 abfd12f..0238b90 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 755ac00..c17f47e 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 0a62a76..045735b 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 83ef567..0194f74 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 296735f..b9f8f76 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 90ff4c9..38b54e1 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 de61f8a..ea52804 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 4c0e454..5120976 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 4083e3a..48c95dc 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 e832ad1..01233f1 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 ccb0046..34d28df 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 9fd30c5..3df2bb7 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 be8f631..884c638 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 5676b8c..be2f48a 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 01aed87..d056b86 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 5192eda..b54c61e 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 0822c92..e7974e1 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 4578133..addf511 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 38e98d0..6d3b538 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 ffe23a7..2638fb1 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 15018e1..447bbee 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 932a189..6c81c9e 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 42f1227..7be1532 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 7d4c122..63f4ab4 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 786b7aa..abeb917 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 0f23abb..24c1dfc 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 0db2e1e..577451c 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 3e3c7d2..602ff56 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 bb8bf3b..2303160 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 36c3245..9e1b466 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 ca7920e..bff99fc 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 48ec2fe..adf905f 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 023b27a..7bc69cf 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 a2df62b..f08c43a 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 43f539b..13ff3a0 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 d83f968..6a6e2ec 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 51bbd1d..008d85f 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 e17c983..c8d3f33 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 5e7b012..21df953 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 21e92ca..4aaa1a5 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 0c120ff..022aae9 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 13ca108..b522c7f 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 aa4d174..3c207b0 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 4162dd6..d659d4e 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 ccbbd75..5967515 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 69d3839..5f9c05d 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 c7663f7..09385f9 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 4dee0f8..9767733 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 cd6f3df..ba615cc 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 3866a0f..a7aaf8d 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 ea82f6f..080b88e 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 96f8f08..0eef990 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 1a5b780..274c23b 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 c3c1cad..ac4c59a 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 e6ad938..55b1935 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 2c21649..1555c8d 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 9465ee2..7c813bc 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 d370e05..407966e 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 b22d278..58531bb 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 f46f396..cb6fe45 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 23fb304..50d284b 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 43f39b9..5031242 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 3b8091f..893a2ff 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 4593ad5..acd2f95 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 050fb6c..ec81c2d 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 2c209dd..4ffb3eb 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 f6cbd33..229594c 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 4edd444..f1b6157 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 aa4938c..c9ceec9 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 f204cf2..86f35e5 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 a5aff8e..333e256 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 0000000..467c9d9 --- /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 bfd9524..0000000 --- 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 c40714c..73bba01 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 520048d..9abb9a6 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 cf2a1aa..77004c8 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 07d1752..820d355 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 304bde7..99c4946 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 cf9ae09..64a5647 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 1217ed3..a928f81 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 e614a47..39d1797 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 183d3f3..2d1602d 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 84bfdd3..3acdac9 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 462fda0..54519a9 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 6a37596..a96fa39 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 30ba3dc..cf1f5ac 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 2257534..14ee5ca 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 923d739..aa86cc8 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 cd32755..43d7a1c 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 139159f..f7fddfe 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 411a95f..b041381 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 a6ce885..750bcdc 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 094e108..a988624 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 09829b4..9b13f8c 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 872fb52..56f314b 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 4c3e79f..728fb8c 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 27738e9..e844ae7 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 cc53068..0000000 --- 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 ca52e70..82ba070 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 6219f95..49fa1c3 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 0d66af3..766ca48 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 e493432..2649b6b 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 af941ad..461b24e 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 6f96343..d26f27c 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 6875146..3bc01bd 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 2cc20a4..25ccde2 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 11a7825..12c7565 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 d864e05..98c3d78 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 17e452d..55439af 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 ed7f372..4fa985e 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 75483bb..eaed519 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 e613efd..6eea873 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 e770302..b4997da 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 70ccdfd..cf6bd9a 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 73e5a11..24eee66 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 b60db5a..472ca54 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 c0a8299..9546ebe 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 ab970b4..f4171b3 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 938efb9..96653cd 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 17da952..339069c 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 2777cf8..52708ad 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 cadb3db..ec6b5fe 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 719a4b1..b3ac045 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 2493f92..d3c3e5e 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 bd2ba44..0d8bcf3 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 0038cd1..a30ad55 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 73c761d..c0ed58e 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 f2a7757..8d1bcb1 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 7fca883..bd2a99d 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 13b340d..e8abffc 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 4b588ac..bc1e727 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 e1c9a22..695285f 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 8d067fa..7916db8 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 6fa0135..dc42f12 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 db83c04..7c8a390 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 f8e2e24..a0e849d 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 f70ecdd..ccfde00 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 59088e2..3f1861d 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 dad2894..0000000 --- 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 4feb999..c20c0ae 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 |