aboutsummaryrefslogtreecommitdiff
path: root/games/pysycache-lang/Makefile
blob: f246b7421a5df5521e1cdb79b7e7a7ebcdf9d0e4 (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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
# New ports collection makefile for:	pysycache-lang
# Date created:		2006-02-22
# Whom:			Jose Alonso Cardenas Marquez <acardenas@bsd.org.pe>
#
# $FreeBSD$
#

PORTNAME=	lang
PORTVERSION=	2.0
PORTREVISION=	2
CATEGORIES=	games python
MASTER_SITES=	http://download.gna.org/py4childs/pysycache/v${PORTVERSION}/
PKGNAMEPREFIX=	pysycache-
DISTFILES=	#
DIST_SUBDIR=	pysycache

MAINTAINER=	acm@FreeBSD.org
COMMENT=	The pysycache lang support

RUN_DEPENDS=	pysycache.py:${PORTSDIR}/games/pysycache

USE_ZIP=	yes
NO_BUILD=	yes
WRKSRC=		${WRKDIR}/${PKGNAMEPREFIX}${PORTNAME}
DATADIR=	${PREFIX}/share/${DIST_SUBDIR}

OPTIONS=	FRENCH	"French language support"	on \
		GERMAN	"German language support"	on \
		ITALIAN	"Italian language support"	on \
		PORTUGUESE	"Portuguese language support"	on \
		SPANISH	"Spanish language support"	on

.include <bsd.port.pre.mk>

.if !defined(WITHOUT_FRENCH)
DISTFILES+=	pysycache-lang-fr-${PORTVERSION}.zip
PLIST_SUB+=	FRENCH=""
FLAG_LANG=	true
HAVE_LANG+=	fr
.else
PLIST_SUB+=	FRENCH="@comment "
.endif

.if !defined(WITHOUT_GERMAN)
DISTFILES+=	pysycache-lang-de-${PORTVERSION}.zip
PLIST_SUB+=	GERMAN=""
FLAG_LANG=	true
HAVE_LANG+=	de
.else
PLIST_SUB+=	GERMAN="@comment "
.endif

.if !defined(WITHOUT_ITALIAN)
DISTFILES+=	pysycache-lang-it-${PORTVERSION}.zip
PLIST_SUB+=	ITALIAN=""
FLAG_LANG=	true
HAVE_LANG+=	it
.else
PLIST_SUB+=	ITALIAN="@comment "
.endif

.if !defined(WITHOUT_PORTUGUESE)
DISTFILES+=	pysycache-lang-pt-${PORTVERSION}.zip
PLIST_SUB+=	PORTUGUESE=""
FLAG_LANG=	true
HAVE_LANG+=	pt
.else
PLIST_SUB+=	PORTUGUESE="@comment "
.endif

.if !defined(WITHOUT_SPANISH)
DISTFILES+=	pysycache-lang-es-${PORTVERSION}.zip
PLIST_SUB+=	SPANISH=""
FLAG_LANG=	true
HAVE_LANG+=	es
.else
PLIST_SUB+=	SPANISH="@comment "
.endif

pre-fetch:
.if defined(FLAG_LANG)
	@${TRUE}
.else
	@${ECHO} "################################"
	@${ECHO} "#                              #"
	@${ECHO} "# No language support selected #"
	@${ECHO} "#                              #"
	@${ECHO} "################################"
	@${FALSE}
.endif

do-extract:
	@${MKDIR} ${WRKSRC}
.for OPT in ${HAVE_LANG}
	@${UNZIP_CMD} -q ${_DISTDIR}/pysycache-lang-${OPT}-${PORTVERSION}.zip -d ${WRKSRC}
.endfor

do-install:
	@cd ${WRKSRC} && \
		${FIND} * -type d -exec ${MKDIR} "${DATADIR}/{}" \; && \
		${FIND} * -type f -exec ${INSTALL_DATA} "{}" "${DATADIR}/{}" \;

.include <bsd.port.post.mk>