diff options
author | eadler <eadler@FreeBSD.org> | 2012-01-09 12:01:17 +0800 |
---|---|---|
committer | eadler <eadler@FreeBSD.org> | 2012-01-09 12:01:17 +0800 |
commit | cb22869dc2ceb21005021637a2d9a3faf9759f78 (patch) | |
tree | bad5b4bf1d7e657f7f9e78813b8be5f95fdf76e1 /ftp | |
parent | 4738c2964da31d9d19bd227b6ca2d4c6b7b6ca35 (diff) | |
download | freebsd-ports-gnome-cb22869dc2ceb21005021637a2d9a3faf9759f78.tar.gz freebsd-ports-gnome-cb22869dc2ceb21005021637a2d9a3faf9759f78.tar.zst freebsd-ports-gnome-cb22869dc2ceb21005021637a2d9a3faf9759f78.zip |
- Remove outdated version checks
Reviewed by: nox
Diffstat (limited to 'ftp')
-rw-r--r-- | ftp/ncftpd/Makefile | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/ftp/ncftpd/Makefile b/ftp/ncftpd/Makefile index 9063be361317..3c147bd6dcbe 100644 --- a/ftp/ncftpd/Makefile +++ b/ftp/ncftpd/Makefile @@ -29,19 +29,16 @@ PORTDOCS= install.html README README.freebsd LICENSE .include <bsd.port.pre.mk> -.if ${OSVERSION} >= 800000 +.if ${OSVERSION} >= 900000 +BINVER= 9.0 +.elif ${OSVERSION} >= 800000 BINVER= 8.0 -.elif ${OSVERSION} >= 700000 -BINVER= 7.0 .else -BINVER= 6.0 +BINVER= 7.0 .endif .if ${ARCH} == amd64 DIST_ARCH= x86_64 -.if ${BINVER} == "6.0" -BINVER= 6.2 -.endif .else DIST_ARCH= i386 .endif |