diff options
author | tijl <tijl@FreeBSD.org> | 2015-08-02 23:03:19 +0800 |
---|---|---|
committer | tijl <tijl@FreeBSD.org> | 2015-08-02 23:03:19 +0800 |
commit | 2593b8ce7a7784074d28066b8690c9c2da075fd7 (patch) | |
tree | ea36e7f5c3df09ecf07eacd3dfa1065817e07c56 | |
parent | dfc31d8ad6426dcddd1e4f4718d93857c195b031 (diff) | |
download | freebsd-ports-gnome-2593b8ce7a7784074d28066b8690c9c2da075fd7.tar.gz freebsd-ports-gnome-2593b8ce7a7784074d28066b8690c9c2da075fd7.tar.zst freebsd-ports-gnome-2593b8ce7a7784074d28066b8690c9c2da075fd7.zip |
By default libtool replaces -export-symbols <file> with -retain-symbols-file
<file> on ELF systems, but this doesn't really do what -export-symbols is
meant to do. On GNU ELF systems it converts <file> to a simple version
script first and then uses -version-script instead of -retain-symbols-file.
Let USES=libtool patch libtool scripts to do this on all systems with GNU
ld(1).
Bump PORTREVISION on all ports where the build log contains -export-symbols.
audio/calf: This port builds a module that now exports only one function,
but it also builds a number of executables that link to this module and
expect to see other functions. Because it's already a bit dodgy to link to
a module (libtool warns about this) let the module continue to export only
one function and instead build an ordinary library from the same source that
the executables can link to. Fix a number of other issues in the same
Makefile.am and clean up the port Makefile.
japanese/scim-honoka: Tries to hide all symbols that start with an
underscore, but because this library is written in C++ all symbols start
with _Z so it ends up hiding everything. Just don't hide anything at all
like the textproc/scim configure script does.
multimedia/schroedinger: Apply an upstream patch.
textproc/scim-input-pad: Same as japanese/scim-honoka.
PR: 201922
Approved by: portmgr (antoine)
Exp-run by: antoine
234 files changed, 400 insertions, 210 deletions
diff --git a/Mk/Uses/libtool.mk b/Mk/Uses/libtool.mk index d9db2c28b113..3149cd75fa31 100644 --- a/Mk/Uses/libtool.mk +++ b/Mk/Uses/libtool.mk @@ -32,6 +32,12 @@ patch-libtool: -e '/gcc_dir=\\`/s/gcc /$$CC /' \ -e '/gcc_ver=\\`/s/gcc /$$CC /' \ -e '/link_all_deplibs[0-9A-Z_]*=/s/=unknown/=no/' \ + -e '/archive_expsym_cmds[0-9A-Z_]*=.$$CC.*-retain-/ { \ + s/-retain-symbols-file/-version-script/; \ + s/$$export_symbols/$$lib-ver/; \ + s/$$CC/echo "{ global:" > $$lib-ver~ \ + sed -e "s|$$|;|" < $$export_symbols >> $$lib-ver~ \ + echo "local: *; };" >> $$lib-ver~&/; }' \ -e '/objformat=/s/echo aout/echo elf/' \ -e '/STRIP -V/s/"GNU strip"/"strip"/' \ -e "/freebsd-elf\\*)/,/;;/ { \ diff --git a/accessibility/at-spi/Makefile b/accessibility/at-spi/Makefile index dfa4a761777d..a0de68395934 100644 --- a/accessibility/at-spi/Makefile +++ b/accessibility/at-spi/Makefile @@ -4,7 +4,7 @@ PORTNAME= at-spi PORTVERSION= 1.32.0 -PORTREVISION?= 5 +PORTREVISION?= 6 CATEGORIES= accessibility x11-toolkits MASTER_SITES= GNOME DIST_SUBDIR= gnome2 diff --git a/audio/audacity/Makefile b/audio/audacity/Makefile index f1f60a14d8ab..7b43a3c08db5 100644 --- a/audio/audacity/Makefile +++ b/audio/audacity/Makefile @@ -3,7 +3,7 @@ PORTNAME= audacity PORTVERSION= 2.1.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= audio MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTVERSION} DISTNAME= ${PORTNAME}-minsrc-${PORTVERSION} diff --git a/audio/calf/Makefile b/audio/calf/Makefile index caee641a13e3..e3d89e5eeda4 100644 --- a/audio/calf/Makefile +++ b/audio/calf/Makefile @@ -3,8 +3,9 @@ PORTNAME= calf PORTVERSION= 0.0.60 +PORTREVISION= 1 CATEGORIES= audio -MASTER_SITES= SF +MASTER_SITES= http://calf-studio-gear.org/files/ MAINTAINER= ports@FreeBSD.org COMMENT= Audio plug-in pack for LV2 and JACK environments @@ -12,13 +13,11 @@ COMMENT= Audio plug-in pack for LV2 and JACK environments LICENSE= GPLv2 LGPL21 LICENSE_COMB= multi -BUILD_DEPENDS= fftw3>0:${PORTSDIR}/math/fftw3 LIB_DEPENDS= libfluidsynth.so:${PORTSDIR}/audio/fluidsynth \ libjack.so:${PORTSDIR}/audio/jack \ - libfftw3f.so:${PORTSDIR}/math/fftw3-float \ libexpat.so:${PORTSDIR}/textproc/expat2 -USES= compiler:c++11-lib gmake libtool pkgconfig +USES= autoreconf compiler:c++11-lang gmake libtool pkgconfig USE_GNOME= gtk20 GNU_CONFIGURE= yes INSTALL_TARGET= install-strip @@ -41,35 +40,11 @@ LV2_CONFIGURE_WITH= lv2 .include <bsd.port.pre.mk> .if ${CHOSEN_COMPILER_TYPE} == gcc -CXXFLAGS+= -fno-inline -finline-functions-called-once +CXXFLAGS+= -finline-limit=80 -finline-functions -finline-functions-called-once .endif post-patch: - @${FIND} ${BUILD_WRKSRC} -name '*.cpp' | ${XARGS} ${REINPLACE_CMD} -e \ - 's|<malloc.h>|<cstdlib>|' - @${REINPLACE_CMD} -e \ - 's|"GNU strip"|"strip"| ; \ - /CXXFLAGS/s|-O3 .* -Wall|-Wall|' \ - ${WRKSRC}/configure - @${REINPLACE_CMD} -e \ - '/AM_CXXFLAGS/s|-finline-limit=80|| ; \ - /calf.so/s|$$(pkglibdir)|../../calf|' \ - ${WRKSRC}/src/Makefile.in - -pre-build: -.if ${PORT_OPTIONS:MLV2} - @${MKDIR} ${WRKDIR}/calfmakerdf - @(cd ${WRKSRC} && ${PAX} -rw . ${WRKDIR}/calfmakerdf) - @${REINPLACE_CMD} -e 's|\(PKGLIBDIR\).*|\1 "${STAGEDIR}${DATADIR}"|' \ - ${WRKDIR}/calfmakerdf/config.h - @(cd ${WRKDIR}/calfmakerdf/src && ${DO_MAKE_BUILD} calfmakerdf) -.endif - -post-install: -.if ${PORT_OPTIONS:MLV2} - @(cd ${WRKDIR}/calfmakerdf/src && ./calfmakerdf -m ttl \ - -p ${STAGEDIR}${PREFIX}/lib/lv2/calf.lv2) - @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/lv2/calf.lv2/calflv2gui.so -.endif + @${REINPLACE_CMD} '/<malloc.h>/d' \ + ${WRKSRC}/src/ctl_knob.cpp ${WRKSRC}/src/ctl_tube.cpp .include <bsd.port.post.mk> diff --git a/audio/calf/files/patch-configure.ac b/audio/calf/files/patch-configure.ac new file mode 100644 index 000000000000..675a8cf44283 --- /dev/null +++ b/audio/calf/files/patch-configure.ac @@ -0,0 +1,20 @@ +--- configure.ac.orig 2015-03-29 13:15:36 UTC ++++ configure.ac +@@ -5,7 +5,7 @@ AC_PREREQ(2.63) + AC_INIT([calf],[0.0.60],[wdev@foltman.com]) + AC_CONFIG_SRCDIR([config.h.in]) + AC_CONFIG_HEADER([config.h]) +-LT_INIT([dlopen]) ++LT_INIT([dlopen disable-static]) + LT_LANG([C++]) + + AM_INIT_AUTOMAKE(1.8) +@@ -153,7 +153,7 @@ if test "$set_enable_debug" = "yes"; the + CXXFLAGS="$CXXFLAGS -O0 -g -Wall" + else + # TODO: remove -finline options if clang is used +- CXXFLAGS="$CXXFLAGS -O3 -finline-functions -finline-functions-called-once -Wall" ++ CXXFLAGS="$CXXFLAGS -Wall" + fi + + if test "$set_enable_sse" = "yes"; then diff --git a/audio/calf/files/patch-src-Makefile.am b/audio/calf/files/patch-src-Makefile.am new file mode 100644 index 000000000000..963bdf37efdb --- /dev/null +++ b/audio/calf/files/patch-src-Makefile.am @@ -0,0 +1,108 @@ +--- src/Makefile.am.orig 2015-01-24 18:21:15 UTC ++++ src/Makefile.am +@@ -5,14 +5,14 @@ SUBDIRS = calf + lv2dir = $(with_lv2_dir)/calf.lv2 + + bin_PROGRAMS = +-noinst_LTLIBRARIES = ++noinst_LTLIBRARIES = libcalf.la + + noinst_PROGRAMS = calfbenchmark +-pkglib_LTLIBRARIES = calf.la ++lv2_LTLIBRARIES = calf.la + + AM_CPPFLAGS = -I$(top_srcdir) -I$(srcdir) + # TODO: Remove -finline flags is clang is used +-AM_CXXFLAGS = -ffast-math -finline-limit=80 $(FLUIDSYNTH_DEPS_CFLAGS) $(LV2_DEPS_CFLAGS) ++AM_CXXFLAGS = -ffast-math $(FLUIDSYNTH_DEPS_CFLAGS) $(LV2_DEPS_CFLAGS) + + if USE_GUI + AM_CXXFLAGS += $(GUI_DEPS_CFLAGS) +@@ -22,7 +22,7 @@ AM_CXXFLAGS += $(JACK_DEPS_CFLAGS) + noinst_LTLIBRARIES += libcalfgui.la + bin_PROGRAMS += calfjackhost + calfjackhost_SOURCES = gtk_session_env.cpp host_session.cpp jack_client.cpp jackhost.cpp gtk_main_win.cpp connector.cpp session_mgr.cpp +-calfjackhost_LDADD = libcalfgui.la calf.la $(JACK_DEPS_LIBS) $(GUI_DEPS_LIBS) $(FLUIDSYNTH_DEPS_LIBS) ++calfjackhost_LDADD = libcalfgui.la libcalf.la $(JACK_DEPS_LIBS) $(GUI_DEPS_LIBS) $(FLUIDSYNTH_DEPS_LIBS) + if USE_LASH + AM_CXXFLAGS += $(LASH_DEPS_CFLAGS) + calfjackhost_LDADD += $(LASH_DEPS_LIBS) +@@ -32,43 +32,43 @@ endif + AM_CXXFLAGS += $(GLIB_DEPS_CFLAGS) + noinst_PROGRAMS += calfmakerdf + calfmakerdf_SOURCES = makerdf.cpp +-calfmakerdf_LDADD = calf.la ++calfmakerdf_LDADD = libcalf.la + + calfbenchmark_SOURCES = benchmark.cpp +-calfbenchmark_LDADD = calf.la ++calfbenchmark_LDADD = libcalf.la + +-calf_la_SOURCES = audio_fx.cpp analyzer.cpp metadata.cpp modules_tools.cpp modules_delay.cpp modules_comp.cpp modules_limit.cpp modules_dist.cpp modules_filter.cpp modules_mod.cpp fluidsynth.cpp giface.cpp monosynth.cpp organ.cpp osctl.cpp plugin.cpp preset.cpp synth.cpp utils.cpp wavetable.cpp modmatrix.cpp +-calf_la_LIBADD = $(FLUIDSYNTH_DEPS_LIBS) $(GLIB_DEPS_LIBS) ++libcalf_la_SOURCES = audio_fx.cpp analyzer.cpp metadata.cpp modules_tools.cpp modules_delay.cpp modules_comp.cpp modules_limit.cpp modules_dist.cpp modules_filter.cpp modules_mod.cpp fluidsynth.cpp giface.cpp monosynth.cpp organ.cpp osctl.cpp plugin.cpp preset.cpp synth.cpp utils.cpp wavetable.cpp modmatrix.cpp ++libcalf_la_LIBADD = $(FLUIDSYNTH_DEPS_LIBS) $(GLIB_DEPS_LIBS) -lexpat ++calf_la_SOURCES = $(libcalf_la_SOURCES) ++calf_la_LIBADD = $(libcalf_la_LIBADD) + if USE_DEBUG +-calf_la_LDFLAGS = -rpath $(pkglibdir) -avoid-version -module -lexpat -disable-static ++calf_la_LDFLAGS = -avoid-version -module + else +-calf_la_LDFLAGS = -rpath $(pkglibdir) -avoid-version -module -lexpat -disable-static -export-symbols-regex "lv2_descriptor" ++calf_la_LDFLAGS = -avoid-version -module -export-symbols-regex "lv2_descriptor" + endif + + if USE_LV2_GUI + + # Version WITH out-of-process GUI - links GTK+, UI controls etc. + +-noinst_LTLIBRARIES += calflv2gui.la ++lv2_LTLIBRARIES += calflv2gui.la + + calflv2gui_la_SOURCES = gui.cpp gui_config.cpp gui_controls.cpp ctl_curve.cpp ctl_keyboard.cpp ctl_knob.cpp ctl_led.cpp ctl_tube.cpp ctl_vumeter.cpp custom_ctl.cpp metadata.cpp giface.cpp plugin_gui_window.cpp preset.cpp preset_gui.cpp lv2gui.cpp osctl.cpp utils.cpp ctl_linegraph.cpp ++calflv2gui_la_LIBADD = -lexpat $(GUI_DEPS_LIBS) + + if USE_DEBUG +-calflv2gui_la_LDFLAGS = -rpath $(lv2dir) -avoid-version -module -lexpat $(GUI_DEPS_LIBS) -disable-static ++calflv2gui_la_LDFLAGS = -avoid-version -module + else +-calflv2gui_la_LDFLAGS = -rpath $(lv2dir) -avoid-version -module -lexpat -export-symbols-regex "lv2ui_descriptor" $(GUI_DEPS_LIBS) -disable-static ++calflv2gui_la_LDFLAGS = -avoid-version -module -export-symbols-regex "lv2ui_descriptor" + endif + + endif + + if USE_GUI + libcalfgui_la_SOURCES = ctl_curve.cpp ctl_keyboard.cpp ctl_knob.cpp ctl_led.cpp ctl_tube.cpp ctl_vumeter.cpp custom_ctl.cpp gui.cpp gui_config.cpp gui_controls.cpp osctl.cpp plugin_gui_window.cpp preset_gui.cpp utils.cpp ctl_linegraph.cpp +-libcalfgui_la_LDFLAGS = -static -disable-shared -lexpat ++libcalfgui_la_LIBADD = -lexpat + endif + +-clean-local: +- $(RM) -f calfjackhost *~ +- + install-data-hook: + install -d -m 755 $(DESTDIR)$(pkgdatadir) + install -c -m 644 $(top_srcdir)/presets.xml $(DESTDIR)$(pkgdatadir) +@@ -76,11 +76,6 @@ if USE_GUI + install -c -m 644 $(top_srcdir)/calf-gui.xml $(DESTDIR)$(pkgdatadir) + endif + if USE_LV2 +- install -d -m 755 $(DESTDIR)$(lv2dir) +- ln -sf $(pkglibdir)/calf.so $(DESTDIR)$(lv2dir)/calf.so +-if USE_LV2_GUI +- install -c -m 755 $(top_builddir)/src/.libs/calflv2gui.so $(DESTDIR)$(lv2dir)/calflv2gui.so +-endif + rm -f $(DESTDIR)$(lv2dir)/*.ttl + $(top_builddir)/src/calfmakerdf -m ttl -p $(DESTDIR)$(lv2dir)/ -d $(DESTDIR)$(pkgdatadir)/ + if USE_SORDI +@@ -91,9 +86,6 @@ endif + #remove calf.so, calf.rdf and - if empty - ladspa dir in usr/share + uninstall-hook: + if USE_LV2 +-if USE_LV2_GUI +- rm -f $(DESTDIR)$(lv2dir)/calflv2gui.so +-endif + rm -f $(DESTDIR)$(lv2dir)/calf.so + rm -f $(DESTDIR)$(lv2dir)/*.ttl + rmdir -p $(DESTDIR)$(lv2dir) || true diff --git a/audio/calf/files/patch-src-giface.cpp b/audio/calf/files/patch-src-giface.cpp new file mode 100644 index 000000000000..eecf206026f8 --- /dev/null +++ b/audio/calf/files/patch-src-giface.cpp @@ -0,0 +1,11 @@ +--- src/giface.cpp.orig 2015-01-24 17:21:09 UTC ++++ src/giface.cpp +@@ -173,7 +173,7 @@ std::string human_readable(float value, + } + double val = abs(value); + int place = (int)(log(val) / log(base)); +- double num = val / pow(base, place); ++ double num = val / pow((double)base, place); + sprintf(buf, format, (float)((value > 0) - (value < 0)) * num, suf[place]); + return string(buf); + } diff --git a/audio/calf/files/patch-src-monosynth.cpp b/audio/calf/files/patch-src-monosynth.cpp new file mode 100644 index 000000000000..1c949a8fbef1 --- /dev/null +++ b/audio/calf/files/patch-src-monosynth.cpp @@ -0,0 +1,11 @@ +--- src/monosynth.cpp.orig 2015-01-10 10:25:16 UTC ++++ src/monosynth.cpp +@@ -309,7 +309,7 @@ void monosynth_audio_module::calculate_b + { + float freq = fabs(*params[par_o2unisonfrq] / muls[7]); + if (moddest[moddest_o2unisondetune] != 0) +- freq *= pow(2.0, moddest[moddest_o2unisondetune]); ++ freq *= pow(2.0, (double)moddest[moddest_o2unisondetune]); + unison_osc.set_freq(freq, srate); + last_unison_scale = 1.0 / (1.0 + 2 * last_unison); + unison_scale = 1.0 / (1.0 + 2 * unison); diff --git a/audio/calf/pkg-plist b/audio/calf/pkg-plist index 725834a37603..8c0196e0e0af 100644 --- a/audio/calf/pkg-plist +++ b/audio/calf/pkg-plist @@ -1,6 +1,4 @@ bin/calfjackhost -lib/calf/calf.a -lib/calf/calf.so %%LV2%%lib/lv2/calf.lv2/Analyzer.ttl %%LV2%%lib/lv2/calf.lv2/BassEnhancer.ttl %%LV2%%lib/lv2/calf.lv2/CompensationDelay.ttl diff --git a/audio/deadbeef/Makefile b/audio/deadbeef/Makefile index 238f3d20d28d..68d2fd270d8e 100644 --- a/audio/deadbeef/Makefile +++ b/audio/deadbeef/Makefile @@ -3,7 +3,7 @@ PORTNAME= deadbeef PORTVERSION= 0.6.2 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= audio MASTER_SITES= SF/${PORTNAME}/ diff --git a/audio/gstreamer-plugins-fluendo-mp3/Makefile b/audio/gstreamer-plugins-fluendo-mp3/Makefile index 8f1b85f92f88..2037fcd25b2c 100644 --- a/audio/gstreamer-plugins-fluendo-mp3/Makefile +++ b/audio/gstreamer-plugins-fluendo-mp3/Makefile @@ -3,7 +3,7 @@ PORTNAME= gstreamer-plugins-fluendo-mp3 PORTVERSION= 0.10.20 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= audio MASTER_SITES= http://core.fluendo.com/gstreamer/src/gst-fluendo-mp3/ DISTNAME= gst-fluendo-mp3-${PORTVERSION} diff --git a/audio/gstreamer-plugins-moodbar/Makefile b/audio/gstreamer-plugins-moodbar/Makefile index fbd50593aec5..d7ce7f716b4d 100644 --- a/audio/gstreamer-plugins-moodbar/Makefile +++ b/audio/gstreamer-plugins-moodbar/Makefile @@ -3,7 +3,7 @@ PORTNAME= gstreamer-plugins-moodbar PORTVERSION= 0.1.2 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= audio MASTER_SITES= http://pwsp.net/~qbob/ \ http://redundancy.redundancy.org/mirror/ diff --git a/audio/libaacplus/Makefile b/audio/libaacplus/Makefile index 7247af00e4c6..99d171a8d217 100644 --- a/audio/libaacplus/Makefile +++ b/audio/libaacplus/Makefile @@ -3,7 +3,7 @@ PORTNAME= libaacplus PORTVERSION= 2.0.2 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= audio MASTER_SITES= http://tipok.org.ua/downloads/media/aacplus/libaacplus/ \ ftp://ftp.3gpp.org/Specs/archive/26_series/26.410/:site2 \ diff --git a/audio/libaudiofile/Makefile b/audio/libaudiofile/Makefile index 983b780166d5..d929f1665b24 100644 --- a/audio/libaudiofile/Makefile +++ b/audio/libaudiofile/Makefile @@ -4,7 +4,7 @@ PORTNAME= libaudiofile PORTVERSION= 0.3.6 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= audio MASTER_SITES= GNOME/sources/${PORTNAME:S/lib//}/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} DISTNAME= audiofile-${PORTVERSION} diff --git a/audio/mpg123/Makefile b/audio/mpg123/Makefile index 4b2ea9344041..84168290d50c 100644 --- a/audio/mpg123/Makefile +++ b/audio/mpg123/Makefile @@ -3,6 +3,7 @@ PORTNAME= mpg123 PORTVERSION= 1.22.2 +PORTREVISION= 1 CATEGORIES= audio ipv6 MASTER_SITES= SF \ http://www.mpg123.de/download/ diff --git a/audio/portaudio/Makefile b/audio/portaudio/Makefile index 8972e59653b7..2094bded6975 100644 --- a/audio/portaudio/Makefile +++ b/audio/portaudio/Makefile @@ -3,7 +3,7 @@ PORTNAME= portaudio DISTVERSION= 19_20140130 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= audio MASTER_SITES= http://www.portaudio.com/archives/ DISTNAME= pa_stable_v${DISTVERSION} diff --git a/audio/shairplay/Makefile b/audio/shairplay/Makefile index 2aa1e543a736..b92b821ffd4d 100644 --- a/audio/shairplay/Makefile +++ b/audio/shairplay/Makefile @@ -2,6 +2,7 @@ PORTNAME= shairplay PORTVERSION= 0.9.0.20140422 +PORTREVISION= 1 CATEGORIES= audio MAINTAINER= mickael.maillot@gmail.com diff --git a/audio/wavpack/Makefile b/audio/wavpack/Makefile index 2543d46152bd..4022b4ffbfa5 100644 --- a/audio/wavpack/Makefile +++ b/audio/wavpack/Makefile @@ -3,7 +3,7 @@ PORTNAME= wavpack PORTVERSION= 4.60.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= audio MASTER_SITES= http://www.wavpack.com/ diff --git a/audio/xfce4-mixer/Makefile b/audio/xfce4-mixer/Makefile index 585a2014bfe1..421f143b0c17 100644 --- a/audio/xfce4-mixer/Makefile +++ b/audio/xfce4-mixer/Makefile @@ -3,7 +3,7 @@ PORTNAME= xfce4-mixer PORTVERSION= 4.11.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= audio xfce MASTER_SITES= XFCE/src/apps/${PORTNAME}/${PORTVERSION:R} DIST_SUBDIR= xfce4 diff --git a/audio/xfce4-mpc-plugin/Makefile b/audio/xfce4-mpc-plugin/Makefile index c69cd1388959..e5d08649ea55 100644 --- a/audio/xfce4-mpc-plugin/Makefile +++ b/audio/xfce4-mpc-plugin/Makefile @@ -3,6 +3,7 @@ PORTNAME= xfce4-mpc-plugin PORTVERSION= 0.4.5 +PORTREVISION= 1 CATEGORIES= audio xfce MASTER_SITES= XFCE/src/panel-plugins/${PORTNAME}/${PORTVERSION:R} DIST_SUBDIR= xfce4 diff --git a/chinese/scim-array/Makefile b/chinese/scim-array/Makefile index 18eb93de987f..38ef897238ad 100644 --- a/chinese/scim-array/Makefile +++ b/chinese/scim-array/Makefile @@ -3,7 +3,7 @@ PORTNAME= scim-array PORTVERSION= 1.0.1 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= chinese MASTER_SITES= http://of.openfoundry.org/download/scimarray/${PORTVERSION}/ diff --git a/chinese/scim-pinyin/Makefile b/chinese/scim-pinyin/Makefile index 753c808c15e4..fc23746938a9 100644 --- a/chinese/scim-pinyin/Makefile +++ b/chinese/scim-pinyin/Makefile @@ -3,7 +3,7 @@ PORTNAME= scim-pinyin PORTVERSION= 0.5.92 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= chinese MASTER_SITES= SF/scim/${PORTNAME}/${PORTVERSION} diff --git a/converters/fribidi/Makefile b/converters/fribidi/Makefile index ae2ee68f4161..0b1804c0ca05 100644 --- a/converters/fribidi/Makefile +++ b/converters/fribidi/Makefile @@ -3,7 +3,7 @@ PORTNAME= fribidi PORTVERSION= 0.19.2 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= converters MASTER_SITES= http://fribidi.org/download/ diff --git a/databases/courier-authlib-mysql/Makefile b/databases/courier-authlib-mysql/Makefile index 8e628efa8b34..b378e332bcc0 100644 --- a/databases/courier-authlib-mysql/Makefile +++ b/databases/courier-authlib-mysql/Makefile @@ -1,7 +1,7 @@ # Created by: Yarema <yds@CoolRat.org> # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 PKGNAMESUFFIX= -mysql COMMENT= MySQL support for the Courier authentication library diff --git a/databases/courier-authlib-pgsql/Makefile b/databases/courier-authlib-pgsql/Makefile index 31a1fdbd9634..cd49c5448051 100644 --- a/databases/courier-authlib-pgsql/Makefile +++ b/databases/courier-authlib-pgsql/Makefile @@ -1,7 +1,7 @@ # Created by: Yarema <yds@CoolRat.org> # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 PKGNAMESUFFIX= -pgsql COMMENT= PostgreSQL support for the Courier authentication library diff --git a/databases/courier-authlib-userdb/Makefile b/databases/courier-authlib-userdb/Makefile index dd4f6227caf5..a4649e0cf8d9 100644 --- a/databases/courier-authlib-userdb/Makefile +++ b/databases/courier-authlib-userdb/Makefile @@ -1,7 +1,7 @@ # Created by: Yarema <yds@CoolRat.org> # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 PKGNAMESUFFIX= -userdb COMMENT= Userdb support for the Courier authentication library diff --git a/databases/courier-authlib-usergdbm/Makefile b/databases/courier-authlib-usergdbm/Makefile index aa08e55f8d59..664d6267d0a6 100644 --- a/databases/courier-authlib-usergdbm/Makefile +++ b/databases/courier-authlib-usergdbm/Makefile @@ -1,7 +1,7 @@ # Created by: Yarema <yds@CoolRat.org> # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 PKGNAMESUFFIX= -usergdbm COMMENT= Userdb support for the Courier authentication library diff --git a/databases/glom/Makefile b/databases/glom/Makefile index 9a52cab6f49a..72e157920ee4 100644 --- a/databases/glom/Makefile +++ b/databases/glom/Makefile @@ -3,6 +3,7 @@ PORTNAME= glom PORTVERSION= 1.28.0 +PORTREVISION= 1 CATEGORIES= databases gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome3 diff --git a/databases/ipa_sdb/Makefile b/databases/ipa_sdb/Makefile index 6ffe946d7ca2..7fdd6e0fb4b8 100644 --- a/databases/ipa_sdb/Makefile +++ b/databases/ipa_sdb/Makefile @@ -3,7 +3,7 @@ PORTNAME= ipa_sdb PORTVERSION= 1.1.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= databases MASTER_SITES= SF/ipa-system/modules/ipa_sdb diff --git a/databases/libgda4/Makefile b/databases/libgda4/Makefile index 45d347369d51..a6e0c082a06a 100644 --- a/databases/libgda4/Makefile +++ b/databases/libgda4/Makefile @@ -4,7 +4,7 @@ PORTNAME= libgda PORTVERSION= 4.2.12 -PORTREVISION?= 6 +PORTREVISION?= 7 CATEGORIES= databases gnome MASTER_SITES= GNOME PKGNAMESUFFIX?= 4 diff --git a/databases/libgda5/Makefile b/databases/libgda5/Makefile index c78a6a3ce4bd..50870546e57a 100644 --- a/databases/libgda5/Makefile +++ b/databases/libgda5/Makefile @@ -3,7 +3,7 @@ PORTNAME= libgda PORTVERSION?= 5.2.2 -PORTREVISION?= 1 +PORTREVISION?= 2 CATEGORIES= databases gnome MASTER_SITES= GNOME PKGNAMESUFFIX?= 5 diff --git a/databases/libiodbc/Makefile b/databases/libiodbc/Makefile index f4b6fd51eba8..776f10d7300e 100644 --- a/databases/libiodbc/Makefile +++ b/databases/libiodbc/Makefile @@ -3,6 +3,7 @@ PORTNAME= libiodbc PORTVERSION= 3.52.9 +PORTREVISION= 1 CATEGORIES= databases MASTER_SITES= SF/iodbc/iodbc/${PORTVERSION} diff --git a/databases/mdbtools/Makefile b/databases/mdbtools/Makefile index 0677cfabedd7..ad0e29e66d7a 100644 --- a/databases/mdbtools/Makefile +++ b/databases/mdbtools/Makefile @@ -3,7 +3,7 @@ PORTNAME= mdbtools PORTVERSION= 0.7.1 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= databases MAINTAINER= rhurlin@gwdg.de diff --git a/databases/mysql-workbench51/Makefile b/databases/mysql-workbench51/Makefile index e70052fe3397..6a0116173b22 100644 --- a/databases/mysql-workbench51/Makefile +++ b/databases/mysql-workbench51/Makefile @@ -3,7 +3,7 @@ PORTNAME= mysql-workbench-oss PORTVERSION= 5.1.16 -PORTREVISION= 11 +PORTREVISION= 12 CATEGORIES= databases MASTER_SITES= MYSQL/MySQLGUITools PKGNAMESUFFIX= 51 diff --git a/databases/oracle_odbc_driver/Makefile b/databases/oracle_odbc_driver/Makefile index 5cfea8cef47a..84ef6e073b99 100644 --- a/databases/oracle_odbc_driver/Makefile +++ b/databases/oracle_odbc_driver/Makefile @@ -3,7 +3,7 @@ PORTNAME= oracle_odbc_driver PORTVERSION= 0.5.6 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= databases MASTER_SITES= http://home.fnal.gov/~dbox/oracle/odbc/ DISTNAME= ${PORTNAME}.${PORTVERSION} diff --git a/databases/rrdtool/Makefile b/databases/rrdtool/Makefile index 7c20b18098bb..7fb2d10a6cfc 100644 --- a/databases/rrdtool/Makefile +++ b/databases/rrdtool/Makefile @@ -3,7 +3,7 @@ PORTNAME= rrdtool PORTVERSION= 1.4.8 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= databases graphics MASTER_SITES= http://oss.oetiker.ch/rrdtool/pub/ diff --git a/databases/unixODBC/Makefile b/databases/unixODBC/Makefile index c772b34d4a1b..21cd96750ada 100644 --- a/databases/unixODBC/Makefile +++ b/databases/unixODBC/Makefile @@ -3,7 +3,7 @@ PORTNAME= unixODBC PORTVERSION= 2.3.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= databases MASTER_SITES= http://www.unixodbc.org/ diff --git a/databases/virtuoso/Makefile b/databases/virtuoso/Makefile index c27fa47cb33f..293c83dda6e7 100644 --- a/databases/virtuoso/Makefile +++ b/databases/virtuoso/Makefile @@ -3,7 +3,7 @@ PORTNAME= virtuoso PORTVERSION= 7.1.0 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= databases MASTER_SITES= SF DISTNAME= ${PORTNAME}-opensource-${PORTVERSION} diff --git a/deskutils/orage/Makefile b/deskutils/orage/Makefile index 50a14873d03b..071bc0a88602 100644 --- a/deskutils/orage/Makefile +++ b/deskutils/orage/Makefile @@ -3,6 +3,7 @@ PORTNAME= orage PORTVERSION= 4.12.1 +PORTREVISION= 1 CATEGORIES= deskutils xfce MASTER_SITES= XFCE/src/apps/${PORTNAME}/${PORTVERSION:R}/ DIST_SUBDIR= xfce4 diff --git a/deskutils/spice-gtk/Makefile b/deskutils/spice-gtk/Makefile index 63c3f71b5c67..79a3d4a849b3 100644 --- a/deskutils/spice-gtk/Makefile +++ b/deskutils/spice-gtk/Makefile @@ -3,6 +3,7 @@ PORTNAME= spice-gtk PORTVERSION= 0.26 +PORTREVISION= 1 CATEGORIES?= deskutils gnome MASTER_SITES= http://www.spice-space.org/download/gtk/ diff --git a/devel/alf/Makefile b/devel/alf/Makefile index afcaef3897d8..0737ac0a2371 100644 --- a/devel/alf/Makefile +++ b/devel/alf/Makefile @@ -3,7 +3,7 @@ PORTNAME= alf PORTVERSION= 0.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel python MASTER_SITES= SF/largefiles/largefiles/${PORTNAME}-${PORTVERSION} diff --git a/devel/appstream-glib/Makefile b/devel/appstream-glib/Makefile index 76ff1a6b8199..a8ea52bd990e 100644 --- a/devel/appstream-glib/Makefile +++ b/devel/appstream-glib/Makefile @@ -3,7 +3,7 @@ PORTNAME= appstream-glib PORTVERSION= 0.2.6 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel DIST_SUBDIR= gnome3 diff --git a/devel/cutter/Makefile b/devel/cutter/Makefile index e0fa42007282..c9846521a4ad 100644 --- a/devel/cutter/Makefile +++ b/devel/cutter/Makefile @@ -3,6 +3,7 @@ PORTNAME= cutter PORTVERSION= 1.2.4 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= SF diff --git a/devel/fam/Makefile b/devel/fam/Makefile index f68fb55b3eb3..801d68593913 100644 --- a/devel/fam/Makefile +++ b/devel/fam/Makefile @@ -3,7 +3,7 @@ PORTNAME= fam PORTVERSION= 2.6.10 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= devel MASTER_SITES= ftp://oss.sgi.com/projects/fam/download/ DIST_SUBDIR= ${PORTNAME} diff --git a/devel/gconf2/Makefile b/devel/gconf2/Makefile index 6af5cc980528..0bfc391899ed 100644 --- a/devel/gconf2/Makefile +++ b/devel/gconf2/Makefile @@ -4,7 +4,7 @@ PORTNAME= gconf2 PORTVERSION= 3.2.6 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= devel gnome MASTER_SITES= GNOME/sources/GConf/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} DISTNAME= GConf-${PORTVERSION} diff --git a/devel/gitg/Makefile b/devel/gitg/Makefile index b9de05675dd2..bca78a1e10f5 100644 --- a/devel/gitg/Makefile +++ b/devel/gitg/Makefile @@ -3,6 +3,7 @@ PORTNAME= gitg PORTVERSION= 3.16.1 +PORTREVISION= 1 CATEGORIES= devel deskutils gnome MASTER_SITES= GNOME diff --git a/devel/gnome-vfs/Makefile b/devel/gnome-vfs/Makefile index 929a789dc778..84c2cfe0fb2c 100644 --- a/devel/gnome-vfs/Makefile +++ b/devel/gnome-vfs/Makefile @@ -4,7 +4,7 @@ PORTNAME= gnome-vfs PORTVERSION= 2.24.4 -PORTREVISION?= 3 +PORTREVISION?= 4 CATEGORIES= devel gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome2 diff --git a/devel/google-perftools/Makefile b/devel/google-perftools/Makefile index 39e49e50cbef..580755e71dea 100644 --- a/devel/google-perftools/Makefile +++ b/devel/google-perftools/Makefile @@ -3,6 +3,7 @@ PORTNAME= google-perftools PORTVERSION= 2.4 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= https://googledrive.com/host/0B6NtGsLhIcf7MWxMMF9JdTN3UVk/ DISTNAME= gperftools-${PORTVERSION} diff --git a/devel/gvfs/Makefile b/devel/gvfs/Makefile index b3a305dabc1d..7f4f0fb32676 100644 --- a/devel/gvfs/Makefile +++ b/devel/gvfs/Makefile @@ -4,7 +4,7 @@ PORTNAME= gvfs PORTVERSION= 1.20.3 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= devel gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome3 diff --git a/devel/jansson/Makefile b/devel/jansson/Makefile index 3da7d883dac5..c07cb5dbb7e4 100644 --- a/devel/jansson/Makefile +++ b/devel/jansson/Makefile @@ -3,7 +3,7 @@ PORTNAME= jansson PORTVERSION= 2.7 -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://www.digip.org/jansson/releases/ diff --git a/devel/libcheck/Makefile b/devel/libcheck/Makefile index f6c9190d3723..c7c912e65521 100644 --- a/devel/libcheck/Makefile +++ b/devel/libcheck/Makefile @@ -3,6 +3,7 @@ PORTNAME= libcheck PORTVERSION= 0.9.14 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= SF/check/check/${PORTVERSION} DISTNAME= check-${PORTVERSION} diff --git a/devel/libdatrie/Makefile b/devel/libdatrie/Makefile index 65700d273d49..84cf8d4677e1 100644 --- a/devel/libdatrie/Makefile +++ b/devel/libdatrie/Makefile @@ -3,6 +3,7 @@ PORTNAME= libdatrie PORTVERSION= 0.2.9 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://linux.thai.net/pub/thailinux/software/libthai/ diff --git a/devel/libdbusmenu/Makefile b/devel/libdbusmenu/Makefile index 990866d03804..49685d1dd0be 100644 --- a/devel/libdbusmenu/Makefile +++ b/devel/libdbusmenu/Makefile @@ -3,6 +3,7 @@ PORTNAME= libdbusmenu PORTVERSION= 12.10.2 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= https://launchpadlibrarian.net/118249592/ \ https://launchpad.net/${PORTNAME}/${PORTVERSION:R}/${PORTVERSION}/+download/ diff --git a/devel/libglade2/Makefile b/devel/libglade2/Makefile index 350346984fe0..5b901d35dd9a 100644 --- a/devel/libglade2/Makefile +++ b/devel/libglade2/Makefile @@ -4,7 +4,7 @@ PORTNAME= libglade2 PORTVERSION= 2.6.4 -PORTREVISION?= 7 +PORTREVISION?= 8 CATEGORIES= devel gnome MASTER_SITES= GNOME/sources/${PORTNAME:S/2$//}/${PORTVERSION:C/..$//} DISTNAME= ${PORTNAME:S/2$//}-${PORTVERSION} diff --git a/devel/libgtop/Makefile b/devel/libgtop/Makefile index 3e90b0d774a1..868bd8adafcd 100644 --- a/devel/libgtop/Makefile +++ b/devel/libgtop/Makefile @@ -4,7 +4,7 @@ PORTNAME= libgtop PORTVERSION= 2.30.0 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= devel gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome2 diff --git a/devel/liblcfg/Makefile b/devel/liblcfg/Makefile index 9e8193d2c055..fe2b4e01e3c9 100644 --- a/devel/liblcfg/Makefile +++ b/devel/liblcfg/Makefile @@ -3,7 +3,7 @@ PORTNAME= liblcfg PORTVERSION= 0.2.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= http://liblcfg.carnivore.it/files/ diff --git a/devel/libmaa/Makefile b/devel/libmaa/Makefile index 351b059be5d4..8c4df0896f39 100644 --- a/devel/libmaa/Makefile +++ b/devel/libmaa/Makefile @@ -3,7 +3,7 @@ PORTNAME= libmaa PORTVERSION= 1.3.2 -PORTREVISION= 2 +PORTREVISION= 3 PORTEPOCH= 1 CATEGORIES= devel MASTER_SITES= SF/dict/${PORTNAME}/${PORTNAME}-${PORTVERSION} diff --git a/devel/liboil/Makefile b/devel/liboil/Makefile index 9c4ab6dc9682..d3cb4bcf4622 100644 --- a/devel/liboil/Makefile +++ b/devel/liboil/Makefile @@ -4,7 +4,7 @@ PORTNAME= liboil PORTVERSION= 0.3.17 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel MASTER_SITES= http://liboil.freedesktop.org/download/ diff --git a/devel/libpeas/Makefile b/devel/libpeas/Makefile index d5ca70809512..1754a64529ed 100644 --- a/devel/libpeas/Makefile +++ b/devel/libpeas/Makefile @@ -3,7 +3,7 @@ PORTNAME= libpeas PORTVERSION= 1.12.1 -PORTREVISION?= 2 +PORTREVISION?= 3 CATEGORIES= devel gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome3 diff --git a/devel/librcc/Makefile b/devel/librcc/Makefile index 8b2836f8288d..7e9036035fe8 100644 --- a/devel/librcc/Makefile +++ b/devel/librcc/Makefile @@ -3,7 +3,7 @@ PORTNAME= librcc PORTVERSION= 0.2.12 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= devel MASTER_SITES= http://dside.dyndns.org/files/rusxmms/ \ LOCAL/fluffy diff --git a/devel/librevisa/Makefile b/devel/librevisa/Makefile index 8e1a4a3ef292..6f02568181a8 100644 --- a/devel/librevisa/Makefile +++ b/devel/librevisa/Makefile @@ -3,6 +3,7 @@ PORTNAME= librevisa PORTVERSION= 0.0.20130412 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://www.librevisa.org/download/ diff --git a/devel/libthai/Makefile b/devel/libthai/Makefile index d1aefbe97f35..408433a15548 100644 --- a/devel/libthai/Makefile +++ b/devel/libthai/Makefile @@ -3,6 +3,7 @@ PORTNAME= libthai PORTVERSION= 0.1.22 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://linux.thai.net/pub/thailinux/software/libthai/ diff --git a/devel/libzookeeper/Makefile b/devel/libzookeeper/Makefile index f36860be14bd..eba7c9bc6c62 100644 --- a/devel/libzookeeper/Makefile +++ b/devel/libzookeeper/Makefile @@ -3,7 +3,7 @@ PORTNAME= zookeeper PORTVERSION= 3.4.6 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= APACHE/${PORTNAME}/current PKGNAMEPREFIX= lib diff --git a/devel/orc/Makefile b/devel/orc/Makefile index 775e910bf5f6..0f27073343e6 100644 --- a/devel/orc/Makefile +++ b/devel/orc/Makefile @@ -3,6 +3,7 @@ PORTNAME= orc PORTVERSION= 0.4.24 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://gstreamer.freedesktop.org/data/src/orc/ diff --git a/devel/privman/Makefile b/devel/privman/Makefile index a04e3462c273..4ada9cc24a31 100644 --- a/devel/privman/Makefile +++ b/devel/privman/Makefile @@ -3,7 +3,7 @@ PORTNAME= privman PORTVERSION= 0.9.3 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= devel security MASTER_SITES= GOOGLE_CODE diff --git a/devel/pthsem/Makefile b/devel/pthsem/Makefile index 89804cb8ee96..417aa12f7ece 100644 --- a/devel/pthsem/Makefile +++ b/devel/pthsem/Makefile @@ -3,7 +3,7 @@ PORTNAME= pthsem PORTVERSION= 2.0.8 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel MASTER_SITES= http://www.auto.tuwien.ac.at/~mkoegler/pth/ DISTFILES= ${PORTNAME}_${PORTVERSION}${EXTRACT_SUFX} diff --git a/devel/py-dbus/Makefile b/devel/py-dbus/Makefile index 0fb8ab0c5f92..bd4c00f4d5c3 100644 --- a/devel/py-dbus/Makefile +++ b/devel/py-dbus/Makefile @@ -1,7 +1,7 @@ # Created by: Joe Marcus Clarke <marcus@FreeBSD.org> # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} PKGNAMESUFFIX= diff --git a/devel/py-gobject/Makefile b/devel/py-gobject/Makefile index 0c3f0fbedf55..d366ee6ba342 100644 --- a/devel/py-gobject/Makefile +++ b/devel/py-gobject/Makefile @@ -4,7 +4,7 @@ PORTNAME= gobject PORTVERSION= 2.28.6 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= devel python MASTER_SITES= GNOME/sources/pygobject/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/py-notify/Makefile b/devel/py-notify/Makefile index 58f232cbd324..4cfbde026b10 100644 --- a/devel/py-notify/Makefile +++ b/devel/py-notify/Makefile @@ -3,7 +3,7 @@ PORTNAME= notify PORTVERSION= 0.1.1 DISTVERSIONPREFIX=python- -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= devel python MASTER_SITES= http://www.galago-project.org/files/releases/source/notify-python/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/py-orbit/Makefile b/devel/py-orbit/Makefile index 2326f89aa2e5..5543152142fe 100644 --- a/devel/py-orbit/Makefile +++ b/devel/py-orbit/Makefile @@ -4,7 +4,7 @@ PORTNAME= orbit PORTVERSION= 2.24.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel python MASTER_SITES= GNOME/sources/pyorbit/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/py3-dbus/Makefile b/devel/py3-dbus/Makefile index 7918d9d7a623..d6bc89ecdf0d 100644 --- a/devel/py3-dbus/Makefile +++ b/devel/py3-dbus/Makefile @@ -1,7 +1,7 @@ # Created by: Joe Marcus Clarke <marcus@FreeBSD.org> # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} PKGNAMESUFFIX= diff --git a/devel/pydbus-common/Makefile b/devel/pydbus-common/Makefile index e81627aa7bca..80ac683e3e63 100644 --- a/devel/pydbus-common/Makefile +++ b/devel/pydbus-common/Makefile @@ -3,7 +3,7 @@ PORTNAME= dbus PORTVERSION= 1.2.0 -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES= devel gnome python MASTER_SITES= http://dbus.freedesktop.org/releases/dbus-python/ PKGNAMEPREFIX?= py diff --git a/devel/streamhtmlparser/Makefile b/devel/streamhtmlparser/Makefile index c47be26462a0..b220dae654fd 100644 --- a/devel/streamhtmlparser/Makefile +++ b/devel/streamhtmlparser/Makefile @@ -3,6 +3,7 @@ PORTNAME= streamhtmlparser PORTVERSION= 0.1 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= GOOGLE_CODE diff --git a/devel/upnp/Makefile b/devel/upnp/Makefile index 9e4f77ce48ab..96b1e101339a 100644 --- a/devel/upnp/Makefile +++ b/devel/upnp/Makefile @@ -3,7 +3,7 @@ PORTNAME= upnp PORTVERSION= 1.6.19 -PORTREVISION= 1 +PORTREVISION= 2 PORTEPOCH= 1 CATEGORIES= devel MASTER_SITES= SF/p${PORTNAME}/p${PORTNAME}/libUPnP%20${PORTVERSION} diff --git a/dns/getdns/Makefile b/dns/getdns/Makefile index ff1e6a065963..fbd3446f4a39 100644 --- a/dns/getdns/Makefile +++ b/dns/getdns/Makefile @@ -3,6 +3,7 @@ PORTNAME= getdns PORTVERSION= 0.2.0 +PORTREVISION= 1 CATEGORIES= dns ipv6 MASTER_SITES= http://getdnsapi.net/dist/ \ http://mirrors.rit.edu/zi/ diff --git a/dns/knot/Makefile b/dns/knot/Makefile index a582aa3c349d..005294c2dce9 100644 --- a/dns/knot/Makefile +++ b/dns/knot/Makefile @@ -3,6 +3,7 @@ PORTNAME= knot PORTVERSION= 1.6.4 +PORTREVISION= 1 CATEGORIES= dns ipv6 MASTER_SITES= https://secure.nic.cz/files/knot-dns/ \ http://dns-lab.com/downloads/knot-dns/ diff --git a/dns/ldns/Makefile b/dns/ldns/Makefile index 4e5116df2a74..fad9af698113 100644 --- a/dns/ldns/Makefile +++ b/dns/ldns/Makefile @@ -3,7 +3,7 @@ PORTNAME= ldns PORTVERSION= 1.6.17 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= dns MASTER_SITES= http://www.nlnetlabs.nl/downloads/ldns/ \ LOCAL/ehaupt diff --git a/dns/unbound/Makefile b/dns/unbound/Makefile index 02468cdf5be6..14064d2f344a 100644 --- a/dns/unbound/Makefile +++ b/dns/unbound/Makefile @@ -3,7 +3,7 @@ PORTNAME= unbound PORTVERSION= 1.5.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= dns MASTER_SITES= http://unbound.net/downloads/ diff --git a/ftp/wzdftpd/Makefile b/ftp/wzdftpd/Makefile index 9b86644a00f9..1337c3f5a21e 100644 --- a/ftp/wzdftpd/Makefile +++ b/ftp/wzdftpd/Makefile @@ -3,7 +3,7 @@ PORTNAME= wzdftpd PORTVERSION= 0.8.3 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= ftp ipv6 MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-sources/${PORTNAME}-${PORTVERSION:R} diff --git a/graphics/GraphicsMagick/Makefile b/graphics/GraphicsMagick/Makefile index aeb3115b6b1e..b23eea7ed677 100644 --- a/graphics/GraphicsMagick/Makefile +++ b/graphics/GraphicsMagick/Makefile @@ -3,7 +3,7 @@ PORTNAME= GraphicsMagick PORTVERSION= 1.3.20 -PORTREVISION= 4 +PORTREVISION= 5 PORTEPOCH= 1 CATEGORIES= graphics MASTER_SITES= SF \ diff --git a/graphics/ImageMagick/Makefile b/graphics/ImageMagick/Makefile index 111a51f2ae4a..c1249d9592b0 100644 --- a/graphics/ImageMagick/Makefile +++ b/graphics/ImageMagick/Makefile @@ -2,6 +2,7 @@ PORTNAME= ImageMagick DISTVERSION= 6.9.1-10 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= graphics perl5 MASTER_SITES= http://www.imagemagick.org/download/ \ diff --git a/graphics/ImageMagick7/Makefile b/graphics/ImageMagick7/Makefile index 7d54ac72e835..28665a644bec 100644 --- a/graphics/ImageMagick7/Makefile +++ b/graphics/ImageMagick7/Makefile @@ -2,6 +2,7 @@ PORTNAME= ImageMagick DISTVERSION= 7.0.0-0~beta${DATE} +PORTREVISION= 1 CATEGORIES= graphics perl5 MASTER_SITES= http://www.imagemagick.org/download/ \ http://www.imagemagick.org/download/beta/ \ diff --git a/graphics/atril-lite/Makefile b/graphics/atril-lite/Makefile index 3113937895bb..0529aa36fe72 100644 --- a/graphics/atril-lite/Makefile +++ b/graphics/atril-lite/Makefile @@ -1,7 +1,7 @@ # Created by: Adam Weinberger <adamw@FreeBSD.org> # $FreeBSD$ -PORTREVISION= 3 +PORTREVISION= 4 PKGNAMESUFFIX= -lite COMMENT= MATE multi-format document viewer diff --git a/graphics/atril/Makefile b/graphics/atril/Makefile index 92715d832e58..2bbad3bd5434 100644 --- a/graphics/atril/Makefile +++ b/graphics/atril/Makefile @@ -3,7 +3,7 @@ PORTNAME= atril PORTVERSION= 1.10.1 -PORTREVISION?= 2 +PORTREVISION?= 3 CATEGORIES= graphics print mate MASTER_SITES= MATE DIST_SUBDIR= mate diff --git a/graphics/bugle/Makefile b/graphics/bugle/Makefile index 0b0836ece5ae..bdc69fad429f 100644 --- a/graphics/bugle/Makefile +++ b/graphics/bugle/Makefile @@ -3,7 +3,7 @@ PORTNAME= bugle PORTVERSION= 0.0.20100508 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics MASTER_SITES= SF diff --git a/graphics/cogl/Makefile b/graphics/cogl/Makefile index 3fd67d413a35..9879d1ed0dd1 100644 --- a/graphics/cogl/Makefile +++ b/graphics/cogl/Makefile @@ -4,6 +4,7 @@ PORTNAME= cogl PORTVERSION= 1.20.0 +PORTREVISION= 1 CATEGORIES= graphics MASTER_SITES= GNOME diff --git a/graphics/colord/Makefile b/graphics/colord/Makefile index cd8901791f29..7b4dec42e88b 100644 --- a/graphics/colord/Makefile +++ b/graphics/colord/Makefile @@ -4,7 +4,7 @@ PORTNAME= colord PORTVERSION= 1.2.4 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics MASTER_SITES= http://www.freedesktop.org/software/colord/releases/ diff --git a/graphics/diacanvas2/Makefile b/graphics/diacanvas2/Makefile index 54392e587f54..f8e60ef49d9e 100644 --- a/graphics/diacanvas2/Makefile +++ b/graphics/diacanvas2/Makefile @@ -3,7 +3,7 @@ PORTNAME= diacanvas2 PORTVERSION= 0.15.4 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= graphics gnome MASTER_SITES= SF/diacanvas/DiaCanvas2/${PORTVERSION} DISTNAME= ${PORTNAME}_${PORTVERSION} diff --git a/graphics/evince-lite/Makefile b/graphics/evince-lite/Makefile index d360d0af1f33..8aa4a66c2f05 100644 --- a/graphics/evince-lite/Makefile +++ b/graphics/evince-lite/Makefile @@ -1,7 +1,7 @@ # Created by: Adam Weinberger <adamw@FreeBSD.org> # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 PKGNAMESUFFIX= -lite COMMENT= GNOME 3 multi-format document viewer without the GNOME dependancies diff --git a/graphics/evince/Makefile b/graphics/evince/Makefile index a92a4c3691ce..d4021a475031 100644 --- a/graphics/evince/Makefile +++ b/graphics/evince/Makefile @@ -3,7 +3,7 @@ PORTNAME= evince PORTVERSION= 3.14.2 -PORTREVISION?= 1 +PORTREVISION?= 2 CATEGORIES= graphics print gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome3 diff --git a/graphics/goom/Makefile b/graphics/goom/Makefile index 820991b357a6..eec14335da81 100644 --- a/graphics/goom/Makefile +++ b/graphics/goom/Makefile @@ -3,7 +3,7 @@ PORTNAME= goom PORTVERSION= 2k4.0 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= graphics MASTER_SITES= SF/${PORTNAME}/${PORTNAME}2k4/0 DISTNAME= ${PORTNAME}-${PORTVERSION:S|.|-|}-src diff --git a/graphics/gstreamer-plugins-gl/Makefile b/graphics/gstreamer-plugins-gl/Makefile index 9d6111045c67..a11cbb89167e 100644 --- a/graphics/gstreamer-plugins-gl/Makefile +++ b/graphics/gstreamer-plugins-gl/Makefile @@ -3,7 +3,7 @@ PORTNAME= gstreamer-plugins-gl PORTVERSION= 0.10.3 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= graphics MASTER_SITES= http://gstreamer.freedesktop.org/src/gst-plugins-gl/ DISTNAME= ${PORTNAME:S/gstreamer/gst/}-${PORTVERSION} diff --git a/graphics/gstreamer1-plugins-gl/Makefile b/graphics/gstreamer1-plugins-gl/Makefile index ea592ca723d1..ffe566b011a6 100644 --- a/graphics/gstreamer1-plugins-gl/Makefile +++ b/graphics/gstreamer1-plugins-gl/Makefile @@ -1,6 +1,6 @@ # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= graphics COMMENT= Gstreamer GL graphics plugin diff --git a/graphics/libchamplain/Makefile b/graphics/libchamplain/Makefile index 7fc3bb64b8be..728e70b061dd 100644 --- a/graphics/libchamplain/Makefile +++ b/graphics/libchamplain/Makefile @@ -4,6 +4,7 @@ PORTNAME= libchamplain PORTVERSION= 0.12.9 +PORTREVISION= 1 CATEGORIES= graphics MASTER_SITES= GNOME diff --git a/graphics/libchamplain08/Makefile b/graphics/libchamplain08/Makefile index b177120d230e..7bf626c84ef5 100644 --- a/graphics/libchamplain08/Makefile +++ b/graphics/libchamplain08/Makefile @@ -3,6 +3,7 @@ PORTNAME= libchamplain PORTVERSION= 0.8.1 +PORTREVISION= 1 CATEGORIES= graphics MASTER_SITES= GNOME PKGNAMESUFFIX= 08 diff --git a/graphics/libexif/Makefile b/graphics/libexif/Makefile index 93735852a500..0db92d939ddc 100644 --- a/graphics/libexif/Makefile +++ b/graphics/libexif/Makefile @@ -3,7 +3,7 @@ PORTNAME= libexif PORTVERSION= 0.6.21 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= graphics MASTER_SITES= SF diff --git a/graphics/libgphoto2/Makefile b/graphics/libgphoto2/Makefile index 4ed5277bee13..55cf637a058f 100644 --- a/graphics/libgphoto2/Makefile +++ b/graphics/libgphoto2/Makefile @@ -3,6 +3,7 @@ PORTNAME= libgphoto2 PORTVERSION= 2.5.8 +PORTREVISION= 1 CATEGORIES= graphics MASTER_SITES= SF/gphoto/libgphoto/${PORTVERSION} diff --git a/graphics/libgxps/Makefile b/graphics/libgxps/Makefile index df71a0bd8555..43dac0005357 100644 --- a/graphics/libgxps/Makefile +++ b/graphics/libgxps/Makefile @@ -4,7 +4,7 @@ PORTNAME= libgxps PORTVERSION= 0.2.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome3 diff --git a/graphics/libpotrace/Makefile b/graphics/libpotrace/Makefile index f0d4b532b988..3d94b29d484e 100644 --- a/graphics/libpotrace/Makefile +++ b/graphics/libpotrace/Makefile @@ -2,6 +2,7 @@ PORTNAME= libpotrace PORTVERSION= 1.11 +PORTREVISION= 1 CATEGORIES= graphics MASTER_SITES= SF DISTNAME= potrace-${PORTVERSION} diff --git a/graphics/potrace/Makefile b/graphics/potrace/Makefile index 1184938aef82..7702add99052 100644 --- a/graphics/potrace/Makefile +++ b/graphics/potrace/Makefile @@ -3,6 +3,7 @@ PORTNAME= potrace PORTVERSION= 1.11 +PORTREVISION= 1 CATEGORIES= graphics MASTER_SITES= SF diff --git a/graphics/py-goocanvas/Makefile b/graphics/py-goocanvas/Makefile index 0e369ad104f6..95d4dd4851af 100644 --- a/graphics/py-goocanvas/Makefile +++ b/graphics/py-goocanvas/Makefile @@ -4,7 +4,7 @@ PORTNAME= goocanvas PORTVERSION= 0.14.1 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= graphics python MASTER_SITES= GNOME/sources/py${PORTNAME}/${PORTVERSION:C/..$//} PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/graphics/py-poppler/Makefile b/graphics/py-poppler/Makefile index 37205e684e3c..9a0da0554697 100644 --- a/graphics/py-poppler/Makefile +++ b/graphics/py-poppler/Makefile @@ -3,7 +3,7 @@ PORTNAME= poppler PORTVERSION= 0.12.1 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= graphics python MASTER_SITES= https://launchpad.net/poppler-python/trunk/development/+download/ \ http://launchpadlibrarian.net/30270080/ \ diff --git a/graphics/swfdec/Makefile b/graphics/swfdec/Makefile index c292d7fe7bec..cb0bb164d965 100644 --- a/graphics/swfdec/Makefile +++ b/graphics/swfdec/Makefile @@ -4,7 +4,7 @@ PORTNAME= swfdec PORTVERSION= 0.8.4 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= graphics MASTER_SITES= http://swfdec.freedesktop.org/download/swfdec/0.8/ diff --git a/graphics/zbar/Makefile b/graphics/zbar/Makefile index 03375c587993..4121ef8717f3 100644 --- a/graphics/zbar/Makefile +++ b/graphics/zbar/Makefile @@ -3,7 +3,7 @@ PORTNAME= zbar PORTVERSION= 0.10 -PORTREVISION= 9 +PORTREVISION= 10 CATEGORIES= graphics MASTER_SITES= SF diff --git a/irc/charybdis/Makefile b/irc/charybdis/Makefile index e54e1962caac..154c936be6eb 100644 --- a/irc/charybdis/Makefile +++ b/irc/charybdis/Makefile @@ -2,7 +2,7 @@ PORTNAME= charybdis PORTVERSION= 3.4.2 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= irc net MASTER_SITES= http://www.stack.nl/~jilles/irc/ \ http://www.bayofrum.net/dist/${PORTNAME}/ diff --git a/irc/ircd-ratbox-devel/Makefile b/irc/ircd-ratbox-devel/Makefile index 5705f78b965a..1fe2ebac46d6 100644 --- a/irc/ircd-ratbox-devel/Makefile +++ b/irc/ircd-ratbox-devel/Makefile @@ -3,7 +3,7 @@ PORTNAME= ircd-ratbox PORTVERSION= 3.0.7 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= irc ipv6 MASTER_SITES= http://www.ratbox.org/download/ \ http://www.ratbox.org/download/old/ diff --git a/irc/ircd-ratbox/Makefile b/irc/ircd-ratbox/Makefile index c74257fd66b8..e2617b333994 100644 --- a/irc/ircd-ratbox/Makefile +++ b/irc/ircd-ratbox/Makefile @@ -3,7 +3,7 @@ PORTNAME= ircd-ratbox PORTVERSION= 3.0.8 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= irc ipv6 MASTER_SITES= http://www.ratbox.org/download/ \ http://www.ratbox.org/download/old/ diff --git a/japanese/libskk/Makefile b/japanese/libskk/Makefile index 052cffc80181..105f89e88c3f 100644 --- a/japanese/libskk/Makefile +++ b/japanese/libskk/Makefile @@ -3,7 +3,7 @@ PORTNAME= libskk PORTVERSION= 1.0.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= japanese MASTER_SITES= https://bitbucket.org/libskk/libskk/downloads/ diff --git a/japanese/libtomoe-gtk/Makefile b/japanese/libtomoe-gtk/Makefile index 5981e15e4f48..5922827776d7 100644 --- a/japanese/libtomoe-gtk/Makefile +++ b/japanese/libtomoe-gtk/Makefile @@ -3,7 +3,7 @@ PORTNAME= libtomoe-gtk PORTVERSION= 0.6.0 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= japanese MASTER_SITES= SF/tomoe/tomoe-gtk/tomoe-gtk-${PORTVERSION} DISTNAME= tomoe-gtk-${DISTVERSIONPREFIX}${DISTVERSION}${DISTVERSIONSUFFIX} diff --git a/japanese/scim-anthy/Makefile b/japanese/scim-anthy/Makefile index b27215274696..0bce9f4c9709 100644 --- a/japanese/scim-anthy/Makefile +++ b/japanese/scim-anthy/Makefile @@ -3,7 +3,7 @@ PORTNAME= scim-anthy PORTVERSION= 1.2.7 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= japanese MASTER_SITES= SFJP/scim-imengine/37309 diff --git a/japanese/scim-canna/Makefile b/japanese/scim-canna/Makefile index d599be838ede..9ab732a8b36b 100644 --- a/japanese/scim-canna/Makefile +++ b/japanese/scim-canna/Makefile @@ -3,7 +3,7 @@ PORTNAME= scim-canna PORTVERSION= 1.0.0 -PORTREVISION= 14 +PORTREVISION= 15 CATEGORIES= japanese MASTER_SITES= SFJP/scim-imengine/18849 diff --git a/japanese/scim-honoka-plugin-romkan/Makefile b/japanese/scim-honoka-plugin-romkan/Makefile index 2023d2a303a0..ccde2d4f7800 100644 --- a/japanese/scim-honoka-plugin-romkan/Makefile +++ b/japanese/scim-honoka-plugin-romkan/Makefile @@ -3,7 +3,7 @@ PORTNAME= scim-honoka-plugin-romkan PORTVERSION= 0.9.0 -PORTREVISION= 11 +PORTREVISION= 12 CATEGORIES= japanese MASTER_SITES= http://nop.net-p.org/files/honoka/ DISTNAME= honoka-plugin-romkan-${PORTVERSION} diff --git a/japanese/scim-honoka-plugin-wnn/Makefile b/japanese/scim-honoka-plugin-wnn/Makefile index f0a2b2cdcca7..d8f296f6e1ba 100644 --- a/japanese/scim-honoka-plugin-wnn/Makefile +++ b/japanese/scim-honoka-plugin-wnn/Makefile @@ -3,7 +3,7 @@ PORTNAME= scim-honoka-plugin-wnn PORTVERSION= 0.9.0 -PORTREVISION= 12 +PORTREVISION= 13 CATEGORIES= japanese MASTER_SITES= http://nop.net-p.org/files/honoka/ DISTNAME= honoka-plugin-wnn-${PORTVERSION} diff --git a/japanese/scim-honoka/Makefile b/japanese/scim-honoka/Makefile index cd6076f14d60..d5243a3a4b67 100644 --- a/japanese/scim-honoka/Makefile +++ b/japanese/scim-honoka/Makefile @@ -21,4 +21,8 @@ USE_LDCONFIG= yes CPPFLAGS+= -I${LOCALBASE}/include -D__STDC_ISO_10646__ LDFLAGS+= -L${LOCALBASE}/lib +post-patch: + @${REINPLACE_CMD} '/^LIBTOOL_EXPORT_OPTIONS=/s/=.*/=/' \ + ${WRKSRC}/configure + .include <bsd.port.mk> diff --git a/japanese/scim-honoka/files/patch-configure b/japanese/scim-honoka/files/patch-configure deleted file mode 100644 index bad611f6644a..000000000000 --- a/japanese/scim-honoka/files/patch-configure +++ /dev/null @@ -1,10 +0,0 @@ ---- configure.orig Wed Apr 5 20:32:29 2006 -+++ configure Wed Apr 5 20:32:45 2006 -@@ -32446,6 +32446,7 @@ - s,@CONVENIENCE_LTDL_FALSE@,$CONVENIENCE_LTDL_FALSE,;t t - s,@LIBADD_DL@,$LIBADD_DL,;t t - s,@LIBTOOL_DEPS@,$LIBTOOL_DEPS,;t t -+s,@LIBTOOL_EXPORT_OPTIONS@,$LIBTOOL_EXPORT_OPTIONS,;t t - s,@PKG_CONFIG@,$PKG_CONFIG,;t t - s,@SCIM_CFLAGS@,$SCIM_CFLAGS,;t t - s,@SCIM_LIBS@,$SCIM_LIBS,;t t diff --git a/japanese/scim-skk/Makefile b/japanese/scim-skk/Makefile index 33b410b7010a..19e50600f0b2 100644 --- a/japanese/scim-skk/Makefile +++ b/japanese/scim-skk/Makefile @@ -4,7 +4,7 @@ PORTNAME= scim-skk PORTVERSION= 0.5.2 -PORTREVISION= 11 +PORTREVISION= 12 CATEGORIES= japanese MASTER_SITES= SFJP/scim-imengine/18121 diff --git a/japanese/scim-tomoe/Makefile b/japanese/scim-tomoe/Makefile index de7bb62fee6b..b380fef15cbd 100644 --- a/japanese/scim-tomoe/Makefile +++ b/japanese/scim-tomoe/Makefile @@ -3,7 +3,7 @@ PORTNAME= scim-tomoe PORTVERSION= 0.6.0 -PORTREVISION= 11 +PORTREVISION= 12 CATEGORIES= japanese MASTER_SITES= SF/tomoe/${PORTNAME}/${PORTNAME}-${PORTVERSION} diff --git a/japanese/scim-uim/Makefile b/japanese/scim-uim/Makefile index 05bcad6a469c..77e036269449 100644 --- a/japanese/scim-uim/Makefile +++ b/japanese/scim-uim/Makefile @@ -3,7 +3,7 @@ PORTNAME= scim-uim PORTVERSION= 0.2.0 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= japanese MASTER_SITES= SF/scim/${PORTNAME}/${PORTVERSION} \ http://freedesktop.org/~suzhe/sources/ diff --git a/japanese/tomoe/Makefile b/japanese/tomoe/Makefile index 78d15798b130..1d476dbcaebb 100644 --- a/japanese/tomoe/Makefile +++ b/japanese/tomoe/Makefile @@ -3,7 +3,7 @@ PORTNAME= tomoe PORTVERSION= 0.6.0 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= japanese MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} DISTFILES= ${DISTNAME}${EXTRACT_SUFX} diff --git a/korean/scim-hangul/Makefile b/korean/scim-hangul/Makefile index f6349efd350f..164604f2f868 100644 --- a/korean/scim-hangul/Makefile +++ b/korean/scim-hangul/Makefile @@ -3,7 +3,7 @@ PORTNAME= scim-hangul PORTVERSION= 0.4.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= korean MASTER_SITES= SF/scim/${PORTNAME}/${PORTVERSION} diff --git a/lang/gcc5-devel/Makefile b/lang/gcc5-devel/Makefile index bbefbb545428..4673c9dbceb8 100644 --- a/lang/gcc5-devel/Makefile +++ b/lang/gcc5-devel/Makefile @@ -3,6 +3,7 @@ PORTNAME= gcc PORTVERSION= 5.2.1.s20150721 +PORTREVISION= 1 CATEGORIES= lang java MASTER_SITES= GCC/snapshots/${DISTVERSION} PKGNAMESUFFIX= ${SUFFIX}-devel diff --git a/lang/gcc5/Makefile b/lang/gcc5/Makefile index 227bbd5fe102..58c283c985cf 100644 --- a/lang/gcc5/Makefile +++ b/lang/gcc5/Makefile @@ -3,6 +3,7 @@ PORTNAME= gcc PORTVERSION= 5.2.0 +PORTREVISION= 1 CATEGORIES= lang java MASTER_SITES= GCC/releases/gcc-${DISTVERSION} PKGNAMESUFFIX= ${SUFFIX} diff --git a/lang/gcc6-devel/Makefile b/lang/gcc6-devel/Makefile index 3d60e4ed464b..41f5b98d9e2a 100644 --- a/lang/gcc6-devel/Makefile +++ b/lang/gcc6-devel/Makefile @@ -3,6 +3,7 @@ PORTNAME= gcc PORTVERSION= 6.0.0.s20150726 +PORTREVISION= 1 CATEGORIES= lang java MASTER_SITES= GCC/snapshots/${DISTVERSION} PKGNAMESUFFIX= ${SUFFIX} diff --git a/lang/smalltalk/Makefile b/lang/smalltalk/Makefile index 062febb5e682..91b2c0d8348e 100644 --- a/lang/smalltalk/Makefile +++ b/lang/smalltalk/Makefile @@ -3,7 +3,7 @@ PORTNAME= smalltalk PORTVERSION= 3.2.5 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= lang MASTER_SITES= GNU diff --git a/mail/courier-authlib-vchkpw/Makefile b/mail/courier-authlib-vchkpw/Makefile index d01475be0beb..48dd288a04b8 100644 --- a/mail/courier-authlib-vchkpw/Makefile +++ b/mail/courier-authlib-vchkpw/Makefile @@ -1,7 +1,7 @@ # Created by: Yarema <yds@CoolRat.org> # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 PKGNAMESUFFIX= -vchkpw COMMENT= Vpopmail/vchkpw support for the Courier authentication library diff --git a/mail/opendkim/Makefile b/mail/opendkim/Makefile index 9b54aa141a3b..efd77f599cd1 100644 --- a/mail/opendkim/Makefile +++ b/mail/opendkim/Makefile @@ -3,7 +3,7 @@ PORTNAME= opendkim PORTVERSION= 2.9.2 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= mail security MASTER_SITES= SF/${PORTNAME} \ SF/${PORTNAME}/Previous%20Releases diff --git a/math/glpk/Makefile b/math/glpk/Makefile index a5a11ee3d251..6b7df681e9b6 100644 --- a/math/glpk/Makefile +++ b/math/glpk/Makefile @@ -3,7 +3,7 @@ PORTNAME= glpk PORTVERSION= 4.52.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= math MASTER_SITES= GNU diff --git a/misc/ipa_conv/Makefile b/misc/ipa_conv/Makefile index 63ea0abde1d1..c578fec54744 100644 --- a/misc/ipa_conv/Makefile +++ b/misc/ipa_conv/Makefile @@ -3,7 +3,7 @@ PORTNAME= ipa_conv PORTVERSION= 1.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= misc MASTER_SITES= SF/ipa-system/modules/ipa_conv diff --git a/misc/xfce4-weather-plugin/Makefile b/misc/xfce4-weather-plugin/Makefile index f31df2f79f55..8e87e18734d7 100644 --- a/misc/xfce4-weather-plugin/Makefile +++ b/misc/xfce4-weather-plugin/Makefile @@ -3,6 +3,7 @@ PORTNAME= xfce4-weather-plugin PORTVERSION= 0.8.6 +PORTREVISION= 1 CATEGORIES= misc xfce geography MASTER_SITES= XFCE/src/panel-plugins/${PORTNAME}/${PORTVERSION:R} DIST_SUBDIR= xfce4 diff --git a/multimedia/cheese/Makefile b/multimedia/cheese/Makefile index 620dc305b587..7572327ec373 100644 --- a/multimedia/cheese/Makefile +++ b/multimedia/cheese/Makefile @@ -4,7 +4,7 @@ PORTNAME= cheese PORTVERSION= 3.14.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= multimedia gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome3 diff --git a/multimedia/dirac/Makefile b/multimedia/dirac/Makefile index bf6f26144407..a6157bfff92c 100644 --- a/multimedia/dirac/Makefile +++ b/multimedia/dirac/Makefile @@ -3,7 +3,7 @@ PORTNAME= dirac PORTVERSION= 1.0.2 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= multimedia MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-codec/Dirac-${PORTVERSION} diff --git a/multimedia/gavl/Makefile b/multimedia/gavl/Makefile index 3019227b4c82..28945467f292 100644 --- a/multimedia/gavl/Makefile +++ b/multimedia/gavl/Makefile @@ -3,7 +3,7 @@ PORTNAME= gavl PORTVERSION= 1.4.0 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= multimedia MASTER_SITES= SF/gmerlin/${PORTNAME}/${PORTVERSION} diff --git a/multimedia/gmerlin-avdecoder/Makefile b/multimedia/gmerlin-avdecoder/Makefile index 84247979bd04..b052649632f6 100644 --- a/multimedia/gmerlin-avdecoder/Makefile +++ b/multimedia/gmerlin-avdecoder/Makefile @@ -3,7 +3,7 @@ PORTNAME= gmerlin-avdecoder PORTVERSION= 1.2.0 -PORTREVISION= 13 +PORTREVISION= 14 CATEGORIES= multimedia MASTER_SITES= SF/gmerlin/${PORTNAME}/${PORTVERSION} diff --git a/multimedia/gmerlin/Makefile b/multimedia/gmerlin/Makefile index 74ee3ac8a63c..39b3c12ba1c2 100644 --- a/multimedia/gmerlin/Makefile +++ b/multimedia/gmerlin/Makefile @@ -3,7 +3,7 @@ PORTNAME= gmerlin PORTVERSION= 1.2.0 -PORTREVISION= 9 +PORTREVISION= 10 CATEGORIES= multimedia MASTER_SITES= SF diff --git a/multimedia/gstreamer-plugins-bad/Makefile b/multimedia/gstreamer-plugins-bad/Makefile index a57599c6ecb9..bb06c94a166a 100644 --- a/multimedia/gstreamer-plugins-bad/Makefile +++ b/multimedia/gstreamer-plugins-bad/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ # $MCom: ports/multimedia/gstreamer-plugins-bad/Makefile,v 1.11 2008/03/19 14:05:35 ahze Exp $ -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= multimedia COMMENT= Bad gstreamer-plugins diff --git a/multimedia/gstreamer-plugins-buzztard/Makefile b/multimedia/gstreamer-plugins-buzztard/Makefile index b2a06f584523..f586f39c62ec 100644 --- a/multimedia/gstreamer-plugins-buzztard/Makefile +++ b/multimedia/gstreamer-plugins-buzztard/Makefile @@ -3,6 +3,7 @@ PORTNAME= buzztard PORTVERSION= 0.7.0 +PORTREVISION= 1 CATEGORIES= multimedia MASTER_SITES= SF/${PORTNAME}/${PORTNAME}%20gstreamer%20extensions/ PKGNAMEPREFIX= gstreamer-plugins- diff --git a/multimedia/gstreamer-plugins-fluendo-mpegdemux/Makefile b/multimedia/gstreamer-plugins-fluendo-mpegdemux/Makefile index 12f6618298d2..2c86582f59df 100644 --- a/multimedia/gstreamer-plugins-fluendo-mpegdemux/Makefile +++ b/multimedia/gstreamer-plugins-fluendo-mpegdemux/Makefile @@ -3,7 +3,7 @@ PORTNAME= gstreamer-plugins-fluendo-mpegdemux PORTVERSION= 0.10.71 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= multimedia MASTER_SITES= http://core.fluendo.com/gstreamer/src/gst-fluendo-mpegdemux/ DISTNAME= gst-fluendo-mpegdemux-${PORTVERSION} diff --git a/multimedia/gstreamer-plugins-vdpau/Makefile b/multimedia/gstreamer-plugins-vdpau/Makefile index 40ebfed6aef0..d085bdace9fa 100644 --- a/multimedia/gstreamer-plugins-vdpau/Makefile +++ b/multimedia/gstreamer-plugins-vdpau/Makefile @@ -1,7 +1,7 @@ # Created by: Koop Mast <kwm@FreeBSD.org> # $FreeBSD$ -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= multimedia COMMENT= Gstreamer nvidia vdpau plugin diff --git a/multimedia/gstreamer-plugins/Makefile b/multimedia/gstreamer-plugins/Makefile index f2bb459f1ce3..088d293de3dc 100644 --- a/multimedia/gstreamer-plugins/Makefile +++ b/multimedia/gstreamer-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}/gstreamer-plugin-${PLUGIN}. -PORTREVISION?= 5 +PORTREVISION?= 6 PORTEPOCH= 3 CATEGORIES?= multimedia audio MASTER_SITES= http://gstreamer.freedesktop.org/src/gst-plugins-base/:base \ diff --git a/multimedia/gstreamer/Makefile b/multimedia/gstreamer/Makefile index 6ca8879e716d..01db35b56737 100644 --- a/multimedia/gstreamer/Makefile +++ b/multimedia/gstreamer/Makefile @@ -4,7 +4,7 @@ PORTNAME= gstreamer PORTVERSION= 0.10.36 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= multimedia MASTER_SITES= http://gstreamer.freedesktop.org/src/gstreamer/ diff --git a/multimedia/gstreamer1-plugins-bad/Makefile b/multimedia/gstreamer1-plugins-bad/Makefile index af3854b4e07c..41cc7500e31a 100644 --- a/multimedia/gstreamer1-plugins-bad/Makefile +++ b/multimedia/gstreamer1-plugins-bad/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ # $MCom: ports/multimedia/gstreamer1-plugins-bad/Makefile,v 1.4 2013/01/15 21:43:45 kwm Exp $ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= multimedia COMMENT= Bad gstreamer-plugins diff --git a/multimedia/gstreamer1-plugins/Makefile b/multimedia/gstreamer1-plugins/Makefile index dba88637220f..22ab60ca306c 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?= 1 +PORTREVISION?= 2 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/gstreamer1-vaapi/Makefile b/multimedia/gstreamer1-vaapi/Makefile index be31f5d00338..c5447a0b9222 100644 --- a/multimedia/gstreamer1-vaapi/Makefile +++ b/multimedia/gstreamer1-vaapi/Makefile @@ -3,6 +3,7 @@ PORTNAME= gstreamer1-vaapi PORTVERSION= 0.5.10 +PORTREVISION= 1 CATEGORIES= multimedia MASTER_SITES= http://www.freedesktop.org/software/vaapi/releases/gstreamer-vaapi/ DISTNAME= gstreamer-vaapi-${PORTVERSION} diff --git a/multimedia/gstreamer1/Makefile b/multimedia/gstreamer1/Makefile index bafbfd64fe72..b57ac08cd93b 100644 --- a/multimedia/gstreamer1/Makefile +++ b/multimedia/gstreamer1/Makefile @@ -3,6 +3,7 @@ PORTNAME= gstreamer1 PORTVERSION= 1.4.5 +PORTREVISION= 1 CATEGORIES= multimedia MASTER_SITES= http://gstreamer.freedesktop.org/src/gstreamer/ DISTNAME= ${PORTNAME:S/1//}-${PORTVERSION} diff --git a/multimedia/libdc1394/Makefile b/multimedia/libdc1394/Makefile index 390eb957b508..faaac5f8981d 100644 --- a/multimedia/libdc1394/Makefile +++ b/multimedia/libdc1394/Makefile @@ -3,6 +3,7 @@ PORTNAME= libdc1394 PORTVERSION= 2.2.3 +PORTREVISION= 1 CATEGORIES= multimedia MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-2/${PORTVERSION}/ diff --git a/multimedia/libmtp/Makefile b/multimedia/libmtp/Makefile index 1b6029e95748..1cc954cb07ef 100644 --- a/multimedia/libmtp/Makefile +++ b/multimedia/libmtp/Makefile @@ -3,6 +3,7 @@ PORTNAME= libmtp PORTVERSION= 1.1.9 +PORTREVISION= 1 CATEGORIES= multimedia audio MASTER_SITES= SF diff --git a/multimedia/schroedinger/Makefile b/multimedia/schroedinger/Makefile index a0f2c4702db7..7dac0f943900 100644 --- a/multimedia/schroedinger/Makefile +++ b/multimedia/schroedinger/Makefile @@ -3,7 +3,7 @@ PORTNAME= schroedinger PORTVERSION= 1.0.11 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= multimedia MASTER_SITES= http://diracvideo.org/download/schroedinger/ @@ -25,5 +25,8 @@ USE_LDCONFIG= yes post-patch: @${REINPLACE_CMD} -e 's|^pkgconfigdir=.*|pkgconfigdir="\\$${prefix}/libdata/pkgconfig"|' \ ${WRKSRC}/configure +# Derived from upstream git commit ee011f33f80c9691a6cfd5116101fdcf8c3cd6f7 + @${REINPLACE_CMD} '/^wavelet_max_gain_OBJECTS =/s/=/= tmp-orc.$$(OBJEXT)/' \ + ${WRKSRC}/testsuite/Makefile.in .include <bsd.port.mk> diff --git a/multimedia/vlc/Makefile b/multimedia/vlc/Makefile index 2a30fe5a02d4..ab1dc0224c42 100644 --- a/multimedia/vlc/Makefile +++ b/multimedia/vlc/Makefile @@ -3,7 +3,7 @@ PORTNAME= vlc DISTVERSION= 2.2.1 -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/multimedia/xmms/Makefile b/multimedia/xmms/Makefile index 89522164426b..14f5bc5b17ff 100644 --- a/multimedia/xmms/Makefile +++ b/multimedia/xmms/Makefile @@ -3,7 +3,7 @@ PORTNAME= xmms PORTVERSION= 1.2.11 -PORTREVISION= 26 +PORTREVISION= 27 CATEGORIES= multimedia audio ipv6 MASTER_SITES= http://www.xmms.org/files/1.2.x/ \ http://legacy.xmms2.org/ \ diff --git a/net-im/farsight2/Makefile b/net-im/farsight2/Makefile index 8f29f2f81aef..e630d916c6e4 100644 --- a/net-im/farsight2/Makefile +++ b/net-im/farsight2/Makefile @@ -4,7 +4,7 @@ PORTNAME= farsight2 PORTVERSION= 0.0.31 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= net-im devel MASTER_SITES= http://www.freedesktop.org/software/farstream/releases/farsight2/ \ http://miwibox.org/distfiles/ diff --git a/net-im/farstream/Makefile b/net-im/farstream/Makefile index 629b190f9a0b..3d8d2c2fabf0 100644 --- a/net-im/farstream/Makefile +++ b/net-im/farstream/Makefile @@ -3,6 +3,7 @@ PORTNAME= farstream PORTVERSION= 0.2.6 +PORTREVISION= 1 CATEGORIES= net-im devel MASTER_SITES= http://freedesktop.org/software/farstream/releases/farstream/ diff --git a/net-im/folks/Makefile b/net-im/folks/Makefile index 3f4b3fbf01da..a3d6b63359f6 100644 --- a/net-im/folks/Makefile +++ b/net-im/folks/Makefile @@ -3,6 +3,7 @@ PORTNAME= folks PORTVERSION= 0.10.1 +PORTREVISION= 1 CATEGORIES= net-im MASTER_SITES= GNOME diff --git a/net-im/libaccounts-glib/Makefile b/net-im/libaccounts-glib/Makefile index b4271ed4959f..82815bf00b98 100644 --- a/net-im/libaccounts-glib/Makefile +++ b/net-im/libaccounts-glib/Makefile @@ -3,6 +3,7 @@ PORTNAME= libaccounts-glib PORTVERSION= 1.18 +PORTREVISION= 1 CATEGORIES= net-im MASTER_SITES= https://drive.google.com/uc?export=download&id=0B8fX9XOwH_g4U1NzNmg0cWoxNGM&dummy= \ LOCAL/rakuco diff --git a/net-im/libstrophe/Makefile b/net-im/libstrophe/Makefile index b77eea543849..ac2d82bb2acb 100644 --- a/net-im/libstrophe/Makefile +++ b/net-im/libstrophe/Makefile @@ -2,6 +2,7 @@ PORTNAME= libstrophe PORTVERSION= 0.8.7 +PORTREVISION= 1 CATEGORIES= net-im MAINTAINER= arved@FreeBSD.org diff --git a/net-im/libtelepathy/Makefile b/net-im/libtelepathy/Makefile index bde0e673ea6b..2811ac8b5cd9 100644 --- a/net-im/libtelepathy/Makefile +++ b/net-im/libtelepathy/Makefile @@ -4,7 +4,7 @@ PORTNAME= libtelepathy PORTVERSION= 0.3.3 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= net-im devel MASTER_SITES= http://telepathy.freedesktop.org/releases/${PORTNAME}/ diff --git a/net-im/loudmouth/Makefile b/net-im/loudmouth/Makefile index cf0d1cdd51d3..1ab625ec2511 100644 --- a/net-im/loudmouth/Makefile +++ b/net-im/loudmouth/Makefile @@ -4,7 +4,7 @@ PORTNAME= loudmouth PORTVERSION= 1.4.3 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= net-im gnome MASTER_SITES= GNOME diff --git a/net-im/telepathy-mission-control/Makefile b/net-im/telepathy-mission-control/Makefile index 1a8468ee3aa6..04596835bca9 100644 --- a/net-im/telepathy-mission-control/Makefile +++ b/net-im/telepathy-mission-control/Makefile @@ -4,6 +4,7 @@ PORTNAME= telepathy-mission-control PORTVERSION= 5.16.3 +PORTREVISION= 1 CATEGORIES= net-im devel MASTER_SITES= http://telepathy.freedesktop.org/releases/telepathy-mission-control/ diff --git a/net-mgmt/netxms/Makefile b/net-mgmt/netxms/Makefile index c85c2b45a1ed..a4b30f67412d 100644 --- a/net-mgmt/netxms/Makefile +++ b/net-mgmt/netxms/Makefile @@ -3,6 +3,7 @@ PORTNAME= netxms PORTVERSION= 1.2.17 +PORTREVISION= 1 CATEGORIES= net-mgmt MASTER_SITES= http://www.netxms.org/download/ \ http://www.netxms.org/download/archive/ diff --git a/net/avahi-app/Makefile b/net/avahi-app/Makefile index 355a67301dde..f7f270207957 100644 --- a/net/avahi-app/Makefile +++ b/net/avahi-app/Makefile @@ -3,7 +3,7 @@ PORTNAME= avahi PORTVERSION= 0.6.31 -PORTREVISION?= 4 +PORTREVISION?= 5 CATEGORIES?= net dns MASTER_SITES= http://www.avahi.org/download/ PKGNAMESUFFIX?= -app diff --git a/net/courier-authlib-ldap/Makefile b/net/courier-authlib-ldap/Makefile index 989261c60d3c..3bce294e5334 100644 --- a/net/courier-authlib-ldap/Makefile +++ b/net/courier-authlib-ldap/Makefile @@ -1,7 +1,7 @@ # Created by: Yarema <yds@CoolRat.org> # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 PKGNAMESUFFIX= -ldap COMMENT= LDAP support for the Courier authentication library diff --git a/net/libgnetwork/Makefile b/net/libgnetwork/Makefile index 86bd63400057..789ddeba7e9f 100644 --- a/net/libgnetwork/Makefile +++ b/net/libgnetwork/Makefile @@ -3,7 +3,7 @@ PORTNAME= libgnetwork PORTVERSION= 0.0.9 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= net gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome2 diff --git a/net/libnss-mysql/Makefile b/net/libnss-mysql/Makefile index e1d0f897e490..672b4ce25729 100644 --- a/net/libnss-mysql/Makefile +++ b/net/libnss-mysql/Makefile @@ -3,7 +3,7 @@ PORTNAME= libnss-mysql PORTVERSION= 1.5 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= net MASTER_SITES= SF diff --git a/net/liboauth/Makefile b/net/liboauth/Makefile index f9dc60eead9b..78bfeade5258 100644 --- a/net/liboauth/Makefile +++ b/net/liboauth/Makefile @@ -2,7 +2,7 @@ PORTNAME= liboauth PORTVERSION= 1.0.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net MASTER_SITES= SF/${PORTNAME} diff --git a/net/librouteros/Makefile b/net/librouteros/Makefile index f37f542cfbee..ba1808f23f28 100644 --- a/net/librouteros/Makefile +++ b/net/librouteros/Makefile @@ -3,7 +3,7 @@ PORTNAME= librouteros PORTVERSION= 1.1.2 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= net MASTER_SITES= http://verplant.org/librouteros/files/ diff --git a/net/mpich2/Makefile b/net/mpich2/Makefile index 827eea49c237..1a1c804a4272 100644 --- a/net/mpich2/Makefile +++ b/net/mpich2/Makefile @@ -3,7 +3,7 @@ PORTNAME= mpich2 DISTVERSION= 1.5 -PORTREVISION= 2 +PORTREVISION= 3 PORTEPOCH= 5 CATEGORIES= net java parallel MASTER_SITES= http://www.mcs.anl.gov/research/projects/mpich2/downloads/tarballs/${DISTVERSION}/ diff --git a/net/ndpi/Makefile b/net/ndpi/Makefile index 4b41c857395b..e9c5a7c17b39 100644 --- a/net/ndpi/Makefile +++ b/net/ndpi/Makefile @@ -3,6 +3,7 @@ PORTNAME= ndpi PORTVERSION= 1.6 +PORTREVISION= 1 CATEGORIES= net MASTER_SITES= SF/ntop/nDPI DISTNAME= nDPI-${PORTVERSION} diff --git a/ports-mgmt/packagekit/Makefile b/ports-mgmt/packagekit/Makefile index 6f731bc261fc..3db64d80420b 100644 --- a/ports-mgmt/packagekit/Makefile +++ b/ports-mgmt/packagekit/Makefile @@ -4,7 +4,7 @@ PORTNAME= PackageKit PORTVERSION= 0.6.11 -PORTREVISION?= 7 +PORTREVISION?= 8 CATEGORIES= ports-mgmt sysutils MASTER_SITES= http://www.packagekit.org/releases/ diff --git a/security/courier-authlib-base/Makefile b/security/courier-authlib-base/Makefile index dcd485fea456..7f8d2ea77dcb 100644 --- a/security/courier-authlib-base/Makefile +++ b/security/courier-authlib-base/Makefile @@ -1,7 +1,7 @@ # Created by: Oliver Lehmann <oliver@FreeBSD.org> # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 PKGNAMESUFFIX= -base COMMENT= Courier authentication library base diff --git a/security/duo/Makefile b/security/duo/Makefile index eb2989a2224d..f54f7f5bddb4 100644 --- a/security/duo/Makefile +++ b/security/duo/Makefile @@ -3,6 +3,7 @@ PORTNAME= duo PORTVERSION= 1.9.14 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= https://dl.duosecurity.com/ \ http://mirrors.rit.edu/zi/ diff --git a/security/engine_pkcs11/Makefile b/security/engine_pkcs11/Makefile index 53ce6a2c0ced..ea30974afa1b 100644 --- a/security/engine_pkcs11/Makefile +++ b/security/engine_pkcs11/Makefile @@ -3,7 +3,7 @@ PORTNAME= engine_pkcs11 PORTVERSION= 0.1.8 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= security MASTER_SITES= SF/opensc/${PORTNAME} diff --git a/security/fwknop/Makefile b/security/fwknop/Makefile index ef0616a5ca99..b9ab715d32cd 100644 --- a/security/fwknop/Makefile +++ b/security/fwknop/Makefile @@ -3,7 +3,7 @@ PORTNAME= fwknop PORTVERSION= 2.5.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= security MASTER_SITES= http://www.cipherdyne.org/fwknop/download/ diff --git a/security/gcr/Makefile b/security/gcr/Makefile index 064c0c1baf0a..6a31f5873724 100644 --- a/security/gcr/Makefile +++ b/security/gcr/Makefile @@ -4,7 +4,7 @@ PORTNAME= gcr PORTVERSION= 3.14.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= security gnome MASTER_SITES= GNOME diff --git a/security/libmcrypt/Makefile b/security/libmcrypt/Makefile index 93d755b4a8ac..a986cf03cb5b 100644 --- a/security/libmcrypt/Makefile +++ b/security/libmcrypt/Makefile @@ -3,7 +3,7 @@ PORTNAME= libmcrypt PORTVERSION= 2.5.8 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= security MASTER_SITES= SF/mcrypt/Libmcrypt/${PORTVERSION} diff --git a/security/libntlm/Makefile b/security/libntlm/Makefile index c65d51fc8ab2..f307fb2bef45 100644 --- a/security/libntlm/Makefile +++ b/security/libntlm/Makefile @@ -3,7 +3,7 @@ PORTNAME= libntlm PORTVERSION= 1.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= security MASTER_SITES= http://www.nongnu.org/libntlm/releases/ diff --git a/security/libp11/Makefile b/security/libp11/Makefile index dd3887687f1e..546c7f1a3f0b 100644 --- a/security/libp11/Makefile +++ b/security/libp11/Makefile @@ -3,7 +3,7 @@ PORTNAME= libp11 PORTVERSION= 0.2.8 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= security devel MASTER_SITES= SF/opensc/${PORTNAME} diff --git a/security/libprelude/Makefile b/security/libprelude/Makefile index 33137c3deede..832c42a56574 100644 --- a/security/libprelude/Makefile +++ b/security/libprelude/Makefile @@ -3,7 +3,7 @@ PORTNAME= libprelude PORTVERSION= 1.0.1 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= security MASTER_SITES= http://www.prelude-ids.org/attachments/download/241/ diff --git a/security/libpreludedb/Makefile b/security/libpreludedb/Makefile index dc1bb0214fe9..ff968a7be819 100644 --- a/security/libpreludedb/Makefile +++ b/security/libpreludedb/Makefile @@ -3,7 +3,7 @@ PORTNAME= libpreludedb PORTVERSION= 1.0.1p1 -PORTREVISION= 9 +PORTREVISION= 10 CATEGORIES= security MASTER_SITES= https://www.prelude-ids.org/attachments/download/287/ diff --git a/security/libssh2/Makefile b/security/libssh2/Makefile index 4103c3a853dd..38d3bd7bf360 100644 --- a/security/libssh2/Makefile +++ b/security/libssh2/Makefile @@ -3,7 +3,7 @@ PORTNAME= libssh2 PORTVERSION= 1.4.3 -PORTREVISION= 5 +PORTREVISION= 6 PORTEPOCH= 2 CATEGORIES= security devel MASTER_SITES= http://www.libssh2.org/download/ \ diff --git a/security/munge/Makefile b/security/munge/Makefile index 5c257476d90b..fc277f2e010c 100644 --- a/security/munge/Makefile +++ b/security/munge/Makefile @@ -3,7 +3,7 @@ PORTNAME= munge PORTVERSION= 0.5.11 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= security MASTER_SITES= GOOGLE_CODE diff --git a/security/opensc/Makefile b/security/opensc/Makefile index 7dff4e466211..0662a2913966 100644 --- a/security/opensc/Makefile +++ b/security/opensc/Makefile @@ -3,6 +3,7 @@ PORTNAME= opensc PORTVERSION= 0.14.0 +PORTREVISION= 1 CATEGORIES= security devel MASTER_SITES= SF/${PORTNAME}/OpenSC/${DISTNAME} diff --git a/security/openvpn-devel/Makefile b/security/openvpn-devel/Makefile index afa191cd216f..7bbe75d9ce01 100644 --- a/security/openvpn-devel/Makefile +++ b/security/openvpn-devel/Makefile @@ -3,6 +3,7 @@ PORTNAME= openvpn DISTVERSION= 201523 +PORTREVISION= 1 CATEGORIES= security net MASTER_SITES= ftp://ftp.secure-computing.net/pub/FreeBSD/ports/openvpn-devel/ \ ftp://ftp2.secure-computing.net/pub/FreeBSD/ports/openvpn-devel/ diff --git a/security/openvpn/Makefile b/security/openvpn/Makefile index f38642bdd295..2d987732e633 100644 --- a/security/openvpn/Makefile +++ b/security/openvpn/Makefile @@ -3,6 +3,7 @@ PORTNAME= openvpn DISTVERSION= 2.3.7 +PORTREVISION= 1 CATEGORIES= security net MASTER_SITES= http://swupdate.openvpn.net/community/releases/ \ http://build.openvpn.net/downloads/releases/ diff --git a/security/pam_krb5-rh/Makefile b/security/pam_krb5-rh/Makefile index 3d3147f216d1..00bfdb8c8403 100644 --- a/security/pam_krb5-rh/Makefile +++ b/security/pam_krb5-rh/Makefile @@ -3,7 +3,7 @@ PORTNAME= pam_krb5 DISTVERSION= 2.4.9 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= security MASTER_SITES= https://fedorahosted.org/released/${PORTNAME}/ \ http://mirrors.rit.edu/zi/ diff --git a/security/pam_krb5/Makefile b/security/pam_krb5/Makefile index f0a118c9acbb..bbcc6f85f89c 100644 --- a/security/pam_krb5/Makefile +++ b/security/pam_krb5/Makefile @@ -3,7 +3,7 @@ PORTNAME= pam_krb5 PORTVERSION= 4.6 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= security MASTER_SITES= http://archives.eyrie.org/software/kerberos/ \ http://archives.eyrie.org/software/ARCHIVE/pam-krb5/ diff --git a/security/pkcs11-helper/Makefile b/security/pkcs11-helper/Makefile index ab3e7a1c79a4..7899636fa168 100644 --- a/security/pkcs11-helper/Makefile +++ b/security/pkcs11-helper/Makefile @@ -3,7 +3,7 @@ PORTNAME= pkcs11-helper PORTVERSION= 1.11 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= security devel MASTER_SITES= SF/opensc/pkcs11-helper/ diff --git a/sysutils/cinnamon-control-center/Makefile b/sysutils/cinnamon-control-center/Makefile index f5376ce8a9fe..63ffd3b40cc6 100644 --- a/sysutils/cinnamon-control-center/Makefile +++ b/sysutils/cinnamon-control-center/Makefile @@ -3,6 +3,7 @@ PORTNAME= cinnamon-control-center PORTVERSION= 2.4.2 +PORTREVISION= 1 CATEGORIES= sysutils gnome DIST_SUBDIR= gnome3 diff --git a/sysutils/garcon/Makefile b/sysutils/garcon/Makefile index 44665615b84a..b2552b018897 100644 --- a/sysutils/garcon/Makefile +++ b/sysutils/garcon/Makefile @@ -3,6 +3,7 @@ PORTNAME= garcon PORTVERSION= 0.4.0 +PORTREVISION= 1 CATEGORIES= sysutils xfce MASTER_SITES= XFCE DIST_SUBDIR= xfce4 diff --git a/sysutils/libieee1284/Makefile b/sysutils/libieee1284/Makefile index 51ce2208212f..9d5719eb684b 100644 --- a/sysutils/libieee1284/Makefile +++ b/sysutils/libieee1284/Makefile @@ -3,7 +3,7 @@ PORTNAME= libieee1284 PORTVERSION= 0.2.10 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= sysutils MASTER_SITES= http://cyberelk.net/tim/data/libieee1284/stable/ diff --git a/sysutils/policykit/Makefile b/sysutils/policykit/Makefile index 14264bc25ca2..41498a6af3a5 100644 --- a/sysutils/policykit/Makefile +++ b/sysutils/policykit/Makefile @@ -4,7 +4,7 @@ PORTNAME= policykit PORTVERSION= 0.9 -PORTREVISION= 9 +PORTREVISION= 10 CATEGORIES= sysutils gnome MASTER_SITES= http://hal.freedesktop.org/releases/ DISTNAME= PolicyKit-${PORTVERSION} diff --git a/sysutils/polkit/Makefile b/sysutils/polkit/Makefile index c2ac94af2984..c8e41d81444a 100644 --- a/sysutils/polkit/Makefile +++ b/sysutils/polkit/Makefile @@ -3,7 +3,7 @@ PORTNAME= polkit PORTVERSION= 0.105 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= sysutils gnome MASTER_SITES= http://www.freedesktop.org/software/polkit/releases/ diff --git a/sysutils/tracker/Makefile b/sysutils/tracker/Makefile index b589487c91dc..eb4dc04866de 100644 --- a/sysutils/tracker/Makefile +++ b/sysutils/tracker/Makefile @@ -4,7 +4,7 @@ PORTNAME= tracker PORTVERSION= 1.2.6 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= sysutils gnome MASTER_SITES= GNOME diff --git a/sysutils/xfce4-battery-plugin/Makefile b/sysutils/xfce4-battery-plugin/Makefile index ac0ccfa85440..e2fee6167d7a 100644 --- a/sysutils/xfce4-battery-plugin/Makefile +++ b/sysutils/xfce4-battery-plugin/Makefile @@ -3,7 +3,7 @@ PORTNAME= xfce4-battery-plugin PORTVERSION= 1.0.5 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= sysutils xfce MASTER_SITES= XFCE/src/panel-plugins/${PORTNAME}/${PORTVERSION:R} DIST_SUBDIR= xfce4 diff --git a/sysutils/xfce4-cpugraph-plugin/Makefile b/sysutils/xfce4-cpugraph-plugin/Makefile index 4d9964b8b538..50ce5736cb16 100644 --- a/sysutils/xfce4-cpugraph-plugin/Makefile +++ b/sysutils/xfce4-cpugraph-plugin/Makefile @@ -3,7 +3,7 @@ PORTNAME= xfce4-cpugraph-plugin PORTVERSION= 1.0.5 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= sysutils xfce MASTER_SITES= XFCE/src/panel-plugins/${PORTNAME}/${PORTVERSION:R} DIST_SUBDIR= xfce4 diff --git a/sysutils/xfce4-diskperf-plugin/Makefile b/sysutils/xfce4-diskperf-plugin/Makefile index 41de35f960ba..472484a92385 100644 --- a/sysutils/xfce4-diskperf-plugin/Makefile +++ b/sysutils/xfce4-diskperf-plugin/Makefile @@ -3,6 +3,7 @@ PORTNAME= xfce4-diskperf-plugin PORTVERSION= 2.5.5 +PORTREVISION= 1 CATEGORIES= sysutils xfce MASTER_SITES= XFCE/src/panel-plugins/${PORTNAME}/${PORTVERSION:R} DIST_SUBDIR= xfce4 diff --git a/sysutils/xfce4-fsguard-plugin/Makefile b/sysutils/xfce4-fsguard-plugin/Makefile index e0976535facf..5ee259a25fd4 100644 --- a/sysutils/xfce4-fsguard-plugin/Makefile +++ b/sysutils/xfce4-fsguard-plugin/Makefile @@ -3,6 +3,7 @@ PORTNAME= xfce4-fsguard-plugin PORTVERSION= 1.0.2 +PORTREVISION= 1 CATEGORIES= sysutils xfce MASTER_SITES= XFCE/src/panel-plugins/${PORTNAME}/${PORTVERSION:R} DIST_SUBDIR= xfce4 diff --git a/sysutils/xfce4-genmon-plugin/Makefile b/sysutils/xfce4-genmon-plugin/Makefile index 2e60c7e270b6..3907e0cbb433 100644 --- a/sysutils/xfce4-genmon-plugin/Makefile +++ b/sysutils/xfce4-genmon-plugin/Makefile @@ -3,7 +3,7 @@ PORTNAME= xfce4-genmon-plugin PORTVERSION= 3.4.0 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= sysutils xfce MASTER_SITES= XFCE/src/panel-plugins/${PORTNAME}/${PORTVERSION:R} DIST_SUBDIR= xfce4 diff --git a/sysutils/xfce4-mount-plugin/Makefile b/sysutils/xfce4-mount-plugin/Makefile index be4d6b2d4a93..94b68bbf8916 100644 --- a/sysutils/xfce4-mount-plugin/Makefile +++ b/sysutils/xfce4-mount-plugin/Makefile @@ -3,7 +3,7 @@ PORTNAME= xfce4-mount-plugin PORTVERSION= 0.6.7 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= sysutils xfce MASTER_SITES= XFCE/src/panel-plugins/${PORTNAME}/${PORTVERSION:R} DIST_SUBDIR= xfce4 diff --git a/sysutils/xfce4-systemload-plugin/Makefile b/sysutils/xfce4-systemload-plugin/Makefile index e6473f412c35..824f4b0ff384 100644 --- a/sysutils/xfce4-systemload-plugin/Makefile +++ b/sysutils/xfce4-systemload-plugin/Makefile @@ -3,7 +3,7 @@ PORTNAME= xfce4-systemload-plugin PORTVERSION= 1.1.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= sysutils xfce MASTER_SITES= XFCE/src/panel-plugins/${PORTNAME}/${PORTVERSION:R} DIST_SUBDIR= xfce4 diff --git a/sysutils/xfce4-wavelan-plugin/Makefile b/sysutils/xfce4-wavelan-plugin/Makefile index de43d360daef..f08696f3dc1c 100644 --- a/sysutils/xfce4-wavelan-plugin/Makefile +++ b/sysutils/xfce4-wavelan-plugin/Makefile @@ -3,6 +3,7 @@ PORTNAME= xfce4-wavelan-plugin PORTVERSION= 0.5.12 +PORTREVISION= 1 CATEGORIES= sysutils xfce MASTER_SITES= XFCE/src/panel-plugins/${PORTNAME}/${PORTVERSION:R} DIST_SUBDIR= xfce4 diff --git a/textproc/libextractor/Makefile b/textproc/libextractor/Makefile index 601da78db98e..8a04a5fbf8bd 100644 --- a/textproc/libextractor/Makefile +++ b/textproc/libextractor/Makefile @@ -3,7 +3,7 @@ PORTNAME= libextractor PORTVERSION= 1.3 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= textproc MASTER_SITES= GNU diff --git a/textproc/link-grammar/Makefile b/textproc/link-grammar/Makefile index f5926b093b2c..370ceb9805ca 100644 --- a/textproc/link-grammar/Makefile +++ b/textproc/link-grammar/Makefile @@ -2,7 +2,7 @@ PORTNAME= link-grammar PORTVERSION= 4.7.4 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= textproc MASTER_SITES= http://www.abisource.com/downloads/${PORTNAME}/${PORTVERSION}/ diff --git a/textproc/rarian/Makefile b/textproc/rarian/Makefile index 58a81053c201..49163443d345 100644 --- a/textproc/rarian/Makefile +++ b/textproc/rarian/Makefile @@ -4,7 +4,7 @@ PORTNAME= rarian PORTVERSION= 0.8.1 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= textproc gnome MASTER_SITES= GNOME diff --git a/textproc/scim-input-pad/Makefile b/textproc/scim-input-pad/Makefile index 8dc10b904a3c..b97030bf3622 100644 --- a/textproc/scim-input-pad/Makefile +++ b/textproc/scim-input-pad/Makefile @@ -43,12 +43,14 @@ PLIST_SUB+= NLS="@comment " .endif post-patch: - @${REINPLACE_CMD} -E 's|(SCIM_LIBEXECDIR=).*|\1${PREFIX}/lib/scim-1.0| ; \ - s|(SCIM_MODULEDIR=).*|\1${PREFIX}/lib/scim-1.0/1.4.0| ; \ - s|(SCIM_ICONDIR=).*|\1${PREFIX}/share/scim/icons| ; \ - s|(SCIM_DATADIR=).*|\1${PREFIX}/share/scim|' \ + @${REINPLACE_CMD} \ + -e '/^SCIM_LIBEXECDIR=/s|=.*|=${PREFIX}/lib/scim-1.0|' \ + -e '/^SCIM_MODULEDIR=/s|=.*|=${PREFIX}/lib/scim-1.0/1.4.0|' \ + -e '/^SCIM_ICONDIR=/s|=.*|=${PREFIX}/share/scim/icons|' \ + -e '/^SCIM_DATADIR=/s|=.*|=${PREFIX}/share/scim|' \ + -e '/^LIBTOOL_EXPORT_OPTIONS=/s/=.*/=/' \ ${WRKSRC}/configure - @${REINPLACE_CMD} -E 's|^_NAME|NAME|g' ${WRKSRC}/data/*.pad.in + @${REINPLACE_CMD} 's|^_NAME|NAME|' ${WRKSRC}/data/*.pad.in post-install: ${MKDIR} ${STAGEDIR}${DOCSDIR} diff --git a/textproc/scim-m17n/Makefile b/textproc/scim-m17n/Makefile index ec405b60ded0..284c2126e00c 100644 --- a/textproc/scim-m17n/Makefile +++ b/textproc/scim-m17n/Makefile @@ -3,7 +3,7 @@ PORTNAME= scim-m17n PORTVERSION= 0.2.3 -PORTREVISION= 9 +PORTREVISION= 10 CATEGORIES= textproc MASTER_SITES= SF/scim/${PORTNAME}/${PORTVERSION} \ http://anthesphoria.net/FreeBSD/ports/distfiles/ diff --git a/textproc/scim-openvanilla/Makefile b/textproc/scim-openvanilla/Makefile index 02f9952c4997..594df523f4bd 100644 --- a/textproc/scim-openvanilla/Makefile +++ b/textproc/scim-openvanilla/Makefile @@ -3,7 +3,7 @@ PORTNAME= scim-openvanilla PORTVERSION= 0.7.2.20070514 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= textproc MASTER_SITES= LOCAL/rafan DISTNAME= openvanilla-${PORTVERSION} diff --git a/textproc/scim-table-imengine/Makefile b/textproc/scim-table-imengine/Makefile index 515a663b1e22..78da9a24efb7 100644 --- a/textproc/scim-table-imengine/Makefile +++ b/textproc/scim-table-imengine/Makefile @@ -3,7 +3,7 @@ PORTNAME= scim-table-imengine PORTVERSION= 0.5.10 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= textproc MASTER_SITES= SF/scim/scim-tables/${PORTVERSION} DISTNAME= scim-tables-${PORTVERSION} diff --git a/www/apache22/Makefile b/www/apache22/Makefile index 87cb61c9098e..2347c23c90d5 100644 --- a/www/apache22/Makefile +++ b/www/apache22/Makefile @@ -2,7 +2,7 @@ PORTNAME= apache22 PORTVERSION= 2.2.29 -PORTREVISION?= 6 +PORTREVISION?= 7 CATEGORIES= www ipv6 MASTER_SITES= APACHE_HTTPD DISTNAME= httpd-${PORTVERSION} diff --git a/www/apache24/Makefile b/www/apache24/Makefile index 16e506e937a7..802f30397413 100644 --- a/www/apache24/Makefile +++ b/www/apache24/Makefile @@ -2,6 +2,7 @@ PORTNAME= apache24 PORTVERSION= 2.4.16 +PORTREVISION= 1 CATEGORIES= www ipv6 MASTER_SITES= APACHE_HTTPD DISTNAME= httpd-${PORTVERSION} diff --git a/www/htdigest/Makefile b/www/htdigest/Makefile index cda470481f3d..9d6f3e901882 100644 --- a/www/htdigest/Makefile +++ b/www/htdigest/Makefile @@ -2,7 +2,7 @@ PORTNAME= htdigest PORTVERSION= 2.4.6 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www ipv6 MASTER_SITES= APACHE_HTTPD DISTNAME= httpd-${PORTVERSION} diff --git a/www/mod_musicindex/Makefile b/www/mod_musicindex/Makefile index 89aeafd80f18..0e99cd41493c 100644 --- a/www/mod_musicindex/Makefile +++ b/www/mod_musicindex/Makefile @@ -3,7 +3,7 @@ PORTNAME= mod_musicindex PORTVERSION= 1.4.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= www audio MASTER_SITES= http://hacks.slashdirt.org/musicindex/ PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX} diff --git a/www/mod_spdy/Makefile b/www/mod_spdy/Makefile index ad7bf6ba136b..4f10a67e7aba 100644 --- a/www/mod_spdy/Makefile +++ b/www/mod_spdy/Makefile @@ -3,6 +3,7 @@ PORTNAME= mod_spdy PORTVERSION= 0.9.4.1 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= http://www.club.kyutech.ac.jp/~masaki/ports/:mod_spdy \ APACHE_HTTPD:apache22 diff --git a/www/py-webkitgtk/Makefile b/www/py-webkitgtk/Makefile index c8afe5fa7260..636948d4e26c 100644 --- a/www/py-webkitgtk/Makefile +++ b/www/py-webkitgtk/Makefile @@ -3,7 +3,7 @@ PORTNAME= webkitgtk PORTVERSION= 1.1.8 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= www python MASTER_SITES= GOOGLE_CODE PROJECTHOST= pywebkitgtk diff --git a/www/shellinabox/Makefile b/www/shellinabox/Makefile index 2496ff411268..4db8ef306d73 100644 --- a/www/shellinabox/Makefile +++ b/www/shellinabox/Makefile @@ -3,7 +3,7 @@ PORTNAME= shellinabox PORTVERSION= 2.14 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= www MASTER_SITES= GOOGLE_CODE diff --git a/www/swfdec-plugin/Makefile b/www/swfdec-plugin/Makefile index c99a2b0249b3..3af17363a493 100644 --- a/www/swfdec-plugin/Makefile +++ b/www/swfdec-plugin/Makefile @@ -3,7 +3,7 @@ PORTNAME= swfdec-plugin PORTVERSION= 0.8.2 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= www MASTER_SITES= http://swfdec.freedesktop.org/download/swfdec-mozilla/0.8/ DISTNAME= swfdec-mozilla-${PORTVERSION} diff --git a/www/trafficserver/Makefile b/www/trafficserver/Makefile index adf7dca62713..9d8e4521af91 100644 --- a/www/trafficserver/Makefile +++ b/www/trafficserver/Makefile @@ -3,6 +3,7 @@ PORTNAME= trafficserver PORTVERSION= 5.3.1 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= APACHE/${PORTNAME} diff --git a/www/xfce4-smartbookmark-plugin/Makefile b/www/xfce4-smartbookmark-plugin/Makefile index 4242fe73adc2..4777f5432c7e 100644 --- a/www/xfce4-smartbookmark-plugin/Makefile +++ b/www/xfce4-smartbookmark-plugin/Makefile @@ -3,6 +3,7 @@ PORTNAME= xfce4-smartbookmark-plugin PORTVERSION= 0.4.6 +PORTREVISION= 1 CATEGORIES= www xfce MASTER_SITES= XFCE/src/panel-plugins/${PORTNAME}/${PORTVERSION:R} DIST_SUBDIR= xfce4 diff --git a/x11-clocks/xfce4-datetime-plugin/Makefile b/x11-clocks/xfce4-datetime-plugin/Makefile index 3a9c82afc877..e6b5126ec060 100644 --- a/x11-clocks/xfce4-datetime-plugin/Makefile +++ b/x11-clocks/xfce4-datetime-plugin/Makefile @@ -3,7 +3,7 @@ PORTNAME= xfce4-datetime-plugin PORTVERSION= 0.6.2 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= x11-clocks xfce MASTER_SITES= XFCE/src/panel-plugins/${PORTNAME}/${PORTVERSION:R} DIST_SUBDIR= xfce4 diff --git a/x11-clocks/xfce4-timer-out-plugin/Makefile b/x11-clocks/xfce4-timer-out-plugin/Makefile index 69dc061147b1..e3ba74505f80 100644 --- a/x11-clocks/xfce4-timer-out-plugin/Makefile +++ b/x11-clocks/xfce4-timer-out-plugin/Makefile @@ -3,6 +3,7 @@ PORTNAME= xfce4-time-out-plugin PORTVERSION= 1.0.2 +PORTREVISION= 1 CATEGORIES= x11-clocks xfce MASTER_SITES= XFCE/src/panel-plugins/${PORTNAME}/${PORTVERSION:R} DIST_SUBDIR= xfce4 diff --git a/x11-fm/thunar/Makefile b/x11-fm/thunar/Makefile index 19d943cc97a5..91174ba745f8 100644 --- a/x11-fm/thunar/Makefile +++ b/x11-fm/thunar/Makefile @@ -3,6 +3,7 @@ PORTNAME= Thunar PORTVERSION= 1.6.10 +PORTREVISION= 1 CATEGORIES= x11-fm xfce MASTER_SITES= XFCE/src/xfce/${PORTNAME:tl}/${PORTVERSION:R} DIST_SUBDIR= xfce4 diff --git a/x11-toolkits/gtk20/Makefile b/x11-toolkits/gtk20/Makefile index 6c2f5698f6aa..e2c42bd8c16a 100644 --- a/x11-toolkits/gtk20/Makefile +++ b/x11-toolkits/gtk20/Makefile @@ -3,7 +3,7 @@ PORTNAME= gtk PORTVERSION= 2.24.28 -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES= x11-toolkits MASTER_SITES= GNOME/sources/gtk+/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} PKGNAMESUFFIX= 2 diff --git a/x11-toolkits/gtkglext/Makefile b/x11-toolkits/gtkglext/Makefile index 246f4c494339..129a8accacf8 100644 --- a/x11-toolkits/gtkglext/Makefile +++ b/x11-toolkits/gtkglext/Makefile @@ -3,7 +3,7 @@ PORTNAME= gtkglext PORTVERSION= 1.2.0 -PORTREVISION= 17 +PORTREVISION= 18 CATEGORIES= x11-toolkits MASTER_SITES= SF DIST_SUBDIR= gnome2 diff --git a/x11-toolkits/pango/Makefile b/x11-toolkits/pango/Makefile index 4ba7c015f641..9e4594dcb96d 100644 --- a/x11-toolkits/pango/Makefile +++ b/x11-toolkits/pango/Makefile @@ -4,7 +4,7 @@ PORTNAME= pango PORTVERSION= 1.36.8 -PORTREVISION?= 1 +PORTREVISION?= 2 CATEGORIES= x11-toolkits MASTER_SITES= GNOME DIST_SUBDIR= gnome2 diff --git a/x11-toolkits/py-gnome2/Makefile b/x11-toolkits/py-gnome2/Makefile index a9b4b3f4a306..48b461cd161b 100644 --- a/x11-toolkits/py-gnome2/Makefile +++ b/x11-toolkits/py-gnome2/Makefile @@ -4,7 +4,7 @@ PORTNAME= gnome PORTVERSION= 2.28.1 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= x11-toolkits python gnome MASTER_SITES= GNOME/sources/gnome-python/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/x11-toolkits/py-gtk2/Makefile b/x11-toolkits/py-gtk2/Makefile index bb30340065bd..574f232b2248 100644 --- a/x11-toolkits/py-gtk2/Makefile +++ b/x11-toolkits/py-gtk2/Makefile @@ -4,7 +4,7 @@ PORTNAME= gtk PORTVERSION= 2.24.0 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= x11-toolkits python MASTER_SITES= GNOME/sources/pygtk/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/x11-toolkits/py-gtkglext/Makefile b/x11-toolkits/py-gtkglext/Makefile index 1468751e2e44..a4a7af5c5476 100644 --- a/x11-toolkits/py-gtkglext/Makefile +++ b/x11-toolkits/py-gtkglext/Makefile @@ -3,7 +3,7 @@ PORTNAME= gtkglext PORTVERSION= 1.1.0 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= x11-toolkits python MASTER_SITES= SF/${PORTNAME}/py${PORTNAME}/${PORTVERSION} PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/x11-toolkits/py-gtksourceview/Makefile b/x11-toolkits/py-gtksourceview/Makefile index d3873bc658f7..81aa5a9725dc 100644 --- a/x11-toolkits/py-gtksourceview/Makefile +++ b/x11-toolkits/py-gtksourceview/Makefile @@ -3,7 +3,7 @@ PORTNAME= gtksourceview PORTVERSION= 2.10.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11-toolkits gnome python MASTER_SITES= GNOME/sources/pygtksourceview/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/x11-toolkits/py-sexy/Makefile b/x11-toolkits/py-sexy/Makefile index f0fd98812fa7..51cd8f61a247 100644 --- a/x11-toolkits/py-sexy/Makefile +++ b/x11-toolkits/py-sexy/Makefile @@ -3,7 +3,7 @@ PORTNAME= sexy PORTVERSION= 0.1.9 -PORTREVISION= 7 +PORTREVISION= 8 DISTVERSIONPREFIX= python- CATEGORIES= x11-toolkits python MASTER_SITES= http://releases.chipx86.com/libsexy/sexy-python/ diff --git a/x11-wm/compizconfig-python/Makefile b/x11-wm/compizconfig-python/Makefile index 1cf296bca128..6387c319bf2b 100644 --- a/x11-wm/compizconfig-python/Makefile +++ b/x11-wm/compizconfig-python/Makefile @@ -3,7 +3,7 @@ PORTNAME= compizconfig-python PORTVERSION= 0.8.4 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= x11-wm MASTER_SITES= http://releases.compiz.org/${PORTVERSION}/ diff --git a/x11-wm/xfce4-panel/Makefile b/x11-wm/xfce4-panel/Makefile index 12b7bfb3d1d7..d3e3b48904ca 100644 --- a/x11-wm/xfce4-panel/Makefile +++ b/x11-wm/xfce4-panel/Makefile @@ -3,6 +3,7 @@ PORTNAME= xfce4-panel PORTVERSION= 4.12.0 +PORTREVISION= 1 CATEGORIES= x11-wm xfce MASTER_SITES= XFCE DIST_SUBDIR= xfce4 diff --git a/x11/keybinder/Makefile b/x11/keybinder/Makefile index b82d495da5c3..5a62f476b267 100644 --- a/x11/keybinder/Makefile +++ b/x11/keybinder/Makefile @@ -2,7 +2,7 @@ PORTNAME= keybinder PORTVERSION= 0.3.0 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= x11 MASTER_SITES= GENTOO diff --git a/x11/libfm/Makefile b/x11/libfm/Makefile index a5adf6fc6688..81a0380c113a 100644 --- a/x11/libfm/Makefile +++ b/x11/libfm/Makefile @@ -3,7 +3,7 @@ PORTNAME= libfm PORTVERSION= 1.2.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11 MASTER_SITES= SF/pcmanfm/PCManFM%20%2B%20Libfm%20%28tarball%20release%29/LibFM/ diff --git a/x11/libxfce4menu/Makefile b/x11/libxfce4menu/Makefile index 7249db15ea60..de8bbfd9875f 100644 --- a/x11/libxfce4menu/Makefile +++ b/x11/libxfce4menu/Makefile @@ -3,6 +3,7 @@ PORTNAME= libxfce4menu PORTVERSION= 4.12.1 +PORTREVISION= 1 CATEGORIES= x11 xfce MASTER_SITES= XFCE/src/xfce/libxfce4ui/${PORTVERSION:R} DISTNAME= libxfce4ui-${PORTVERSION} diff --git a/x11/mate-menus/Makefile b/x11/mate-menus/Makefile index a35c5f614bcb..616928350383 100644 --- a/x11/mate-menus/Makefile +++ b/x11/mate-menus/Makefile @@ -3,6 +3,7 @@ PORTNAME= mate-menus PORTVERSION= 1.10.0 +PORTREVISION= 1 CATEGORIES= x11 mate MASTER_SITES= MATE DIST_SUBDIR= mate diff --git a/x11/xfce4-verve-plugin/Makefile b/x11/xfce4-verve-plugin/Makefile index 859cc46225bc..89250e06f770 100644 --- a/x11/xfce4-verve-plugin/Makefile +++ b/x11/xfce4-verve-plugin/Makefile @@ -3,6 +3,7 @@ PORTNAME= verve-plugin PORTVERSION= 1.1.0 +PORTREVISION= 1 CATEGORIES= x11 xfce MASTER_SITES= XFCE/src/panel-plugins/${PKGNAMEPREFIX}${PORTNAME}/${PORTVERSION:R} PKGNAMEPREFIX= xfce4- |