diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2008-04-29 22:13:31 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2008-04-29 22:13:31 +0000 |
commit | 2740eaffbe17053e39be42f5cee843a513567c0c (patch) | |
tree | 162cf028c95f6b1170b0e6f933bef2766c1456ec /games/blobby/Makefile | |
parent | - PORTREVISION bump after the last change. (diff) |
Blobby2 is the official continuation of the famous Blobby
Volley 1.x arcade game
WWW: http://blobby.sourceforge.net
PR: ports/122345
Submitted by: Ganael Laplanche <ganael.laplanche at martymac.com>
Notes
Notes:
svn path=/head/; revision=212298
Diffstat (limited to 'games/blobby/Makefile')
-rw-r--r-- | games/blobby/Makefile | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/games/blobby/Makefile b/games/blobby/Makefile new file mode 100644 index 000000000000..280ddb704ee5 --- /dev/null +++ b/games/blobby/Makefile @@ -0,0 +1,39 @@ +# New ports collection makefile for: blobby +# Date created: 01 Apr 2008 +# Whom: Ganael Laplanche <ganael.laplanche@martymac.com> +# +# $FreeBSD$ +# + +PORTNAME= blobby +PORTVERSION= 0.6a +CATEGORIES= games +MASTER_SITES= SF +DISTNAME= blobby2-linux-${PORTVERSION} + +MAINTAINER= ganael.laplanche@martymac.com +COMMENT= Official continuation of the famous Blobby Volley 1.x game + +LIB_DEPENDS= physfs:${PORTSDIR}/devel/physfs \ + drm:${PORTSDIR}/graphics/libdrm + +USE_XORG= x11 xext xxf86vm xdamage xfixes xau xdmcp xrandr xrender +USE_SDL= sdl +USE_GL= glu +GNU_CONFIGURE= yes +CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + LDFLAGS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}" +WRKSRC= ${WRKDIR}/blobby-alpha-6 + +PORTDOCS= AUTHORS COPYING ChangeLog INSTALL NEWS README TODO + +post-install: +.if !defined(NOPORTDOCS) + @${MKDIR} ${DOCSDIR} +.for doc in ${PORTDOCS} + ${INSTALL_DATA} ${WRKSRC}/${doc} ${DOCSDIR} +.endfor +.endif + +.include <bsd.port.mk> |