blob: e393ceaa2dd17a8f276a24e68bc362172d67723a (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
# Created by: nemysis <nemysis@gmx.ch>
# $FreeBSD$
PORTNAME= thegrind
PORTVERSION= 0.1.2
PORTREVISION= 1
CATEGORIES= games
MASTER_SITES= SF/radius-engine/ld21/
MAINTAINER= nemysis@gmx.ch
COMMENT= Simple game about escaping from work
LICENSE= GPLv2
BUILD_DEPENDS= ${LOCALBASE}/lib/libradius-engine.a:${PORTSDIR}/graphics/radius-engine
LIB_DEPENDS= lua-5.1:${PORTSDIR}/lang/lua \
png15:${PORTSDIR}/graphics/png \
physfs.1:${PORTSDIR}/devel/physfs
RUN_DEPENDS= zip:${PORTSDIR}/archivers/zip
USES= pkgconfig
USE_SDL= sdl sound
USE_GL= glu
GNU_CONFIGURE= yes
ALL_TARGET= ${PORTNAME}
PLIST_FILES= bin/${PORTNAME} \
share/applications/${PORTNAME}.desktop \
share/pixmaps/${PORTNAME}.png \
%%DATADIR%%/${PORTNAME}.zip
PLIST_DIRS= %%DATADIR%%
PLIST_DIRSTRY= share/applications
PORTDOCS= ChangeLog
OPTIONS_DEFINE= DOCS
.include <bsd.port.options.mk>
post-install:
.if ${PORT_OPTIONS:MDOCS}
@${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR}
.endif
.include <bsd.port.mk>
|