From owner-freebsd-gnome@FreeBSD.ORG Sun Feb 5 15:29:50 2006 Return-Path: X-Original-To: gnome@freebsd.org Delivered-To: freebsd-gnome@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5CD3216A420; Sun, 5 Feb 2006 15:29:50 +0000 (GMT) (envelope-from leeym@utopia.leeym.com) Received: from msr7.hinet.net (msr7.hinet.net [168.95.4.107]) by mx1.FreeBSD.org (Postfix) with ESMTP id 934AD43D46; Sun, 5 Feb 2006 15:29:49 +0000 (GMT) (envelope-from leeym@utopia.leeym.com) Received: from utopia.leeym.com (utopia.leeym.com [211.21.137.52]) by msr7.hinet.net (8.9.3/8.9.3) with ESMTP id XAA03133; Sun, 5 Feb 2006 23:29:45 +0800 (CST) Received: from localhost (localhost [127.0.0.1]) by utopia.leeym.com (Postfix) with ESMTP id AA0D7B29CCA; Sun, 5 Feb 2006 23:29:44 +0800 (CST) Received: from utopia.leeym.com ([127.0.0.1]) by localhost (utopia.leeym.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 16600-03; Sun, 5 Feb 2006 23:29:40 +0800 (CST) Received: by utopia.leeym.com (Postfix, from userid 1000) id 0DC5CB29CC8; Sun, 5 Feb 2006 23:29:40 +0800 (CST) To: FreeBSD-gnats-submit@freebsd.org From: Yen-Ming Lee X-send-pr-version: 3.113 X-GNATS-Notify: Message-Id: <20060205152940.0DC5CB29CC8@utopia.leeym.com> Date: Sun, 5 Feb 2006 23:29:40 +0800 (CST) X-Virus-Scanned: by amavisd-new at leeym.com Cc: gnome@freebsd.org Subject: [PATCH] devel/dbus: minor fixes X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Feb 2006 15:29:50 -0000 >Submitter-Id: current-users >Originator: Yen-Ming Lee >Organization: FreeBSD Taiwan >Confidential: no >Synopsis: [PATCH] devel/dbus: minor fixes >Severity: non-critical >Priority: low >Category: ports >Class: change-request >Release: FreeBSD 6.1-PRERELEASE i386 >Environment: System: FreeBSD utopia.leeym.com 6.1-PRERELEASE FreeBSD 6.1-PRERELEASE #0: Fri Feb 3 08:02:39 CST >Description: - fix plist (without --localstatedir=/var, it will create /usr/local/var/run) - minor fixes to make portlint happier Port maintainer (gnome@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.63 >How-To-Repeat: >Fix: --- dbus-0.60_1.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/devel/dbus/Makefile,v retrieving revision 1.41 diff -u -u -r1.41 Makefile --- Makefile 30 Jan 2006 23:19:52 -0000 1.41 +++ Makefile 5 Feb 2006 15:28:40 -0000 @@ -22,13 +22,13 @@ USE_AUTOTOOLS= libtool:15 INSTALLS_SHLIB= yes USE_RC_SUBR= yes -USE_REINPLACE= yes CONFIGURE_ARGS?=--disable-gtk \ --disable-python \ --disable-gcj \ --disable-qt \ --disable-mono \ --disable-mono-docs \ + --localstatedir=/var \ --with-system-pid-file=/var/run/dbus.pid \ --with-system-socket=/var/run/dbus \ --with-session-socket-dir=/var/tmp \ @@ -77,7 +77,7 @@ .if defined(PKGNAMEPREFIX) .if ${PKGNAMEPREFIX}==${PYTHON_PKGNAMEPREFIX} && ${OSVERSION} < 500000 # Ignore for py-dbus -IGNORE= Does not build on 4.X +IGNORE= does not build on 4.X .endif .endif --- dbus-0.60_1.patch ends here ---