60d1a83c2a
- Replace ${MASTER_SITE_FOO} with FOO. - Merge MASTER_SITE_SUBDIR into MASTER_SITES when possible. (This means 99.9% of the time.) - Remove occurrences of MASTER_SITE_LOCAL when no subdirectory was present and no hint of what it should be was present. - Fix some logic. - And generally, make things more simple and easy to understand. While there, add magic values to the FESTIVAL, GENTOO, GIMP, GNUPG, QT and SAMBA macros. Also, replace some EXTRACT_SUFX occurences with USES=tar:*. Checked by: make fetch-urlall-list With hat: portmgr Sponsored by: Absolight
39 lines
886 B
Makefile
39 lines
886 B
Makefile
# Created by: Dag-Erling C. Smørgrav <des@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= abuse_sdl
|
|
PORTVERSION= 0.8
|
|
PORTREVISION= 5
|
|
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>
|