blob: 813dfa4890e3dc8c4285973462a284f7e1e7c65c (
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
|
# New ports collection makefile for: pysycache-themes
# Date created: 2006-02-22
# Whom: Jose Alonso Cardenas Marquez <acardenas@bsd.org.pe>
#
# $FreeBSD$
#
PORTNAME= themes
PORTVERSION= 2.0
PORTREVISION= 2
CATEGORIES= games python
MASTER_SITES= http://themes.pysycache.free.fr/
PKGNAMEPREFIX= pysycache-
DISTFILES= #
DIST_SUBDIR= pysycache
MAINTAINER= acm@FreeBSD.org
COMMENT= The pysycache themes support
RUN_DEPENDS= pysycache.py:${PORTSDIR}/games/pysycache
USE_ZIP= yes
NO_BUILD= yes
WRKSRC= ${WRKDIR}/${PKGNAMEPREFIX}${PORTNAME}
DATADIR= ${PREFIX}/share/${DIST_SUBDIR}
OPTIONS= ANIMALS_MOVE "Animals move mouse theme" on \
EARTH_MOVE "Earth move mouse theme" on \
FOOD_MOVE "Food move mouse theme" on \
PLANTS_MOVE "Plants move mouse theme" on \
SKY_MOVE "Sky move mouse theme" on \
SPORTS_MOVE "Sports move mouse theme" on \
VEHICLE_MOVE "Vehicle move mouse theme" on \
WORLD_MOVE "World move mouse theme" on \
AFRICA_ACTIVITY "Africa activity theme" on
.include <bsd.port.pre.mk>
.if !defined(WITHOUT_ANIMALS_MOVE)
DISTFILES+= animals-${PORTVERSION}.zip
PLIST_SUB+= ANIMALS=""
FLAG_THEME= true
HAVE_THEME+= animals
.else
PLIST_SUB+= ANIMALS="@comment "
.endif
.if !defined(WITHOUT_EARTH_MOVE)
DISTFILES+= earth-${PORTVERSION}.zip
PLIST_SUB+= EARTH=""
FLAG_THEME= true
HAVE_THEME+= earth
.else
PLIST_SUB+= EARTH="@comment "
.endif
.if !defined(WITHOUT_FOOD_MOVE)
DISTFILES+= food-${PORTVERSION}.zip
PLIST_SUB+= FOOD=""
FLAG_THEME= true
HAVE_THEME+= food
.else
PLIST_SUB+= FOOD="@comment "
.endif
.if !defined(WITHOUT_PLANTS_MOVE)
DISTFILES+= plants-${PORTVERSION}.zip
PLIST_SUB+= PLANTS=""
FLAG_THEME= true
HAVE_THEME+= plants
.else
PLIST_SUB+= PLANTS="@comment "
.endif
.if !defined(WITHOUT_SKY_MOVE)
DISTFILES+= sky-${PORTVERSION}.zip
PLIST_SUB+= SKY=""
FLAG_THEME= true
HAVE_THEME+= sky
.else
PLIST_SUB+= SKY="@comment "
.endif
.if !defined(WITHOUT_SPORTS_MOVE)
DISTFILES+= sports-${PORTVERSION}.zip
PLIST_SUB+= SPORTS=""
FLAG_THEME= true
HAVE_THEME+= sports
.else
PLIST_SUB+= SPORTS="@comment "
.endif
.if !defined(WITHOUT_VEHICLE_MOVE)
DISTFILES+= vehicle-${PORTVERSION}.zip
PLIST_SUB+= VEHICLE=""
FLAG_THEME= true
HAVE_THEME+= vehicle
.else
PLIST_SUB+= VEHICLE="@comment "
.endif
.if !defined(WITHOUT_WORLD_MOVE)
DISTFILES+= world-${PORTVERSION}.zip
PLIST_SUB+= WORLD=""
FLAG_THEME= true
HAVE_THEME+= world
.else
PLIST_SUB+= WORLD="@comment "
.endif
.if !defined(WITHOUT_AFRICA_ACTIVITY)
DISTFILES+= africa-${PORTVERSION}.zip
PLIST_SUB+= AFRICA=""
FLAG_THEME= true
HAVE_THEME+= africa
.else
PLIST_SUB+= AFRICA="@comment "
.endif
pre-fetch:
.if defined(FLAG_THEME)
@${TRUE}
.else
@${ECHO} "######################"
@${ECHO} "# #"
@${ECHO} "# No themes selected #"
@${ECHO} "# #"
@${ECHO} "######################"
@${FALSE}
.endif
do-extract:
@${MKDIR} ${WRKSRC}
.for OPT in ${HAVE_THEME}
@${UNZIP_CMD} -q ${_DISTDIR}/${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>
|