diff options
author | dinoex <dinoex@FreeBSD.org> | 2012-06-01 13:26:28 +0800 |
---|---|---|
committer | dinoex <dinoex@FreeBSD.org> | 2012-06-01 13:26:28 +0800 |
commit | 530706893f31269bbfa303e069f2e76cbbe2fce7 (patch) | |
tree | a8077a0d6e20d70b39e6a7fe3e57a6dafe7c7f33 /net-im | |
parent | 9d262811a145d3e715edefd1d5d64ceac41de547 (diff) | |
download | freebsd-ports-gnome-530706893f31269bbfa303e069f2e76cbbe2fce7.tar.gz freebsd-ports-gnome-530706893f31269bbfa303e069f2e76cbbe2fce7.tar.zst freebsd-ports-gnome-530706893f31269bbfa303e069f2e76cbbe2fce7.zip |
- update png to 1.5.10
Diffstat (limited to 'net-im')
67 files changed, 160 insertions, 47 deletions
diff --git a/net-im/amsn/Makefile b/net-im/amsn/Makefile index d957ff3b386c..2dc13c7b39d8 100644 --- a/net-im/amsn/Makefile +++ b/net-im/amsn/Makefile @@ -7,6 +7,7 @@ PORTNAME= amsn PORTVERSION= 0.98.9 +PORTREVISION= 1 CATEGORIES= net-im MASTER_SITES= SF DISTNAME= ${PORTNAME}-${PORTVERSION}-src @@ -17,7 +18,7 @@ COMMENT= Alvano\'s MSN Messenger LIB_DEPENDS= Imlib.5:${PORTSDIR}/graphics/imlib \ gstfarsight-0.10.0:${PORTSDIR}/net-im/farsight2 \ jpeg.11:${PORTSDIR}/graphics/jpeg \ - png.6:${PORTSDIR}/graphics/png + png15:${PORTSDIR}/graphics/png BUILD_DEPENDS= xdg-open:${PORTSDIR}/devel/xdg-utils \ ${LOCALBASE}/lib/tls/tls.tcl:${PORTSDIR}/devel/tcltls \ snack>=2.2.10_4:${PORTSDIR}/audio/snack @@ -43,6 +44,7 @@ GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-tcl=${TCL_LIBDIR} \ --with-tk=${TK_LIBDIR} +CXXFLAGS+= -I${LOCALBASE}/include/libpng15 CONFIGURE_ENV+= CFLAGS+="-I${LOCALBASE}/include" \ LDFLAGS+="-L${LOCALBASE}/lib" diff --git a/net-im/amsn/files/patch-ximapng.cpp b/net-im/amsn/files/patch-ximapng.cpp new file mode 100644 index 000000000000..623f9ee17a9d --- /dev/null +++ b/net-im/amsn/files/patch-ximapng.cpp @@ -0,0 +1,74 @@ +--- utils/TkCximage/src/CxImage/ximapng.cpp.orig 2010-01-29 10:09:27.000000000 +0100 ++++ utils/TkCximage/src/CxImage/ximapng.cpp 2012-05-05 13:25:32.000000000 +0200 +@@ -15,7 +15,7 @@ + void CxImagePNG::ima_png_error(png_struct *png_ptr, char *message) + { + strcpy(info.szLastError,message); +- longjmp(png_ptr->jmpbuf, 1); ++ longjmp(png_jmpbuf(png_ptr), 1); + } + //////////////////////////////////////////////////////////////////////////////// + #if CXIMAGE_SUPPORT_DECODE +@@ -62,7 +62,7 @@ + /* Set error handling if you are using the setjmp/longjmp method (this is + * the normal method of doing things with libpng). REQUIRED unless you + * set up your own error handlers in the png_create_read_struct() earlier. */ +- if (setjmp(png_ptr->jmpbuf)) { ++ if (setjmp(png_jmpbuf(png_ptr))) { + /* Free all of the memory associated with the png_ptr and info_ptr */ + delete [] row_pointers; + png_destroy_read_struct(&png_ptr, &info_ptr, (png_infopp)NULL); +@@ -80,7 +80,7 @@ + head.biWidth = info_ptr->width; + head.biHeight= info_ptr->height; + info.dwType = CXIMAGE_FORMAT_PNG; +- longjmp(png_ptr->jmpbuf, 1); ++ longjmp(png_jmpbuf(png_ptr), 1); + } + + /* calculate new number of channels */ +@@ -101,7 +101,7 @@ + break; + default: + strcpy(info.szLastError,"unknown PNG color type"); +- longjmp(png_ptr->jmpbuf, 1); ++ longjmp(png_jmpbuf(png_ptr), 1); + } + + //find the right pixel depth used for cximage +@@ -111,7 +111,7 @@ + if (channels >= 3) pixel_depth=24; + + if (!Create(info_ptr->width, info_ptr->height, pixel_depth, CXIMAGE_FORMAT_PNG)){ +- longjmp(png_ptr->jmpbuf, 1); ++ longjmp(png_jmpbuf(png_ptr), 1); + } + + /* get metrics */ +@@ -207,7 +207,7 @@ + } + + // <vho> - handle cancel +- if (info.nEscape) longjmp(png_ptr->jmpbuf, 1); ++ if (info.nEscape) longjmp(png_jmpbuf(png_ptr), 1); + + // row_bytes is the width x number of channels x (bit-depth / 8) + row_pointers = new BYTE[info_ptr->rowbytes + 8]; +@@ -230,7 +230,7 @@ + do { + + // <vho> - handle cancel +- if (info.nEscape) longjmp(png_ptr->jmpbuf, 1); ++ if (info.nEscape) longjmp(png_jmpbuf(png_ptr), 1); + + #if CXIMAGE_SUPPORT_ALPHA // <vho> + if (AlphaIsValid()) { +@@ -362,7 +362,7 @@ + /* Set error handling. REQUIRED if you aren't supplying your own + * error hadnling functions in the png_create_write_struct() call. + */ +- if (setjmp(png_ptr->jmpbuf)){ ++ if (setjmp(png_jmpbuf(png_ptr))){ + /* If we get here, we had a problem reading the file */ + if (info_ptr->palette) free(info_ptr->palette); + png_destroy_write_struct(&png_ptr, (png_infopp)&info_ptr); diff --git a/net-im/amsn/files/patch-ximapng.h b/net-im/amsn/files/patch-ximapng.h new file mode 100644 index 000000000000..2e1080f1d7a8 --- /dev/null +++ b/net-im/amsn/files/patch-ximapng.h @@ -0,0 +1,19 @@ +--- utils/TkCximage/src/CxImage/ximapng.h.orig 2012-05-05 13:24:02.000000000 +0200 ++++ utils/TkCximage/src/CxImage/ximapng.h 2012-05-07 06:43:30.000000000 +0200 +@@ -23,6 +23,7 @@ + + extern "C" { + #include <png.h> ++#include <pngpriv.h> + } + + class CxImagePNG: public CxImage +@@ -65,7 +66,7 @@ + static void PNGAPI user_error_fn(png_structp png_ptr,png_const_charp error_msg) + { + strncpy((char*)png_ptr->error_ptr,error_msg,255); +- longjmp(png_ptr->jmpbuf, 1); ++ longjmp(png_jmpbuf(png_ptr), 1); + } + }; + diff --git a/net-im/ayttm/Makefile b/net-im/ayttm/Makefile index d229a562ec8d..161e56915cb8 100644 --- a/net-im/ayttm/Makefile +++ b/net-im/ayttm/Makefile @@ -7,7 +7,7 @@ PORTNAME= ayttm PORTVERSION= 0.5.0.111 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= net-im MASTER_SITES= SF/ayttm/ayttm/${PORTVERSION:R}-${PORTVERSION:E}/ DISTNAME= ${PORTNAME}-${PORTVERSION:R}-${PORTVERSION:E} diff --git a/net-im/decibel/Makefile b/net-im/decibel/Makefile index beb1f3105863..3ec03e3bbca2 100644 --- a/net-im/decibel/Makefile +++ b/net-im/decibel/Makefile @@ -6,7 +6,7 @@ PORTNAME= decibel PORTVERSION= 0.5.0 -PORTREVISION= 9 +PORTREVISION= 10 CATEGORIES= net-im MASTER_SITES= http://decibel.kde.org/fileadmin/downloads/decibel/releases/ diff --git a/net-im/emesene/Makefile b/net-im/emesene/Makefile index d8cf14b17c8d..1b69a0b1e197 100644 --- a/net-im/emesene/Makefile +++ b/net-im/emesene/Makefile @@ -7,7 +7,7 @@ PORTNAME= emesene PORTVERSION= 1.6.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net-im python #MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-${PORTVERSION} MASTER_SITES= ${MASTER_SITE_LOCAL:S,$,acm/${PORTNAME}/,} \ diff --git a/net-im/empathy/Makefile b/net-im/empathy/Makefile index 64d5163fc04e..ddf9c981d350 100644 --- a/net-im/empathy/Makefile +++ b/net-im/empathy/Makefile @@ -7,7 +7,7 @@ PORTNAME= empathy PORTVERSION= 2.32.2 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= net-im gnome MASTER_SITES= GNOME diff --git a/net-im/eva/Makefile b/net-im/eva/Makefile index da277fd6c202..c4a8e31dacf6 100644 --- a/net-im/eva/Makefile +++ b/net-im/eva/Makefile @@ -7,7 +7,7 @@ PORTNAME= eva PORTVERSION= 0.4.1 -PORTREVISION= 9 +PORTREVISION= 10 CATEGORIES= net-im kde MASTER_SITES= SF/${PORTNAME}q/${PORTNAME}-0.4/Eva%20${PORTVERSION} diff --git a/net-im/farsight2/Makefile b/net-im/farsight2/Makefile index d064f51605c6..135a1ede1794 100644 --- a/net-im/farsight2/Makefile +++ b/net-im/farsight2/Makefile @@ -7,6 +7,7 @@ PORTNAME= farsight2 PORTVERSION= 0.0.22 +PORTREVISION= 1 CATEGORIES= net-im devel MASTER_SITES= http://farsight.freedesktop.org/releases/farsight2/ diff --git a/net-im/finch/Makefile b/net-im/finch/Makefile index 154d7ad65d9f..a57297883bfb 100644 --- a/net-im/finch/Makefile +++ b/net-im/finch/Makefile @@ -7,7 +7,7 @@ # PORTNAME= finch -PORTREVISION= 0 +PORTREVISION= 1 MAINTAINER= marcus@FreeBSD.org COMMENT= Finch multi-protocol messaging client (Console UI) diff --git a/net-im/gajim-devel/Makefile b/net-im/gajim-devel/Makefile index b154c9326acd..d7eb4cde319d 100644 --- a/net-im/gajim-devel/Makefile +++ b/net-im/gajim-devel/Makefile @@ -7,6 +7,7 @@ PORTNAME= gajim PORTVERSION= 20101030 +PORTREVISION= 1 CATEGORIES= net-im MASTER_SITES= http://www.bamus.cz/distfiles/ PKGNAMESUFFIX= -devel diff --git a/net-im/gajim/Makefile b/net-im/gajim/Makefile index afecb029aefa..5b652d845843 100644 --- a/net-im/gajim/Makefile +++ b/net-im/gajim/Makefile @@ -7,7 +7,7 @@ PORTNAME= gajim PORTVERSION= 0.15 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net-im MASTER_SITES= http://www.gajim.org/downloads/0.15/ diff --git a/net-im/gyach/Makefile b/net-im/gyach/Makefile index 2520e76676b9..7294b1b19c0b 100644 --- a/net-im/gyach/Makefile +++ b/net-im/gyach/Makefile @@ -7,7 +7,7 @@ PORTNAME= gyach PORTVERSION= 0.9.8 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= net-im MASTER_SITES= http://www4.infi.net/~cpinkham/gyach/code/ diff --git a/net-im/jabber.el/Makefile b/net-im/jabber.el/Makefile index cd489758d01f..8c6339905b9a 100644 --- a/net-im/jabber.el/Makefile +++ b/net-im/jabber.el/Makefile @@ -6,7 +6,7 @@ PORTNAME= jabber.el PORTVERSION= 0.8.0 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= net-im elisp MASTER_SITES= SF/emacs-jabber/emacs-jabber/${PORTVERSION} DISTNAME= emacs-jabber-${PORTVERSION} diff --git a/net-im/kmerlin/Makefile b/net-im/kmerlin/Makefile index 274224fbc838..ce17f169e454 100644 --- a/net-im/kmerlin/Makefile +++ b/net-im/kmerlin/Makefile @@ -7,7 +7,7 @@ PORTNAME= kmerlin PORTVERSION= 1.4.2 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= net-im MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} diff --git a/net-im/kmess-kde4/Makefile b/net-im/kmess-kde4/Makefile index d2598ee6c23f..5fb45a246bc2 100644 --- a/net-im/kmess-kde4/Makefile +++ b/net-im/kmess-kde4/Makefile @@ -7,7 +7,7 @@ PORTNAME= kmess PORTVERSION= 2.0.6.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= net-im kde MASTER_SITES= SF/${PORTNAME}/Latest%20versions/${PORTVERSION}/ diff --git a/net-im/kmess/Makefile b/net-im/kmess/Makefile index 331396d86f02..e6975f73b5a9 100644 --- a/net-im/kmess/Makefile +++ b/net-im/kmess/Makefile @@ -7,7 +7,7 @@ PORTNAME= kmess PORTVERSION= 1.5.p.1 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= net-im kde MASTER_SITES= SF/${PORTNAME}/Older%20versions/1.5pre1 DISTNAME= ${PORTNAME}-${PORTVERSION:S/.p./pre/} diff --git a/net-im/komclean/Makefile b/net-im/komclean/Makefile index f6939877995d..ded01297d2ce 100644 --- a/net-im/komclean/Makefile +++ b/net-im/komclean/Makefile @@ -7,6 +7,7 @@ PORTNAME= komclean PORTVERSION= 1.2.0 +PORTREVISION= 1 CATEGORIES= net-im MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME}/${PORTNAME:S/kom/KOM/}-${PORTVERSION} diff --git a/net-im/konverse/Makefile b/net-im/konverse/Makefile index 83c05040b07b..1bbffeffa2f1 100644 --- a/net-im/konverse/Makefile +++ b/net-im/konverse/Makefile @@ -7,7 +7,7 @@ PORTNAME= konverse PORTVERSION= 0.2 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= net-im kde MASTER_SITES= SF diff --git a/net-im/kopete/Makefile b/net-im/kopete/Makefile index 53aadba1bf73..d93f1bc1304c 100644 --- a/net-im/kopete/Makefile +++ b/net-im/kopete/Makefile @@ -7,7 +7,7 @@ PORTNAME= kopete PORTVERSION= 0.12.8 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES?= net-im kde MASTER_SITES= ${MASTER_SITE_KDE} MASTER_SITE_SUBDIR= stable/3.5.10/src diff --git a/net-im/kpopup/Makefile b/net-im/kpopup/Makefile index 66ae50bb5c2d..4e55af1cd67f 100644 --- a/net-im/kpopup/Makefile +++ b/net-im/kpopup/Makefile @@ -9,7 +9,7 @@ PORTNAME= kpopup PORTVERSION= 0.9.8.2 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= net-im kde MASTER_SITES= http://www.henschelsoft.de/kpopup/ \ http://T32.TecNik93.com/FreeBSD/ports/${PORTNAME}/sources/ diff --git a/net-im/libpurple/Makefile b/net-im/libpurple/Makefile index 19a9443d4b89..42ee624aa973 100644 --- a/net-im/libpurple/Makefile +++ b/net-im/libpurple/Makefile @@ -8,7 +8,7 @@ PORTNAME?= libpurple PORTVERSION= 2.10.4 -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES?= net-im MASTER_SITES= SF/pidgin/Pidgin/${PORTVERSION} DISTNAME= pidgin-${PORTVERSION} diff --git a/net-im/licq-osd/Makefile b/net-im/licq-osd/Makefile index e1aab0511a86..c969e8d3a8b7 100644 --- a/net-im/licq-osd/Makefile +++ b/net-im/licq-osd/Makefile @@ -8,6 +8,7 @@ PORTNAME= osd PORTVERSION= ${OSD_LICQ_VER} +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= net-im diff --git a/net-im/licq-qt-gui/Makefile b/net-im/licq-qt-gui/Makefile index 2a4dbccf336c..3a8673335457 100644 --- a/net-im/licq-qt-gui/Makefile +++ b/net-im/licq-qt-gui/Makefile @@ -7,6 +7,7 @@ PORTNAME= qt4-gui PORTVERSION= ${QT_LICQ_VER} +PORTREVISION= 1 CATEGORIES= net-im PKGNAMESUFFIX?= ${KDE_SUFFIX}${PKGNAMESUFFIX2} diff --git a/net-im/mbpurple/Makefile b/net-im/mbpurple/Makefile index 3329f2c4dc21..069aa9267262 100644 --- a/net-im/mbpurple/Makefile +++ b/net-im/mbpurple/Makefile @@ -6,7 +6,7 @@ PORTNAME= mbpurple PORTVERSION= 0.3.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net-im MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} diff --git a/net-im/openfetion/Makefile b/net-im/openfetion/Makefile index c7993f332aa5..820e69671812 100644 --- a/net-im/openfetion/Makefile +++ b/net-im/openfetion/Makefile @@ -7,6 +7,7 @@ PORTNAME= openfetion PORTVERSION= 2.0.7 +PORTREVISION= 1 CATEGORIES= net-im MASTER_SITES= GOOGLE_CODE diff --git a/net-im/papyon/Makefile b/net-im/papyon/Makefile index 8f3bc44baac4..9543ff1377a3 100644 --- a/net-im/papyon/Makefile +++ b/net-im/papyon/Makefile @@ -7,6 +7,7 @@ PORTNAME= papyon PORTVERSION= 0.5.4 +PORTREVISION= 1 CATEGORIES= net-im MASTER_SITES= http://www.freedesktop.org/software/${PORTNAME}/releases/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/net-im/pidgin-audacious-remote/Makefile b/net-im/pidgin-audacious-remote/Makefile index 97bd5cfd0c05..fb5d79888865 100644 --- a/net-im/pidgin-audacious-remote/Makefile +++ b/net-im/pidgin-audacious-remote/Makefile @@ -7,7 +7,7 @@ PORTNAME= pidgin-audacious-remote PORTVERSION= 0.5 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net-im MASTER_SITES= http://pidginaudacious.sourceforge.net/files/ \ ftp://ftp.lissyara.su/users/gx_ua/distfiles/ diff --git a/net-im/pidgin-birthday-reminder/Makefile b/net-im/pidgin-birthday-reminder/Makefile index dccb1bec9e11..ec523eebb8f5 100644 --- a/net-im/pidgin-birthday-reminder/Makefile +++ b/net-im/pidgin-birthday-reminder/Makefile @@ -7,7 +7,7 @@ PORTNAME= pidgin-birthday-reminder PORTVERSION= 1.7 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= net-im MASTER_SITES= http://launchpadlibrarian.net/56075754/ diff --git a/net-im/pidgin-bs/Makefile b/net-im/pidgin-bs/Makefile index 9c696224e986..1137a67f3182 100644 --- a/net-im/pidgin-bs/Makefile +++ b/net-im/pidgin-bs/Makefile @@ -7,7 +7,7 @@ PORTNAME= pidgin-bs PORTVERSION= 1.3.0 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= net-im MASTER_SITES= SF/${PORTNAME}/bot-sentry/${PORTVERSION} DISTNAME= bot-sentry-${PORTVERSION} diff --git a/net-im/pidgin-facebookchat/Makefile b/net-im/pidgin-facebookchat/Makefile index 9dae38f4763e..b156dfd62234 100644 --- a/net-im/pidgin-facebookchat/Makefile +++ b/net-im/pidgin-facebookchat/Makefile @@ -7,7 +7,7 @@ PORTNAME= pidgin-facebookchat PORTVERSION= 1.69 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net-im MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} DISTNAME= ${PROJECTHOST}-source-${PORTVERSION} diff --git a/net-im/pidgin-fetion/Makefile b/net-im/pidgin-fetion/Makefile index 67cc78f62877..1e706338e496 100644 --- a/net-im/pidgin-fetion/Makefile +++ b/net-im/pidgin-fetion/Makefile @@ -7,7 +7,7 @@ PORTNAME= fetion PORTVERSION= 0.98.5.2 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= net-im MASTER_SITES= http://www.logvinov.ru/files/dist/fetion/ \ LOCAL/avl diff --git a/net-im/pidgin-guifications/Makefile b/net-im/pidgin-guifications/Makefile index 429f2270fef3..fe2814ab1d77 100644 --- a/net-im/pidgin-guifications/Makefile +++ b/net-im/pidgin-guifications/Makefile @@ -7,7 +7,7 @@ PORTNAME= pidgin-guifications PORTVERSION= 2.16 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= net-im MASTER_SITES= http://downloads.guifications.org/plugins/Guifications2/ diff --git a/net-im/pidgin-hotkeys/Makefile b/net-im/pidgin-hotkeys/Makefile index 436dc893d0ab..c2e04257c5a2 100644 --- a/net-im/pidgin-hotkeys/Makefile +++ b/net-im/pidgin-hotkeys/Makefile @@ -7,7 +7,7 @@ PORTNAME= pidgin-hotkeys PORTVERSION= 0.2.4 -PORTREVISION= 15 +PORTREVISION= 16 CATEGORIES= net-im MASTER_SITES= SF diff --git a/net-im/pidgin-latex/Makefile b/net-im/pidgin-latex/Makefile index 88f400421bec..5e5d38e89751 100644 --- a/net-im/pidgin-latex/Makefile +++ b/net-im/pidgin-latex/Makefile @@ -7,7 +7,7 @@ PORTNAME= latex PORTVERSION= 1.0 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= net-im MASTER_SITES= SF/pidgin-${PORTNAME}/pidgin-${PORTNAME}/${PORTVERSION} PKGNAMEPREFIX= pidgin- diff --git a/net-im/pidgin-libnotify/Makefile b/net-im/pidgin-libnotify/Makefile index 36d1ee566388..1602608edef7 100644 --- a/net-im/pidgin-libnotify/Makefile +++ b/net-im/pidgin-libnotify/Makefile @@ -7,7 +7,7 @@ PORTNAME= libnotify PORTVERSION= 0.14 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= net-im MASTER_SITES= SF/gaim-${PORTNAME}/pidgin-${PORTNAME}/pidgin-${PORTNAME}-${PORTVERSION} PKGNAMEPREFIX= pidgin- diff --git a/net-im/pidgin-manualsize/Makefile b/net-im/pidgin-manualsize/Makefile index 1ecd66c9edc7..da7d87a370f3 100644 --- a/net-im/pidgin-manualsize/Makefile +++ b/net-im/pidgin-manualsize/Makefile @@ -7,7 +7,7 @@ PORTNAME= manualsize PORTVERSION= 0.7 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= net-im MASTER_SITES= http://issv.org.ru/oss/ \ http://wickedmachine.net/~jsa/FreeBSD/distfiles/ diff --git a/net-im/pidgin-msn-pecan/Makefile b/net-im/pidgin-msn-pecan/Makefile index c5ddb1c53147..ce9f00ac2e62 100644 --- a/net-im/pidgin-msn-pecan/Makefile +++ b/net-im/pidgin-msn-pecan/Makefile @@ -7,7 +7,7 @@ PORTNAME= msn-pecan PORTVERSION= 0.1.0.r1 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= net-im MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} PKGNAMEPREFIX= pidgin- diff --git a/net-im/pidgin-osd/Makefile b/net-im/pidgin-osd/Makefile index 9e70d0cc6740..a9313e8260c8 100644 --- a/net-im/pidgin-osd/Makefile +++ b/net-im/pidgin-osd/Makefile @@ -6,7 +6,7 @@ PORTNAME= pidgin-osd PORTVERSION= 0.1.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= net-im MASTER_SITES= https://babelize.org/download/pidgin-osd/ diff --git a/net-im/pidgin-pidgimpd/Makefile b/net-im/pidgin-pidgimpd/Makefile index dc01f0799a99..52f306e5faa9 100644 --- a/net-im/pidgin-pidgimpd/Makefile +++ b/net-im/pidgin-pidgimpd/Makefile @@ -7,7 +7,7 @@ PORTNAME= pidgimpd PORTVERSION= 1.1.1 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= net-im audio MASTER_SITES= http://ayeon.org/projects/pidgimpd/ PKGNAMEPREFIX= pidgin- diff --git a/net-im/pidgin-privacy-please/Makefile b/net-im/pidgin-privacy-please/Makefile index 48a046e7881c..2be848ed2fbe 100644 --- a/net-im/pidgin-privacy-please/Makefile +++ b/net-im/pidgin-privacy-please/Makefile @@ -7,7 +7,7 @@ PORTNAME= pidgin-privacy-please PORTVERSION= 0.7.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net-im MASTER_SITES= GOOGLE_CODE diff --git a/net-im/pidgin-rhythmbox/Makefile b/net-im/pidgin-rhythmbox/Makefile index 75016783df66..f51526f067b5 100644 --- a/net-im/pidgin-rhythmbox/Makefile +++ b/net-im/pidgin-rhythmbox/Makefile @@ -7,7 +7,7 @@ PORTNAME= pidgin-rhythmbox PORTVERSION= 2.0 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= net-im audio MASTER_SITES= http://jon.oberheide.org/pidgin-rhythmbox/downloads/ diff --git a/net-im/pidgin-sipe/Makefile b/net-im/pidgin-sipe/Makefile index 0011a7078024..e19113968700 100644 --- a/net-im/pidgin-sipe/Makefile +++ b/net-im/pidgin-sipe/Makefile @@ -7,6 +7,7 @@ PORTNAME= pidgin-sipe PORTVERSION= 1.13.1 +PORTREVISION= 1 CATEGORIES= net-im MASTER_SITES= SF/sipe/sipe/${DISTNAME} diff --git a/net-im/pidgin-skype/Makefile b/net-im/pidgin-skype/Makefile index 8976ef9a20fa..c90aebc68073 100644 --- a/net-im/pidgin-skype/Makefile +++ b/net-im/pidgin-skype/Makefile @@ -7,6 +7,7 @@ PORTNAME= pidgin-skype PORTVERSION= 0.0.0.628 +PORTREVISION= 1 CATEGORIES= net-im MASTER_SITES= LOCAL/mandree DISTFILES= pidgin-skype-svn-r${PORTVERSION:E}.tar.xz diff --git a/net-im/pidgin-twitter/Makefile b/net-im/pidgin-twitter/Makefile index d954670341ea..405b1465502c 100644 --- a/net-im/pidgin-twitter/Makefile +++ b/net-im/pidgin-twitter/Makefile @@ -6,6 +6,7 @@ PORTNAME= pidgin-twitter PORTVERSION= 0.9.2 +PORTREVISION= 1 CATEGORIES= net-im MASTER_SITES= http://www.honeyplanet.jp/ diff --git a/net-im/pidgin/Makefile b/net-im/pidgin/Makefile index e51dc0834c09..a1bc1f20e830 100644 --- a/net-im/pidgin/Makefile +++ b/net-im/pidgin/Makefile @@ -7,7 +7,7 @@ # PORTNAME= pidgin -PORTREVISION= 0 +PORTREVISION= 1 MAINTAINER= marcus@FreeBSD.org COMMENT= Pidgin multi-protocol messaging client (GTK+ UI) diff --git a/net-im/psi/Makefile b/net-im/psi/Makefile index 6cd64010dc21..f7c0ec691e20 100644 --- a/net-im/psi/Makefile +++ b/net-im/psi/Makefile @@ -7,7 +7,7 @@ PORTNAME= psi PORTVERSION= 0.14 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= net-im MASTER_SITES= SF/${PORTNAME}/Psi/${PORTVERSION} diff --git a/net-im/psimedia/Makefile b/net-im/psimedia/Makefile index 53cf3045e7b2..58508e20b1db 100644 --- a/net-im/psimedia/Makefile +++ b/net-im/psimedia/Makefile @@ -7,6 +7,7 @@ PORTNAME= psimedia PORTVERSION= 1.0.3 +PORTREVISION= 1 CATEGORIES= net-im audio multimedia MASTER_SITES= http://delta.affinix.com/download/psimedia/ diff --git a/net-im/pymsn/Makefile b/net-im/pymsn/Makefile index 8fa76a56f951..2fca3dda1a1d 100644 --- a/net-im/pymsn/Makefile +++ b/net-im/pymsn/Makefile @@ -7,7 +7,7 @@ PORTNAME= pymsn PORTVERSION= 0.3.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net-im MASTER_SITES= http://telepathy.freedesktop.org/releases/${PORTNAME}/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/net-im/qutim-plugin-icq/Makefile b/net-im/qutim-plugin-icq/Makefile index c538fa9f2838..c948ed8b23bc 100644 --- a/net-im/qutim-plugin-icq/Makefile +++ b/net-im/qutim-plugin-icq/Makefile @@ -7,7 +7,7 @@ PORTNAME= icq PORTVERSION= 0.2 -PORTREVISION= 2 +PORTREVISION= 3 PORTEPOCH= 1 CATEGORIES= net-im MASTER_SITES= http://qutim.org/download/ \ diff --git a/net-im/qutim-plugin-jabber/Makefile b/net-im/qutim-plugin-jabber/Makefile index 1fbe1e910ac5..eaf5e4991eea 100644 --- a/net-im/qutim-plugin-jabber/Makefile +++ b/net-im/qutim-plugin-jabber/Makefile @@ -7,7 +7,7 @@ PORTNAME= jabber PORTVERSION= 0.2 -PORTREVISION= 5 +PORTREVISION= 6 PORTEPOCH= 1 CATEGORIES= net-im MASTER_SITES= http://qutim.org/download/ \ diff --git a/net-im/qutim/Makefile b/net-im/qutim/Makefile index 9b7182d46560..2752212e04fb 100644 --- a/net-im/qutim/Makefile +++ b/net-im/qutim/Makefile @@ -7,7 +7,7 @@ PORTNAME= qutim PORTVERSION= 0.2 -PORTREVISION= 5 +PORTREVISION= 6 PORTEPOCH= 1 CATEGORIES= net-im MASTER_SITES= http://dl.kibab.com/distfiles/qutim/ \ diff --git a/net-im/qwit-devel/Makefile b/net-im/qwit-devel/Makefile index 38753955c592..f8db069d762c 100644 --- a/net-im/qwit-devel/Makefile +++ b/net-im/qwit-devel/Makefile @@ -7,7 +7,7 @@ PORTNAME= qwit DISTVERSION= r215 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net-im MASTER_SITES= GOOGLE_CODE DISTNAME= qwit-ng-${PORTVERSION}-src diff --git a/net-im/qwit/Makefile b/net-im/qwit/Makefile index fc3cdfd895a6..33bc294f05f5 100644 --- a/net-im/qwit/Makefile +++ b/net-im/qwit/Makefile @@ -7,7 +7,7 @@ PORTNAME= qwit DISTVERSION= r154 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net-im MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} DISTNAME= qwit-${PORTVERSION}-src diff --git a/net-im/qxmpp/Makefile b/net-im/qxmpp/Makefile index 6176010d3cf7..4b0ae2e594f9 100644 --- a/net-im/qxmpp/Makefile +++ b/net-im/qxmpp/Makefile @@ -7,6 +7,7 @@ PORTNAME= qxmpp PORTVERSION= 0.3.91 +PORTREVISION= 1 CATEGORIES= net-im MASTER_SITES= GOOGLE_CODE diff --git a/net-im/ramblercontacts/Makefile b/net-im/ramblercontacts/Makefile index 672640b8faa3..629157541a83 100644 --- a/net-im/ramblercontacts/Makefile +++ b/net-im/ramblercontacts/Makefile @@ -7,6 +7,7 @@ PORTNAME= ramblercontacts PORTVERSION= 0.3.2.1030 +PORTREVISION= 1 CATEGORIES= net-im MASTER_SITES= http://developers.rambler.ru/upload/contacts/ DISTNAME= ${PORTNAME}_v${PORTVERSION}_beta_src diff --git a/net-im/sim-im-devel/Makefile b/net-im/sim-im-devel/Makefile index 3c40b91e88e1..aea2c15c28f0 100644 --- a/net-im/sim-im-devel/Makefile +++ b/net-im/sim-im-devel/Makefile @@ -6,7 +6,7 @@ PORTNAME= sim-im-devel PORTVERSION= 0.9.5.2236 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= net-im MASTER_SITES= http://sim-im.lehis.ru/dist/ \ http://www.sim-im.lehis.ru/dist/ diff --git a/net-im/sim-im/Makefile b/net-im/sim-im/Makefile index ad4d97232852..65bdfe35fb9b 100644 --- a/net-im/sim-im/Makefile +++ b/net-im/sim-im/Makefile @@ -6,7 +6,7 @@ PORTNAME= sim-im PORTVERSION= 0.9.4.3 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= net-im MASTER_SITES= ${MASTER_SITE_BERLIOS} \ http://sim-im.lehis.ru/dist/ \ diff --git a/net-im/telepathy-butterfly/Makefile b/net-im/telepathy-butterfly/Makefile index f014c4f9a07d..1c4f268ce5aa 100644 --- a/net-im/telepathy-butterfly/Makefile +++ b/net-im/telepathy-butterfly/Makefile @@ -8,7 +8,7 @@ PORTNAME= telepathy-butterfly PORTVERSION= 0.5.15 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net-im MASTER_SITES= http://telepathy.freedesktop.org/releases/${PORTNAME}/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/net-im/telepathy-farsight/Makefile b/net-im/telepathy-farsight/Makefile index 589f7e10c539..4293350dd27d 100644 --- a/net-im/telepathy-farsight/Makefile +++ b/net-im/telepathy-farsight/Makefile @@ -7,6 +7,7 @@ PORTNAME= telepathy-farsight PORTVERSION= 0.0.15 +PORTREVISION= 1 CATEGORIES= net-im MASTER_SITES= http://telepathy.freedesktop.org/releases/${PORTNAME}/ diff --git a/net-im/telepathy-haze/Makefile b/net-im/telepathy-haze/Makefile index b72ef3394ef3..3db35fa9993f 100644 --- a/net-im/telepathy-haze/Makefile +++ b/net-im/telepathy-haze/Makefile @@ -7,7 +7,7 @@ PORTNAME= haze PORTVERSION= 0.4.0 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= net-im MASTER_SITES= http://telepathy.freedesktop.org/releases/telepathy-haze/ PKGNAMEPREFIX= telepathy- diff --git a/net-im/telepathy-mission-control/Makefile b/net-im/telepathy-mission-control/Makefile index bbbaa6747f1a..6386e5f4451e 100644 --- a/net-im/telepathy-mission-control/Makefile +++ b/net-im/telepathy-mission-control/Makefile @@ -7,6 +7,7 @@ PORTNAME= telepathy-mission-control PORTVERSION= 5.6.1 +PORTREVISION= 1 CATEGORIES= net-im devel MASTER_SITES= http://telepathy.freedesktop.org/releases/telepathy-mission-control/ diff --git a/net-im/telepathy-qt4/Makefile b/net-im/telepathy-qt4/Makefile index 17e501a5c265..0b92953ebdde 100644 --- a/net-im/telepathy-qt4/Makefile +++ b/net-im/telepathy-qt4/Makefile @@ -6,6 +6,7 @@ PORTNAME= telepathy-qt4 PORTVERSION= 0.9.1 +PORTREVISION= 1 CATEGORIES= net-im MASTER_SITES= http://telepathy.freedesktop.org/releases/${PORTNAME:C/4//}/ DISTNAME= ${PORTNAME:C/4//}-${PORTVERSION} diff --git a/net-im/turpial/Makefile b/net-im/turpial/Makefile index 507e63eba75f..86ba325a612b 100644 --- a/net-im/turpial/Makefile +++ b/net-im/turpial/Makefile @@ -7,6 +7,7 @@ PORTNAME= turpial PORTVERSION= 1.6.7.1 +PORTREVISION= 1 CATEGORIES= net-im python MASTER_SITES= http://turpial.org.ve/files/sources/%SUBDIR%/ MASTER_SITE_SUBDIR= stable diff --git a/net-im/vacuum-im/Makefile b/net-im/vacuum-im/Makefile index b85e1ca41fd2..d22fdb064c10 100644 --- a/net-im/vacuum-im/Makefile +++ b/net-im/vacuum-im/Makefile @@ -7,6 +7,7 @@ PORTNAME= vacuum PORTVERSION= 1.1.1 +PORTREVISION= 1 CATEGORIES= net-im MASTER_SITES= GOOGLE_CODE PKGNAMESUFFIX= -im diff --git a/net-im/vqcc-gtk/Makefile b/net-im/vqcc-gtk/Makefile index 6319783b10f1..1003be78a04b 100644 --- a/net-im/vqcc-gtk/Makefile +++ b/net-im/vqcc-gtk/Makefile @@ -7,7 +7,7 @@ PORTNAME= vqcc-gtk PORTVERSION= 0.5 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES?= net-im MASTER_SITES= SF diff --git a/net-im/xfce4-messenger-plugin/Makefile b/net-im/xfce4-messenger-plugin/Makefile index 0348eeda7655..f013bc3050a9 100644 --- a/net-im/xfce4-messenger-plugin/Makefile +++ b/net-im/xfce4-messenger-plugin/Makefile @@ -7,7 +7,7 @@ PORTNAME= xfce4-messenger-plugin PORTVERSION= 0.1.0 -PORTREVISION= 16 +PORTREVISION= 17 CATEGORIES= net-im xfce MASTER_SITES= ftp://ftp.berlios.de/pub/xfce-goodies/panel-plugins/4.4/ DIST_SUBDIR= xfce4 |