aboutsummaryrefslogtreecommitdiffstats
path: root/audio/snd/Makefile
blob: 8b81d057921991cccc9197a9d428f40489a9bb81 (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
115
116
117
# New ports collection makefile for:    snd
# Date created:             2000-10-05
# Whom:                 trevor
#
# $FreeBSD$
#

PORTNAME=   snd
PORTVERSION=    13.0
CATEGORIES= audio
MASTER_SITES=   ftp://ccrma-ftp.stanford.edu/pub/Lisp/ \
        http://mirror.mcx2.org/

MAINTAINER= dhn@FreeBSD.org
COMMENT=    Multitracking sound editor and utilities

OPTIONS=    FFTW3   "Use FFTW"              on  \
        GSL "Use GNU Scientific Library"        on  \
        S7  "Use S7 as the extension language"  off  \
        LADSPA  "Include support for LADSPA plugins"    on  \
        MOTIF   "Make Snd with Motif graphics support"  off \
        GTK2    "Make Snd with Gtk+ graphics support"   on \
        X11 "Make Snd with GUI support" on

WANT_GNOME= yes
GNU_CONFIGURE=  yes
CONFIGURE_ARGS= --with-float-samples
MAKEFILE=   makefile
ALL_TARGET= snd snd-info sndplay
MAKE_JOBS_UNSAFE=   yes

MAN1=       snd.1

CFLAGS+=    -I${LOCALBASE}/include
CPPFLAGS+=  -I${LOCALBASE}/include
LDFLAGS+=   -L${LOCALBASE}/lib

.include <bsd.port.pre.mk>

.if ${ARCH} == "sparc64"
BROKEN=     does not compile on sparc64
.endif

.if !defined(WITHOUT_FFTW3)
LIB_DEPENDS+=   fftw3:${PORTSDIR}/math/fftw3
.else
CONFIGURE_ARGS+=    --without-fftw
.endif

.if !defined(WITHOUT_GSL)
LIB_DEPENDS+=   gsl.16:${PORTSDIR}/math/gsl
.else
CONFIGURE_ARGS+=    --without-gsl
.endif

.if !defined(WITHOUT_S7)
CONFIGURE_ARGS+=    --with-s7
.else
CONFIGURE_ARGS+=    --without-s7
.endif

.if !defined(WITHOUT_LADSPA)
BUILD_DEPENDS+= ${LOCALBASE}/include/ladspa.h:${PORTSDIR}/audio/ladspa
RUN_DEPENDS+=   ${LOCALBASE}/include/ladspa.h:${PORTSDIR}/audio/ladspa
.else
CONFIGURE_ARGS+=    --without-ladspa
.endif

.if defined(WITH_GTK2)
USE_GNOME+= gtk20
CONFIGURE_ARGS+=    --with-gtk
.endif
.if defined(WITH_MOTIF)
USE_MOTIF=  yes
CONFIGURE_ARGS+=    --with-motif
.endif

.if defined(WITHOUT_X11)
CONFIGURE_ARGS+=    --with-no-gui
.endif

post-patch:
    @${REINPLACE_CMD} -e 's|^ _Complex| Vaiolate _Complex|g ; \
         s|-O2 -I|-I|g ; \
         s|LDFLAGS -ldl|LDFLAGS|g' ${WRKSRC}/configure
    @${REINPLACE_CMD} -e 's|^sndinfo:|snd-info:|g ; \
         s|-o sndinfo|-o snd-info|g' ${WRKSRC}/makefile.in

do-install:
.for i in snd snd-info sndplay
    ${INSTALL_PROGRAM} ${WRKSRC}/${i} ${PREFIX}/bin
.endfor
    ${INSTALL_MAN} ${WRKSRC}/snd.1 ${MANPREFIX}/man/man1/
.if !defined(WITHOUT_S7)
    @${MKDIR} ${DATADIR}
    ${INSTALL_DATA} ${WRKSRC}/*.scm ${DATADIR}
    @${MKDIR} ${DATADIR}/tools
    ${INSTALL_DATA} ${WRKSRC}/tools/*.scm ${DATADIR}/tools
    @${MKDIR} ${DATADIR}/sndins/samples
    ${INSTALL_DATA} ${WRKSRC}/sndins/samples/*.scm ${DATADIR}/sndins/samples
.endif
.if !defined(NOPORTDOCS)
    @${MKDIR} ${DOCSDIR}
.for i in HISTORY.Snd README.Snd
    ${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}
.endfor
    ${INSTALL_DATA} ${WRKSRC}/*.html ${DOCSDIR}
    @${MKDIR} ${DOCSDIR}/pix
    ${INSTALL_DATA} ${WRKSRC}/pix/*.png ${DOCSDIR}/pix
    cd ${WRKSRC} && ${PAX} -r -w tutorial ${DOCSDIR}
.endif
.if !defined(NOPORTEXAMPLES)
    @${MKDIR} ${EXAMPLESDIR}
    ${INSTALL_DATA} ${WRKSRC}/DotEmacs ${EXAMPLESDIR}
.endif

.include <bsd.port.post.mk>