Summary: | graphics/xpdf build fail | ||
---|---|---|---|
Product: | Ports & Packages | Reporter: | Chris <chris> |
Component: | Individual Port(s) | Assignee: | Marcelo Araujo <araujo> |
Status: | Closed FIXED | ||
Severity: | Affects Only Me | ||
Priority: | Normal | ||
Version: | Latest | ||
Hardware: | Any | ||
OS: | Any |
Description
Chris
2012-06-18 12:40:14 UTC
Responsible Changed From-To: freebsd-ports-bugs->araujo Fix synopsis and assign. Hi I fixed the problem by removing freetype2 from the following line in Makefile. --with-freetype2-includes="${LOCALBASE}/include/freetype2" It should be like this: --with-freetype2-includes="${LOCALBASE}/include/" Also I removed libexec/xpdf/xpdf from pkg-plist. Thanks -- Ismail YENIGUL Team Leader / Takım Lideri SurGATE Labs Phone :+90 216-4709423 | Mobile:+90 533 747 36 65 SurGATE: West Coast Labs Premium Anti-Spam Certificated Twitter: http://www.twitter.com/surgate Blog: http://www.surgate.com/blog State Changed From-To: open->closed Committed. Thanks! The problem is back, because "fix" was rolled back. According to ports/172664 a ports/172634 the problem is, that WITH_X11 needs --with-freetype2-includes="${LOCALBASE}/include/freetype2" and WITHOUT_X11 needs --with-freetype2-includes="${LOCALBASE}/include/" I don't have enough knowledge of Makefile or C programming, so I don't have any right fix to this. If it can't be fixed somewhere else, then we need some conditional in Makefile. Somehing like .if defined(WITHOUT_X11) CONFIGURE_ARGS+=--with-freetype2-includes="${LOCALBASE}/include/" .else CONFIGURE_ARGS+=--with-freetype2-includes="${LOCALBASE}/include/freetype2" .endif |