blob: b1555bc82d8ed9b70596f13724f756a91110052a (
plain)
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
|
# New ports collection makefile for: belote
# Date created: 09 Nov 2006
# Whom: Jean-Yves Lefort <jylefort@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= belote
PORTVERSION= 20061109
PORTREVISION= 2
CATEGORIES= french games java
MASTER_SITES= http://coincher.free.fr/
DISTNAME= belote
MAINTAINER= jylefort@FreeBSD.org
COMMENT= Un jeu de belote coinchée contre l'ordinateur ou en réseau
USE_ZIP= yes
USE_JAVA= yes
JAVA_VERSION= 1.5+
NO_WRKSUBDIR= yes
NO_BUILD= yes
SUB_FILES= belote
SUB_LIST= JAVA="${JAVA}"
DESKTOP_ENTRIES="Belote" \
"Jouer à la belote" \
"${PREFIX}/share/pixmaps/belote.gif" \
"belote" \
"" \
false
post-extract:
@${UNZIP_CMD} -qo ${WRKSRC}/data.bin rsc/vp.gif -d ${WRKSRC}
do-install:
${INSTALL_SCRIPT} ${WRKDIR}/belote ${PREFIX}/bin
${MKDIR} ${DATADIR}
.for f in belote.jar data.bin
${INSTALL_DATA} ${WRKSRC}/${f} ${DATADIR}
.endfor
${MKDIR} ${PREFIX}/share/pixmaps
${INSTALL_DATA} ${WRKSRC}/rsc/vp.gif ${PREFIX}/share/pixmaps/belote.gif
.include <bsd.port.mk>
|