From owner-freebsd-gnome@FreeBSD.ORG Thu Nov 30 20:05:11 2006 Return-Path: X-Original-To: gnome@freebsd.org Delivered-To: freebsd-gnome@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C4C5016A403; Thu, 30 Nov 2006 20:05:11 +0000 (UTC) (envelope-from rafan@svm.csie.ntu.edu.tw) Received: from svm.csie.ntu.edu.tw (svm.csie.ntu.edu.tw [140.112.90.75]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0723543CBE; Thu, 30 Nov 2006 20:04:58 +0000 (GMT) (envelope-from rafan@svm.csie.ntu.edu.tw) Received: from svm.csie.ntu.edu.tw (localhost [127.0.0.1]) by svm.csie.ntu.edu.tw (8.13.8/8.13.8) with ESMTP id kAUK561R027236; Fri, 1 Dec 2006 04:05:06 +0800 (CST) (envelope-from rafan@svm.csie.ntu.edu.tw) Received: (from rafan@localhost) by svm.csie.ntu.edu.tw (8.13.8/8.13.8/Submit) id kAUK56d2012542; Fri, 1 Dec 2006 04:05:06 +0800 (CST) (envelope-from rafan) Date: Fri, 1 Dec 2006 04:05:06 +0800 (CST) Message-Id: <200611302005.kAUK56d2012542@svm.csie.ntu.edu.tw> To: FreeBSD-gnats-submit@freebsd.org From: Rong-En Fan X-send-pr-version: 3.113 X-GNATS-Notify: Cc: gnome@freebsd.org, doublef@tele-kom.ru Subject: [PATCH] graphics/imlib: Respect X11BASE in imlib-config 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: Thu, 30 Nov 2006 20:05:11 -0000 >Submitter-Id: current-users >Originator: Rong-En Fan >Organization: NTU CSIE >Confidential: no >Synopsis: [PATCH] graphics/imlib: Respect X11BASE in imlib-config >Severity: non-critical >Priority: low >Category: ports >Class: change-request >Release: FreeBSD 6.2-PRERELEASE amd64 >Environment: >Description: - imlib-config is used to determine compiler flags. However, configure is not passed correct arguments, so imlib-config gets hardcoded /usr/X11R6. USE_XLIB + GNU_CONFIGURE fixes that. In fact, this port requires XLIB. This fixes build failure for x11/silo (maintainer is also cc'd). Port maintainer (gnome@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- imlib-1.9.15_4.patch begins here --- Index: Makefile =================================================================== RCS file: /big/freebsd-cvsup/ncvs/ports/graphics/imlib/Makefile,v retrieving revision 1.98 diff -u -u -r1.98 Makefile --- Makefile 14 Oct 2006 08:53:03 -0000 1.98 +++ Makefile 30 Nov 2006 20:01:25 -0000 @@ -25,6 +25,7 @@ USE_GNOME= gtk12 gnomehack GNU_CONFIGURE= yes USE_LDCONFIG= yes +USE_XLIB= yes CONFIGURE_ARGS= --sysconfdir=${PREFIX}/etc/imlib --disable-modules CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LIBS="-L${LOCALBASE}/lib" --- imlib-1.9.15_4.patch ends here ---