Summary: | [PATCH] graphics/imlib2: fix X11 dependency | ||||||
---|---|---|---|---|---|---|---|
Product: | Ports & Packages | Reporter: | Dmitry Marakasov <amdmi3> | ||||
Component: | Individual Port(s) | Assignee: | Brendan Fabeny <bf> | ||||
Status: | Closed FIXED | ||||||
Severity: | Affects Only Me | CC: | bf | ||||
Priority: | Normal | ||||||
Version: | Latest | ||||||
Hardware: | Any | ||||||
OS: | Any | ||||||
Attachments: |
|
Description
Dmitry Marakasov
2014-02-28 17:30:03 UTC
Responsible Changed From-To: freebsd-ports-bugs->bf Over to maintainer (via the GNATS Auto Assign Tool) Author: amdmi3 Date: Sat Mar 29 14:00:42 2014 New Revision: 349510 URL: http://svnweb.freebsd.org/changeset/ports/349510 QAT: https://qat.redports.org/buildarchive/r349510/ Log: - Remove hidden dependency on X11 when built with X11 disabled PR: 187147 Submitted by: amdmi3 Approved by: maintainer timeout Modified: head/graphics/imlib2/Makefile Modified: head/graphics/imlib2/Makefile ============================================================================== --- head/graphics/imlib2/Makefile Sat Mar 29 13:57:35 2014 (r349509) +++ head/graphics/imlib2/Makefile Sat Mar 29 14:00:42 2014 (r349510) @@ -4,6 +4,7 @@ PORTNAME= imlib2 PORTVERSION= 1.4.6 PORTEPOCH= 2 +PORTREVISION= 1 CATEGORIES= graphics enlightenment MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= enlightenment/imlib2-src/${PORTVERSION} @@ -98,8 +99,9 @@ PLIST_SUB+= ID3="@comment " .if ! ${PORT_OPTIONS:MX11} post-patch: @${REINPLACE_CMD} -e '/MY_LIBS =/s/-lXext -lX11//' \ - ${WRKSRC}/src/lib/Makefile.in - + ${WRKSRC}/src/lib/Makefile.in + @${REINPLACE_CMD} -e '/# ifndef X_DISPLAY_MISSING/,/# endif/ d' \ + ${WRKSRC}/src/lib/Imlib2.h .endif .include <bsd.port.mk> _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org" State Changed From-To: open->closed Committed. Thanks! |