diff options
author | mat <mat@FreeBSD.org> | 2017-04-11 23:21:23 +0800 |
---|---|---|
committer | mat <mat@FreeBSD.org> | 2017-04-11 23:21:23 +0800 |
commit | af9c60625bda3e97370cc91b90ea306f292c209d (patch) | |
tree | 5a5d971bd61fde66fbaa1b8da9469708d182ffc8 /lang/gcc6-devel | |
parent | e0cd3420489573ca501c588fae760fa3739e168c (diff) | |
download | freebsd-ports-gnome-af9c60625bda3e97370cc91b90ea306f292c209d.tar.gz freebsd-ports-gnome-af9c60625bda3e97370cc91b90ea306f292c209d.tar.zst freebsd-ports-gnome-af9c60625bda3e97370cc91b90ea306f292c209d.zip |
Make defining both PORTVERSION and DISTVERSION a DEV_ERROR.
There are two cases:
- The upstream versionning is compatible with our versionning, or using
DISTVERSION's magic leads to a compatible PORTVERSION, use
DISTVERSION. If it is possible to use DISTVERSIONPREFIX and
DISTVERSIONSUFFIX to make it compatible, use them.
- The upstream versionning is not compatible with our versionning, and
DISTVERSION's magic does not lead to a correct PORTVERSION, then set
PORTVERSION to the equivalent of our versionning, and set DISTNAME.
It is possible to use a third variable where you store upstream's
version and use it to compute PORTVERSION and/or DISTNAME, like the
dns/bind9* ports do.
Sponsored by: Absolight
Diffstat (limited to 'lang/gcc6-devel')
-rw-r--r-- | lang/gcc6-devel/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lang/gcc6-devel/Makefile b/lang/gcc6-devel/Makefile index 6ca6c0225f6c..1411657b2282 100644 --- a/lang/gcc6-devel/Makefile +++ b/lang/gcc6-devel/Makefile @@ -4,7 +4,8 @@ PORTNAME= gcc PORTVERSION= 6.3.1.s20170406 CATEGORIES= lang java -MASTER_SITES= GCC/snapshots/${DISTVERSION} +MASTER_SITES= GCC/snapshots/${DIST_VERSION} +DISTNAME= gcc-${DIST_VERSION} PKGNAMESUFFIX= ${SUFFIX}-devel MAINTAINER= gerald@FreeBSD.org @@ -26,11 +27,11 @@ BUILD_DEPENDS+= runtest:misc/dejagnu CPE_VENDOR= gnu CPE_VERSION= ${GCC_VERSION} -# DISTVERSION relates to downloads, GCC_VERSION and SUFFIX to names +# DIST_VERSION relates to downloads, GCC_VERSION and SUFFIX to names # of executables and directories once installed. A PORTVERSION of # Y.2.1.s20140817 results in values of Y-20140817, Y.2.1, and Y # for these three. -DISTVERSION= ${PORTVERSION:C/([0-9]+).*\.s([0-9]+)/\1-\2/} +DIST_VERSION= ${PORTVERSION:C/([0-9]+).*\.s([0-9]+)/\1-\2/} PORTREVISION= 1 GCC_VERSION= ${PORTVERSION:C/(.+)\.s[0-9]{8}/\1/} SUFFIX= ${PORTVERSION:C/([0-9]+).*/\1/} |