diff options
author | gabor <gabor@FreeBSD.org> | 2007-02-24 14:56:41 +0000 |
---|---|---|
committer | gabor <gabor@FreeBSD.org> | 2007-02-24 14:56:41 +0000 |
commit | d12e858984b6646dbd42529db0f7f456dc86fd06 (patch) | |
tree | 775cefa8187c256f469ae5ec90d307887b9f9aba /archivers | |
parent | 8e99ce4289b9b699beaae4e879b32a6eb1eed38c (diff) | |
download | FreeBSD-ports-d12e858984b6646dbd42529db0f7f456dc86fd06.zip FreeBSD-ports-d12e858984b6646dbd42529db0f7f456dc86fd06.tar.gz |
- Does not need compat5x any more [1]
- Need unexisting compat6x, so mark it IGNOREd on 7.x [1]
- Do not override STRIP
- Bump PORTREVISION
Reported by: ache [1]
Approved by: erwin (mentor, implicit)
Diffstat (limited to 'archivers')
-rw-r--r-- | archivers/rar/Makefile | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/archivers/rar/Makefile b/archivers/rar/Makefile index a163f9a..1013f71 100644 --- a/archivers/rar/Makefile +++ b/archivers/rar/Makefile @@ -7,6 +7,7 @@ PORTNAME= rar PORTVERSION= 3.70b1 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= archivers MASTER_SITES= http://files.rarlab.com/rar/ \ @@ -19,7 +20,6 @@ COMMENT= File archiver (binary port) IA32_BINARY_PORT= YES RESTRICTED= only unmodified original package can be distributed NO_BUILD= yes -STRIP= WRKSRC= ${WRKDIR}/rar PLIST_FILES= bin/rar lib/default.sfx etc/rarfiles.lst man/cat1/rar.1 PORTDOCS= technote.txt license.txt whatsnew.txt order.htm \ @@ -27,12 +27,10 @@ PORTDOCS= technote.txt license.txt whatsnew.txt order.htm \ .include <bsd.port.pre.mk> -.if ${OSVERSION} < 503000 -IGNORE= is unsupported on versions prior to FreeBSD 5.3 -.endif - -.if ${OSVERSION} >= 600000 -LIB_DEPENDS+= c.5:${PORTSDIR}/misc/compat5x +# Does not run on < 5.3 and would require compat6x for -CURRENT, +# which does not exist yet +.if (${OSVERSION} < 503000) || (${OSVERSION} >= 700000) +IGNORE= does not run on this FreeBSD version .endif do-install: |