mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-15 03:14:23 +00:00
a1b290c54d
Extend the expiration of unmaintained leaf ports that are broken with -fno-common and previously had a short expiration date. The new date is set to 2021-04-01, meaning the ports will be in the 2021Q2 branch, giving people until 2021-06-30 (10 months from now) to fix issues. Improve the wording of the deprecation message, mentioning both llvm 11 and -fno-common. Bump portrevision to force reinstall. This way the warning message about deprecation will be displayed to users installing or reinstalling the software. MFH: 2020Q3 (maybe)
34 lines
869 B
Makefile
34 lines
869 B
Makefile
# Created by: trasz <trasz@pin.if.uz.zgora.pl>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= jamin
|
|
PORTVERSION= 0.95.0
|
|
PORTREVISION= 16
|
|
CATEGORIES= audio
|
|
MASTER_SITES= SF
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= JACK Audio Mastering interface
|
|
|
|
LIB_DEPENDS= libfftw3f.so:math/fftw3-float \
|
|
libjack.so:audio/jack \
|
|
liblo.so:audio/liblo
|
|
RUN_DEPENDS= ${LOCALBASE}/include/ladspa.h:audio/ladspa \
|
|
${LOCALBASE}/lib/ladspa/fast_lookahead_limiter_1913.so:audio/swhplugins
|
|
BUILD_DEPENDS= ${LOCALBASE}/include/fftw3.h:math/fftw3
|
|
|
|
GNU_CONFIGURE= yes
|
|
USES= desktop-file-utils gmake gnome libtool pkgconfig \
|
|
shared-mime-info
|
|
USE_GNOME= gtk20 intltool libxml2
|
|
|
|
CFLAGS+= -fcommon
|
|
|
|
DEPRECATED= Unmaintained and dead upstream, does not build with -fno-common (llvm 11)
|
|
EXPIRATION_DATE=2021-04-01
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/ladspa/jamincont_1912.so
|
|
|
|
.include <bsd.port.mk>
|