blob: 99ed3dc094e13b30f2fe0b844a51836127a74f0b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
PORTNAME= slump
PORTVERSION= 0.003.02
CATEGORIES= games
MASTER_SITES= http://www.samiam.org/slump/old/slump/
MAINTAINER= bofh@FreeBSD.org
COMMENT= Fork of SLIGE that is optimized for making FreeDoom maps
WWW= https://www.samiam.org/slump.html
LICENSE= GPLv2+
USES= tar:bzip2
MAKE_ARGS= FLAGS="${CFLAGS}"
PLIST_FILES= bin/${PORTNAME}
PORTDOCS= README
OPTIONS_DEFINE= DOCS
.include <bsd.port.options.mk>
.if ${OPSYS} == FreeBSD
CFLAGS+= -Wno-error=int-conversion
.endif
do-install:
(cd ${WRKSRC} && ${INSTALL_PROGRAM} ${PORTNAME} ${STAGEDIR}${PREFIX}/bin)
@${MKDIR} ${STAGEDIR}${DOCSDIR}
(cd ${WRKSRC} && ${INSTALL_DATA} README ${STAGEDIR}${DOCSDIR})
.include <bsd.port.mk>
|