Index: head/databases/glom/Makefile =================================================================== --- head/databases/glom/Makefile (revision 392536) +++ head/databases/glom/Makefile (revision 392537) @@ -1,60 +1,56 @@ # Created by: Adam Weinberger # $FreeBSD$ PORTNAME= glom PORTVERSION= 1.28.0 CATEGORIES= databases gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome3 MAINTAINER= kwm@FreeBSD.org COMMENT= GNOME database designer and user interface BUILD_DEPENDS= iso-codes>=0:${PORTSDIR}/misc/iso-codes \ itstool:${PORTSDIR}/textproc/itstool \ libepc>=0.4.0:${PORTSDIR}/www/libepc \ libgda5-mysql>=0:${PORTSDIR}/databases/libgda5-mysql \ libgda5-postgresql>=0:${PORTSDIR}/databases/libgda5-postgresql LIB_DEPENDS= libboost_python.so:${PORTSDIR}/devel/boost-python-libs \ libepc-1.0.so:${PORTSDIR}/www/libepc \ libgoocanvasmm-2.0.so:${PORTSDIR}/graphics/goocanvasmm2 \ libevview3.so:${PORTSDIR}/graphics/evince RUN_DEPENDS= iso-codes>=0:${PORTSDIR}/misc/iso-codes \ libgda5-mysql>=0:${PORTSDIR}/databases/libgda5-mysql \ libgda5-postgresql>=0:${PORTSDIR}/databases/libgda5-postgresql GNU_CONFIGURE= yes -USES= desktop-file-utils gettext gmake libtool pathfix \ +USES= desktop-file-utils gettext gmake libarchive libtool pathfix \ pgsql pkgconfig python shared-mime-info tar:xz WANT_PGSQL= server USE_GNOME= gnomedocutils gnomeprefix intlhack pygobject3 libxml2 \ gtksourceviewmm3 libgdamm5 USE_LDCONFIG= yes CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib INSTALL_TARGET= install-strip CONFIGURE_ARGS= --with-postgres-utils=${LOCALBASE}/bin \ --disable-documentation INSTALLS_ICONS= yes .include #PLIST_SUB+= VERSION=${PORTVERSION:R} PLIST_SUB+= VERSION=1.26 - -.if ! exists(/usr/libdata/pkgconfig/libarchive.pc) -LIB_DEPENDS+= libarchive.so.13:${PORTSDIR}/archivers/libarchive -.endif post-patch: @${REINPLACE_CMD} -e 's|-update-mime-database|true|g' \ ${WRKSRC}/Makefile.in @${REINPLACE_CMD} -e 's|std::locale("")|std::locale()|g' \ ${WRKSRC}/glom/libglom/data_structure/glomconversions.cc \ ${WRKSRC}/glom/libglom/data_structure/glomconversions.h \ ${WRKSRC}/glom/libglom/utils.cc \ ${WRKSRC}/glom/mode_design/layout/layout_item_dialogs/comboentry_borderwidth.cc \ ${WRKSRC}/glom/mode_design/layout/layout_item_dialogs/dialog_group_by.cc \ ${WRKSRC}/glom/main.cc .include Index: head/devel/cmake/Makefile =================================================================== --- head/devel/cmake/Makefile (revision 392536) +++ head/devel/cmake/Makefile (revision 392537) @@ -1,77 +1,70 @@ # Created by: Kyle Martin # $FreeBSD$ PORTNAME= cmake PORTVERSION= 3.2.3 -PORTREVISION?= 1 +PORTREVISION?= 2 CATEGORIES= devel MASTER_SITES= http://www.cmake.org/files/v3.2/ MAINTAINER= kde@FreeBSD.org COMMENT?= Cross-platform Makefile generator LICENSE= BSD3CLAUSE USE_KDE4= # env CONFIGURE_ENV= MAKE=make CONFIGURE_ARGS= --prefix=${PREFIX} \ --datadir="/${DATADIR_REL}" \ --docdir="/${DOCSDIR_REL}" \ --system-libs \ --parallel=${MAKE_JOBS_NUMBER} \ --init="${PATCHDIR}/InitialCache.cmake" .if !defined(CMAKE_MODULES) OPTIONS_DEFINE= DOCS MANPAGES OPTIONS_DEFAULT=MANPAGES OPTIONS_SUB= yes +USES+= libarchive HAS_CONFIGURE= yes LIB_DEPENDS= libcurl.so:${PORTSDIR}/ftp/curl \ libexpat.so:${PORTSDIR}/textproc/expat2 \ libjsoncpp.so:${PORTSDIR}/devel/jsoncpp RUN_DEPENDS= ${LOCALBASE}/share/cmake/Modules/CMake.cmake:${PORTSDIR}/devel/cmake-modules MANPAGES_BUILD_DEPENDS= sphinx-build:${PORTSDIR}/textproc/py-sphinx MANPAGES_CONFIGURE_ON= --sphinx-man .endif .include .if defined(STRIP) && ${STRIP} != "" && !defined(WITH_DEBUG) INSTALL_TARGET= install/strip .endif - -.if !defined(CMAKE_MODULES) -# CMake >= 3.1.0 needs libarchive3 because it calls -# archive_entry_copy_sourcepath_w and archive_write_set_format_7zip. -.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1000009 -LIB_DEPENDS+= libarchive.so.13:${PORTSDIR}/archivers/libarchive -.endif # ${OPSYS} == FreeBSD && ${OSVERSION} < 1000009 -.endif # !defined(CMAKE_MODULES) post-patch: @(${FIND} ${WRKSRC}/Modules -name "*.cmake" -print0; \ ${FIND} ${WRKSRC}/Tests -name "CMakeLists.txt" -print0 ) | \ ${XARGS} -0 -n 100 ${REINPLACE_CMD} -e 's,/usr/local,${LOCALBASE},g; \ s,/usr/X11R6,${LOCALBASE},g' @${REINPLACE_CMD} -e 's,/usr/local,${LOCALBASE},g' \ ${WRKSRC}/Source/cmLocalGenerator.cxx \ ${WRKSRC}/Source/CPack/cmCPackGenerator.cxx \ ${WRKSRC}/bootstrap @${REINPLACE_CMD} -e 's,/opt/kde4,${KDE4_PREFIX},g' \ ${WRKSRC}/Modules/FindKDE4.cmake @${REINPLACE_CMD} -e 's,/usr/include,${LOCALBASE}/include,' \ ${WRKSRC}/Modules/FindDCMTK.cmake @${FIND} ${WRKSRC} -name "*.bak" -delete -o -name "*.orig" -delete # cmake-gui(1) is installed by devel/cmake-gui. Remove the man page's source to # prevent it from being built/installed by devel/cmake. ${RM} ${WRKSRC}/Help/manual/cmake-gui.1.rst .if !defined(CMAKE_MODULES) post-install: ${INSTALL_DATA} ${WRKSRC}/Auxiliary/cmake-mode.el ${STAGEDIR}${PREFIX}/share/emacs/site-lisp .endif .include Index: head/devel/gvfs/Makefile =================================================================== --- head/devel/gvfs/Makefile (revision 392536) +++ head/devel/gvfs/Makefile (revision 392537) @@ -1,101 +1,97 @@ # Created by: Michael Johnson # $FreeBSD$ # $MCom: ports/trunk/devel/gvfs/Makefile 19827 2014-08-24 08:15:41Z gusi $ PORTNAME= gvfs PORTVERSION= 1.20.3 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome3 MAINTAINER= gnome@FreeBSD.org COMMENT= GNOME virtual file system BUILD_DEPENDS= docbook-xsl>=0:${PORTSDIR}/textproc/docbook-xsl LIB_DEPENDS= libdbus-1.so:${PORTSDIR}/devel/dbus \ libsoup-gnome-2.4.so:${PORTSDIR}/devel/libsoup-gnome \ libgcrypt.so:${PORTSDIR}/security/libgcrypt \ libgnome-keyring.so:${PORTSDIR}/security/libgnome-keyring PORTSCOUT= limitw:1,even -USES= gettext gmake libtool pathfix pkgconfig tar:xz +USES= gettext gmake libarchive libtool pathfix pkgconfig tar:xz USE_GNOME= glib20 gnomeprefix intlhack intltool libxslt:build GNU_CONFIGURE= yes CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib CONFIGURE_ARGS= --disable-obexftp \ --disable-bluray \ --disable-afc CONFIGURE_ARGS+=\ --disable-gudev \ --disable-libsystemd-login \ --disable-udisks2 \ --disable-gdu \ --disable-udev \ --disable-goa \ --disable-keyring \ --disable-bluray \ --disable-libmtp \ --disable-gtk INSTALL_TARGET= install-strip GLIB_SCHEMAS= org.gnome.system.gvfs.enums.xml OPTIONS_SUB= yes OPTIONS_DEFINE= AVAHI SAMBA GPHOTO2 CDDA HAL FUSE OPTIONS_DEFAULT=AVAHI SAMBA GPHOTO2 CDDA HAL FUSE CDDA_DESC= CDDA (enables HAL) GPHOTO2_DESC= Gphoto 2 camera support (enables HAL) SAMBA_DESC= Samba support FUSE_USES= fuse FUSE_CONFIGURE_ENABLE= fuse SAMBA_LIB_DEPENDS= libsmbclient.so:${PORTSDIR}/net/samba-libsmbclient SAMBA_CONFIGURE_ENABLE= samba CDDA_LIB_DEPENDS= libcdio_paranoia.so:${PORTSDIR}/sysutils/libcdio-paranoia CDDA_CONFIGURE_ENABLE= cdda GPHOTO2_LIB_DEPENDS= libgphoto2.so:${PORTSDIR}/graphics/libgphoto2 GPHOTO2_CONFIGURE_ENABLE= gphoto2 AVAHI_LIB_DEPENDS= libavahi-client.so:${PORTSDIR}/net/avahi-app AVAHI_CONFIGURE_ENABLE= avahi .include - -.if ${OSVERSION} < 1000000 -LIB_DEPENDS+= libarchive.so.13:${PORTSDIR}/archivers/libarchive -.endif .if ${PORT_OPTIONS:MSAMBA} GLIB_SCHEMAS+= org.gnome.system.smb.gschema.xml .endif .if ${PORT_OPTIONS:MAVAHI} GLIB_SCHEMAS+= org.gnome.system.dns_sd.gschema.xml .endif .if ${PORT_OPTIONS:MHAL} || ${PORT_OPTIONS:MGPHOTO2} || ${PORT_OPTIONS:MCDDA} LIB_DEPENDS+= libhal.so:${PORTSDIR}/sysutils/hal RUN_DEPENDS+= gnome-mount:${PORTSDIR}/sysutils/gnome-mount PLIST_SUB+= HAL="" .else CONFIGURE_ARGS+=--disable-hal PLIST_SUB+= HAL="@comment " .endif # https://bugzilla.gnome.org/show_bug.cgi?id=722411 post-patch: @${RM} ${WRKSRC}/monitor/hal/gvfsdbusutils.[ch] post-install: @${MKDIR} ${STAGEDIR}${DATADIR}/remote-volume-monitors ${TOUCH} ${STAGEDIR}${DATADIR}/remote-volume-monitors/.keep .include Index: head/devel/libtifiles2/Makefile =================================================================== --- head/devel/libtifiles2/Makefile (revision 392536) +++ head/devel/libtifiles2/Makefile (revision 392537) @@ -1,35 +1,28 @@ # $FreeBSD$ PORTNAME= libtifiles2 PORTVERSION= 1.1.6 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel MASTER_SITES= SF/tilp/tilp2-linux/tilp2-1.17 MAINTAINER= tijl@FreeBSD.org COMMENT= TI calculator file types library LICENSE= GPLv2 LIB_DEPENDS= libticonv.so:${PORTSDIR}/converters/libticonv USE_GNOME= glib20 USE_LDCONFIG= yes -USES= gmake libtool pathfix pkgconfig tar:bzip2 +USES= gmake libarchive libtool pathfix pkgconfig tar:bzip2 OPTIONS_DEFINE= NLS OPTIONS_SUB= yes NLS_USES= gettext NLS_CONFIGURE_ENABLE= nls GNU_CONFIGURE= yes -CONFIGURE_ENV= ARCHIVE_CFLAGS=" " ARCHIVE_LIBS="-larchive" -CPPFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib - -post-patch: - @${REINPLACE_CMD} -e 's/libarchive/glib-2.0,ticonv/' \ - -e '/Requires:/d' ${WRKSRC}/tifiles2.pc.in .include Index: head/graphics/libgxps/files/patch-configure =================================================================== --- head/graphics/libgxps/files/patch-configure (revision 392536) +++ head/graphics/libgxps/files/patch-configure (nonexistent) @@ -1,69 +0,0 @@ ---- configure.orig 2014-03-24 09:05:21.575540501 +0000 -+++ configure 2014-03-24 09:05:37.706538416 +0000 -@@ -13236,13 +13236,11 @@ - gobject-2.0 >= \$GLIB_REQUIRED - gio-2.0 >= \$GLIB_REQUIRED - cairo >= \$CAIRO_REQUIRED -- libarchive >= \$LIBARCHIVE_REQUIRED - freetype2\""; } >&5 - ($PKG_CONFIG --exists --print-errors "glib-2.0 >= $GLIB_REQUIRED - gobject-2.0 >= $GLIB_REQUIRED - gio-2.0 >= $GLIB_REQUIRED - cairo >= $CAIRO_REQUIRED -- libarchive >= $LIBARCHIVE_REQUIRED - freetype2") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 -@@ -13251,7 +13249,6 @@ - gobject-2.0 >= $GLIB_REQUIRED - gio-2.0 >= $GLIB_REQUIRED - cairo >= $CAIRO_REQUIRED -- libarchive >= $LIBARCHIVE_REQUIRED - freetype2" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes - else -@@ -13268,13 +13265,11 @@ - gobject-2.0 >= \$GLIB_REQUIRED - gio-2.0 >= \$GLIB_REQUIRED - cairo >= \$CAIRO_REQUIRED -- libarchive >= \$LIBARCHIVE_REQUIRED - freetype2\""; } >&5 - ($PKG_CONFIG --exists --print-errors "glib-2.0 >= $GLIB_REQUIRED - gobject-2.0 >= $GLIB_REQUIRED - gio-2.0 >= $GLIB_REQUIRED - cairo >= $CAIRO_REQUIRED -- libarchive >= $LIBARCHIVE_REQUIRED - freetype2") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 -@@ -13283,7 +13278,6 @@ - gobject-2.0 >= $GLIB_REQUIRED - gio-2.0 >= $GLIB_REQUIRED - cairo >= $CAIRO_REQUIRED -- libarchive >= $LIBARCHIVE_REQUIRED - freetype2" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes - else -@@ -13309,14 +13303,12 @@ - gobject-2.0 >= $GLIB_REQUIRED - gio-2.0 >= $GLIB_REQUIRED - cairo >= $CAIRO_REQUIRED -- libarchive >= $LIBARCHIVE_REQUIRED - freetype2" 2>&1` - else - GXPS_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "glib-2.0 >= $GLIB_REQUIRED - gobject-2.0 >= $GLIB_REQUIRED - gio-2.0 >= $GLIB_REQUIRED - cairo >= $CAIRO_REQUIRED -- libarchive >= $LIBARCHIVE_REQUIRED - freetype2" 2>&1` - fi - # Put the nasty error message in config.log where it belongs -@@ -13326,7 +13318,6 @@ - gobject-2.0 >= $GLIB_REQUIRED - gio-2.0 >= $GLIB_REQUIRED - cairo >= $CAIRO_REQUIRED -- libarchive >= $LIBARCHIVE_REQUIRED - freetype2) were not met: - - $GXPS_PKG_ERRORS Property changes on: head/graphics/libgxps/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/libgxps/files/patch-libgxps.pc.in =================================================================== --- head/graphics/libgxps/files/patch-libgxps.pc.in (revision 392536) +++ head/graphics/libgxps/files/patch-libgxps.pc.in (nonexistent) @@ -1,11 +0,0 @@ ---- libgxps.pc.in.orig 2010-09-05 12:21:14.000000000 +0200 -+++ libgxps.pc.in 2014-03-25 17:14:35.000000000 +0100 -@@ -6,6 +6,6 @@ - Name: libgxps - Description: XPS Documents library - Version: @VERSION@ --Requires: gio-2.0 >= @GLIB_REQUIRED@ libarchive >= @LIBARCHIVE_REQUIRED@ cairo >= @CAIRO_REQUIRED@ gobject-2.0 >= @GLIB_REQUIRED@ --Libs: -L${libdir} -lgxps -+Requires: gio-2.0 >= @GLIB_REQUIRED@ cairo >= @CAIRO_REQUIRED@ gobject-2.0 >= @GLIB_REQUIRED@ -+Libs: -L${libdir} -lgxps -larchive - Cflags: -I${includedir} Property changes on: head/graphics/libgxps/files/patch-libgxps.pc.in ___________________________________________________________________ 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/libgxps/Makefile =================================================================== --- head/graphics/libgxps/Makefile (revision 392536) +++ head/graphics/libgxps/Makefile (revision 392537) @@ -1,28 +1,27 @@ # Created by: Gustau Perez # $FreeBSD$ # $MCom: ports/trunk/graphics/libgxps/Makefile 19811 2014-08-14 12:45:34Z gusi $ PORTNAME= libgxps PORTVERSION= 0.2.2 PORTREVISION= 1 CATEGORIES= graphics gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome3 MAINTAINER= gnome@FreeBSD.org COMMENT= GObject based library for rendering XPS documents LIB_DEPENDS= libfreetype.so:${PORTSDIR}/print/freetype2 \ libtiff.so:${PORTSDIR}/graphics/tiff \ liblcms2.so:${PORTSDIR}/graphics/lcms2 -USES= gettext gmake jpeg libtool pathfix pkgconfig tar:xz +USES= gettext gmake jpeg libtool libarchive pathfix pkgconfig tar:xz USE_LDCONFIG= yes USE_GNOME= cairo gnomeprefix glib20 intlhack GNU_CONFIGURE= yes -CPPFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib -larchive +MAKE_ARGS+= V=1 CONFIGURE_ARGS+= --enable-introspection=no INSTALL_TARGET= install-strip .include Index: head/graphics/zathura-cb/Makefile =================================================================== --- head/graphics/zathura-cb/Makefile (revision 392536) +++ head/graphics/zathura-cb/Makefile (revision 392537) @@ -1,30 +1,29 @@ # $FreeBSD$ PORTNAME= zathura-cb PORTVERSION= 0.1.4 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics MASTER_SITES= http://pwmt.org/projects/zathura-cb/download/ MAINTAINER= mike.d.ft402@gmail.com COMMENT= Comic book plugin for Zathura PDF viewer LICENSE= zlib LICENSE_NAME= zlib license LICENSE_FILE= ${WRKSRC}/LICENSE LICENSE_PERMS= dist-mirror pkg-mirror auto-accept -LIB_DEPENDS= libarchive.so:${PORTSDIR}/archivers/libarchive BUILD_DEPENDS= zathura:${PORTSDIR}/graphics/zathura RUN_DEPENDS= zathura:${PORTSDIR}/graphics/zathura PLIST_FILES= lib/zathura/cb.so share/applications/zathura-cb.desktop -USES= desktop-file-utils gmake pkgconfig +USES= desktop-file-utils gmake pkgconfig libarchive USE_GNOME= glib20 gtk30 USE_OPENSSL= yes post-install: ${STRIP_CMD} ${STAGEDIR}${LOCALBASE}/lib/zathura/cb.so .include Index: head/multimedia/totem-pl-parser/Makefile =================================================================== --- head/multimedia/totem-pl-parser/Makefile (revision 392536) +++ head/multimedia/totem-pl-parser/Makefile (revision 392537) @@ -1,40 +1,37 @@ # Created by: Michael Johnson # $FreeBSD$ # $MCom: ports/trunk/multimedia/totem-pl-parser/Makefile 20031 2014-11-02 21:47:55Z kwm $ PORTNAME= totem-pl-parser PORTVERSION= 3.10.3 +PORTREVISION= 1 CATEGORIES= multimedia gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome2 MAINTAINER= gnome@FreeBSD.org COMMENT= GObject-based library to parse a host of playlist formats LIB_DEPENDS= libgmime-2.6.so:${PORTSDIR}/mail/gmime26 \ libsoup-gnome-2.4.so:${PORTSDIR}/devel/libsoup-gnome -USES= gettext gmake libtool pathfix pkgconfig tar:xz +USES= gettext gmake libarchive libtool pathfix pkgconfig tar:xz USE_GNOME= glib20 gnomeprefix intlhack introspection:build \ libxml2 USE_LDCONFIG= yes GNU_CONFIGURE= yes CONFIGURE_ARGS= --enable-libarchive -CONFIGURE_ENV= ARCHIVE_CFLAGS="-I/usr/include" \ - ARCHIVE_LIBS="-L/usr/lib -larchive" -CPPFLAGS+= -I${LOCALBASE}/include -LIBS+= -L${LOCALBASE}/lib INSTALL_TARGET= install-strip OPTIONS_SUB= yes OPTIONS_DEFINE= QUVI OPTIONS_DEFAULT=QUVI QUVI_DESC= Flash media stream URL support QUVI_CONFIGURE_ENABLE= quvi QUVI_LIB_DEPENDS= libquvi-0.9.so:${PORTSDIR}/multimedia/libquvi09 post-patch: @${REINPLACE_CMD} -e 's|pkg_modules libarchive"|pkg_modules"|g' \ ${WRKSRC}/configure .include Index: head/sysutils/archivemount/Makefile =================================================================== --- head/sysutils/archivemount/Makefile (revision 392536) +++ head/sysutils/archivemount/Makefile (revision 392537) @@ -1,18 +1,19 @@ # Created by: Evgeny Zhirnov # $FreeBSD$ PORTNAME= archivemount PORTVERSION= 0.6.1 +PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= http://www.cybernoia.de/software/archivemount/ MAINTAINER= jirnov@gmail.com COMMENT= Mount archives with FUSE GNU_CONFIGURE= yes -USES= fuse pkgconfig iconv gmake +USES= fuse pkgconfig iconv gmake libarchive PLIST_FILES= bin/archivemount \ man/man1/archivemount.1.gz .include Index: head/sysutils/rdup/Makefile =================================================================== --- head/sysutils/rdup/Makefile (revision 392536) +++ head/sysutils/rdup/Makefile (revision 392537) @@ -1,26 +1,23 @@ # Created by: Charlie Kester # $FreeBSD$ PORTNAME= rdup PORTVERSION= 1.1.14 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= sysutils MASTER_SITES= http://archive.miek.nl/projects/rdup/ MAINTAINER= rm@FreeBSD.org COMMENT= Tool to generate (incremental) backup file list LICENSE= GPLv3 LIB_DEPENDS= libglib-2.0.so:${PORTSDIR}/devel/glib20 \ libpcre.so:${PORTSDIR}/devel/pcre \ - libarchive.so:${PORTSDIR}/archivers/libarchive \ libnettle.so:${PORTSDIR}/security/nettle -USES= gmake pkgconfig tar:bzip2 +USES= gmake libarchive pkgconfig tar:bzip2 USE_AUTOTOOLS= autoconf MAKEFILE= GNUmakefile - -LDFLAGS+= -L${LOCALBASE}/lib .include Index: head/sysutils/tracker/Makefile =================================================================== --- head/sysutils/tracker/Makefile (revision 392536) +++ head/sysutils/tracker/Makefile (revision 392537) @@ -1,141 +1,140 @@ # Created by: Michael Johnson # $FreeBSD$ # $MCom: ports/trunk/sysutils/tracker/Makefile 20045 2014-11-10 06:23:59Z gusi $ PORTNAME= tracker PORTVERSION= 1.2.6 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= sysutils gnome MASTER_SITES= GNOME MAINTAINER= gnome@FreeBSD.org COMMENT= Object database, tag/metadata database, search tool and indexer LIB_DEPENDS= libdbus-glib-1.so:${PORTSDIR}/devel/dbus-glib \ libgmime-2.6.so:${PORTSDIR}/mail/gmime26 \ libhal.so:${PORTSDIR}/sysutils/hal \ libraptor.so:${PORTSDIR}/textproc/raptor \ libuuid.so:${PORTSDIR}/misc/e2fsprogs-libuuid \ libicutu.so:${PORTSDIR}/devel/icu \ libmediaart-1.0.so:${PORTSDIR}/multimedia/libmediaart \ librest-0.7.so:${PORTSDIR}/devel/librest RUN_DEPENDS= xdg-desktop-icon:${PORTSDIR}/devel/xdg-utils \ o3totxt:${PORTSDIR}/converters/o3read \ pdftotext:${PORTSDIR}/graphics/poppler-utils \ w3m:${PORTSDIR}/www/w3m PLIST_SUB= TRACKER_VER="1.0" -USES= gettext gmake libtool pathfix pkgconfig tar:xz +USES= gettext gmake libarchive libtool pathfix pkgconfig tar:xz USE_GNOME= gnomeprefix gtk30 intlhack introspection:build USE_LDCONFIG= yes USE_SQLITE= 3 USE_GSTREAMER1= yes GNU_CONFIGURE= yes INSTALLS_ICONS= yes -CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -L${LOCALBASE}/lib/tracker CONFIGURE_ARGS= --enable-video-extractor=gstreamer \ --with-session-bus-services-dir=${LOCALBASE}/share/dbus-1/services \ --disable-libiptcdata --enable-miner-fs \ --disable-meegotouch --disable-miner-flickr \ --enable-icu-charset-detection \ --disable-enca \ --enable-tracker-preferences \ --disable-libosinfo \ --enable-generic-media-extractor=gstreamer # disable evolution miner until tracker fixes the dep CONFIGURE_ARGS+= --disable-miner-evolution INSTALL_TARGET= install-strip GLIB_SCHEMAS= org.freedesktop.Tracker.DB.gschema.xml \ org.freedesktop.Tracker.Extract.gschema.xml \ org.freedesktop.Tracker.FTS.gschema.xml \ org.freedesktop.Tracker.Miner.Files.gschema.xml \ org.freedesktop.Tracker.Store.gschema.xml \ org.freedesktop.Tracker.Writeback.gschema.xml \ org.freedesktop.Tracker.enums.xml \ org.freedesktop.Tracker.gschema.xml OPTIONS_DEFINE= AUDIO_MINERS DOCUMENT_MINERS GRAPHIC_MINERS WEB_MINERS OPTIONS_DEFAULT= AUDIO_MINERS DOCUMENT_MINERS GRAPHIC_MINERS WEB_MINERS_DESC= Support for Firefox, Thunderbird and Evolution AUDIO_MINERS_DESC= Support for audio formats DOCUMENT_MINERS_DESC= Support for some sort of documents (pdf, ps, xps, office) GRAPHIC_MINERS_DESC= Support for some graphic formats (gif, png, tiff) .include .if ${PORT_OPTIONS:MWEB_MINERS} CONFIGURE_ARGS+= --enable-miner-firefox \ --enable-miner-thunderbird BUILD_DEPENDS+= firefox>=0:${PORTSDIR}/www/firefox \ thunderbird>=0:${PORTSDIR}/mail/thunderbird RUN_DEPENDS+= firefox>=0:${PORTSDIR}/www/firefox \ thunderbird>=0:${PORTSDIR}/mail/thunderbird PLIST_SUB+= WEB_MINERS="" .else CONFIGURE_ARGS+= --disable-miner-evolution --disable-miner-firefox \ --disable-miner-thunderbird PLIST_SUB+= WEB_MINERS="@comment " .endif .if ${PORT_OPTIONS:MAUDIO_MINERS} LIB_DEPENDS+= libtotem-plparser.so:${PORTSDIR}/multimedia/totem-pl-parser \ libFLAC.so:${PORTSDIR}/audio/flac \ libvorbis.so:${PORTSDIR}/audio/libvorbis \ libcue.so:${PORTSDIR}/textproc/libcue \ libogg.so:${PORTSDIR}/audio/libogg \ libtag.so:${PORTSDIR}/audio/taglib CONFIGURE_ARGS+= --enable-libvorbis --enable-libflac \ --enable-taglib --enable-mp3 \ --enable-libcue --enable-playlist PLIST_SUB+= AUDIO_MINERS="" .else CONFIGURE_ARGS+= --disable-libvorbis --disable-libflac \ --disable-taglib --disable-mp3 \ --disable-libcue --disable-playlist PLIST_SUB+= AUDIO_MINERS="@comment " .endif .if ${PORT_OPTIONS:MDOCUMENT_MINERS} LIB_DEPENDS+= libpoppler-glib.so:${PORTSDIR}/graphics/poppler-glib \ libgxps.so:${PORTSDIR}/graphics/libgxps \ libgsf-1.so:${PORTSDIR}/devel/libgsf \ libexempi.so:${PORTSDIR}/textproc/exempi \ libwv.so:${PORTSDIR}/textproc/wv CONFIGURE_ARGS+= --enable-libgxps --enable-poppler \ --enable-libxml2 --enable-exif \ --enable-libgsf --enable-abiword \ --enable-dvi --enable-ps \ --enable-exempi --enable-text PLIST_SUB+= DOCUMENT_MINERS="" .else CONFIGURE_ARGS+= --disable-libgxps --disable-poppler \ --disable-libxml2 --disable-exif \ --disable-libgsf --disable-abiword \ --disable-dvi --disable-ps \ --disable-exempi --disable-text PLIST_SUB+= DOCUMENT_MINERS="@comment " .endif .if ${PORT_OPTIONS:MGRAPHIC_MINERS} LIB_DEPENDS+= libexif.so:${PORTSDIR}/graphics/libexif \ libgif.so:${PORTSDIR}/graphics/giflib \ libpng.so:${PORTSDIR}/graphics/png \ libtiff.so:${PORTSDIR}/graphics/tiff CONFIGURE_ARGS+= --enable-libgif \ --enable-libjpeg \ --enable-libtiff \ --enable-icon \ --enable-libpng15 PLIST_SUB+= GRAPHIC_MINERS="" .else CONFIGURE_ARGS+= --disable-libgif \ --disable-libjpeg \ --disable-libtiff \ --disable-icon \ --disable-libpng15 PLIST_SUB+= GRAPHIC_MINERS="@comment " .endif .include