diff options
author | nox <nox@FreeBSD.org> | 2014-08-13 00:47:48 +0800 |
---|---|---|
committer | nox <nox@FreeBSD.org> | 2014-08-13 00:47:48 +0800 |
commit | 35a7bfd5ad2770c320a79aef6c40306279daa687 (patch) | |
tree | 1408d3fc86644a3574078c23a8b35efb12494d5f | |
parent | 7448d53fee286abff7a7bc427c2981a23fb1f0e9 (diff) | |
download | freebsd-ports-gnome-35a7bfd5ad2770c320a79aef6c40306279daa687.tar.gz freebsd-ports-gnome-35a7bfd5ad2770c320a79aef6c40306279daa687.tar.zst freebsd-ports-gnome-35a7bfd5ad2770c320a79aef6c40306279daa687.zip |
- Turns out the 10.0-R clang crashes I couldn't reproduce (on amd64) were
in fact on i386 - since this was the first report I got of this kind
(and I don't have an i386 box anymore myself) let's assume it's an
i386 issue. So change the USE_GCC=any to be i386-only.
- Bump PORTREVISION.
PR: 192583
-rw-r--r-- | multimedia/vdr/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/multimedia/vdr/Makefile b/multimedia/vdr/Makefile index 0099f98dd2dc..010da51c9f5b 100644 --- a/multimedia/vdr/Makefile +++ b/multimedia/vdr/Makefile @@ -3,7 +3,7 @@ PORTNAME= vdr PORTVERSION= 1.7.29 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= multimedia MASTER_SITES= ftp://ftp.tvdr.de/vdr/Developer/ @@ -24,7 +24,6 @@ STB0899_SIGNAL_DESC= STB0899 signal strength patch OPTIONS_DEFAULT= IPTVPATCH TTXPATCH USES= pkgconfig gettext iconv:wchar_t gmake shebangfix tar:bzip2 -USE_GCC= any SHEBANG_FILES= svdrpsend DIST_SUBDIR= vdr PORTDOCS= COPYING INSTALL MANUAL README HISTORY @@ -55,6 +54,10 @@ PLIST_SUB+= VDR_GROUP=${VDR_GROUP} .include <bsd.port.options.mk> +.if ${ARCH} == "i386" +USE_GCC= any +.endif + EXTRA_PATCHES+= ${FILESDIR}/vdr-1.7.15-disable_ca_updates.patch .if ${PORT_OPTIONS:MIPTVPATCH} EXTRA_PATCHES+= ${FILESDIR}/vdr-1.7.15-disable_eitscan.patch |