diff options
author | Rene Ladan <rene@FreeBSD.org> | 2018-11-02 21:32:34 +0800 |
---|---|---|
committer | Rene Ladan <rene@FreeBSD.org> | 2018-11-02 21:32:34 +0800 |
commit | 8a502cb2d43b4059a5678ee4539ca03603104107 (patch) | |
tree | 2c2c3d0def8d9d1ad349013f7b532f0065f57789 /audio | |
parent | f60d4bacdc58ec061406d72cace1ac1266952e39 (diff) | |
download | freebsd-ports-gnome-8a502cb2d43b4059a5678ee4539ca03603104107.tar.gz freebsd-ports-gnome-8a502cb2d43b4059a5678ee4539ca03603104107.tar.zst freebsd-ports-gnome-8a502cb2d43b4059a5678ee4539ca03603104107.zip |
Remove compatibility code for FreeBSD < 11.2 from all ports.
Simplify some ports where DragonFlyBSD no longer needs to be special-cased.
Submitted by: rene
Reviewed by: bapt, jbeich
Differential Revision: https://reviews.freebsd.org/D17724
Diffstat (limited to 'audio')
-rw-r--r-- | audio/kwave/Makefile | 12 | ||||
-rw-r--r-- | audio/logitechmediaserver/Makefile | 1 | ||||
-rw-r--r-- | audio/supercollider/Makefile | 2 | ||||
-rw-r--r-- | audio/teamspeak3-server/Makefile | 4 | ||||
-rw-r--r-- | audio/wavpack/Makefile | 9 | ||||
-rw-r--r-- | audio/zynaddsubfx/Makefile | 8 |
6 files changed, 1 insertions, 35 deletions
diff --git a/audio/kwave/Makefile b/audio/kwave/Makefile index 2e94737f199d..0fbc47490ec4 100644 --- a/audio/kwave/Makefile +++ b/audio/kwave/Makefile @@ -36,14 +36,4 @@ PULSEAUDIO_LIB_DEPENDS= libpulse.so:audio/pulseaudio OPTIONS_DEFINE= DOCS -.include <bsd.port.pre.mk> - -. if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1100000 && ${OSVERSION} < 1101505 -BUILD_DEPENDS+= llvm50>=0:devel/llvm50 -# Build is broken on 11.x as clang is not new enough. -# Workaround by manually setting CC to clang50. -CC= ${LOCALBASE}/bin/clang50 -CXX= ${LOCALBASE}/bin/clang++50 -. endif - -.include <bsd.port.post.mk> +.include <bsd.port.mk> diff --git a/audio/logitechmediaserver/Makefile b/audio/logitechmediaserver/Makefile index e22462e3319c..f28a426ce72f 100644 --- a/audio/logitechmediaserver/Makefile +++ b/audio/logitechmediaserver/Makefile @@ -13,7 +13,6 @@ LICENSE_FILE= ${WRKSRC}/License.txt LICENSE_PERMS= no-dist-mirror no-dist-sell no-pkg-mirror no-pkg-sell ONLY_FOR_ARCHS= amd64 i386 -BROKEN_FreeBSD_10_i386= libmediascan does not compile BUILD_DEPENDS= nasm:devel/nasm \ bash:shells/bash \ diff --git a/audio/supercollider/Makefile b/audio/supercollider/Makefile index d491a763454f..e0426bcf76fa 100644 --- a/audio/supercollider/Makefile +++ b/audio/supercollider/Makefile @@ -40,8 +40,6 @@ DESKTOP_ENTRIES="SuperCollider IDE" "" "${LOCALBASE}/share/pixmaps/sc_ide.svg" \ OPTIONS_DEFINE= HELP SUPERNOVA OPTIONS_DEFAULT= HELP SUPERNOVA -# SUPERNOVA option BROKEN_FreeBSD_10: No viable conversion from 'boost::lockfree::detail::tagged_ptr<nova::freelist::freelist_node>' -OPTIONS_EXCLUDE_FreeBSD_10= SUPERNOVA OPTIONS_SUB= yes HELP_DESC= Install on-line help text diff --git a/audio/teamspeak3-server/Makefile b/audio/teamspeak3-server/Makefile index 812cf4144839..14a4b8ade37f 100644 --- a/audio/teamspeak3-server/Makefile +++ b/audio/teamspeak3-server/Makefile @@ -56,11 +56,7 @@ MYSQL_VARS_OFF= SUB_LIST+=MYSQL= .include <bsd.port.options.mk> -.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1100000 && ${OSVERSION} < 1100507 -SUB_LIST+= CD="cd \$$db_dir" -.else SUB_LIST+= CD= -.endif .if ${ARCH} == "i386" TEAMSPEAK_ARCH= x86 diff --git a/audio/wavpack/Makefile b/audio/wavpack/Makefile index e8196d7b3b45..5057e31d3da0 100644 --- a/audio/wavpack/Makefile +++ b/audio/wavpack/Makefile @@ -28,13 +28,4 @@ OPTIONS_DEFAULT_armv7= ASM ASM_CONFIGURE_OFF= --disable-asm ASM_DESC= Optimized assembler routines (requires MMX on x86) -.include <bsd.port.options.mk> - -# ASM needs clang 3.8+ -# depend on llvm60 since it's more likely to be installed already than 3.8 -.if ${OSVERSION} < 1100101 && ${PORT_OPTIONS:MASM} -BUILD_DEPENDS+= clang60:devel/llvm60 -CC= clang60 -.endif - .include <bsd.port.mk> diff --git a/audio/zynaddsubfx/Makefile b/audio/zynaddsubfx/Makefile index 626aaace82df..c5b741943d60 100644 --- a/audio/zynaddsubfx/Makefile +++ b/audio/zynaddsubfx/Makefile @@ -81,16 +81,8 @@ PORTEXAMPLES= * CMAKE_ARGS+= -DZYN_DATADIR:STRING=${DATADIR} CMAKE_ARGS+= -DZYN_EXAMPLESDIR:STRING=${EXAMPLESDIR} -.include <bsd.port.options.mk> .include <bsd.port.pre.mk> -.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1100000 -# Build fix for ZynAddSubFx -BUILD_DEPENDS+= clang60:devel/llvm60 -CC= clang60 -CXX= clang++60 -.endif - .if ${ARCH} == "i386" || ${ARCH} == "amd64" CFLAGS+= -DASM_F2I_YES .endif |