1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-23 04:23:08 +00:00
freebsd-ports/lang/ceylon/Makefile
Jung-uk Kim 5a52a08234 Clean up after java/openjdk6 and java/openjdk6-jre removal
java/openjdk6 support was removed from Mk/bsd.java.mk (r512662) and
java/openjdk6 and java/openjdk6-jre were removed from the ports tree
(r512663).  Now this patch completely removes remaining stuff from the
ports tree.

PR:			241953 (exp-run)
Reviewed by:		glewis
Approved by:		portmgr (antoine)
Differential Revision:	https://reviews.freebsd.org/D22342
2019-11-26 21:46:12 +00:00

42 lines
892 B
Makefile

# Created by: Li-Wen Hsu <lwhsu@FreeBSD.org>
# $FreeBSD$
PORTNAME= ceylon
PORTVERSION= 1.3.3
CATEGORIES= lang java
MASTER_SITES= http://downloads.ceylon-lang.org/cli/
MAINTAINER= ports@FreeBSD.org
COMMENT= Ceylon is a language for writing large programs in teams
LICENSE= APACHE20 GPLv2
LICENSE_COMB= multi
USES= zip
NO_BUILD= yes
USE_JAVA= yes
JAVA_RUN= yes
PORTDATA= *
CEYLON_SCRIPTS= ceylon ceylon-sh-setup
CEYLON_DIRS= contrib lib repo samples templates
do-install:
${RM} ${WRKSRC}/bin/*.bat
${INSTALL_MAN} ${WRKSRC}/doc/man/man1/* ${STAGEDIR}/${MAN1PREFIX}/man/man1
${MKDIR} ${STAGEDIR}${DATADIR}
.for d in ${CEYLON_DIRS}
cd ${WRKSRC} && ${COPYTREE_SHARE} ${d} ${STAGEDIR}${DATADIR}
.endfor
cd ${WRKSRC} && ${COPYTREE_BIN} bin ${STAGEDIR}${DATADIR}
.for s in ${CEYLON_SCRIPTS}
${LN} -s ${DATADIR}/bin/${s} ${STAGEDIR}/${PREFIX}/bin/${s}
.endfor
.include <bsd.port.mk>