b6ec06f079
Ports 02f27a83b4 fixed the ports tree to the C locale so it would work
correctly in environments where users use a locale that isn't compatible
with the C locale, e.g. xx_YY.UTF-8 where [A-Z] includes more than just
upper case letters. USE_LOCALE was introduced to let ports use another
locale if they needed it. The C.UTF-8 locale was created later on to be
mostly compatible with the C locale.
Switch the ports tree locale to C.UTF-8 and remove USE_LOCALE. The
world has moved to Unicode so all ports either require it or know how to
build correctly in a Unicode environment.
PR: 295945
Exp-run by: antoine
35 lines
829 B
Makefile
35 lines
829 B
Makefile
PORTNAME= BlackjackClient
|
|
PORTVERSION= 0.1
|
|
PORTREVISION= 3
|
|
CATEGORIES= games java
|
|
MASTER_SITES= SF/t-blackjack/
|
|
DISTNAME= t-blackjack-beta
|
|
|
|
MAINTAINER= jgh@FreeBSD.org
|
|
COMMENT= Simple Blackjack game in Java
|
|
WWW= https://sourceforge.net/projects/t-blackjack/
|
|
|
|
LICENSE= GPLv2
|
|
|
|
USES= java zip
|
|
|
|
PLIST_FILES= bin/${PORTNAME} \
|
|
${JAVAJARDIR}/${PORTNAME}.jar
|
|
SUB_FILES= ${PORTNAME}.sh
|
|
|
|
post-extract-script:
|
|
@${ECHO_CMD} "Main-Class: ${PORTNAME}" > ${WRKDIR}/src/MANIFEST.MF
|
|
|
|
do-build:
|
|
(cd ${WRKDIR}/src && ${JAVAC} ${PORTNAME}.java)
|
|
|
|
post-build-script:
|
|
@cd ${WRKDIR}/src && \
|
|
${JAR} -cfm ${PORTNAME}.jar MANIFEST.MF au ${PORTNAME}.class
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME}.sh ${STAGEDIR}${PREFIX}/bin/${PORTNAME}
|
|
${INSTALL_DATA} ${WRKDIR}/src/${PORTNAME}.jar ${STAGEDIR}${JAVAJARDIR}
|
|
|
|
.include <bsd.port.mk>
|