aboutsummaryrefslogtreecommitdiffstats
path: root/audio/mhwaveedit/Makefile
blob: 8c9798611646add4b1c869d2f48c2cfd01e307c7 (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
106
107
108
109
110
111
112
113
114
# ex:ts=8
# Ports collection makefile for:    mhWaveEdit
# Date created:         Apr 19, 2002
# Whom:             ijliao
#
# $FreeBSD$
#

PORTNAME=   mhwaveedit
PORTVERSION=    1.4.15
CATEGORIES= audio
MASTER_SITES=   http://download.gna.org/mhwaveedit/

MAINTAINER= araujo@FreeBSD.org
COMMENT=    A graphical program for editing sound files

USE_BZIP2=  yes
USE_GNOME=  gnomehack gnometarget gtk20
WANT_GNOME= yes
WANT_SDL=   yes
GNU_CONFIGURE=  yes
CONFIGURE_ENV=  CPPFLAGS="-I${LOCALBASE}/include" \
        LDFLAGS="-L${LOCALBASE}/lib"
CONFIGURE_ARGS= --disable-optimization --without-alsalib

PLIST_FILES=    bin/mhwaveedit \
        share/locale/de/LC_MESSAGES/mhwaveedit.mo \
        share/locale/es/LC_MESSAGES/mhwaveedit.mo \
        share/locale/fr/LC_MESSAGES/mhwaveedit.mo \
        share/locale/ru/LC_MESSAGES/mhwaveedit.mo \
        share/locale/sv/LC_MESSAGES/mhwaveedit.mo \
        share/locale/zh_CN/LC_MESSAGES/mhwaveedit.mo \
        share/applications/mhwaveedit.desktop \
        share/pixmaps/mhwaveedit.xpm

PLIST_DIRS= share/applications

OPTIONS=    DOUBLE_SAMPLES "increase quality for 24/32-bit samplerates" off \
        SNDFILE "libsndfile support" on \
        SAMPLERATE "libsamplerate support" on \
        OSS "OSS sound driver" on \
        PORTAUDIO "PortAudio sound driver" off \
        SDL "SDL sound driver" off \
        ARTS "arts sound driver" off \
        JACK "JACK sound driver" off \
        ESD "EsounD sound driver" off \
        LADSPA "LADSPA support" off

.include <bsd.port.pre.mk>

.if defined(WITH_DOUBLE_SAMPLES)
CONFIGURE_ARGS+=    --with-double-samples
.endif

.if defined(WITHOUT_SNDFILE)
CONFIGURE_ARGS+=    --without-libsndfile
.else
LIB_DEPENDS+=   sndfile.1:${PORTSDIR}/audio/libsndfile
.endif

.if defined(WITHOUT_SAMPLERATE)
CONFIGURE_ARGS+=    --without-libsamplerate
.else
LIB_DEPENDS+=   samplerate.1:${PORTSDIR}/audio/libsamplerate
.endif

.if defined(WITHOUT_OSS)
CONFIGURE_ARGS+=    --without-oss
.endif

.if defined(WITH_PORTAUDIO)
LIB_DEPENDS+=   portaudio.0:${PORTSDIR}/audio/portaudio
.else
CONFIGURE_ARGS+=    --without-portaudio
.endif

.if defined(WITH_SDL)
USE_SDL+=   sdl
.else
CONFIGURE_ARGS+=    --without-sdl
.endif

.if defined(WITH_ARTS)
LIB_DEPENDS+=   artsc.0:${PORTSDIR}/audio/arts
.else
CONFIGURE_ARGS+=    --without-arts
.endif

.if defined(WITH_JACK)
LIB_DEPENDS+=   jack.0:${PORTSDIR}/audio/jack
.else
CONFIGURE_ARGS+=    --without-jack
.endif

.if defined(WITH_ESD)
USE_GNOME+= esound
.else
CONFIGURE_ARGS+=    --without-esound
.endif

.if defined(WITH_LADSPA)
BUILD_DEPENDS+= ${LOCALBASE}/include/ladspa.h:${PORTSDIR}/audio/ladspa
RUN_DEPENDS+=   ${LOCALBASE}/include/ladspa.h:${PORTSDIR}/audio/ladspa
.else
CONFIGURE_ENV+= ac_cv_header_ladspa_h=no
.endif

post-extract:
    @${CHMOD} +x ${WRKSRC}/install-sh

post-patch:
    @${REINPLACE_CMD} -e '/AM_CFLAGS=/s|-g||g' ${WRKSRC}/configure

.include <bsd.port.post.mk>