View | Details | Raw Unified | Return to bug 138242
Collapse All | Expand All

(-)/home/trasz/qsynth/Makefile (-5 / +5 lines)
Lines 6-15 Link Here
6
#
6
#
7
7
8
PORTNAME=	qsynth
8
PORTNAME=	qsynth
9
DISTVERSION=	0.3.2
9
DISTVERSION=	0.3.4
10
PORTREVISION=	2
11
CATEGORIES=	audio
10
CATEGORIES=	audio
12
MASTER_SITES=	SF/${PORTNAME}/OldFiles
11
MASTER_SITES=	SF/${PORTNAME}
13
12
14
MAINTAINER=	lazyklimm@gmail.com
13
MAINTAINER=	lazyklimm@gmail.com
15
COMMENT=	Qt fluidsynth front-end application
14
COMMENT=	Qt fluidsynth front-end application
Lines 19-28 Link Here
19
GNU_CONFIGURE=	yes
18
GNU_CONFIGURE=	yes
20
USE_GMAKE=	yes
19
USE_GMAKE=	yes
21
USE_QT_VER=	4
20
USE_QT_VER=	4
22
QT_COMPONENTS=	qmake_build moc_build uic_build rcc_build gui xml
21
QT_COMPONENTS=	qmake_build moc_build uic_build rcc_build gui xml linguist
23
CFLAGS+=	-I${QT_INCDIR} ${PTHREAD_CFLAGS} ${PTHREAD_LIBS}
22
CFLAGS+=	-I${QT_INCDIR} ${PTHREAD_CFLAGS} ${PTHREAD_LIBS}
24
LDFLAGS+=	-L${QT_LIBDIR}
23
LDFLAGS+=	-L${QT_LIBDIR}
25
CONFIGURE_ARGS+=ac_cv_path_ac_moc=${LOCALBASE}/bin/moc-qt4 ac_cv_path_ac_uic=${LOCALBASE}/bin/uic-qt4 \
24
CONFIGURE_ARGS+=ac_cv_path_ac_moc=${LOCALBASE}/bin/moc-qt4 ac_cv_path_ac_uic=${LOCALBASE}/bin/uic-qt4 \
26
		ac_cv_path_ac_qmake=${LOCALBASE}/bin/qmake-qt4
25
		ac_cv_path_ac_qmake=${LOCALBASE}/bin/qmake-qt4 ac_cv_path_ac_lupdate=${LOCALBASE}/bin/lupdate-qt4 \
26
		ac_cv_path_ac_lrelease=${LOCALBASE}/bin/lrelease-qt4
27
27
28
.include <bsd.port.mk>
28
.include <bsd.port.mk>
(-)/home/trasz/qsynth/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
MD5 (qsynth-0.3.2.tar.gz) = be744e4898d05d1b2db89875abac10ba
1
MD5 (qsynth-0.3.4.tar.gz) = 800ab77b59c947bd8f1c8bb10545a59d
2
SHA256 (qsynth-0.3.2.tar.gz) = d747e6a3a1437580416a218df213624c2020a82bb261ac59d7bcfb821146d236
2
SHA256 (qsynth-0.3.4.tar.gz) = 87542acdd2d238d60d1fd26a61157fcdd34c1ce667543f564f31fd027ced8b07
3
SIZE (qsynth-0.3.2.tar.gz) = 139129
3
SIZE (qsynth-0.3.4.tar.gz) = 190655
(-)/home/trasz/qsynth/files/patch-src-qsynthOptions.cpp (+25 lines)
Line 0 Link Here
1
--- src/qsynthOptions.cpp.orig	2009-08-27 18:35:48.000000000 +0200
2
+++ src/qsynthOptions.cpp	2009-08-27 18:36:39.000000000 +0200
3
@@ -155,11 +155,11 @@ void qsynthOptions::print_usage ( const 
4
 	out << "  -n, --no-midi-in" + sEot +
5
 		QObject::tr("Don't create a midi driver to read MIDI input events [default = yes]") + sEol;
6
 	out << "  -m, --midi-driver=[label]" + sEot +
7
-		QObject::tr("The name of the midi driver to use [oss,alsa,alsa_seq,...]") + sEol;
8
+		QObject::tr("The name of the midi driver to use [jack,oss,...]") + sEol;
9
 	out << "  -K, --midi-channels=[num]" + sEot +
10
 		QObject::tr("The number of midi channels [default = 16]") + sEol;
11
 	out << "  -a, --audio-driver=[label]" + sEot +
12
-		QObject::tr("The audio driver [alsa,jack,oss,dsound,...]") + sEol;
13
+		QObject::tr("The audio driver [jack,oss,dsound,...]") + sEol;
14
 	out << "  -j, --connect-jack-outputs" + sEot +
15
 		QObject::tr("Attempt to connect the jack outputs to the physical ports") + sEol;
16
 	out << "  -L, --audio-channels=[num]" + sEot +
17
@@ -459,7 +459,7 @@ void qsynthOptions::loadSetup ( qsynthSe
18
     pSetup->iAudioBufSize    = m_settings.value("/AudioBufSize", 512).toInt();
19
     pSetup->iAudioBufCount   = m_settings.value("/AudioBufCount", 8).toInt();
20
 #else
21
-	pSetup->sMidiDriver      = m_settings.value("/MidiDriver", "alsa_seq").toString();
22
+	pSetup->sMidiDriver      = m_settings.value("/MidiDriver", "jack").toString();
23
     pSetup->sAudioDriver     = m_settings.value("/AudioDriver", "jack").toString();
24
     pSetup->iAudioBufSize    = m_settings.value("/AudioBufSize", 64).toInt();
25
     pSetup->iAudioBufCount   = m_settings.value("/AudioBufCount", 2).toInt();
(-)/home/trasz/qsynth/pkg-plist (+3 lines)
Lines 1-4 Link Here
1
bin/qsynth
1
bin/qsynth
2
share/pixmaps/qsynth.png
2
share/pixmaps/qsynth.png
3
share/applications/qsynth.desktop
3
share/applications/qsynth.desktop
4
share/locale/qsynth_de.qm
5
share/locale/qsynth_es.qm
6
share/locale/qsynth_ru.qm
4
@dirrmtry share/applications
7
@dirrmtry share/applications

Return to bug 138242