mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-22 00:35:15 +00:00
021be14f65
COMMENT typos and surrounding whitespace fixes. A few Makefiles where not included as they contain Latin-1 characters that break the Phabricator workflow. Categories J-L. CR: D305 Approved by: portmgr (swills)
31 lines
860 B
Makefile
31 lines
860 B
Makefile
# Created by: nordwick@xcf.berkeley.edu
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= cup
|
|
PORTVERSION= 11.a
|
|
PORTREVISION= 2
|
|
CATEGORIES= java devel
|
|
MASTER_SITES= http://www2.cs.tum.edu/projects/cup/ \
|
|
http://mirrors.mcdermottroe.com/www2.cs.tum.edu/projects/cup/
|
|
PKGNAMEPREFIX= java-
|
|
DISTNAME= ${PKGNAMEPREFIX}${PORTNAME}-v${PORTVERSION:S|.||}-20050516-sources
|
|
|
|
MAINTAINER= eg@fbsd.lt
|
|
COMMENT= LALR parser generator in Java
|
|
|
|
USE_JAVA= yes
|
|
USE_ANT= yes
|
|
WRKSRC= ${WRKDIR}/cup-tum
|
|
|
|
# Silly hack because the naming in CUP is all over the place
|
|
DISTJARNAME= ${PKGNAMEPREFIX}${PORTNAME}-10k-TUM
|
|
|
|
PLIST_FILES= %%JAVAJARDIR%%/${DISTJARNAME}.jar \
|
|
%%JAVAJARDIR%%/${DISTJARNAME}-runtime.jar
|
|
|
|
do-install:
|
|
${INSTALL_DATA} ${WRKSRC}/dist/${DISTJARNAME}.jar ${STAGEDIR}${JAVAJARDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/dist/${DISTJARNAME}-runtime.jar ${STAGEDIR}${JAVAJARDIR}
|
|
|
|
.include <bsd.port.mk>
|