blob: 3b3a17d5a244737aa2c3d034ad7acfbf64bfc231 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
|
# New ports collection makefile for: lmms
# Date created: 04 Dec 2006
# Whom: Jean-Yves Lefort <jylefort@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= lmms
PORTVERSION= 0.4.6
PORTREVISION= 1
PORTEPOCH= 1
CATEGORIES= audio
MASTER_SITES= SF
MAINTAINER= ports@FreeBSD.org
COMMENT= An all-in-one sequencer, drum machine, sampler and more
BUILD_DEPENDS= ${LOCALBASE}/include/ladspa.h:${PORTSDIR}/audio/ladspa
LIB_DEPENDS= FLAC.10:${PORTSDIR}/audio/flac \
fluidsynth.4:${PORTSDIR}/audio/fluidsynth \
samplerate.1:${PORTSDIR}/audio/libsamplerate \
sndfile.1:${PORTSDIR}/audio/libsndfile \
vorbis.4:${PORTSDIR}/audio/libvorbis \
fftw3f.5:${PORTSDIR}/math/fftw3-float
RUN_DEPENDS:= ${BUILD_DEPENDS} \
${LOCALBASE}/share/ladspa/rdf/caps.rdf:${PORTSDIR}/audio/caps-plugins \
${LOCALBASE}/lib/ladspa/cmt.so:${PORTSDIR}/audio/cmt \
${LOCALBASE}/share/ladspa/rdf/swh-plugins.rdf:${PORTSDIR}/audio/swhplugins \
${LOCALBASE}/share/ladspa/rdf/tap-plugins.rdf:${PORTSDIR}/audio/tap-plugins \
update-mime-database:${PORTSDIR}/misc/shared-mime-info
OPTIONS= JACK "Enable JACK support" OFF \
PULSEAUDIO "Enable PulseAudio support" OFF \
SDL "Enable SDL support" OFF
USE_BZIP2= yes
USE_XORG= xft
USE_QT_VER= 4
QT_COMPONENTS= corelib gui xml moc_build uic_build rcc_build \
qmake_build
USE_CMAKE= yes
CMAKE_USE_PTHREAD= yes
CMAKE_ARGS= -DWANT_ALSA:BOOL=OFF \
-DWANT_CALF:BOOL=OFF \
-DWANT_CAPS:BOOL=OFF \
-DWANT_CMT:BOOL=OFF \
-DWANT_SWH:BOOL=OFF \
-DWANT_STK:BOOL=OFF \
-DWANT_TAP:BOOL=OFF \
-DWANT_VST:BOOL=OFF
MANCOMPRESSED= yes
MAN1= lmms.1
.include <bsd.port.pre.mk>
.if ${OSVERSION} >= 800501
BROKEN= does not build
.endif
.if defined(WITH_JACK)
LIB_DEPENDS+= jack.0:${PORTSDIR}/audio/jack
.else
CMAKE_ARGS+= -DWANT_JACK:BOOL=OFF
.endif
.if defined(WITH_PULSEAUDIO)
LIB_DEPENDS+= pulse.0:${PORTSDIR}/audio/pulseaudio
.else
CMAKE_ARGS+= -DWANT_PULSEAUDIO:BOOL=OFF
.endif
.if defined(WITH_SDL)
USE_SDL= sdl
.else
CMAKE_ARGS+= -DWANT_SDL:BOOL=OFF
.endif
post-patch:
.for file in data/lmms.desktop
@${REINPLACE_CMD} -e \
'/^Icon/s|=.*$$|=lmms|g ; \
/^Exec/s|=.*$$|=lmms|g ; \
/^Categories/s|$$|;|g ; \
/^MimeType/s|$$|;|g' ${WRKSRC}/${file}
.endfor
.for file in data/lmms src/core/config_mgr.cpp
@${REINPLACE_CMD} -e \
's|/usr|${PREFIX}|g' ${WRKSRC}/${file}
.endfor
.for file in src/core/ladspa_manager.cpp
@${REINPLACE_CMD} -e \
'/\/usr\/lib/d ; \
s|/usr/local|${PREFIX}|g' ${WRKSRC}/${file}
.endfor
post-install:
@${LN} -sf ${DATADIR}/themes/default/icon.png \
${PREFIX}/share/pixmaps/lmms.png
@-update-mime-database ${PREFIX}/share/mime
# make it setuid-root to be able to set realtime priority
# (root privileges are dropped in the main routine)
${CHMOD} u+s ${PREFIX}/bin/lmms
.include <bsd.port.post.mk>
|