mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:48:54 +00:00
7b643948d8
Reported by: pkg-fallout, Matthew D. Fuller <fullermd@over-yonder.net>
27 lines
560 B
Makefile
27 lines
560 B
Makefile
# Created by: Gerald Pfeifer <gerald@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= gcc
|
|
PORTVERSION= 5.4.0
|
|
PORTREVISION= 2
|
|
CATEGORIES= lang java
|
|
MASTER_SITES= # not applicable
|
|
DISTFILES= # not applicable
|
|
|
|
MAINTAINER= gerald@FreeBSD.org
|
|
COMMENT= Meta-port for the default version of the GNU Compiler Collection
|
|
|
|
RUN_DEPENDS= gcc${GCC_DEFAULT}:lang/gcc${GCC_DEFAULT}
|
|
|
|
NO_ARCH= yes
|
|
NO_BUILD= yes
|
|
|
|
PLIST_FILES= bin/g++ bin/gcc bin/gfortran
|
|
|
|
do-install:
|
|
.for c in gfortran g++ gcc
|
|
${LN} -s ${c}${GCC_DEFAULT} ${STAGEDIR}${PREFIX}/bin/${c}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|