svn commit: r378551 - in head/graphics/pixie: . files
John Marino
marino at FreeBSD.org
Fri Feb 6 19:48:09 UTC 2015
Author: marino
Date: Fri Feb 6 19:48:07 2015
New Revision: 378551
URL: https://svnweb.freebsd.org/changeset/ports/378551
QAT: https://qat.redports.org/buildarchive/r378551/
Log:
graphics/pixie: Fix build on F9
PR: 194167
Submitted by: Ports Fury
Added:
head/graphics/pixie/files/patch-configure (contents, props changed)
Modified:
head/graphics/pixie/Makefile
Modified: head/graphics/pixie/Makefile
==============================================================================
--- head/graphics/pixie/Makefile Fri Feb 6 18:47:46 2015 (r378550)
+++ head/graphics/pixie/Makefile Fri Feb 6 19:48:07 2015 (r378551)
@@ -3,7 +3,7 @@
PORTNAME= pixie
PORTVERSION= 2.2.6
-PORTREVISION= 11
+PORTREVISION= 12
CATEGORIES= graphics
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/Pixie%20${PORTVERSION}
DISTNAME= Pixie-src-${PORTVERSION}
@@ -19,7 +19,7 @@ LIB_DEPENDS= libIlmImf.so:${PORTSDIR}/gr
libfltk_gl.so:${PORTSDIR}/x11-toolkits/fltk
USE_GL= glu
-USES= bison libtool pathfix tar:tgz
+USES= bison compiler:c++0x libtool pathfix tar:tgz
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --includedir=${PREFIX}/include/pixie \
--libdir=${PREFIX}/lib/pixie \
@@ -45,7 +45,7 @@ BROKEN_sparc64= Does not compile on spar
OPTIONS_DEFINE= DOCS
-.include <bsd.port.pre.mk>
+.include <bsd.port.options.mk>
.if ${OSVERSION} < 1000033
BUILD_DEPENDS+= ${LOCALBASE}/bin/flex:${PORTSDIR}/textproc/flex
@@ -69,4 +69,4 @@ post-install:
(cd ${WRKSRC}/doc && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR} \
'! -name "*Makefile*"')
-.include <bsd.port.post.mk>
+.include <bsd.port.mk>
Added: head/graphics/pixie/files/patch-configure
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/graphics/pixie/files/patch-configure Fri Feb 6 19:48:07 2015 (r378551)
@@ -0,0 +1,24 @@
+--- configure.orig
++++ configure
+@@ -12199,7 +12199,7 @@
+ old_striplib=
+ { $as_echo "$as_me:$LINENO: checking whether stripping libraries is possible" >&5
+ $as_echo_n "checking whether stripping libraries is possible... " >&6; }
+-if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then
++if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "strip" >/dev/null; then
+ test -z "$old_striplib" && old_striplib="$STRIP --strip-debug"
+ test -z "$striplib" && striplib="$STRIP --strip-unneeded"
+ { $as_echo "$as_me:$LINENO: result: yes" >&5
+@@ -18418,10 +18418,10 @@
+ if test x$FLTK_CONFIG != xno ; then
+ if test x$STATIC_FLTK != xtrue ; then
+ FLTK_CXXFLAGS="`$FLTK_CONFIG --use-gl --cxxflags`"
+- FLTK_LDFLAGS="`$FLTK_CONFIG --use-gl --ldstaticflags`"
++ FLTK_LDFLAGS="`$FLTK_CONFIG --use-gl --ldstaticflags | sed 's/ -R.* / /g'`"
+ else
+ FLTK_CXXFLAGS="`$FLTK_CONFIG --use-gl --cxxflags`"
+- FLTK_LDFLAGS="`$FLTK_CONFIG --use-gl --ldflags`"
++ FLTK_LDFLAGS="`$FLTK_CONFIG --use-gl --ldflags | sed 's/ -R.* / /g'`"
+ fi
+ else
+ FLTK_CXXFLAGS=""
More information about the svn-ports-all
mailing list