blob: 299c8060ff7223a125bb4a86d4a70bdb71d955f1 (
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
|
# Created by: Dmitry Marakasov <amdmi3@FreeBSD.org>
# $FreeBSD$
PORTNAME= pushover
PORTVERSION= 0.0.5
CATEGORIES= games
MASTER_SITES= SF/${PORTNAME}/Pushover/${PORTVERSION}
MAINTAINER= amdmi3@FreeBSD.org
COMMENT= A puzzle game where the goal is to push over all dominoes
LIB_DEPENDS= png15:${PORTSDIR}/graphics/png
GNU_CONFIGURE= yes
USES= gmake pkgconfig
USE_SDL= sdl mixer ttf
USE_LUA= 5.1
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
USES= gettext
PORTDOCS= *
DESKTOP_ENTRIES="Pushover" \
"Push over all dominoes" \
"${DATADIR}/pushover.ico" \
"pushover" \
"Game;LogicGame;" \
false
.include <bsd.port.options.mk>
post-patch:
@${REINPLACE_CMD} -e 's|lua5.1|lua-5.1|' ${WRKSRC}/configure
.if ! ${PORT_OPTIONS:MDOCS}
@${REINPLACE_CMD} -e '/install-data-am/ s|install-dist_docDATA||' \
${WRKSRC}/Makefile.in
.endif
.include <bsd.port.mk>
|