42b45c7a2f
PR: 221506 Submitted by: Kevin Zheng <kevinz5000@gmail.com> (maintainer)
32 lines
877 B
Makefile
32 lines
877 B
Makefile
# Created by: Andreas Klemm <andreas@klemm.gtn.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= crossfire-client
|
|
PORTVERSION= 1.72.0
|
|
CATEGORIES= games
|
|
MASTER_SITES= SF/crossfire/${PORTNAME}/${PORTVERSION}:DEFAULT,sounds
|
|
DISTFILES= ${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX} \
|
|
crossfire-sounds-${PORTVERSION}${EXTRACT_SUFX}:sounds
|
|
|
|
MAINTAINER= kevinz5000@gmail.com
|
|
COMMENT= Cooperative multiplayer graphical RPG and adventure game
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
BUILD_DEPENDS= vala:lang/vala
|
|
LIB_DEPENDS= libcurl.so:ftp/curl
|
|
|
|
USES= cmake pkgconfig tar:bzip2
|
|
USE_GNOME= gtk20
|
|
USE_SDL= sdl image mixer
|
|
INSTALLS_ICONS= YES
|
|
|
|
CMAKE_ARGS= -DLUA=OFF -DMETASERVER2=ON -DOPENGL=OFF -DSDL=ON -DSOUND=ON
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${DATADIR}/sounds
|
|
cd ${WRKDIR}/crossfire-sounds-${PORTVERSION} && \
|
|
${COPYTREE_SHARE} "*" ${STAGEDIR}${DATADIR}/sounds
|
|
|
|
.include <bsd.port.mk>
|