701aa3bcf8
Changes: http://www.boost.org/users/history/version_1_72_0.html PR: 241449 Exp-run by: antoine Differential Revision: https://reviews.freebsd.org/D22136
53 lines
1.3 KiB
Makefile
53 lines
1.3 KiB
Makefile
# Created by: Ganael Laplanche <ganael.laplanche@martymac.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= blobby
|
|
PORTVERSION= 1.0
|
|
PORTREVISION= 14
|
|
PORTEPOCH= 1
|
|
CATEGORIES= games
|
|
MASTER_SITES= SF/${PORTNAME}/Blobby%20Volley%202%20%28Linux%29/${PORTVERSION}
|
|
DISTNAME= blobby2-linux-${PORTVERSION}
|
|
|
|
MAINTAINER= martymac@FreeBSD.org
|
|
COMMENT= Official continuation of the famous Blobby Volley 1.x game
|
|
|
|
LICENSE= GPLv2+
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
NOT_FOR_ARCHS= aarch64
|
|
NOT_FOR_ARCHS_REASON= fails to compile: I can't tell what endian-ness to use for your architecture
|
|
|
|
LIB_DEPENDS= libphysfs.so:devel/physfs
|
|
BUILD_DEPENDS= zip:archivers/zip \
|
|
${LOCALBASE}/include/boost/crc.hpp:devel/boost-libs
|
|
|
|
USES= cmake compiler:c++11-lang dos2unix gl localbase:ldflags \
|
|
pkgconfig sdl
|
|
USE_SDL= sdl2
|
|
USE_GL= gl
|
|
|
|
DOS2UNIX_REGEX= .*\.(c|h|cpp)
|
|
CMAKE_ARGS= -DDATADIR:PATH="${DATADIR}"
|
|
WRKSRC= ${WRKDIR}/blobby-${PORTVERSION}
|
|
|
|
PORTDOCS= AUTHORS ChangeLog README TODO
|
|
|
|
DESKTOP_ENTRIES="Blobby Volley" \
|
|
"" \
|
|
"${DATADIR}/Icon.bmp" \
|
|
"${PORTNAME}" \
|
|
"Game;ArcadeGame;" \
|
|
""
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/data/Icon.bmp ${STAGEDIR}${DATADIR}/
|
|
|
|
post-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|