View | Details | Raw Unified | Return to bug 185932
Collapse All | Expand All

(-)games/gtkatlantic/Makefile (-6 / +10 lines)
Lines 2-25 Link Here
2
# $FreeBSD: head/games/gtkatlantic/Makefile 327730 2013-09-20 17:36:33Z bapt $
2
# $FreeBSD: head/games/gtkatlantic/Makefile 327730 2013-09-20 17:36:33Z bapt $
3
3
4
PORTNAME=	gtkatlantic
4
PORTNAME=	gtkatlantic
5
PORTVERSION=	0.4.3
5
PORTVERSION=	0.4.4
6
PORTREVISION=	1
7
CATEGORIES=	games
6
CATEGORIES=	games
8
MASTER_SITES=	http://download.tuxfamily.org/gtkatlantic/downloads/v0.4/
7
MASTER_SITES=	http://download.tuxfamily.org/gtkatlantic/downloads/v0.4/
9
8
10
MAINTAINER=	ports@FreeBSD.org
9
MAINTAINER=	ports@FreeBSD.org
11
COMMENT=	A game like Monopoly(tm)
10
COMMENT=	Monopoly(tm) board game client for the monopd server
11
12
LICENSE=	GPLv2 # (or later)
12
13
13
USES=		gmake pkgconfig
14
USE_BZIP2=	yes
14
USE_BZIP2=	yes
15
USES=		gmake pkgconfig
15
USE_GNOME=	gtk20
16
USE_GNOME=	gtk20
16
GNU_CONFIGURE=	yes
17
GNU_CONFIGURE=	yes
18
17
CPPFLAGS+=	-I${LOCALBASE}/include
19
CPPFLAGS+=	-I${LOCALBASE}/include
18
LDFLAGS+=	-L${LOCALBASE}/lib
20
LDFLAGS+=	-L${LOCALBASE}/lib
19
21
20
NO_STAGE=	yes
22
DESKTOP_ENTRIES="GtkAtlantic" "" "${DATADIR}/icon32x32.xpm" "${PORTNAME}" \
23
		"Game;BoardGame;GTK;" ""
24
21
post-patch:
25
post-patch:
22
	@${REINPLACE_CMD} -e '/-Werror/s|^|#|' ${WRKSRC}/configure
26
	@${REINPLACE_CMD} -e '/CFLAGS=/s|-ggdb|$$CFLAGS|' ${WRKSRC}/configure
23
	@${REINPLACE_CMD} -e 's|mkdir |$$(mkdir_p) |g' ${WRKSRC}/Makefile.in
27
	@${REINPLACE_CMD} -e 's|mkdir |$$(mkdir_p) |g' ${WRKSRC}/Makefile.in
24
28
25
.include <bsd.port.mk>
29
.include <bsd.port.mk>
(-)games/gtkatlantic/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (gtkatlantic-0.4.3.tar.bz2) = 5711eab90b831816da48b1d30f0f0d2b511bfaa6b057240977296f2c133184b1
1
SHA256 (gtkatlantic-0.4.4.tar.bz2) = 1f1676f74325807e3e405bd668b41764c76a67897f51290aaaf711db5e699c37
2
SIZE (gtkatlantic-0.4.3.tar.bz2) = 748589
2
SIZE (gtkatlantic-0.4.4.tar.bz2) = 778679
(-)games/gtkatlantic/files/patch-readpng.c (-11 lines)
Lines 1-11 Link Here
1
--- src/readpng.c.orig	2010-04-18 11:36:49.000000000 +0900
2
+++ src/readpng.c	2010-09-14 03:27:35.000000000 +0900
3
@@ -33,7 +33,7 @@
4
 	png_uint_32 width, height;
5
 
6
 	fread(sig, 1, 8, infile);
7
-	if (!png_check_sig((png_bytep)sig, 8))
8
+	if (png_sig_cmp((png_bytep)sig, 0, 8))
9
 		return FALSE;
10
 
11
 	*png_struct = png_create_read_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL);
(-)games/gtkatlantic/pkg-plist (+2 lines)
Lines 5-11 Link Here
5
%%DATADIR%%/default.conf
5
%%DATADIR%%/default.conf
6
%%DATADIR%%/help.index
6
%%DATADIR%%/help.index
7
%%DATADIR%%/houses.png
7
%%DATADIR%%/houses.png
8
%%DATADIR%%/icon16x16.ico
8
%%DATADIR%%/icon16x16.xpm
9
%%DATADIR%%/icon16x16.xpm
10
%%DATADIR%%/icon32x32.ico
9
%%DATADIR%%/icon32x32.xpm
11
%%DATADIR%%/icon32x32.xpm
10
%%DATADIR%%/interface.xml
12
%%DATADIR%%/interface.xml
11
%%DATADIR%%/logo.png
13
%%DATADIR%%/logo.png

Return to bug 185932