Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 8 Feb 2006 11:16:14 -0700
From:      Travis Poppe <tlp@liquidx.org>
To:        FreeBSD-gnats-submit@FreeBSD.org
Subject:   ports/93047: [UPDATE]: graphics/libcaca - Fix WITHOUT_X11 dependencies.
Message-ID:  <200602081116.14402.tlp@liquidx.org>
Resent-Message-ID: <200602081820.k18IK4rB007020@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
	Note: There was a bad value `normal' for the field `>Severity:'.
	It was set to the default value of `serious'.


>Number:         93047
>Category:       ports
>Synopsis:       [UPDATE]: graphics/libcaca - Fix WITHOUT_X11 dependencies.
>Confidential:   no
>Severity:       serious
>Priority:       medium
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          update
>Submitter-Id:   current-users
>Arrival-Date:   Wed Feb 08 18:20:03 GMT 2006
>Closed-Date:
>Last-Modified:
>Originator:     Travis Poppe
>Release:        
>Organization:
>Environment:
>Description:
The libcaca port unnecessarily disables imlib2 if WITHOUT_X11 is defined . This
breaks support for viewing non-BMP images. Since imlib2 itself can be built 
without X11 support, I've patched libcaca to reflect this.

>How-To-Repeat:
>Fix:
--- Makefile.orig	Wed Feb  8 11:07:55 2006
+++ Makefile	Wed Feb  8 11:09:39 2006
@@ -6,7 +6,7 @@
 
 PORTNAME=	libcaca
 PORTVERSION=	0.9
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	graphics
 MASTER_SITES=	http://sam.zoy.org/projects/libcaca/
 
@@ -23,14 +23,14 @@
 MAN1=		caca-config.1 cacademo.1 cacaview.1
 
 .if defined(WITHOUT_X11)
-CONFIGURE_ARGS+=	--disable-imlib2 --disable-x11
+CONFIGURE_ARGS+=	--disable-x11
 .else
 USE_XLIB=	yes
+.endif
 .if defined(WITHOUT_IMLIB2)
 CONFIGURE_ARGS+=	--disable-imlib2
 .else
 LIB_DEPENDS+=		Imlib2.3:${PORTSDIR}/graphics/imlib2
-.endif
 .endif
 
 .include <bsd.port.pre.mk>
>Release-Note:
>Audit-Trail:
>Unformatted:



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