forked from Lainports/freebsd-ports
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
33 lines
876 B
Makefile
33 lines
876 B
Makefile
# Created by: Michael Beer <beerml@sigma6audio.de>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= suil
|
|
PORTVERSION= 0.10.2
|
|
PORTREVISION= 3
|
|
CATEGORIES= audio
|
|
MASTER_SITES= http://download.drobilla.net/
|
|
|
|
MAINTAINER= beerml@sigma6audio.de
|
|
COMMENT= Suil is a C library for loading and wrapping LV2 plugin UIs
|
|
|
|
LICENSE= ISCL
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
BUILD_DEPENDS= lv2>=1.14.0:audio/lv2
|
|
LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \
|
|
libfreetype.so:print/freetype2
|
|
RUN_DEPENDS= lv2>=1.14.0:audio/lv2
|
|
|
|
USES= compiler:c++11-lang gnome pkgconfig python:build qt:5 tar:bzip2 waf
|
|
USE_GNOME= atk cairo gdkpixbuf2 glib20 gtk20 gtk30 pango
|
|
USE_QT= core gui widgets
|
|
USE_XORG= x11
|
|
USE_LDCONFIG= yes
|
|
|
|
PLIST_SUB= SUILVERSION=${PORTVERSION}
|
|
|
|
post-install:
|
|
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libsuil-0.so.${PORTVERSION}
|
|
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/suil-0/*.so
|
|
|
|
.include <bsd.port.mk>
|