diff options
author | edwin <edwin@FreeBSD.org> | 2007-05-02 15:14:50 +0800 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2007-05-02 15:14:50 +0800 |
commit | 38c2c39c3d693a5239f6ea1214d287d8edae59a1 (patch) | |
tree | fdf7aeaceb5c7bf3c103622e62f2ffcbf501e98e /biology | |
parent | 12d5d91deba2c2bf50c915138936d6d6b5c9c6d7 (diff) | |
download | freebsd-ports-gnome-38c2c39c3d693a5239f6ea1214d287d8edae59a1.tar.gz freebsd-ports-gnome-38c2c39c3d693a5239f6ea1214d287d8edae59a1.tar.zst freebsd-ports-gnome-38c2c39c3d693a5239f6ea1214d287d8edae59a1.zip |
[patch] cleanup non-supported FreeBSD versions
PR: ports/111725
Submitted by: Edwin Groothuis <edwin@mavetju.org>
Approved by: maintainer timeout
Diffstat (limited to 'biology')
-rw-r--r-- | biology/blast/Makefile | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/biology/blast/Makefile b/biology/blast/Makefile index 7c3e41759d9d..5299f94a01c6 100644 --- a/biology/blast/Makefile +++ b/biology/blast/Makefile @@ -42,15 +42,11 @@ XDFORMAT_LINKS= setdb pressdb .if ${ARCH} == amd64 .if ${OSVERSION} >= 600000 DISTNAME= blast${PORTVERSION:S/.0//}.freebsd-6.x-x64 -.elif ${OSVERSION} >= 500001 -DISTNAME= blast${PORTVERSION:S/.0//}.freebsd-5.x-x64 .else -IGNORE= There are no WU-BLAST executables for your combination of architecture and FreeBSD version. Consider moving to one of the supported versions for your architecture +DISTNAME= blast${PORTVERSION:S/.0//}.freebsd-5.x-x64 .endif .else -.if ${OSVERSION} < 500000 -DISTNAME= blast${PORTVERSION:S/.0//}.freebsd-4.x-i686 -.elif ${OSVERSION} >= 50000 && ${OSVERSION} < 600000 +.if ${OSVERSION} >= 50000 && ${OSVERSION} < 600000 DISTNAME= blast${PORTVERSION:S/.0//}.freebsd-5.x-i686 .else DISTNAME= blast${PORTVERSION:S/.0//}.freebsd-6.x-i686 |