cd95f27ce7
Eclipse Java Compiler (ECJ) used to build and support the Java frontend of GCC, the GNU Compiler Collection. This is not new code to us, but breaks out what we have been manually (and redundantly) carrying in our four GCC 4.6, 4.7 and 4.8 ports lang/gcc, lang/gcc46, lang/gcc47 and lang/gcc48. PR: 175072
22 lines
484 B
Makefile
22 lines
484 B
Makefile
# Created by: Gerald Pfeifer <gerald@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= gcc-ecj
|
|
PORTVERSION= 4.5
|
|
CATEGORIES= lang java
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEWARE}
|
|
MASTER_SITE_SUBDIR+= java/
|
|
DISTNAME= ecj-${PORTVERSION}.jar
|
|
EXTRACT_SUFX=
|
|
EXTRACT_ONLY=
|
|
|
|
MAINTAINER= gerald@FreeBSD.org
|
|
COMMENT= Eclipse Java Compiler used to build GCC Java
|
|
|
|
NO_BUILD= yes
|
|
PLIST_FILES= share/java/${DISTNAME}
|
|
|
|
do-install:
|
|
${INSTALL_DATA} ${DISTDIR}/${DISTNAME} ${PREFIX}/share/java/
|
|
|
|
.include <bsd.port.mk>
|