Date: Mon, 6 Jan 2014 11:46:02 +0000 (UTC) From: Rene Ladan <rene@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r338864 - head/games/el Message-ID: <201401061146.s06Bk2Vd016817@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: rene Date: Mon Jan 6 11:46:02 2014 New Revision: 338864 URL: http://svnweb.freebsd.org/changeset/ports/338864 Log: Try to build after games/el-data is resurrected. Fails to link on 10.0-amd64 with old Xorg, so mark BROKEN: > LINK el.bin > /usr/bin/ld: invalid DSO for symbol `XConvertSelection' definition > /usr/local/lib/libX11.so.6: could not read symbols: Bad value While here convert to new LIB_DEPENDS and USES=gmake PR: ports/185113 (related) Submitted by: rene Approved by: maintainer timeout (acm, 15 days) Modified: head/games/el/Makefile Modified: head/games/el/Makefile ============================================================================== --- head/games/el/Makefile Mon Jan 6 11:40:02 2014 (r338863) +++ head/games/el/Makefile Mon Jan 6 11:46:02 2014 (r338864) @@ -12,9 +12,9 @@ DIST_SUBDIR= ${PORTNAME} MAINTAINER= acm@FreeBSD.org COMMENT= Eternal Lands is a free 3D MMORPG -LIB_DEPENDS= png15:${PORTSDIR}/graphics/png \ - vorbis.4:${PORTSDIR}/audio/libvorbis \ - cal3d.12:${PORTSDIR}/graphics/cal3d +LIB_DEPENDS= libpng15.so:${PORTSDIR}/graphics/png \ + libvorbis.so.4:${PORTSDIR}/audio/libvorbis \ + libcal3d.so.12:${PORTSDIR}/graphics/cal3d RUN_DEPENDS= ${LOCALBASE}/share/${PORTNAME}/el.ini:${PORTSDIR}/games/el-data PROJECTHOST= bsdistfiles @@ -23,6 +23,7 @@ USES= gmake openal:al,alut USE_GNOME= libxml2 USE_SDL= sdl net image USE_GL= yes +USES= gmake ALL_TARGET= el.bin MAKEFILE= Makefile.bsd @@ -31,8 +32,8 @@ PLIST= ${WRKDIR}/pkg-plist NO_STAGE= yes .include <bsd.port.pre.mk> -.if ${ARCH} == "sparc64" -BROKEN= Does not compile on sparc64 +.if ${ARCH} == "sparc64" || ${ARCH} == "amd64" +BROKEN= Does not build on ${ARCH} .endif pre-install:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201401061146.s06Bk2Vd016817>