the major version (so this does not result in a need for PORTEPOCH). PR: 219275 Reported by: jbeich
25 lines
553 B
Makefile
25 lines
553 B
Makefile
# Created by: Gerald Pfeifer <gerald@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= gcc
|
|
PORTVERSION= ${GCC_DEFAULT}
|
|
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>
|