blob: 22c41c2eed7da34f1403cad7943197e3a2c63101 (
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
|
# Created by: Thomas Gellekum <tg@FreeBSD.org>
# $FreeBSD$
PORTNAME= xskat
PORTVERSION= 4.0
PORTREVISION= 2
CATEGORIES= games
MASTER_SITES= http://www.xskat.de/
DISTFILES= ${DISTNAME}${EXTRACT_SUFX}
MAINTAINER= ports@FreeBSD.org
COMMENT= Play the card game Skat
.if defined(WITH_ALTENBURGER_CARDS)
DISTFILES+= xskat-cards.tar.gz
RESTRICTED= The altenburger card file is NOT freely redistributable!
.endif
USES= imake
USE_XORG= x11
MAN1= xskat.1 xskat-de.1
PLIST_FILES= bin/xskat
NO_STAGE= yes
pre-fetch:
.if !defined(WITH_ALTENBURGER_CARDS)
@${ECHO}
@${ECHO} "You can compile xskat with the beautiful original"
@${ECHO} "Altenburger card set by setting WITH_ALTENBURGER_CARDS"
@${ECHO}
.endif
post-patch:
.if defined(WITH_ALTENBURGER_CARDS)
cd ${WRKSRC}; ${CP} ../xskat-cards.c cards.c
.endif
.include <bsd.port.mk>
|