From owner-freebsd-gnome@FreeBSD.ORG Tue Jan 28 23:05:28 2014 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3D96267A; Tue, 28 Jan 2014 23:05:28 +0000 (UTC) Received: from smtpout6.timeweb.ru (smtpout6.timeweb.ru [92.53.117.39]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id EA1291377; Tue, 28 Jan 2014 23:05:27 +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 1W8Hif-0003d9-Mj; Wed, 29 Jan 2014 03:05:25 +0400 Received: from hades.panopticon (hades.panopticon [192.168.0.32]) by hive.panopticon (Postfix) with ESMTP id 537F134D; Wed, 29 Jan 2014 03:05:25 +0400 (MSK) Received: by hades.panopticon (Postfix, from userid 1000) id 1FFC82A98; Wed, 29 Jan 2014 03:05:25 +0400 (MSK) To: FreeBSD-gnats-submit@freebsd.org Subject: [PATCH] net-im/folks: switch to USE_GNOME=introspection From: Dmitry Marakasov X-send-pr-version: 3.113 X-GNATS-Notify: Message-Id: <20140128230525.1FFC82A98@hades.panopticon> Date: Wed, 29 Jan 2014 03:05:25 +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:05:28 -0000 >Submitter-Id: current-users >Originator: Dmitry Marakasov >Organization: >Confidential: no >Synopsis: [PATCH] net-im/folks: switch to USE_GNOME=introspection >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: - Switch to USE_GNOME=introspection to depend on gobject-introspection. Among other things this takes care of environement for g-ir-scanner. - Use new LIB_DEPENDS syntax - Convert USE_GMAKE to USES Port maintainer (gnome@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99_11 (mode: change, diff: SVN) >How-To-Repeat: >Fix: --- folks-0.7.0.patch begins here --- Index: Makefile =================================================================== --- Makefile (revision 341669) +++ Makefile (working copy) @@ -10,10 +10,9 @@ MAINTAINER= gnome@FreeBSD.org COMMENT= library to aggregates people from multiple sources -BUILD_DEPENDS= vapigen:${PORTSDIR}/lang/vala-vapigen \ - g-ir-scanner:${PORTSDIR}/devel/gobject-introspection -LIB_DEPENDS= gee:${PORTSDIR}/devel/libgee06 \ - telepathy-glib.0:${PORTSDIR}/net-im/telepathy-glib +BUILD_DEPENDS= vapigen:${PORTSDIR}/lang/vala-vapigen +LIB_DEPENDS= libgee.so:${PORTSDIR}/devel/libgee06 \ + libtelepathy-glib.so:${PORTSDIR}/net-im/telepathy-glib IGNORE= Doesn't build currently, missing components CONFLICTS= folks-0.4.[0-9]* @@ -21,9 +20,9 @@ USE_XZ= yes USE_AUTOTOOLS= libtool USE_LDCONFIG= yes -USE_GMAKE= yes -USE_GNOME= gnomehier gnomehack intlhack ltverhack evolutiondataserver3 -USES= gettext +USE_GNOME= gnomehier gnomehack intlhack ltverhack \ + evolutiondataserver3 introspection:build +USES= gettext gmake GNU_CONFIGURE= yes CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib --- folks-0.7.0.patch ends here ---