freebsd-ports/audio/mhwaveedit/Makefile
Stanislav Sedov 0d2725682b - Update devel/sdl12 to version 1.2.11. Now we employ stock SDL directory
structure (i.e. include/SDL for includes and sdl-config for configuration
   binary)
 - Update graphics/sdl_ttf to version 2.0.8
 - Update graphics/sdl_image to version 1.2.5
 - Update audio/sdl_mixer to version 1.2.7
 - Update net/sdl_net to version 1.2.6
 - Update Mk/bsd.sdl.mk accordingly
 - Fix dependent ports to fit the new directory structure and avoid several
   API breakages
 - Bump up portrevisions for all dependent ports to allow them to be upgraded
   by portupgrade/portmaster etc tools

Approved by:    kris (portmgr), sem (mentor)
2006-09-20 11:21:59 +00:00

108 lines
2.5 KiB
Makefile

# ex:ts=8
# Ports collection makefile for: mhWaveEdit
# Date created: Apr 19, 2002
# Whom: ijliao
#
# $FreeBSD$
#
PORTNAME= mhwaveedit
PORTVERSION= 1.4.9
PORTREVISION= 1
CATEGORIES= audio
MASTER_SITES= http://download.gna.org/mhwaveedit/
MAINTAINER= ports@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
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-patch:
@${REINPLACE_CMD} -e 's|^AM_CFLAGS=|#AM_CFLAGS=|g ; \
s|-ldl||g' ${WRKSRC}/configure
.include <bsd.port.post.mk>