From owner-svn-ports-head@freebsd.org Fri Sep 30 16:03:24 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 ADE07C039C5; Fri, 30 Sep 2016 16:03:24 +0000 (UTC) (envelope-from mat@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 8A521648; Fri, 30 Sep 2016 16:03:24 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8UG3NBR019978; Fri, 30 Sep 2016 16:03:23 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8UG3NZK019974; Fri, 30 Sep 2016 16:03:23 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201609301603.u8UG3NZK019974@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Fri, 30 Sep 2016 16:03:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422995 - in head: audio/libsndfile chinese/fcitx chinese/pyzy devel/codeblocks 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: Fri, 30 Sep 2016 16:03:24 -0000 Author: mat Date: Fri Sep 30 16:03:23 2016 New Revision: 422995 URL: https://svnweb.freebsd.org/changeset/ports/422995 Log: Catch stray dependencies, courtesy of the proxy-deps qa check. Sponsored by: Absolight Modified: head/audio/libsndfile/Makefile (contents, props changed) head/chinese/fcitx/Makefile (contents, props changed) head/chinese/pyzy/Makefile (contents, props changed) head/devel/codeblocks/Makefile (contents, props changed) Modified: head/audio/libsndfile/Makefile ============================================================================== --- head/audio/libsndfile/Makefile Fri Sep 30 15:50:43 2016 (r422994) +++ head/audio/libsndfile/Makefile Fri Sep 30 16:03:23 2016 (r422995) @@ -3,6 +3,7 @@ PORTNAME= libsndfile PORTVERSION= 1.0.26 +PORTREVISION= 1 CATEGORIES= audio MASTER_SITES= http://www.mega-nerd.com/libsndfile/files/ @@ -31,6 +32,7 @@ CPU_CLIP_VARS= MANUAL_PACKAGE_BUILD="WIT CPU_CLIP_CONFIGURE_OFF= --disable-cpu-clip EXTERNAL_LIB_DEPENDS= libFLAC.so:audio/flac \ + libogg.so:audio/libogg \ libvorbis.so:audio/libvorbis EXTERNAL_CONFIGURE_OFF= --disable-external-libs Modified: head/chinese/fcitx/Makefile ============================================================================== --- head/chinese/fcitx/Makefile Fri Sep 30 15:50:43 2016 (r422994) +++ head/chinese/fcitx/Makefile Fri Sep 30 16:03:23 2016 (r422995) @@ -3,7 +3,7 @@ PORTNAME= fcitx PORTVERSION= 4.2.9.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= chinese x11 MASTER_SITES= http://download.fcitx-im.org/fcitx/:fcitx \ http://download.fcitx-im.org/data/:data @@ -38,9 +38,10 @@ SUB_LIST+= PORTSDIR=${PORTSDIR} CONFLICTS= zh-scim-fcitx-3.* USE_GNOME= pango intltool libxml2 introspection -USE_XORG= x11 xext xkbfile +USE_XORG= x11 xext xkbfile sm ice USE_LDCONFIG= yes -USES= tar:xz cmake desktop-file-utils execinfo gettext iconv:wchar_t \ +USES= tar:xz cmake desktop-file-utils execinfo \ + gettext-tools:build,run gettext-runtime iconv:wchar_t \ pkgconfig shared-mime-info INSTALLS_ICONS= yes @@ -87,7 +88,7 @@ SUB_LIST+= GTK3_IM=xim .endif .if ${PORT_OPTIONS:MQT4} -USE_QT4+= qmake_build moc_build rcc_build uic_build dbus gui inputmethods +USE_QT4+= qmake_build moc_build rcc_build uic_build dbus gui inputmethods corelib USE_LDCONFIG+= ${PREFIX}/lib/fcitx/qt PLIST_SUB+= QT4="" .else Modified: head/chinese/pyzy/Makefile ============================================================================== --- head/chinese/pyzy/Makefile Fri Sep 30 15:50:43 2016 (r422994) +++ head/chinese/pyzy/Makefile Fri Sep 30 16:03:23 2016 (r422995) @@ -3,7 +3,7 @@ PORTNAME= pyzy PORTVERSION= 0.1.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= chinese MASTER_SITES= GOOGLE_CODE DISTFILES= ${DISTNAME}${EXTRACT_SUFX} @@ -18,7 +18,7 @@ BROKEN= Unfetchable (google code has go LIB_DEPENDS= libsqlite3.so:databases/sqlite3 -USES= compiler:c++11-lib gmake libtool pkgconfig python:build shebangfix +USES= compiler:c++11-lib gettext-runtime gmake libtool pkgconfig python:build shebangfix SHEBANG_FILES= data/db/android/create_db.py USE_GNOME= glib20 USE_LDCONFIG= yes Modified: head/devel/codeblocks/Makefile ============================================================================== --- head/devel/codeblocks/Makefile Fri Sep 30 15:50:43 2016 (r422994) +++ head/devel/codeblocks/Makefile Fri Sep 30 16:03:23 2016 (r422995) @@ -3,6 +3,7 @@ PORTNAME= codeblocks PORTVERSION= 16.01 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= SF/${PORTNAME}/Sources/${PORTVERSION} DISTNAME= ${PORTNAME}_${PORTVERSION} @@ -15,12 +16,15 @@ LICENSE_COMB= multi BUILD_DEPENDS= zip:archivers/zip LIB_DEPENDS= libboost_system.so:devel/boost-libs \ + libfontconfig.so:x11-fonts/fontconfig \ + libfreetype.so:print/freetype2 \ libhunspell-1.3.so:textproc/hunspell -USES= autoreconf compiler desktop-file-utils fam:gamin libtool pathfix \ - pkgconfig shared-mime-info +USES= autoreconf compiler desktop-file-utils fam:gamin \ + gettext-runtime libtool pathfix pkgconfig shared-mime-info USE_WX= 2.8 -WANT_UNICODE= yes +USE_GNOME= gtk20 cairo +USE_XORG= x11 GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-wx-config=${WX_CONFIG} --with-contrib-plugins=all \ --disable-pch