From owner-freebsd-gnome@FreeBSD.ORG Tue Jan 28 23:02:20 2014 Return-Path: Delivered-To: gnome@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 ESMTPS id 265F4385; Tue, 28 Jan 2014 23:02:20 +0000 (UTC) Received: from smtpout3.timeweb.ru (smtpout3.timeweb.ru [92.53.117.25]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D314E1351; Tue, 28 Jan 2014 23:02:19 +0000 (UTC) Received: from [213.148.20.85] (helo=hive.panopticon) by smtp.timeweb.ru with esmtpsa (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.76) (envelope-from ) id 1W8Hfd-00066d-Jd; Wed, 29 Jan 2014 03:02:17 +0400 Received: from hades.panopticon (hades.panopticon [192.168.0.32]) by hive.panopticon (Postfix) with ESMTP id 3826B34C; Wed, 29 Jan 2014 03:02:17 +0400 (MSK) Received: by hades.panopticon (Postfix, from userid 1000) id 6992A2943; Wed, 29 Jan 2014 03:02:15 +0400 (MSK) To: FreeBSD-gnats-submit@freebsd.org Subject: [PATCH] multimedia/totem-pl-parser: staging, new LIB_DEPENDS syntax From: Dmitry Marakasov X-send-pr-version: 3.113 X-GNATS-Notify: Message-Id: <20140128230216.6992A2943@hades.panopticon> Date: Wed, 29 Jan 2014 03:02:15 +0400 (MSK) Cc: gnome@FreeBSD.org X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 28 Jan 2014 23:02:20 -0000 >Submitter-Id: current-users >Originator: Dmitry Marakasov >Organization: >Confidential: no >Synopsis: [PATCH] multimedia/totem-pl-parser: staging, new LIB_DEPENDS syntax >Severity: non-critical >Priority: low >Category: ports >Class: change-request >Release: FreeBSD 10.0-RELEASE amd64 >Environment: System: FreeBSD hades.panopticon 10.0-RELEASE FreeBSD 10.0-RELEASE #0 r260807: Fri Jan 17 13:14:28 MSK >Description: - Support staging - Use new LIB_DEPENDS syntax - Convert USE_GMAKE to USES - Use preferred way to depend on gobject-introspection Port maintainer (gnome@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99_11 (mode: change, diff: SVN) >How-To-Repeat: >Fix: --- totem-pl-parser-2.32.3_2.patch begins here --- Index: Makefile =================================================================== --- Makefile (revision 341668) +++ Makefile (working copy) @@ -12,15 +12,12 @@ MAINTAINER= gnome@FreeBSD.org COMMENT= GObject-based library to parse a host of playlist formats -BUILD_DEPENDS= g-ir-scanner:${PORTSDIR}/devel/gobject-introspection -LIB_DEPENDS= gmime-2.4:${PORTSDIR}/mail/gmime24 \ - soup-gnome-2.4:${PORTSDIR}/devel/libsoup-gnome -RUN_DEPENDS= ${LOCALBASE}/share/gir-1.0/GLib-2.0.gir:${PORTSDIR}/devel/gobject-introspection +LIB_DEPENDS= libgmime-2.4.so:${PORTSDIR}/mail/gmime24 \ + libsoup-gnome-2.4.so:${PORTSDIR}/devel/libsoup-gnome USE_BZIP2= yes -USE_GMAKE= yes -USES= pathfix gettext pkgconfig -USE_GNOME= gnomeprefix glib20 libxml2 intlhack ltverhack +USES= pathfix gettext pkgconfig gmake +USE_GNOME= gnomeprefix glib20 libxml2 intlhack ltverhack introspection:build,run USE_LDCONFIG= yes USE_AUTOTOOLS= libtool CPPFLAGS+= -I${LOCALBASE}/include @@ -29,11 +26,10 @@ OPTIONS_DEFINE= QUVI QUVI_DESC= Enable flash media stream URL support -NO_STAGE= yes .include .if ${PORT_OPTIONS:MQUVI} -LIB_DEPENDS+= quvi:${PORTSDIR}/multimedia/libquvi +LIB_DEPENDS+= libquvi.so:${PORTSDIR}/multimedia/libquvi CONFIGURE_ARGS+=--enable-enable-quvi .else CONFIGURE_ARGS+=--enable-enable-quvi=no --- totem-pl-parser-2.32.3_2.patch ends here ---