mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:48:54 +00:00
937cf8d882
libsuil_x11_in_qt5.so was not built as it now depends on qt5 x11extras (the condition for x11-in_qt5 changed from "HAVE_QT5" to "HAVE_QT5 and HAVE_QT5_X11" in wscript, and the configure stage reported 'Qt5X11Extras >= 5.1.0' as missing). Approved by: just-fix-it
34 lines
869 B
Makefile
34 lines
869 B
Makefile
# Created by: Michael Beer <beerml@sigma6audio.de>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= suil
|
|
PORTVERSION= 0.10.8
|
|
CATEGORIES= audio
|
|
MASTER_SITES= http://download.drobilla.net/
|
|
|
|
MAINTAINER= beerml@sigma6audio.de
|
|
COMMENT= 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 xorg
|
|
USE_GNOME= atk cairo gdkpixbuf2 glib20 gtk20 gtk30 pango
|
|
USE_QT= core gui widgets x11extras
|
|
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>
|