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

(-)./Makefile (-5 / +26 lines)
Lines 3-27 Link Here
3
3
4
PORTNAME=	euchre
4
PORTNAME=	euchre
5
PORTVERSION=	0.8
5
PORTVERSION=	0.8
6
PORTREVISION=	1
6
CATEGORIES=	games
7
CATEGORIES=	games
7
MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}
8
MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} \
9
		SF/nemysisfreebsdp/:icons
10
DISTFILES=	${PORTNAME}-${DISTVERSION}${EXTRACT_SUFX} \
11
		${PORTNAME}.png:icons
12
EXTRACT_ONLY=	${PORTNAME}-${DISTVERSION}${EXTRACT_SUFX}
8
13
9
MAINTAINER=	ports@FreeBSD.org
14
MAINTAINER=	nemysis@gmx.ch
10
COMMENT=	Very popular card game with variable skill levels
15
COMMENT=	Very popular card game with variable skill levels
11
16
12
LICENSE=	GPLv2 # (or later)
17
LICENSE=	GPLv2
13
18
14
USE_GNOME=	gtk20
19
USE_GNOME=	gtk20
15
GNU_CONFIGURE=	yes
20
GNU_CONFIGURE=	yes
16
CONFIGURE_ARGS=	--disable-silent-rules
21
CONFIGURE_ARGS=	--disable-silent-rules
17
MAKE_JOBS_SAFE=	yes
22
MAKE_JOBS_SAFE=	yes
18
23
19
PLIST_FILES=	bin/euchre
24
PLIST_FILES=	bin/${PORTNAME} \
25
		share/pixmaps/${PORTNAME}.png
20
26
21
DESKTOP_ENTRIES="Euchre" "" "" "${PORTNAME}" "" true
27
PORTDOCS=	AUTHORS ChangeLog README TODO
28
29
DESKTOP_ENTRIES="Euchre" "${COMMENT}" "${PORTNAME}" \
30
		"${PORTNAME}" "Game;CardGame;" false
31
32
.include <bsd.port.options.mk>
22
33
23
post-patch:
34
post-patch:
24
	@${REINPLACE_CMD} -e \
35
	@${REINPLACE_CMD} -e \
25
		'/^AM_/s|-Werror||' ${WRKSRC}/configure
36
		'/^AM_/s|-Werror||' ${WRKSRC}/configure
37
	@${REINPLACE_CMD} -e 's|int)|long int)|g' \
38
		${WRKSRC}/src/gui/callbacks.cpp ${WRKSRC}/src/lib/Game.cpp
39
40
post-install:
41
	${INSTALL_DATA} ${_DISTDIR}/${PORTNAME}.png ${PREFIX}/share/pixmaps
42
43
.if ${PORT_OPTIONS:MDOCS}
44
	@${MKDIR} ${DOCSDIR}
45
	${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR}
46
.endif
26
47
27
.include <bsd.port.mk>
48
.include <bsd.port.mk>
(-)./distinfo (+2 lines)
Lines 1-2 Link Here
1
SHA256 (euchre-0.8.tar.gz) = c339d29ea6837f344b98134ecdd7aa52fb958454bd4dd6145430b197752ed78b
1
SHA256 (euchre-0.8.tar.gz) = c339d29ea6837f344b98134ecdd7aa52fb958454bd4dd6145430b197752ed78b
2
SIZE (euchre-0.8.tar.gz) = 213490
2
SIZE (euchre-0.8.tar.gz) = 213490
3
SHA256 (euchre.png) = 94b5b20412e4bddc84ad066070843a0a3dd9504fd99fa497d8f32739c610ee31
4
SIZE (euchre.png) = 6563
(-)./pkg-descr (-1 / +4 lines)
Lines 1-3 Link Here
1
A very basic interpretation of the game 'Euchre.'
1
Euchre is a card game played with the 9s, 10s, Jacks, Queens, Kings,
2
and Aces of all 4 suits.  Each player is dealt 5 cards, leaving 4
3
cards in the deck.  The top card of the remaining 4 is then turned
4
over and this is the trump candidate.
2
5
3
WWW: http://sourceforge.net/projects/euchre/
6
WWW: http://sourceforge.net/projects/euchre/

Return to bug 179287