mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-26 05:02:18 +00:00
b760897dde
Approved by: swills (mentor) Differential Revision: https://reviews.freebsd.org/D10845
40 lines
886 B
Makefile
40 lines
886 B
Makefile
# Created by: Dag-Erling C. Smørgrav <des@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= abuse_sdl
|
|
PORTVERSION= 0.8
|
|
PORTREVISION= 7
|
|
CATEGORIES= games
|
|
MASTER_SITES= GENTOO \
|
|
http://abuse.zoy.org/raw-attachment/wiki/download/
|
|
DISTNAME= abuse-${DISTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= SDL port of the Abuse game engine
|
|
|
|
LICENSE= GPLv2
|
|
|
|
USES= pathfix
|
|
USE_GL= gl
|
|
USE_SDL= mixer sdl
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --with-assetdir=${DATADIR} --enable-release
|
|
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
PORTDOCS= AUTHORS ChangeLog NEWS README
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
DESKTOP_ENTRIES="Abuse-SDL" "" "abuse" \
|
|
"abuse" "Game;StrategyGame;" ""
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/doc/abuse.png \
|
|
${STAGEDIR}${PREFIX}/share/pixmaps/
|
|
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|