Index: head/editors/focuswriter/Makefile =================================================================== --- head/editors/focuswriter/Makefile (revision 430515) +++ head/editors/focuswriter/Makefile (revision 430516) @@ -1,58 +1,55 @@ # Created by: lightside # $FreeBSD$ PORTNAME= focuswriter PORTVERSION= 1.6.3 DISTVERSIONPREFIX= v CATEGORIES= editors MAINTAINER= lightside@gmx.com COMMENT= Simple, distraction-free writing environment LICENSE= GPLv3 LGPL3 LICENSE_COMB= multi LICENSE_FILE_GPLv3= ${WRKSRC}/COPYING LICENSE_FILE_LGPL3= ${WRKSRC}/resources/images/icons/oxygen/COPYING LIB_DEPENDS= libhunspell-1.5.so:textproc/hunspell USE_GITHUB= yes GH_ACCOUNT= gottcode USES= compiler:c++11-lib desktop-file-utils pkgconfig qmake USE_GL= gl USE_QT5= concurrent core gui multimedia network printsupport widgets \ buildtools_build linguisttools_build INSTALLS_ICONS= yes -LIBS+= -lz - PORTDATA= * PORTDOCS= CREDITS NEWS README OPTIONS_DEFINE= DOCS .include post-patch: - @${REINPLACE_CMD} -e '/PKGCONFIG/s/ zlib// ; \ - /INSTALLS/s/man //' \ + @${REINPLACE_CMD} -e '/INSTALLS/s/man //' \ ${WRKSRC}/focuswriter.pro .if ${OPSYS} == FreeBSD && ${OSVERSION} < 1000054 @${REINPLACE_CMD} -e 's/std::lround/lround/g' \ ${WRKSRC}/src/daily_progress_dialog.cpp \ ${WRKSRC}/src/scene_list.cpp \ ${WRKSRC}/src/theme_dialog.cpp \ ${WRKSRC}/src/fileformats/docx_reader.cpp \ ${WRKSRC}/src/fileformats/odt_reader.cpp \ ${WRKSRC}/src/fileformats/rtf_reader.cpp .endif do-install-DOCS-on: (cd ${WRKSRC} && ${COPYTREE_SHARE} "${PORTDOCS}" ${STAGEDIR}${DOCSDIR}) post-install: ${INSTALL_MAN} ${WRKSRC}/resources/unix/focuswriter.1 \ ${STAGEDIR}${PREFIX}/man/man1 .include Index: head/editors/texworks/files/patch-TeXworks.pro =================================================================== --- head/editors/texworks/files/patch-TeXworks.pro (revision 430515) +++ head/editors/texworks/files/patch-TeXworks.pro (revision 430516) @@ -1,45 +1,44 @@ --- TeXworks.pro.orig 2015-04-03 18:05:39 UTC +++ TeXworks.pro -@@ -108,7 +108,8 @@ unix:!macx { # on Unix-ish platforms we +@@ -108,7 +108,7 @@ unix:!macx { # on Unix-ish platforms we CONFIG += link_pkgconfig PKGCONFIG += hunspell PKGCONFIG += poppler-qt4 - PKGCONFIG += zlib -+ PKGCONFIG += synctex -+ LIBS += -lz ++ PKGCONFIG += synctex zlib # Enclose the path in \\\" (which later gets expanded to \", which in turn # gets expanded to " in the c++ code) @@ -180,8 +181,7 @@ HEADERS += src/TWApp.h \ src/TWVersion.h \ src/TWTextCodecs.h \ src/SvnRev.h \ - src/synctex_parser.h \ - src/synctex_parser_utils.h \ + src/TWSynchronizer.h \ src/ClickableLabel.h \ src/ConfigurableApp.h \ src/TWSystemCmd.h @@ -225,8 +225,7 @@ SOURCES += src/main.cpp \ src/ResourcesDialog.cpp \ src/ScriptManager.cpp \ src/ConfirmDelete.cpp \ - src/synctex_parser.c \ - src/synctex_parser_utils.c + src/TWSynchronizer.cpp RESOURCES += res/resources.qrc \ res/resfiles.qrc @@ -259,10 +258,10 @@ unix:!macx { # installation on Unix-ish isEmpty(DESKTOP_DIR):DESKTOP_DIR = $$DATA_DIR/applications target.path = $$BIN_DIR - documentation.files = COPYING README NEWS + documentation.files = README NEWS documentation.path = $$DOCS_DIR manual.files = manual/* - manual.path = $$TW_HELPPATH + manual.path = DOCS_DIR icon.files = res/images/TeXworks.png icon.path = $$ICON_DIR man.files = man/texworks.1 Index: head/games/frogatto/files/patch-Makefile =================================================================== --- head/games/frogatto/files/patch-Makefile (revision 430515) +++ head/games/frogatto/files/patch-Makefile (revision 430516) @@ -1,47 +1,38 @@ --- Makefile.orig 2012-12-08 22:36:13 UTC +++ Makefile @@ -22,7 +22,7 @@ # found in PATH), this option has no effect. # -OPTIMIZE=yes +OPTIMIZE=no CCACHE?=ccache USE_CCACHE?=$(shell which $(CCACHE) 2>&1 > /dev/null && echo yes) ifneq ($(USE_CCACHE),yes) -@@ -34,14 +34,14 @@ BASE_CXXFLAGS += -O2 +@@ -34,7 +34,7 @@ BASE_CXXFLAGS += -O2 endif # Initial compiler options, used before CXXFLAGS and CPPFLAGS. -BASE_CXXFLAGS += -g -fno-inline-functions -fthreadsafe-statics -Wnon-virtual-dtor -Werror -Wignored-qualifiers -Wformat -Wswitch +BASE_CXXFLAGS += -fno-inline-functions -fthreadsafe-statics -Wnon-virtual-dtor -Werror -Wformat -Wswitch # Compiler include options, used after CXXFLAGS and CPPFLAGS. --INC := $(shell pkg-config --cflags x11 sdl glu glew SDL_image libpng zlib) -+INC := $(shell pkg-config --cflags x11 sdl glu glew SDL_image libpng) - - # Linker library options. - LIBS := $(shell pkg-config --libs x11 ) -lSDLmain \ -- $(shell pkg-config --libs sdl glu glew SDL_image libpng zlib) -lSDL_ttf -lSDL_mixer -+ $(shell pkg-config --libs sdl glu glew SDL_image libpng) -lz -lSDL_ttf -lSDL_mixer - - include Makefile.common - + INC := $(shell pkg-config --cflags x11 sdl glu glew SDL_image libpng zlib) @@ -60,7 +60,7 @@ game: $(objects) $(CCACHE) $(CXX) \ $(BASE_CXXFLAGS) $(LDFLAGS) $(CXXFLAGS) $(CPPFLAGS) $(INC) \ $(objects) -o game \ - $(LIBS) -lboost_regex-mt -lboost_system-mt -lpthread -fthreadsafe-statics + $(LIBS) -lboost_regex -lboost_system -lpthread -fthreadsafe-statics # pull in dependency info for *existing* .o files -include $(objects:.o=.d) @@ -69,7 +69,7 @@ server: $(server_objects) $(CCACHE) $(CXX) \ $(BASE_CXXFLAGS) $(LDFLAGS) $(CXXFLAGS) $(CPPFLAGS) \ $(server_objects) -o server \ - $(LIBS) -lboost_regex-mt -lboost_system-mt -lboost_thread-mt -lboost_iostreams-mt + $(LIBS) -lboost_regex -lboost_system -lboost_thread -lboost_iostreams clean: rm -f *.o *.d game Index: head/games/tanglet/Makefile =================================================================== --- head/games/tanglet/Makefile (revision 430515) +++ head/games/tanglet/Makefile (revision 430516) @@ -1,34 +1,31 @@ # Created by: Rusmir Dusko # $FreeBSD$ PORTNAME= tanglet PORTVERSION= 1.4.0 DISTVERSIONSUFFIX= -src CATEGORIES= games MASTER_SITES= http://gottcode.org/tanglet/ MAINTAINER= ports@FreeBSD.org COMMENT= Single player word finding game based on Boggle LICENSE= GPLv3+ WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} -USES= compiler:c++11-lib desktop-file-utils qmake shared-mime-info tar:bzip2 +USES= compiler:c++11-lib desktop-file-utils pkgconfig qmake \ + shared-mime-info tar:bzip2 USE_QT5= buildtools_build linguisttools_build core gui widgets CXXFLAGS+= -D_GLIBCXX_USE_C99 -D_GLIBCXX_USE_C99_MATH_TR1 \ -D_DECLARE_C99_LDBL_MATH # XXX ports/193528 post-patch: - @${REINPLACE_CMD} -e \ - '/link_pkgconfig/d ; \ - s|PKGCONFIG|LIBS| ; \ - s|zlib|-lz| ; \ - s|share/man|man|' ${WRKSRC}/tanglet.pro + @${REINPLACE_CMD} -e 's|share/man|man|' ${WRKSRC}/tanglet.pro post-install: @${MKDIR} ${STAGEDIR}${DOCSDIR} (cd ${WRKSRC} && ${INSTALL_DATA} CREDITS ChangeLog NEWS README \ ${STAGEDIR}${DOCSDIR}) .include Index: head/graphics/atril/files/patch-configure =================================================================== --- head/graphics/atril/files/patch-configure (revision 430515) +++ head/graphics/atril/files/patch-configure (nonexistent) @@ -1,149 +0,0 @@ ---- configure.orig 2015-09-04 11:35:11.223593000 +0200 -+++ configure 2015-09-04 11:35:40.650664000 +0200 -@@ -21453,14 +21453,14 @@ - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"webkit-\$WEBKIT_API_VERSION >= \$WEBKIT_REQUIRED \\ -- libxml-2.0 >= \$LIBXML_REQUIRED zlib\""; } >&5 -+ libxml-2.0 >= \$LIBXML_REQUIRED \""; } >&5 - ($PKG_CONFIG --exists --print-errors "webkit-$WEBKIT_API_VERSION >= $WEBKIT_REQUIRED \ -- libxml-2.0 >= $LIBXML_REQUIRED zlib") 2>&5 -+ libxml-2.0 >= $LIBXML_REQUIRED ") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_EPUB_CFLAGS=`$PKG_CONFIG --cflags "webkit-$WEBKIT_API_VERSION >= $WEBKIT_REQUIRED \ -- libxml-2.0 >= $LIBXML_REQUIRED zlib" 2>/dev/null` -+ libxml-2.0 >= $LIBXML_REQUIRED " 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes - else - pkg_failed=yes -@@ -21473,14 +21473,14 @@ - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"webkit-\$WEBKIT_API_VERSION >= \$WEBKIT_REQUIRED \\ -- libxml-2.0 >= \$LIBXML_REQUIRED zlib\""; } >&5 -+ libxml-2.0 >= \$LIBXML_REQUIRED \""; } >&5 - ($PKG_CONFIG --exists --print-errors "webkit-$WEBKIT_API_VERSION >= $WEBKIT_REQUIRED \ -- libxml-2.0 >= $LIBXML_REQUIRED zlib") 2>&5 -+ libxml-2.0 >= $LIBXML_REQUIRED ") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_EPUB_LIBS=`$PKG_CONFIG --libs "webkit-$WEBKIT_API_VERSION >= $WEBKIT_REQUIRED \ -- libxml-2.0 >= $LIBXML_REQUIRED zlib" 2>/dev/null` -+ libxml-2.0 >= $LIBXML_REQUIRED " 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes - else - pkg_failed=yes -@@ -21502,10 +21502,10 @@ - fi - if test $_pkg_short_errors_supported = yes; then - EPUB_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "webkit-$WEBKIT_API_VERSION >= $WEBKIT_REQUIRED \ -- libxml-2.0 >= $LIBXML_REQUIRED zlib" 2>&1` -+ libxml-2.0 >= $LIBXML_REQUIRED " 2>&1` - else - EPUB_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "webkit-$WEBKIT_API_VERSION >= $WEBKIT_REQUIRED \ -- libxml-2.0 >= $LIBXML_REQUIRED zlib" 2>&1` -+ libxml-2.0 >= $LIBXML_REQUIRED " 2>&1` - fi - # Put the nasty error message in config.log where it belongs - echo "$EPUB_PKG_ERRORS" >&5 -@@ -21534,14 +21534,14 @@ - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"webkit2gtk-\$WEBKIT_API_VERSION >= \$WEBKIT_REQUIRED \\ -- libxml-2.0 >= \$LIBXML_REQUIRED zlib\""; } >&5 -+ libxml-2.0 >= \$LIBXML_REQUIRED \""; } >&5 - ($PKG_CONFIG --exists --print-errors "webkit2gtk-$WEBKIT_API_VERSION >= $WEBKIT_REQUIRED \ -- libxml-2.0 >= $LIBXML_REQUIRED zlib") 2>&5 -+ libxml-2.0 >= $LIBXML_REQUIRED ") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_EPUB_CFLAGS=`$PKG_CONFIG --cflags "webkit2gtk-$WEBKIT_API_VERSION >= $WEBKIT_REQUIRED \ -- libxml-2.0 >= $LIBXML_REQUIRED zlib" 2>/dev/null` -+ libxml-2.0 >= $LIBXML_REQUIRED " 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes - else - pkg_failed=yes -@@ -21554,14 +21554,14 @@ - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"webkit2gtk-\$WEBKIT_API_VERSION >= \$WEBKIT_REQUIRED \\ -- libxml-2.0 >= \$LIBXML_REQUIRED zlib\""; } >&5 -+ libxml-2.0 >= \$LIBXML_REQUIRED \""; } >&5 - ($PKG_CONFIG --exists --print-errors "webkit2gtk-$WEBKIT_API_VERSION >= $WEBKIT_REQUIRED \ -- libxml-2.0 >= $LIBXML_REQUIRED zlib") 2>&5 -+ libxml-2.0 >= $LIBXML_REQUIRED ") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_EPUB_LIBS=`$PKG_CONFIG --libs "webkit2gtk-$WEBKIT_API_VERSION >= $WEBKIT_REQUIRED \ -- libxml-2.0 >= $LIBXML_REQUIRED zlib" 2>/dev/null` -+ libxml-2.0 >= $LIBXML_REQUIRED " 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes - else - pkg_failed=yes -@@ -21583,10 +21583,10 @@ - fi - if test $_pkg_short_errors_supported = yes; then - EPUB_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "webkit2gtk-$WEBKIT_API_VERSION >= $WEBKIT_REQUIRED \ -- libxml-2.0 >= $LIBXML_REQUIRED zlib" 2>&1` -+ libxml-2.0 >= $LIBXML_REQUIRED " 2>&1` - else - EPUB_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "webkit2gtk-$WEBKIT_API_VERSION >= $WEBKIT_REQUIRED \ -- libxml-2.0 >= $LIBXML_REQUIRED zlib" 2>&1` -+ libxml-2.0 >= $LIBXML_REQUIRED " 2>&1` - fi - # Put the nasty error message in config.log where it belongs - echo "$EPUB_PKG_ERRORS" >&5 -@@ -21617,14 +21617,14 @@ - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"webkit2gtk-\$WEBKIT_API_VERSION >= \$WEBKIT_REQUIRED \\ -- libxml-2.0 >= \$LIBXML_REQUIRED zlib\""; } >&5 -+ libxml-2.0 >= \$LIBXML_REQUIRED \""; } >&5 - ($PKG_CONFIG --exists --print-errors "webkit2gtk-$WEBKIT_API_VERSION >= $WEBKIT_REQUIRED \ -- libxml-2.0 >= $LIBXML_REQUIRED zlib") 2>&5 -+ libxml-2.0 >= $LIBXML_REQUIRED ") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_EPUB_CFLAGS=`$PKG_CONFIG --cflags "webkit2gtk-$WEBKIT_API_VERSION >= $WEBKIT_REQUIRED \ -- libxml-2.0 >= $LIBXML_REQUIRED zlib" 2>/dev/null` -+ libxml-2.0 >= $LIBXML_REQUIRED " 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes - else - pkg_failed=yes -@@ -21637,14 +21637,14 @@ - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"webkit2gtk-\$WEBKIT_API_VERSION >= \$WEBKIT_REQUIRED \\ -- libxml-2.0 >= \$LIBXML_REQUIRED zlib\""; } >&5 -+ libxml-2.0 >= \$LIBXML_REQUIRED \""; } >&5 - ($PKG_CONFIG --exists --print-errors "webkit2gtk-$WEBKIT_API_VERSION >= $WEBKIT_REQUIRED \ -- libxml-2.0 >= $LIBXML_REQUIRED zlib") 2>&5 -+ libxml-2.0 >= $LIBXML_REQUIRED ") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_EPUB_LIBS=`$PKG_CONFIG --libs "webkit2gtk-$WEBKIT_API_VERSION >= $WEBKIT_REQUIRED \ -- libxml-2.0 >= $LIBXML_REQUIRED zlib" 2>/dev/null` -+ libxml-2.0 >= $LIBXML_REQUIRED " 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes - else - pkg_failed=yes -@@ -21666,10 +21666,10 @@ - fi - if test $_pkg_short_errors_supported = yes; then - EPUB_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "webkit2gtk-$WEBKIT_API_VERSION >= $WEBKIT_REQUIRED \ -- libxml-2.0 >= $LIBXML_REQUIRED zlib" 2>&1` -+ libxml-2.0 >= $LIBXML_REQUIRED " 2>&1` - else - EPUB_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "webkit2gtk-$WEBKIT_API_VERSION >= $WEBKIT_REQUIRED \ -- libxml-2.0 >= $LIBXML_REQUIRED zlib" 2>&1` -+ libxml-2.0 >= $LIBXML_REQUIRED " 2>&1` - fi - # Put the nasty error message in config.log where it belongs - echo "$EPUB_PKG_ERRORS" >&5 Property changes on: head/graphics/atril/files/patch-configure ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/graphics/atril/files/configure.ac =================================================================== --- head/graphics/atril/files/configure.ac (revision 430515) +++ head/graphics/atril/files/configure.ac (nonexistent) @@ -1,22 +0,0 @@ ---- configure.ac.orig 2015-09-04 11:33:09.197403000 +0200 -+++ configure.ac 2015-09-04 11:33:38.935108000 +0200 -@@ -697,16 +697,16 @@ - case "$with_gtk" in - 2.0) - PKG_CHECK_MODULES(EPUB, webkit-$WEBKIT_API_VERSION >= $WEBKIT_REQUIRED \ -- libxml-2.0 >= $LIBXML_REQUIRED zlib,have_webkit=yes,have_webkit=no) -+ libxml-2.0 >= $LIBXML_REQUIRED ,have_webkit=yes,have_webkit=no) - ;; - 3.0) - PKG_CHECK_MODULES(EPUB, webkit2gtk-$WEBKIT_API_VERSION >= $WEBKIT_REQUIRED \ -- libxml-2.0 >= $LIBXML_REQUIRED zlib,have_webkit=yes,have_webkit=no) -+ libxml-2.0 >= $LIBXML_REQUIRED ,have_webkit=yes,have_webkit=no) - if test "x$have_webkit" = "xno"; then - AC_MSG_NOTICE([Webkit2 4.0 not found, trying 3.0]) - WEBKIT_API_VERSION=3.0 - PKG_CHECK_MODULES(EPUB, webkit2gtk-$WEBKIT_API_VERSION >= $WEBKIT_REQUIRED \ -- libxml-2.0 >= $LIBXML_REQUIRED zlib,have_webkit=yes,have_webkit=no) -+ libxml-2.0 >= $LIBXML_REQUIRED ,have_webkit=yes,have_webkit=no) - fi - ;; - esac Property changes on: head/graphics/atril/files/configure.ac ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -1 \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/graphics/gthumb/Makefile =================================================================== --- head/graphics/gthumb/Makefile (revision 430515) +++ head/graphics/gthumb/Makefile (revision 430516) @@ -1,101 +1,99 @@ # Created by: Joe Marcus Clarke # $FreeBSD$ # $MCom: ports/trunk/graphics/gthumb/Makefile 19823 2014-08-20 09:28:14Z gusi $ PORTNAME= gthumb PORTVERSION= 3.4.3 PORTREVISION= 1 CATEGORIES= graphics MASTER_SITES= GNOME DIST_SUBDIR= gnome3 MAINTAINER= ports@FreeBSD.org COMMENT= Image viewer and browser for the GNOME 3 environment LICENSE= GPLv2+ BUILD_DEPENDS= gsettings-desktop-schemas>0:devel/gsettings-desktop-schemas \ itstool:textproc/itstool RUN_DEPENDS= gsettings-desktop-schemas>0:devel/gsettings-desktop-schemas USES= bison compiler:c++11-lib desktop-file-utils gettext gmake \ libtool pathfix pkgconfig tar:xz USE_GNOME= gtk30 intltool librsvg2 GNU_CONFIGURE= yes CONFIGURE_ENV= ac_cv_lib_jpeg_jpeg_destroy_decompress=yes \ ac_cv_lib_tiff_TIFFWriteScanline=yes CONFIGURE_ARGS= --disable-libchamplain \ --enable-compile-warnings=minimum \ --enable-librsvg INSTALL_TARGET= install-strip USE_LDCONFIG= yes INSTALLS_ICONS= yes CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib PLIST_SUB= GTHUMB_VER="3.4" GLIB_SCHEMAS= org.gnome.gthumb.change-date.gschema.xml \ org.gnome.gthumb.comments.gschema.xml \ org.gnome.gthumb.contact-sheet.gschema.xml \ org.gnome.gthumb.convert-format.gschema.xml \ org.gnome.gthumb.crop.gschema.xml \ org.gnome.gthumb.enums.xml \ org.gnome.gthumb.facebook.gschema.xml \ org.gnome.gthumb.file-manager.gschema.xml \ org.gnome.gthumb.flickr.gschema.xml \ org.gnome.gthumb.gschema.xml \ org.gnome.gthumb.gstreamer-tools.gschema.xml \ org.gnome.gthumb.image-print.gschema.xml \ org.gnome.gthumb.image-viewer.gschema.xml \ org.gnome.gthumb.importer.gschema.xml \ org.gnome.gthumb.photo-importer.gschema.xml \ org.gnome.gthumb.picasaweb.gschema.xml \ org.gnome.gthumb.pixbuf-savers.gschema.xml \ org.gnome.gthumb.rename-series.gschema.xml \ org.gnome.gthumb.resize-images.gschema.xml \ org.gnome.gthumb.resize.gschema.xml \ org.gnome.gthumb.rotate.gschema.xml \ org.gnome.gthumb.slideshow.gschema.xml \ org.gnome.gthumb.webalbums.gschema.xml OPTIONS_DEFINE= BRASERO CLUTTER EXIV2 GSTREAMER RAW SECRET \ WEBP WEBSERVICES YELP OPTIONS_DEFAULT= BRASERO CLUTTER EXIV2 GSTREAMER RAW SECRET \ WEBP WEBSERVICES YELP OPTIONS_SUB= yes BRASERO_DESC= Write galleries to CD/DVD (large dependency) BRASERO_LIB_DEPENDS= libbrasero-media3.so:sysutils/brasero BRASERO_CONFIGURE_ENABLE= libbrasero CLUTTER_DESC= Fancy slideshows CLUTTER_LIB_DEPENDS= libclutter-gtk-1.0.so:graphics/clutter-gtk3 CLUTTER_CONFIGURE_ENABLE= clutter EXIV2_LIB_DEPENDS= libexiv2.so:graphics/exiv2 EXIV2_CONFIGURE_ENABLE= exiv2 GSTREAMER_USE= gstreamer1=yes GSTREAMER_CONFIGURE_ENABLE= gstreamer RAW_DESC= Raw image support via libraw RAW_LIB_DEPENDS= libraw.so:graphics/libraw RAW_CONFIGURE_ENABLE= libraw SECRET_DESC= Libsecret support for storing passwords SECRET_LIB_DEPENDS= libsecret-1.so:security/libsecret SECRET_CONFIGURE_ENABLE= libsecret WEBP_LIB_DEPENDS= libwebp.so:graphics/webp WEBP_CONFIGURE_ENABLE= libwebp WEBSERVICES_DESC= Web services WEBSERVICES_LIB_DEPENDS=\ libjson-glib-1.0.so:devel/json-glib \ libsoup-gnome-2.4.so:devel/libsoup-gnome \ libwebkit2gtk-4.0.so:www/webkit2-gtk3 WEBSERVICES_CONFIGURE_ENABLE= libjson-glib libsoup webkit2 YELP_DESC= Viewer for built-in help system YELP_RUN_DEPENDS= yelp:x11/yelp post-patch: - @${REINPLACE_CMD} -e \ - 's|-Wl,--as-needed|| ; \ - /^[[:blank:]]zlib/d' ${WRKSRC}/configure + @${REINPLACE_CMD} -e 's|-Wl,--as-needed||' ${WRKSRC}/configure .include Index: head/multimedia/ogmrip/Makefile =================================================================== --- head/multimedia/ogmrip/Makefile (revision 430515) +++ head/multimedia/ogmrip/Makefile (revision 430516) @@ -1,145 +1,144 @@ # Created by: Herve Quiroz # $FreeBSD$ PORTNAME= ogmrip PORTVERSION= 1.0.1 PORTREVISION= 6 CATEGORIES= multimedia MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTVERSION:R}/${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= Application and libraries for encoding DVDs into DivX/OGM files LICENSE= GPLv2 LGPL21 LICENSE_COMB= multi BUILD_DEPENDS= mencoder:multimedia/mencoder \ mplayer:multimedia/mplayer \ gsed:textproc/gsed LIB_DEPENDS= libenca.so:converters/enca \ libpng.so:graphics/png \ libtiff.so:graphics/tiff \ libdvdread.so:multimedia/libdvdread RUN_DEPENDS= lame:audio/lame \ oggenc:audio/vorbis-tools \ mencoder:multimedia/mencoder \ mplayer:multimedia/mplayer \ ogmmerge:multimedia/ogmtools OPTIONS_DEFINE= GTK2 ENCHANT MATROSKA MP4BOX NLS THEORA FAAC SRT DEBUG OPTIONS_DEFAULT=GTK2 ENCHANT_DESC= Enable spell checking for text subtitles MATROSKA_DESC= Enable Matroska container support MP4BOX_DESC= Enable Mpeg-4 container support THEORA_DESC= Enable Ogg Theora video codec support SRT_DESC= Enable SRT text subtitles support USES= desktop-file-utils gmake libtool pathfix pkgconfig USE_GNOME= glib20 intlhack libxml2 USE_LDCONFIG= yes GNU_CONFIGURE= yes INSTALL_TARGET= install-strip CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib .include .if ${PORT_OPTIONS:MGTK2} CONFIGURE_ARGS+= --enable-gtk-support --enable-dbus-support \ --enable-libnotify-support LIB_DEPENDS+= libdbus-glib-1.so:devel/dbus-glib \ libnotify.so:devel/libnotify USE_GNOME+= gconf2 libglade2 GCONF_SCHEMAS= ogmrip.schemas PLIST_SUB+= GTK2_SUPPORT="" .else CONFIGURE_ARGS+= --disable-gtk-support --disable-dbus-support \ --disable-libnotify-support PLIST_SUB+= GTK2_SUPPORT="@comment " .endif .if ${PORT_OPTIONS:MENCHANT} CONFIGURE_ARGS+= --enable-enchant-support LIB_DEPENDS+= libenchant.so:textproc/enchant PLIST_SUB+= ENCHANT_SUPPORT="" .else CONFIGURE_ARGS+= --disable-enchant-support PLIST_SUB+= ENCHANT_SUPPORT="@comment " .endif .if ${PORT_OPTIONS:MMATROSKA} CONFIGURE_ARGS+= --enable-mkv-support RUN_DEPENDS+= mkvmerge:multimedia/mkvtoolnix PLIST_SUB+= MATROSKA_SUPPORT="" .else CONFIGURE_ARGS+= --disable-mkv-support PLIST_SUB+= MATROSKA_SUPPORT="@comment " .endif .if ${PORT_OPTIONS:MMP4BOX} CONFIGURE_ARGS+= --enable-mp4-support RUN_DEPENDS+= mp4box:multimedia/gpac-mp4box PLIST_SUB+= MP4BOX_SUPPORT="" .else CONFIGURE_ARGS+= --disable-mp4-support PLIST_SUB+= MP4BOX_SUPPORT="@comment " .endif .if ${PORT_OPTIONS:MNLS} USES+= gettext PLIST_SUB+= NLS="" .else CONFIGURE_ARGS+= --disable-nls PLIST_SUB+= NLS="@comment " .endif .if ${PORT_OPTIONS:MTHEORA} CONFIGURE_ARGS+= --enable-theora-support LIB_DEPENDS+= libtheora.so:multimedia/libtheora PLIST_SUB+= THEORA_SUPPORT="" .else CONFIGURE_ARGS+= --disable-theora-support PLIST_SUB+= THEORA_SUPPORT="@comment " .endif .if ${PORT_OPTIONS:MFAAC} CONFIGURE_ARGS+= --enable-aac-support RUN_DEPENDS+= faac:audio/faac PLIST_SUB+= FAAC_SUPPORT="" .else CONFIGURE_ARGS+= --disable-aac-support PLIST_SUB+= FAAC_SUPPORT="@comment " .endif .if ${PORT_OPTIONS:MSRT} CONFIGURE_ARGS+= --enable-srt-support RUN_DEPENDS+= gocr:graphics/gocr MAN1+= subp2pgm.1 subptools.1 PLIST_SUB+= SRT_SUPPORT="" .else CONFIGURE_ARGS+= --disable-srt-support PLIST_SUB+= SRT_SUPPORT="@comment " .endif .if ${PORT_OPTIONS:MDEBUG} CONFIGURE_ARGS+= --enable-maintainer-mode --enable-devel-mode .endif pre-everything:: @${ECHO_MSG} "" @${ECHO_MSG} "This port requires a version of MEncoder compiled with XviD and/or" @${ECHO_MSG} "x264 support if you want to use these codecs." @${ECHO_MSG} "" post-patch: @${REINPLACE_CMD} -e '/local/s|^CFLAGS=|#CFLAGS=|g ; \ /local/s|^CPPFLAGS=|#CPPFLAGS=|g ; \ - /local/s|^LDFLAGS=|#LDFLAGS=|g ; \ - s|libpng zlib|libpng|g' ${WRKSRC}/configure + /local/s|^LDFLAGS=|#LDFLAGS=|g' ${WRKSRC}/configure @${REINPLACE_CMD} -e 's|^SUBDIRS|#SUBDIRS|g' ${WRKSRC}/docs/Makefile.in @${REINPLACE_CMD} -e \ '/PROGRAM/s|MP4Box|mp4box|g' ${WRKSRC}/libogmrip/ogmrip-mp4.c .include Index: head/polish/kadu/Makefile =================================================================== --- head/polish/kadu/Makefile (revision 430515) +++ head/polish/kadu/Makefile (revision 430516) @@ -1,73 +1,71 @@ # Created by: Jacek Pelka # $FreeBSD$ PORTNAME= kadu PORTVERSION= 4.2 PORTEPOCH= 1 CATEGORIES= polish net-im MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTVERSION}/:kadu \ http://download.kadu.im/stable/:kadu \ http://download.kadu.im/additions/:additions DISTFILES= ${DISTNAME}${EXTRACT_SUFX}:kadu DIST_SUBDIR= kadu EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} MAINTAINER= pawel@FreeBSD.org COMMENT= Internet communicator supporting Gadu-Gadu and Jabber/XMPP LICENSE= GPLv2 BUILD_DEPENDS= bash:shells/bash \ pl-libgadu>=1.12.1:polish/libgadu LIB_DEPENDS= libmpdclient.so:audio/libmpdclient \ libsndfile.so:audio/libsndfile \ libinjeqt.so:devel/injeqt \ libqca-qt5.so:devel/qca-qt5 \ libidn.so:dns/libidn \ libqxmpp.so:net-im/qxmpp-qt5 \ libgadu.so:polish/libgadu \ libgcrypt.so:security/libgcrypt \ libotr.so.5:security/libotr \ libenchant.so:textproc/enchant # TODO ntrack and ntrack-qt (needs porting) ? # TODO separate ports for plugins and themes (possible starting with 0.10) GG6_EMOTS_DISTFILE= kompatybilne_z_GG6.tar.gz GG7_EMOTS_DISTFILE= dodatkowe_emoty_GG7.tar.gz USES= cmake compiler:c++11-lib execinfo gettext-runtime \ libarchive pkgconfig readline tar:bzip2 USE_XORG= x11 xext xfixes xscrnsaver USE_GNOME= glib20 USE_QT5= concurrent core dbus declarative gui multimedia network \ qml quick script scripttools sql webkit widgets x11extras \ xml xmlpatterns buildtools_build linguisttools_build \ qmake_build imageformats_run sql-sqlite3_run # Setting KADU_VERSION disables git invocation CMAKE_ARGS= -DKADU_VERSION:STRING="${DISTVERSION}" -DWITH_ENCHANT=ON \ -DENABLE_TESTS=OFF LDFLAGS+= -lexecinfo OPTIONS_DEFINE= GG_EMOTS OPTIONS_SUB= yes GG_EMOTS_DESC= GG-compatible emoticons GG_EMOTS_DISTFILES= ${GG6_EMOTS_DISTFILE}:additions \ ${GG7_EMOTS_DISTFILE}:additions post-patch: - @${REINPLACE_CMD} '/zlib/ s|^|#|' \ - ${WRKSRC}/plugins/jabber_protocol/CMakeLists.txt @${REINPLACE_CMD} '/kadu_add_test/ s|^|#|' \ ${WRKSRC}/kadu-core/plugin/CMakeLists.txt post-install-GG_EMOTS-on: @${MKDIR} ${WRKSRC}/varia/themes/emoticons @cd ${WRKSRC}/varia/themes/emoticons && \ ${TAR} -zxf ${_DISTDIR}/${GG6_EMOTS_DISTFILE} && \ ${MV} kompatybilne_z_GG6 gg6_compatible && \ cd gg6_compatible && ${TAR} -zxf ${_DISTDIR}/${GG7_EMOTS_DISTFILE} @cd ${WRKSRC}/varia/themes/emoticons && \ ${COPYTREE_SHARE} gg6_compatible ${STAGEDIR}${DATADIR}/themes/emoticons .include Index: head/textproc/stardict3/Makefile =================================================================== --- head/textproc/stardict3/Makefile (revision 430515) +++ head/textproc/stardict3/Makefile (revision 430516) @@ -1,53 +1,50 @@ # Created by: eric # $FreeBSD$ PORTNAME= stardict PORTVERSION= 3.0.6 CATEGORIES= textproc MASTER_SITES= SF/stardict-4/${PORTVERSION} DIST_SUBDIR= stardict MAINTAINER= makc@FreeBSD.org COMMENT= Dictionary lookup program written in Gtk2 LIB_DEPENDS= libsigc-2.0.so:devel/libsigc++20 \ libenchant.so:textproc/enchant RUN_DEPENDS= xdg-open:devel/xdg-utils GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-festival \ --disable-gucharmap \ --disable-espeak \ --disable-tools \ --disable-updateinfo \ --disable-advertisement CPPFLAGS+= -I${LOCALBASE}/include LIBS+= -L${LOCALBASE}/lib USES= gettext gmake libtool pathfix pkgconfig tar:bzip2 USE_GNOME= intltool OPTIONS_DEFINE= GNOME OPTIONS_SUB= yes GNOME_USE= GNOME=gnomeprefix,gnomedocutils,libgnomeui GNOME_USE_OFF= GNOME=gtk20 GNOME_CONFIGURE_ENABLE= gnome-support schemas-install scrollkeeper GNOME_VARS= GCONF_SCHEMAS=stardict.schemas \ INSTALLS_OMF=yes post-patch: @${REINPLACE_CMD} -e 's,/usr/share,${PREFIX}/share,g' \ ${WRKSRC}/dict/src/conf.cpp @${REINPLACE_CMD} \ -e '/as_fn_error.*gnome-doc-utils/d' \ -e '/DEP_MODULES=/s/"$$/ gmodule-2.0"/' \ ${WRKSRC}/dict/configure - @${REINPLACE_CMD} \ - -e '/^DEP_MODULES=/s/zlib//' \ - ${WRKSRC}/lib/configure post-patch-GNOME-off: ${REINPLACE_CMD} -e '/^SUBDIRS/s,help,,' ${WRKSRC}/dict/Makefile.in .include