Commit 8541f7eb authored by Rene Ladan's avatar Rene Ladan
Browse files

cleanup: Remove expired ports:

2022-01-19 graphics/radiance: Application uses deprecated OpenGL support in libmpv, see the comment in https://github.com/zbanks/radiance/issues/118
parent b4035f62
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -16776,3 +16776,4 @@ emulators/yuzu-qt5|emulators/yuzu|2022-01-20|Merged as QT5 port option
print/py-fonttools3|print/py-fonttools|2022-01-23|Remove obsoleted port. Use print/py-fonttools instead
textproc/rubygem-rouge2|textproc/rubygem-rouge|2022-01-23|Remove obsoleted port. Use textproc/rubygem-rouge instead
security/truecrypt||2022-01-23|Has expired: Development and support for truecrypt ended in 2014
graphics/radiance||2022-01-23|Has expired: Application uses deprecated OpenGL support in libmpv, see the comment in https://github.com/zbanks/radiance/issues/118
+0 −1
Original line number Diff line number Diff line
@@ -954,7 +954,6 @@
    SUBDIR += quesoglc
    SUBDIR += quickqanava
    SUBDIR += qvge
    SUBDIR += radiance
    SUBDIR += radius-engine
    SUBDIR += rapid-photo-downloader
    SUBDIR += raster3d

graphics/radiance/Makefile

deleted100644 → 0
+0 −44
Original line number Diff line number Diff line
PORTNAME=	radiance
DISTVERSION=	0.6.1.20200216
CATEGORIES=	graphics
MASTER_SITES=	https://raw.githubusercontent.com/mpv-player/mpv/v0.32.0/libmpv/:qthelper
PKGNAMESUFFIX=	-video
DISTFILES=	qthelper.hpp:qthelper
DIST_SUBDIR=	${PORTNAME}-${DISTVERSION}
EXTRACT_ONLY=	${DISTNAME}${EXTRACT_SUFX} zbanks-BTrack-1c5b72e_GH0${EXTRACT_SUFX}

MAINTAINER=	yuri@FreeBSD.org
COMMENT=	Video art software for VJs

LICENSE=	MIT
LICENSE_FILE=	${WRKSRC}/LICENSE

DEPRECATED=		Application uses deprecated OpenGL support in libmpv, see the comment in https://github.com/zbanks/radiance/issues/118
EXPIRATION_DATE=	2022-01-19

LIB_DEPENDS=	libfftw3.so:math/fftw3 \
		libfftw3f.so:math/fftw3-float \
		libmpv.so:multimedia/mpv \
		libportaudio.so:audio/portaudio \
		librtmidi.so:audio/rtmidi \
		libsamplerate.so:audio/libsamplerate

USES=		cmake compiler:c++14-lang cpe gl localbase:ldflags qt:5
USE_GITHUB=	yes
USE_QT=		core declarative graphicaleffects gui network  quickcontrols widgets \
		buildtools_build qmake_build
USE_GL=		gl glu

GH_ACCOUNT=	zbanks
GH_TAGNAME=	baf2c40
GH_TUPLE=	zbanks:BTrack:1c5b72e:bt/BTrack

CMAKE_ARGS=	-DRADIANCE_SYSTEM_RESOURCES:STRING=${DATADIR}/

PORTSCOUT=	limit:^[0-9\.]*$$ # prevent tags like release-YYYYMMDD

post-patch:
	@${REINPLACE_CMD} '/-march=native/d' ${WRKSRC}/CMakeLists.txt
	@${MKDIR} ${WRKSRC}/mpv && ${CP} ${DISTDIR}/${DIST_SUBDIR}/qthelper.hpp ${WRKSRC}/mpv

.include <bsd.port.mk>

graphics/radiance/distinfo

deleted100644 → 0
+0 −7
Original line number Diff line number Diff line
TIMESTAMP = 1634434473
SHA256 (radiance-0.6.1.20200216/qthelper.hpp) = 86e1fcba6001829b7e23a856db84d01ebc76e63528f74064d7bc5705015a2684
SIZE (radiance-0.6.1.20200216/qthelper.hpp) = 12024
SHA256 (radiance-0.6.1.20200216/zbanks-radiance-0.6.1.20200216-baf2c40_GH0.tar.gz) = efbdcaa88c092690d253da1bc3d330d704c5d950bff779277bc7e6d54a5d38b2
SIZE (radiance-0.6.1.20200216/zbanks-radiance-0.6.1.20200216-baf2c40_GH0.tar.gz) = 312159
SHA256 (radiance-0.6.1.20200216/zbanks-BTrack-1c5b72e_GH0.tar.gz) = af567e80f6edf031af17bf4e7ed7eb89349be059046a4877defd14bb6cc70899
SIZE (radiance-0.6.1.20200216/zbanks-BTrack-1c5b72e_GH0.tar.gz) = 21590
+0 −12
Original line number Diff line number Diff line
--- CMakeLists.txt.orig	2019-07-13 11:40:32 UTC
+++ CMakeLists.txt
@@ -21,6 +21,9 @@ set(CMAKE_CXX_STANDARD 14)
 set(OpenGL_GL_PREFERENCE GLVND)
 set(RADIANCE_SYSTEM_RESOURCES "${CMAKE_SOURCE_DIR}/resources/" CACHE STRING "The path where Radiance looks for its resources")
 
+# Fix build with Qt 5.13
+set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DQT_NO_DEPRECATED_WARNINGS=Y")
+
 include(Doxygen)
 include_directories(BTrack/src)
 
Loading