From owner-svn-ports-head@freebsd.org Thu Sep 15 20:02:14 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 237EABDBFA2; Thu, 15 Sep 2016 20:02:14 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F2A4A6C5; Thu, 15 Sep 2016 20:02:13 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8FK2Dps042425; Thu, 15 Sep 2016 20:02:13 GMT (envelope-from thierry@FreeBSD.org) Received: (from thierry@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8FK2C2U042422; Thu, 15 Sep 2016 20:02:12 GMT (envelope-from thierry@FreeBSD.org) Message-Id: <201609152002.u8FK2C2U042422@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: thierry set sender to thierry@FreeBSD.org using -f From: Thierry Thomas Date: Thu, 15 Sep 2016 20:02:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422224 - in head/deskutils/pinot: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 20:02:14 -0000 Author: thierry Date: Thu Sep 15 20:02:12 2016 New Revision: 422224 URL: https://svnweb.freebsd.org/changeset/ports/422224 Log: Unbreak by switching to GitHub and upgrade to the latest (no release yet). Deleted: head/deskutils/pinot/files/ Modified: head/deskutils/pinot/Makefile head/deskutils/pinot/distinfo head/deskutils/pinot/pkg-plist Modified: head/deskutils/pinot/Makefile ============================================================================== --- head/deskutils/pinot/Makefile Thu Sep 15 19:53:01 2016 (r422223) +++ head/deskutils/pinot/Makefile Thu Sep 15 20:02:12 2016 (r422224) @@ -2,55 +2,53 @@ # $FreeBSD$ PORTNAME= pinot -PORTVERSION= 1.06 -PORTREVISION= 12 +PORTVERSION= 1.09 CATEGORIES= deskutils -MASTER_SITES= GOOGLE_CODE -#MASTER_SITES= http://colinf.chez.com/pinot/ -# http://amra.dyndns.org/ MAINTAINER= thierry@FreeBSD.org COMMENT= Personal search and metasearch for the Free Desktop LICENSE= GPLv2 -BROKEN= Unfetchable (google code has gone away) - -BUILD_DEPENDS= desktop-file-install:devel/desktop-file-utils \ +BUILD_DEPENDS= desktop-file-install:devel/desktop-file-utils \ update-mime-database:misc/shared-mime-info LIB_DEPENDS= libxapian.so:databases/xapian-core \ - libgtkmm-2.4.so:x11-toolkits/gtkmm24 \ + libfontconfig.so:x11-fonts/fontconfig \ + libfreetype.so:print/freetype2 \ libexttextcat-2.0.so:textproc/libexttextcat \ libdbus-glib-1.so:devel/dbus-glib \ - libxml++-2.6.so:textproc/libxml++26 \ + libdbus-1.so:devel/dbus \ + libxml++-2.6.so:textproc/libxml++26 \ libboost_thread.so:devel/boost-libs \ libexif.so:graphics/libexif \ libexiv2.so:graphics/exiv2 \ - libgmime-2.4.so:mail/gmime24 \ - libtag.so:audio/taglib \ + libgmime-2.4.so:mail/gmime24 \ + libtag.so:audio/taglib \ libcurl.so:ftp/curl RUN_DEPENDS= update-mime-database:misc/shared-mime-info \ antiword:textproc/antiword \ xdg-open:devel/xdg-utils \ - ${LOCALBASE}/libexec/xpdf/pdftotext:graphics/xpdf \ - catppt:textproc/catdoc \ - unrtf:textproc/unrtf \ + catppt:textproc/catdoc \ + unrtf:textproc/unrtf \ catdvi:print/catdvi \ - bash:shells/bash + bash:shells/bash \ + ${LOCALBASE}/libexec/xpdf/pdftotext:graphics/xpdf -PROJECTHOST= ${PORTNAME}-search +USE_GITHUB= yes +GH_ACCOUNT= FabriceColin +GH_TAGNAME= c14d6d5 GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-http=curl --with-ssl=${OPENSSLBASE} --enable-libarchive \ --enable-mempool=no -CONFIGURE_ENV= MKDIR_P="${MKDIR}" +CONFIGURE_ENV= MKDIR_P="${MKDIR}" TEXTCAT_LIBS="-lexttextcat-2.0" CPPFLAGS+= -I${LOCALBASE}/include LIBS+= -L${LOCALBASE}/lib -lboost_system -USES= execinfo gettext libarchive libtool pkgconfig python \ - shebangfix sqlite:3 -USE_OPENSSL= yes +USES= autoreconf execinfo gettext libarchive libtool pkgconfig python \ + shebangfix sqlite:3 ssl USE_XORG= pixman +USE_GNOME= atkmm cairo cairomm glibmm gtk20 gtkmm24 libsigc++20 libxml2 pangomm USE_LDCONFIG= ${PREFIX}/lib/pinot/backends ${PREFIX}/lib/pinot/filters SHEBANG_FILES= scripts/bash/*.sh Modified: head/deskutils/pinot/distinfo ============================================================================== --- head/deskutils/pinot/distinfo Thu Sep 15 19:53:01 2016 (r422223) +++ head/deskutils/pinot/distinfo Thu Sep 15 20:02:12 2016 (r422224) @@ -1,2 +1,3 @@ -SHA256 (pinot-1.06.tar.gz) = bba6f412553890ef7cccd6d7bb28df9a6c4d122ea74a2902e5de33953cd1872d -SIZE (pinot-1.06.tar.gz) = 1066326 +TIMESTAMP = 1473961314 +SHA256 (FabriceColin-pinot-1.09-c14d6d5_GH0.tar.gz) = 24faced5089ebe9df143a7ad4a87b9beaf639533e2c113b6de3ed0f6cdce8394 +SIZE (FabriceColin-pinot-1.09-c14d6d5_GH0.tar.gz) = 786374 Modified: head/deskutils/pinot/pkg-plist ============================================================================== --- head/deskutils/pinot/pkg-plist Thu Sep 15 19:53:01 2016 (r422223) +++ head/deskutils/pinot/pkg-plist Thu Sep 15 20:02:12 2016 (r422224) @@ -4,12 +4,12 @@ bin/pinot-index bin/pinot-label bin/pinot-prefs bin/pinot-search -etc/pinot/external-filters.xml -etc/pinot/globalconfig.xml -etc/pinot/textcat31_conf.txt -etc/pinot/textcat32_conf.txt -etc/pinot/textcat3_conf.txt -etc/pinot/textcat_conf.txt +%%ETCDIR%%/external-filters.xml +%%ETCDIR%%/globalconfig.xml +%%ETCDIR%%/textcat31_conf.txt +%%ETCDIR%%/textcat32_conf.txt +%%ETCDIR%%/textcat3_conf.txt +%%ETCDIR%%/textcat_conf.txt etc/xdg/autostart/pinot-dbus-daemon.desktop include/pinot/ActionQueue.h include/pinot/CommandLine.h @@ -62,6 +62,7 @@ include/pinot/Url.h include/pinot/ViewHistory.h include/pinot/Visibility.h include/pinot/WebEngine.h +include/pinot/WorkerThread.h include/pinot/WorkerThreads.h include/pinot/cjkv/CJKVTokenizer.h include/pinot/filters/Filter.h @@ -70,23 +71,14 @@ include/pinot/filters/HtmlFilter.h include/pinot/filters/HtmlParser.h include/pinot/filters/TextFilter.h include/pinot/filters/XmlFilter.h -include/pinot/xdgmime/xdgmime.c -include/pinot/xdgmime/xdgmime.h -include/pinot/xdgmime/xdgmimealias.c -include/pinot/xdgmime/xdgmimealias.h -include/pinot/xdgmime/xdgmimecache.c -include/pinot/xdgmime/xdgmimecache.h -include/pinot/xdgmime/xdgmimeglob.c -include/pinot/xdgmime/xdgmimeglob.h -include/pinot/xdgmime/xdgmimeint.c -include/pinot/xdgmime/xdgmimeint.h -include/pinot/xdgmime/xdgmimemagic.c -include/pinot/xdgmime/xdgmimemagic.h -include/pinot/xdgmime/xdgmimeparent.c -include/pinot/xdgmime/xdgmimeparent.h lib/pinot/backends/libxapianbackend.so lib/pinot/backends/libxapianbackend.so.1 lib/pinot/backends/libxapianbackend.so.1.0.0 +lib/pinot/filters/libarchivefilter.so +lib/pinot/filters/libexiv2imagefilter.so +lib/pinot/filters/libexternalfilter.so +lib/pinot/filters/libmboxfilter.so +lib/pinot/filters/libtaglibfilter.so lib/pinot/libBasicUtils.a lib/pinot/libCollect.a lib/pinot/libCore.a @@ -95,21 +87,18 @@ lib/pinot/libIndex.a lib/pinot/libIndexSearch.a lib/pinot/libMonitor.a lib/pinot/libSQL.a +lib/pinot/libSQLDB.a +lib/pinot/libSQLite.a +lib/pinot/libThread.a lib/pinot/libTokenize.a lib/pinot/libUtils.a -lib/pinot/filters/libarchivefilter.so -%%CHMLIB%%lib/pinot/filters/libchmfilter.so -lib/pinot/filters/libexiv2imagefilter.so -lib/pinot/filters/libexternalfilter.so -lib/pinot/filters/libmboxfilter.so -lib/pinot/filters/libtaglibfilter.so man/man1/pinot-dbus-daemon.1.gz man/man1/pinot-index.1.gz man/man1/pinot-label.1.gz man/man1/pinot-search.1.gz man/man1/pinot.1.gz -share/applications/pinot.desktop share/applications/pinot-prefs.desktop +share/applications/pinot.desktop share/dbus-1/services/de.berlios.Pinot.service %%PORTDOCS%%%%DOCSDIR%%/AUTHORS %%PORTDOCS%%%%DOCSDIR%%/ChangeLog