as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3 to GCC 9.1 under most circumstances now after revision 507371. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, everything INDEX-11 shows with a dependency on lang/gcc9 now. PR: 238330
44 lines
1.1 KiB
Makefile
44 lines
1.1 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= amsynth
|
|
DISTVERSION= 1.9.0
|
|
PORTREVISION= 1
|
|
CATEGORIES= audio
|
|
MASTER_SITES= https://github.com/amsynth/amsynth/releases/download/release-${DISTVERSION}/
|
|
|
|
MAINTAINER= tobik@FreeBSD.org
|
|
COMMENT= Analog modelling software synth
|
|
|
|
LICENSE= GPLv2+
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/include/dssi.h:audio/dssi
|
|
RUN_DEPENDS= dssi>0:audio/dssi
|
|
LIB_DEPENDS= libasound.so:audio/alsa-lib \
|
|
libfontconfig.so:x11-fonts/fontconfig \
|
|
libfreetype.so:print/freetype2 \
|
|
libjack.so:audio/jack \
|
|
liblash.so:audio/lash \
|
|
liblo.so:audio/liblo \
|
|
libsndfile.so:audio/libsndfile
|
|
|
|
USES= compiler:c++11-lang gettext-tools gmake gnome libtool localbase \
|
|
pkgconfig tar:bzip2
|
|
USE_GNOME= atk cairo gdkpixbuf2 glib20 gtk20 intltool pango
|
|
INSTALLS_ICONS= yes
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
OPTIONS_DEFINE= NLS
|
|
OPTIONS_SUB= yes
|
|
|
|
NLS_USES= gettext
|
|
NLS_CONFIGURE_ENABLE= nls
|
|
|
|
post-install:
|
|
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/dssi/*.so \
|
|
${STAGEDIR}${PREFIX}/lib/dssi/amsynth_dssi/amsynth_dssi_gtk \
|
|
${STAGEDIR}${PREFIX}/lib/vst/amsynth_vst.so \
|
|
${STAGEDIR}${PREFIX}/lib/lv2/amsynth.lv2/*.so
|
|
|
|
.include <bsd.port.mk>
|