diff options
Diffstat (limited to 'games/chromium/Makefile')
-rw-r--r-- | games/chromium/Makefile | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/games/chromium/Makefile b/games/chromium/Makefile new file mode 100644 index 000000000000..abc15d90d13c --- /dev/null +++ b/games/chromium/Makefile @@ -0,0 +1,38 @@ +# New ports collection makefile for: chromium +# Date created: 17 Dec, 2003 +# Whom: Eric Anholt <anholt@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= chromium +PORTVERSION= 0.9.12 +CATEGORIES= games +MASTER_SITES= http://www.reptilelabour.com/software/files/chromium/ +DISTFILES= ${PORTNAME}-src-${PORTVERSION}.tar.gz \ + ${PORTNAME}-data-${PORTVERSION}.tar.gz + +MAINTAINER= anholt@FreeBSD.org +COMMENT= An arcade-style, top-scrolling space shooter + +LIB_DEPENDS= ogg.4:${PORTSDIR}/audio/libogg \ + smpeg.1:${PORTSDIR}/multimedia/smpeg \ + openal.0:${PORTSDIR}/audio/openal + +USE_GL= yes +USE_GMAKE= yes +WRKSRC= ${WRKDIR}/Chromium-0.9 + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/bin/chromium ${PREFIX}/bin + ${MKDIR} ${DATADIR}/data + (cd ${WRKSRC}/data && \ + ${TAR} -c -f - png fonts wav --exclude "*CVS*" --exclude "*xvpics*") | \ + (cd ${DATADIR}/data && ${TAR} -x -f - ) +.if !defined(NOPORTDOCS) + ${MKDIR} ${DOCSDIR} + (cd ${WRKSRC}/data/doc && ${TAR} -c -f - * --exclude "*CVS*") | \ + (cd ${DOCSDIR} && ${TAR} -x -f - ) +.endif + +.include <bsd.port.mk> |