mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-10 07:04:03 +00:00
32003f9153
do not feature gets() any longer. PR: 238682 Submitted by: emaste Approved by: maintainer timeout Sponsored by: The FreeBSD Foundation
30 lines
737 B
Makefile
30 lines
737 B
Makefile
# $FreeBSD$
|
|
|
|
# The attempt to upgrade to version 6.4.1 was done incorrectly.
|
|
# When 6.5.1 is released, set the SNAPSHOT to the release date,
|
|
# but also set BUILD_RELEASE to "yes". Otherwise snapshots will
|
|
# continue to be used and eventually be removed from mirrors.
|
|
|
|
GCC_BRANCH= 6
|
|
GCC_POINT= 4.1
|
|
GCC_VERSION= ${GCC_BRANCH}.${GCC_POINT}
|
|
SNAPSHOT= 20180516
|
|
BUILD_RELEASE= no
|
|
MAIN_PR= 1
|
|
UTIL_PR= 0
|
|
ARMV7_PR= 0
|
|
ARM64_PR= 0
|
|
X86_PR= 0
|
|
|
|
.if ${BUILD_RELEASE:Mno}
|
|
# Snapshot naming pattern
|
|
IDENTIFICATION= gcc-${GCC_BRANCH}-${SNAPSHOT}
|
|
MS_SUBDIR= snapshots/${GCC_BRANCH}-${SNAPSHOT}
|
|
PHASE= snapshot
|
|
.else
|
|
# Release naming pattern
|
|
IDENTIFICATION= gcc-${GCC_VERSION}
|
|
MS_SUBDIR= releases/gcc-${GCC_VERSION}
|
|
PHASE= release
|
|
.endif
|