freebsd-ports/games/chromium-bsu/Makefile
Oliver Lehmann c36bc8fc88 update to openal 20060211 [1]
fix dependant ports [2]

PR:		ports/96172 [1]
		ports/95192 [2]
Submitted by:	maintainer  [1]
		oliver      [2]
Approved by:	maintainer
2006-04-23 10:14:30 +00:00

43 lines
1.2 KiB
Makefile

# New ports collection makefile for: chromium
# Date created: 17 Dec, 2003
# Whom: Eric Anholt <anholt@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= chromium
PORTVERSION= 0.9.12
PORTREVISION= 3
CATEGORIES= games
MASTER_SITES= http://www.reptilelabour.com/software/files/chromium/
DISTFILES= ${PORTNAME}-src-${PORTVERSION}.tar.gz \
${PORTNAME}-data-${PORTVERSION}.tar.gz
MAINTAINER= ports@FreeBSD.org
COMMENT= An arcade-style, top-scrolling space shooter
LIB_DEPENDS= vorbis.3:${PORTSDIR}/audio/libvorbis \
smpeg.1:${PORTSDIR}/multimedia/smpeg \
openal.0:${PORTSDIR}/audio/openal \
alut.0:${PORTSDIR}/audio/freealut
USE_GL= yes
USE_GMAKE= yes
WRKSRC= ${WRKDIR}/Chromium-0.9
post-patch:
@${REINPLACE_CMD} -e 's|-lopenal|& -lalut|g' ${WRKSRC}/configure
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/bin/chromium ${PREFIX}/bin
${MKDIR} ${DATADIR}/data
(cd ${WRKSRC}/data && \
${TAR} -c -f - --exclude "*CVS*" --exclude "*xvpics*" png fonts wav) | \
(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>