blob: 8dcb4400dd63449131a23166d0acd66519de9742 (
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
# Created by: Maxim Sobolev <sobomax@FreeBSD.org>
# $FreeBSD$
PORTNAME= icebreaker
PORTVERSION= 1.9.8
CATEGORIES= games
MASTER_SITES= http://mattdm.org/icebreaker/1.9.x/
EXTRACT_SUFX= .tgz
MAINTAINER= nemysis@gmx.ch
COMMENT= Game similar to Jezzball or Barrack
LICENSE= GPLv2
BUILD_DEPENDS= pnmtopng:${PORTSDIR}/graphics/netpbm
USE_SDL= mixer sdl
USE_GMAKE= yes
PLIST_FILES= bin/${PORTNAME} \
share/pixmaps/${PORTNAME}.png \
share/applications/${PORTNAME}.desktop
PLIST_DIRSTRY= share/applications
PORTDATA= *
PORTDOCS= ChangeLog README README.SDL README.ifyoumakechanges README.themes TODO
MAN6= ${PORTNAME}.6
.include <bsd.port.options.mk>
post-patch:
@${REINPLACE_CMD} \
-e 's|CC=gcc|CC?=g++|' \
-e 's|sdl-config|$(SDL_CONFIG)|' \
-e 's|prefix=/usr/local|prefix=${PREFIX}|' \
-e 's|mandir=$$(prefix)/share/man|mandir=$$(prefix)/man|' \
-e 's|highscoredir=/var/local/lib/games|highscoredir=/var/games|' \
-e 's|CFLAGS=|CFLAGS+=|' \
-e 's|OPTIMIZE=-O3|OPTIMIZE=|' \
-e 's|$$(CC) $$(CFLAGS) $$^ -o icebreaker $$(SDL_LIB)|$$(CC) $$(LDFLAGS) $$(CFLAGS) $$^ -o icebreaker $$(SDL_LIB)|' \
-e 's|install -s -g games -m 2755 icebreaker $(bindir)|install -g games -m 2755 icebreaker $(bindir)|' \
-e 's|install -s -m 755 icebreaker $(bindir)|install -m 755 icebreaker $(bindir)|' \
-e 's|chown -f games:games|chown -f root:games|' \
${WRKSRC}/Makefile
@${REINPLACE_CMD} \
-e 's|%{Summary}|Game similar to Jezzball or Barrack|' \
-e 's|/usr/share/icebreaker/icebreaker_48.bmp|icebreaker|' \
${WRKSRC}/icebreaker.desktop
post-build:
@(cd ${WRKSRC} && ${LOCALBASE}/bin/winicontoppm -bestqual icebreaker_32.ico | \
${LOCALBASE}/bin/pnmtopng > icebreaker.png)
post-install:
${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.png ${PREFIX}/share/pixmaps
${MKDIR} ${PREFIX}/share/applications
${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.desktop ${PREFIX}/share/applications
.if ${PORT_OPTIONS:MDOCS}
${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR}
.endif
.include <bsd.port.mk>
|