diff options
author | oliver <oliver@FreeBSD.org> | 2005-10-19 15:16:24 +0000 |
---|---|---|
committer | oliver <oliver@FreeBSD.org> | 2005-10-19 15:16:24 +0000 |
commit | 2f5303464ddb6cd06e801d24cb46a1861637b5fd (patch) | |
tree | 7690f6c3e3600b6d152ee053a14917ef086dc4ff /multimedia | |
parent | 3a91722fda215600c9f66fda819c9cb4a59d17b3 (diff) | |
download | FreeBSD-ports-2f5303464ddb6cd06e801d24cb46a1861637b5fd.zip FreeBSD-ports-2f5303464ddb6cd06e801d24cb46a1861637b5fd.tar.gz |
works on amd64 with 32bit compat to - so add amd64 to ONLY_FOR_ARCHS and
map it to the 32bit binary which is provided
Diffstat (limited to 'multimedia')
-rw-r--r-- | multimedia/vcdgear/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/multimedia/vcdgear/Makefile b/multimedia/vcdgear/Makefile index 3883973..89e38d8 100644 --- a/multimedia/vcdgear/Makefile +++ b/multimedia/vcdgear/Makefile @@ -13,14 +13,14 @@ MASTER_SITES= http://www.vcdgear.com/files/ MAINTAINER= ports@FreeBSD.org COMMENT= A tool to convert VCDs from cue/bin format to mpeg -ONLY_FOR_ARCHS= alpha i386 +ONLY_FOR_ARCHS= alpha i386 amd64 .include <bsd.port.pre.mk> .if ${OSVERSION} < 300004 IGNORE= "Only an ELF binary is distributed; requires FreeBSD 3.1 or later" .endif -.if ${ARCH} == i386 +.if ${ARCH} == i386 || ${ARCH} == amd64 DISTNAME= ${PORTNAME}16d_i386_freebsd42 .elif ${ARCH} == alpha DISTNAME= ${PORTNAME}16d_alpha_freebsd41 |