View | Details | Raw Unified | Return to bug 179882 | Differences between
and this patch

Collapse All | Expand All

(-)./Makefile (-11 / +12 lines)
Lines 1-4 Link Here
1
# Created by: nemysis@gmx.ch
1
# Created by: nemysis <nemysis@gmx.ch>
2
# $FreeBSD: head/games/thegrind/Makefile 316343 2013-04-23 10:47:02Z bapt $
2
# $FreeBSD: head/games/thegrind/Makefile 316343 2013-04-23 10:47:02Z bapt $
3
3
4
PORTNAME=	thegrind
4
PORTNAME=	thegrind
Lines 8-45 Link Here
8
MASTER_SITES=	SF/radius-engine/ld21/
8
MASTER_SITES=	SF/radius-engine/ld21/
9
9
10
MAINTAINER=	nemysis@gmx.ch
10
MAINTAINER=	nemysis@gmx.ch
11
COMMENT=	A simple game about escaping from work
11
COMMENT=	Simple game about escaping from work
12
12
13
LICENSE=	GPLv2
13
LICENSE=	GPLv2
14
14
15
LIB_DEPENDS=	radius:${PORTSDIR}/graphics/radius-engine \
15
BUILD_DEPENDS=	${LOCALBASE}/lib/libradius-engine.a:${PORTSDIR}/graphics/radius-engine
16
		lua-5.1:${PORTSDIR}/lang/lua \
16
LIB_DEPENDS=	lua-5.1:${PORTSDIR}/lang/lua \
17
		png15:${PORTSDIR}/graphics/png \
17
		png15:${PORTSDIR}/graphics/png \
18
		physfs.1:${PORTSDIR}/devel/physfs
18
		physfs.1:${PORTSDIR}/devel/physfs
19
RUN_DEPENDS=	zip:${PORTSDIR}/archivers/zip
19
RUN_DEPENDS=	zip:${PORTSDIR}/archivers/zip
20
20
21
USES=		pkgconfig
21
USES=		pkgconfig
22
GNU_CONFIGURE=	yes
23
ALL_TARGET=	${PORTNAME}
24
USE_SDL=	sdl sound
22
USE_SDL=	sdl sound
25
USE_GL=		glu
23
USE_GL=		glu
24
GNU_CONFIGURE=	yes
25
ALL_TARGET=	${PORTNAME}
26
26
MAKE_JOBS_SAFE=	yes
27
MAKE_JOBS_SAFE=	yes
27
28
28
PLIST_FILES=	bin/${PORTNAME} \
29
PLIST_FILES=	bin/${PORTNAME} \
29
		share/applications/${PORTNAME}.desktop \
30
		share/applications/${PORTNAME}.desktop \
30
		share/pixmaps/${PORTNAME}.png
31
		share/pixmaps/${PORTNAME}.png \
32
		%%DATADIR%%/${PORTNAME}.zip
33
PLIST_DIRS=	%%DATADIR%%
31
PLIST_DIRSTRY=	share/applications
34
PLIST_DIRSTRY=	share/applications
32
35
33
PORTDATA=	*
34
PORTDOCS=	ChangeLog
36
PORTDOCS=	ChangeLog
35
37
36
.include <bsd.port.options.mk>
38
.include <bsd.port.options.mk>
37
39
38
post-install:
40
post-install:
39
# Documentation
40
.if ${PORT_OPTIONS:MDOCS}
41
.if ${PORT_OPTIONS:MDOCS}
41
	${MKDIR} ${DOCSDIR}
42
	@${MKDIR} ${DOCSDIR}
42
	${INSTALL_DATA} ${WRKSRC}/ChangeLog ${DOCSDIR}
43
	${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR}
43
.endif
44
.endif
44
45
45
.include <bsd.port.mk>
46
.include <bsd.port.mk>

Return to bug 179882