freebsd-ports/lang/gcc/Makefile
Gerald Pfeifer 0f5f9d33e8 Replace the hard-coded PORTVERSION by GCC_DEFAULT now that we did dump
the major version (so this does not result in a need for PORTEPOCH).

PR:		219275
Reported by:	jbeich
2017-09-11 14:54:12 +00:00

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>