mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-28 05:29:48 +00:00
54 lines
1.3 KiB
Makefile
54 lines
1.3 KiB
Makefile
# Created by: lazyklimm <lazyklimm@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= qsynth
|
|
PORTVERSION= 0.3.7
|
|
CATEGORIES= audio
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}%20%28stable%29/${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Qt fluidsynth front-end application
|
|
|
|
LICENSE= GPLv2 # (or later)
|
|
|
|
LIB_DEPENDS= fluidsynth:${PORTSDIR}/audio/fluidsynth
|
|
|
|
OPTIONS_DEFINE= GRADIENT SYSTEM_TRAY
|
|
OPTIONS_DEFAULT= GRADIENT SYSTEM_TRAY
|
|
GRADIENT_DESC= Gradient eye-candy
|
|
SYSTEM_TRAY_DESC= System-tray icon
|
|
|
|
USE_QT4= gui linguist_build moc_build qmake_build rcc_build uic_build
|
|
NO_STAGE= yes
|
|
QT_NONSTANDARD= yes
|
|
USES= gmake
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ENV= ac_cv_path_ac_moc=${MOC} \
|
|
ac_cv_path_ac_uic=${UIC} \
|
|
ac_cv_path_ac_qmake=${QMAKE} \
|
|
ac_cv_path_ac_lupdate=${LOCALBASE}/bin/lupdate-qt4 \
|
|
ac_cv_path_ac_lrelease=${LOCALBASE}/bin/lrelease-qt4
|
|
CONFIGURE_ARGS= --localedir=${DATADIR} \
|
|
--with-qt=${QT_PREFIX} \
|
|
--with-fluidsynth=${LOCALBASE}
|
|
INSTALLS_ICONS= yes
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if empty(PORT_OPTIONS:MGRADIENT)
|
|
CONFIGURE_ARGS+=--disable-gradient
|
|
.endif
|
|
|
|
.if empty(PORT_OPTIONS:MSYSTEM_TRAY)
|
|
CONFIGURE_ARGS+=--disable-system-tray
|
|
.endif
|
|
|
|
post-configure:
|
|
@(cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${QMAKE} -o qsynth.mak \
|
|
${QMAKEFLAGS})
|
|
|
|
post-install:
|
|
@${STRIP_CMD} ${PREFIX}/bin/qsynth
|
|
|
|
.include <bsd.port.mk>
|