Date: Fri, 2 Aug 2013 08:14:22 +0000 (UTC) From: Alexey Dokuchaev <danfe@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r324151 - head/games/naev Message-ID: <201308020814.r728EM2r044913@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: danfe Date: Fri Aug 2 08:14:21 2013 New Revision: 324151 URL: http://svnweb.freebsd.org/changeset/ports/324151 Log: - Unbreak the build: add missing dependency on audio/libvorbis, and fix the value of USE_GL (normally this goes unnoticed because SDL pulls libGLU.so by default via USE_GL=yes, but shows up if using OpenGL-less SDL package) - Convert USE_GMAKE, cleanup Makefile and port description while here Modified: head/games/naev/Makefile head/games/naev/pkg-descr Modified: head/games/naev/Makefile ============================================================================== --- head/games/naev/Makefile Fri Aug 2 07:48:07 2013 (r324150) +++ head/games/naev/Makefile Fri Aug 2 08:14:21 2013 (r324151) @@ -9,17 +9,18 @@ MASTER_SITES= SF/${PORTNAME}/${PORTNAME} DIST_SUBDIR= ${PORTNAME} MAINTAINER= acm@FreeBSD.org -COMMENT= 2D action/rpg space game +COMMENT= 2D action/RPG space game -LIB_DEPENDS= png15:${PORTSDIR}/graphics/png \ - freetype:${PORTSDIR}/print/freetype2 +LIB_DEPENDS= libpng15.so:${PORTSDIR}/graphics/png \ + libfreetype.so:${PORTSDIR}/print/freetype2 \ + libvorbisfile.so:${PORTSDIR}/audio/libvorbis RUN_DEPENDS= ${LOCALBASE}/share/${PORTNAME}/ndata-${PORTVERSION}:${PORTSDIR}/games/naev-data +USES= gmake USE_AUTOTOOLS= automake:env aclocal:env autoconf:env USE_BZIP2= yes GNU_CONFIGURE= yes -USE_GL= gl -USE_GMAKE= yes +USE_GL= glu USE_GNOME= libxml2 USE_SDL= sdl image @@ -53,10 +54,12 @@ CONFIGURE_ARGS+= --with-sdlmixer=no .endif do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin/${PORTNAME} + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.6 ${MAN6PREFIX}/man/man6 post-install: + @${ECHO_MSG} @${CAT} ${PKGMESSAGE} + @${ECHO_MSG} .include <bsd.port.mk> Modified: head/games/naev/pkg-descr ============================================================================== --- head/games/naev/pkg-descr Fri Aug 2 07:48:07 2013 (r324150) +++ head/games/naev/pkg-descr Fri Aug 2 08:14:21 2013 (r324151) @@ -1,4 +1,4 @@ -NAEV is a 2d action/rpg space game that combines elements from the action, rpg -and simulation genres. +NAEV is a 2D space game that combines elements from the action, RPG, and +simulation genres. -WWW: http://code.google.com/p/naev/ +WWW: http://code.google.com/p/naev/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201308020814.r728EM2r044913>