svn commit: r354370 - head/net-im/toxic

Thierry Thomas thierry at FreeBSD.org
Sat May 17 20:45:06 UTC 2014


Author: thierry
Date: Sat May 17 20:45:05 2014
New Revision: 354370
URL: http://svnweb.freebsd.org/changeset/ports/354370
QAT: https://qat.redports.org/buildarchive/r354370/

Log:
  File format of libncursesw.so is not recognized on FreeBSD-8.4
  (treating as linker script) => use binutils from ports.
  
  Reported by:	pkg-fallout
  Obtained from:	tijl

Modified:
  head/net-im/toxic/Makefile

Modified: head/net-im/toxic/Makefile
==============================================================================
--- head/net-im/toxic/Makefile	Sat May 17 20:36:18 2014	(r354369)
+++ head/net-im/toxic/Makefile	Sat May 17 20:45:05 2014	(r354370)
@@ -24,6 +24,13 @@ SUB_FILES=	pkg-message
 USES=		ncurses:port pkgconfig
 USE_AUTOTOOLS=	autoconf aclocal
 
+.include <bsd.port.pre.mk>
+
+.if ${OSVERSION} < 900033
+USE_BINUTILS=	yes
+LDFLAGS+=	-B${LOCALBASE}/bin
+.endif
+
 run-autotools:
 	cd ${CONFIGURE_WRKSRC} && ${SETENV} ${CONFIGURE_ENV} ${AUTORECONF} -if
 
@@ -33,4 +40,4 @@ post-install:
 	${INSTALL_DATA} ${WRKSRC}/misc/toxic.conf ${STAGEDIR}${EXAMPLESDIR}
 .endif
 
-.include <bsd.port.mk>
+.include <bsd.port.post.mk>


More information about the svn-ports-all mailing list