diff options
author | edwin <edwin@FreeBSD.org> | 2003-11-02 19:34:05 +0800 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2003-11-02 19:34:05 +0800 |
commit | c0c8dc0921dd287e1a1210ace446f54200868c46 (patch) | |
tree | 1e25805c7515db1ef00e256abb7fb5798b6c5428 /mail/postfix-current | |
parent | 09c2d6a03460e5fdea1bc337d1368ea20bee8d2e (diff) | |
download | freebsd-ports-gnome-c0c8dc0921dd287e1a1210ace446f54200868c46.tar.gz freebsd-ports-gnome-c0c8dc0921dd287e1a1210ace446f54200868c46.tar.zst freebsd-ports-gnome-c0c8dc0921dd287e1a1210ace446f54200868c46.zip |
Fix ports with a non-conforming PORTVERSION
This is a followup to PR 56958.
The following ports have a hyphen in their version number:
Toni Andjelkovic <toni@soth.at>
devel/pcsc-lite:
1.2.0-rc1 => 1.2.0.r1
John R. Shannon <john@johnrshannon.com>
devel/gdb53-act:
5.3-act => 5.3
Vivek Khera <khera@kciLink.com>
mail/postfix-current:
2.0.14-20030812 => 2.0.14.20030812
PORTEPOCH => 2
neither pkg_version nor portupgrade see the part of the version
before the last '-', i.e. devel/pcsc-lite is seen as version
rc1, 1.3.0-b2 would be regarded as a previous version.
PR: ports/58642
Submitted by: Oliver Eikemeier <eikemeier@fillmore-labs.com>
Diffstat (limited to 'mail/postfix-current')
-rw-r--r-- | mail/postfix-current/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mail/postfix-current/Makefile b/mail/postfix-current/Makefile index c4040169345b..5d13d2e8f61d 100644 --- a/mail/postfix-current/Makefile +++ b/mail/postfix-current/Makefile @@ -15,8 +15,8 @@ # NOTE: PCRE is enabled by default unless you specifically disable it. PORTNAME= postfix -PORTVERSION= 2.0.14-20030812 -PORTEPOCH= 1 +PORTVERSION= 2.0.14.20030812 +PORTEPOCH= 2 CATEGORIES= mail ipv6 MASTER_SITES= ftp://ftp.porcupine.org/mirrors/postfix-release/experimental/ \ ftp://ftp.aet.tu-cottbus.de/pub/postfix_tls/%SUBDIR%/ \ @@ -25,7 +25,7 @@ MASTER_SITES= ftp://ftp.porcupine.org/mirrors/postfix-release/experimental/ \ ftp://ftp.samurai.com/pub/postfix/experimental/ \ ${MASTER_SITE_RINGSERVER:S,%SUBDIR%,net/mail/postfix/experimental/&,} MASTER_SITE_SUBDIR= . old related/postfix -DISTNAME= postfix-${PORTVERSION} +DISTNAME= postfix-${PORTVERSION:S/.200/-200/} DIST_SUBDIR= ${PORTNAME} MAINTAINER= khera@kciLink.com |