Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 14 Aug 1999 21:39:12 +0900 (JST)
From:      Yasuhito FUTATSUKI <futatuki@fureai.or.jp>
To:        FreeBSD-gnats-submit@freebsd.org
Subject:   ports/13137: gtk-- port doesn't use X11BASE
Message-ID:  <199908141239.VAA69636.mkii@futatuki.fureai.or.jp>

next in thread | raw e-mail | index | archive | help

>Number:         13137
>Category:       ports
>Synopsis:       gtk-- port doesn't use X11BASE
>Confidential:   no
>Severity:       non-critical
>Priority:       medium
>Responsible:    freebsd-ports
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Sat Aug 14 05:40:00 PDT 1999
>Closed-Date:
>Last-Modified:
>Originator:     Yasuhito FUTATSUKI
>Release:        FreeBSD 3.2-STABLE i386
>Organization:
DEBUG (Daibou East BSD Users' Group) 
>Environment:

	x11-toolkits/gtk--/Makefile after rev. 1.9

>Description:

gtk--/Makefile sets USE_X11_BASE after including <bsd.port.pre.mk> 
so, so PREFIX is set to ${PREFIX}, not ${X11BASE}. To avoid it,
variable USE_X11BASE must set before including <bsd.port.pre.mk>. 

>How-To-Repeat:

	cd ${PORTSDIR}/x11-toolkits/gtk--;make install

>Fix:
	
Apply Following patch:

BEGIN --- cut here --- cut here --- cut here --- cut here --- cut here ---
--- Makefile.dist	Mon Jun 21 23:40:28 1999
+++ Makefile	Sat Aug 14 21:03:13 1999
@@ -16,6 +16,8 @@
 LIB_DEPENDS=	gtk12.2:${PORTSDIR}/x11-toolkits/gtk12
 BUILD_DEPENDS=	gm4:${PORTSDIR}/devel/m4
 
+USE_X_PREFIX=	yes
+
 GTK_CONFIG?=	${X11BASE}/bin/gtk12-config
 
 .include <bsd.port.pre.mk>
@@ -26,7 +28,6 @@
 CXX=		eg++
 .endif
 
-USE_X_PREFIX=	yes
 USE_GMAKE=	yes
 GNU_CONFIGURE=	yes
 CONFIGURE_ARGS=	--enable-static=yes \
END   --- cut here --- cut here --- cut here --- cut here --- cut here ---

>Release-Note:
>Audit-Trail:
>Unformatted:


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-ports" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199908141239.VAA69636.mkii>