From owner-svn-ports-head@FreeBSD.ORG Mon Sep 2 22:31:40 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 3FC8230C; Mon, 2 Sep 2013 22:31:40 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1E54A2C4C; Mon, 2 Sep 2013 22:31:40 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r82MVd3g096262; Mon, 2 Sep 2013 22:31:39 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r82MVcXr096250; Mon, 2 Sep 2013 22:31:38 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201309022231.r82MVcXr096250@svn.freebsd.org> From: Baptiste Daroussin Date: Mon, 2 Sep 2013 22:31:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r326109 - in head: audio/gtkguitune games/ggz-gtk-games games/tuxmath graphics/pinpoint graphics/rawstudio japanese/ebview-gtk2 multimedia/libva-vdpau-driver x11-wm/gcompmgr x11/evilvte 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.14 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: Mon, 02 Sep 2013 22:31:40 -0000 Author: bapt Date: Mon Sep 2 22:31:37 2013 New Revision: 326109 URL: http://svnweb.freebsd.org/changeset/ports/326109 Log: Add an explicit dependency on pkgconf Modified: head/audio/gtkguitune/Makefile head/games/ggz-gtk-games/Makefile head/games/tuxmath/Makefile head/graphics/pinpoint/Makefile head/graphics/rawstudio/Makefile head/japanese/ebview-gtk2/Makefile head/multimedia/libva-vdpau-driver/Makefile head/x11-wm/gcompmgr/Makefile head/x11/evilvte/Makefile Modified: head/audio/gtkguitune/Makefile ============================================================================== --- head/audio/gtkguitune/Makefile Mon Sep 2 22:26:06 2013 (r326108) +++ head/audio/gtkguitune/Makefile Mon Sep 2 22:31:37 2013 (r326109) @@ -15,6 +15,7 @@ LIB_DEPENDS= gtkmm-2.4.1:${PORTSDIR}/x11 WRKSRC= ${WRKDIR}/${PORTNAME} +USES= pkgconfig GNU_CONFIGURE= yes INSTALLS_ICONS= yes Modified: head/games/ggz-gtk-games/Makefile ============================================================================== --- head/games/ggz-gtk-games/Makefile Mon Sep 2 22:26:06 2013 (r326108) +++ head/games/ggz-gtk-games/Makefile Mon Sep 2 22:31:37 2013 (r326109) @@ -11,6 +11,7 @@ COMMENT= The GGZ Gaming Zone - GTK+ Game RUN_DEPENDS= ${LOCALBASE}/bin/ggz-gtk:${PORTSDIR}/games/ggz-gtk-client +USES= pkgconfig USE_GNOME= gtk20 GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-debug Modified: head/games/tuxmath/Makefile ============================================================================== --- head/games/tuxmath/Makefile Mon Sep 2 22:26:06 2013 (r326108) +++ head/games/tuxmath/Makefile Mon Sep 2 22:31:37 2013 (r326109) @@ -23,7 +23,7 @@ WRKSRC= ${WRKDIR}/${PORTNAME}_w_fonts-$ USE_GNOME= libxml2 USE_SDL= image mixer net pango sdl -USES= iconv gmake perl5 +USES= iconv gmake perl5 pkgconfig GNU_CONFIGURE= yes CONFIGURE_ENV= T4K_COMMON_CFLAGS="-I${T4K_WRKSRC}/src" \ T4K_COMMON_LIBS="${T4K_WRKSRC}/src/.libs/libt4k_common.a" \ Modified: head/graphics/pinpoint/Makefile ============================================================================== --- head/graphics/pinpoint/Makefile Mon Sep 2 22:26:06 2013 (r326108) +++ head/graphics/pinpoint/Makefile Mon Sep 2 22:31:37 2013 (r326109) @@ -20,7 +20,7 @@ USE_GL= gl USE_GMAKE= yes USE_GNOME= librsvg2 GNU_CONFIGURE= yes -USES= pathfix +USES= pathfix pkgconfig OPTIONS_DEFINE= GST GST_DESC= Live videos as slide backgrounds Modified: head/graphics/rawstudio/Makefile ============================================================================== --- head/graphics/rawstudio/Makefile Mon Sep 2 22:26:06 2013 (r326108) +++ head/graphics/rawstudio/Makefile Mon Sep 2 22:31:37 2013 (r326109) @@ -1,9 +1,5 @@ -# New ports collection makefile for: Rawstudio -# Date created: 2008-04-23 -# Whom: Alex Samorukov -# +# Created by: Alex Samorukov # $FreeBSD$ -# PORTNAME= rawstudio PORTVERSION= 2.0 @@ -31,7 +27,7 @@ GNU_CONFIGURE= yes CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib USE_GMAKE= yes -USES= gettext +USES= gettext pkgconfig USE_GNOME= gtk20 libxml2 gconf2 desktopfileutils gnomehack USE_SQLITE= 3 USE_LDCONFIG= yes Modified: head/japanese/ebview-gtk2/Makefile ============================================================================== --- head/japanese/ebview-gtk2/Makefile Mon Sep 2 22:26:06 2013 (r326108) +++ head/japanese/ebview-gtk2/Makefile Mon Sep 2 22:31:37 2013 (r326109) @@ -14,6 +14,7 @@ LIB_DEPENDS= eb:${PORTSDIR}/japanese/eb CONFLICTS= ja-ebview-0* +USES= pkgconfig USE_GNOME= gtk20 USE_GMAKE= yes GNU_CONFIGURE= yes Modified: head/multimedia/libva-vdpau-driver/Makefile ============================================================================== --- head/multimedia/libva-vdpau-driver/Makefile Mon Sep 2 22:26:06 2013 (r326108) +++ head/multimedia/libva-vdpau-driver/Makefile Mon Sep 2 22:31:37 2013 (r326109) @@ -18,7 +18,7 @@ BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgc LICENSE_FILE_GPLv2= ${WRKSRC}/COPYING USE_BZIP2= yes -USES= gmake +USES= gmake pkgconfig USE_GL= gl GNU_CONFIGURE= yes Modified: head/x11-wm/gcompmgr/Makefile ============================================================================== --- head/x11-wm/gcompmgr/Makefile Mon Sep 2 22:26:06 2013 (r326108) +++ head/x11-wm/gcompmgr/Makefile Mon Sep 2 22:31:37 2013 (r326109) @@ -1,9 +1,5 @@ -# New ports collection makefile for: gcompmgr -# Date created: 6 Feb 2006 -# Whom: UMENO Takashi -# +# Created by: UMENO Takashi # $FreeBSD$ -# PORTNAME= gcompmgr PORTVERSION= 0.21 @@ -18,6 +14,7 @@ RUN_DEPENDS= xcompmgr:${PORTSDIR}/x11-wm LIB_DEPENDS= gtkmm-2.4.1:${PORTSDIR}/x11-toolkits/gtkmm24 GNU_CONFIGURE= yes +USES= pkgconfig USE_AUTOTOOLS= automake:env DESKTOP_ENTRIES="gcompmgr" \ Modified: head/x11/evilvte/Makefile ============================================================================== --- head/x11/evilvte/Makefile Mon Sep 2 22:26:06 2013 (r326108) +++ head/x11/evilvte/Makefile Mon Sep 2 22:31:37 2013 (r326109) @@ -1,9 +1,5 @@ -# New ports collection makefile for: evilvte -# Date created: 2008/06/03 -# Whom: chinsan -# +# Created by: chinsan # $FreeBSD$ -# PORTNAME= evilvte PORTVERSION= 0.5.0 @@ -15,6 +11,7 @@ MASTER_SITES= http://www.calno.com/${POR MAINTAINER= aragon@phat.za.net COMMENT= A VTE based, super lightweight terminal emulator +USES= pkgconfig USE_XZ= yes USE_GMAKE= yes HAS_CONFIGURE= yes