From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 1 20:34:01 2006 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C9AE416A512 for ; Fri, 1 Dec 2006 20:34:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.FreeBSD.org (Postfix) with ESMTP id 376B343E5C for ; Fri, 1 Dec 2006 20:30:13 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id kB1KU5Jg093504 for ; Fri, 1 Dec 2006 20:30:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id kB1KU5j8093503; Fri, 1 Dec 2006 20:30:05 GMT (envelope-from gnats) Resent-Date: Fri, 1 Dec 2006 20:30:05 GMT Resent-Message-Id: <200612012030.kB1KU5j8093503@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Frank J. Laszlo" Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D4E4416A407 for ; Fri, 1 Dec 2006 20:23:23 +0000 (UTC) (envelope-from laszlof@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7FD3D43CAC; Fri, 1 Dec 2006 20:22:55 +0000 (GMT) (envelope-from laszlof@FreeBSD.org) Received: from freefall.freebsd.org (laszlof@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id kB1KNAa2092642; Fri, 1 Dec 2006 20:23:10 GMT (envelope-from laszlof@freefall.freebsd.org) Received: (from laszlof@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id kB1KNALW092641; Fri, 1 Dec 2006 20:23:10 GMT (envelope-from laszlof) Message-Id: <200612012023.kB1KNALW092641@freefall.freebsd.org> Date: Fri, 1 Dec 2006 20:23:10 GMT From: "Frank J. Laszlo" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: kjc@iijlab.net Subject: ports/106154: [PATCH]: x11-toolkits/blt: Respect X11BASE and WITHOUT_X11 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: "Frank J. Laszlo" List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Dec 2006 20:34:02 -0000 >Number: 106154 >Category: ports >Synopsis: [PATCH]: x11-toolkits/blt: Respect X11BASE and WITHOUT_X11 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Dec 01 20:30:05 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Frank J. Laszlo >Release: FreeBSD 6.0-STABLE i386 >Organization: >Environment: System: FreeBSD freefall.freebsd.org 6.0-STABLE FreeBSD 6.0-STABLE #0: Sat Dec 10 03:18:20 UTC 2005 kensmith@freefall.freebsd.org:/usr/obj/usr/src/sys/FREEFALL i386 >Description: 1) Respect X11BASE 2) Respect WITHOUT_X11 3) pet portlint(1) Maintainer: Please test this patch with and WITHOUT_X11. Thanks Maintainer has been CC'd. >How-To-Repeat: >Fix: --- blt-2.4z-X11BASE.diff begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/x11-toolkits/blt/Makefile,v retrieving revision 1.45 diff -u -r1.45 Makefile --- Makefile 28 Nov 2005 07:08:15 -0000 1.45 +++ Makefile 1 Dec 2006 20:20:30 -0000 @@ -17,7 +17,7 @@ ftp://ftp.csl.sony.co.jp/pub/kjc/ttt-libs/ PATCH_SITE_SUBDIR= ${PORTNAME} PATCHFILES= blt2.4z-patch-2 -PATCH_DIST_STRIP= -p1 +PATCH_DIST_STRIP= -p1 MAINTAINER= kjc@iijlab.net COMMENT= A Tk extension (with shared libs) @@ -34,12 +34,20 @@ --with-tklibs=${LOCALBASE}/lib/ \ --with-tclincls=${LOCALBASE}/include/tcl${TK_VER} \ --with-tkincls=${LOCALBASE}/include/tk${TK_VER} -INSTALLS_SHLIB= yes +USE_LDCONFIG= yes TK_VER?= 8.4 .include +.if !defined(WITHOUT_X11) +CONFIGURE_ARGS+= --x-includes=${X11BASE}/include \ + --x-libraries=${X11BASE}/lib +USE_XLIB= yes +.else +CONFIGURE_ARGS+= --without-x +.endif + post-install: ${LN} -sf libBLT24.so.3 ${PREFIX}/lib/libBLT24.so ${LN} -sf libBLTlite24.so.3 ${PREFIX}/lib/libBLTlite24.so --- blt-2.4z-X11BASE.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: