mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 01:39:16 -04:00
- Make Jack and FFTW support disabled by default: these beasts (being
packaged with default OPTIONS) pull way to many dependencies that most users would probably not appreciate in their systems - Disable CDRDAO by default since I believe fewer users would need it - Add LICENSE (GPLv2) and clean up Makefile a bit
This commit is contained in:
parent
1a59abafcf
commit
03fa6838a4
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=277412
1 changed files with 10 additions and 9 deletions
|
@ -14,26 +14,28 @@ MASTER_SITES= SF/${PORTNAME}/ReZound/${DISTVERSION}
|
||||||
MAINTAINER= danfe@FreeBSD.org
|
MAINTAINER= danfe@FreeBSD.org
|
||||||
COMMENT= Graphical audio file editor
|
COMMENT= Graphical audio file editor
|
||||||
|
|
||||||
|
LICENSE= GPLv2
|
||||||
|
|
||||||
LIB_DEPENDS= FOX-1.4:${PORTSDIR}/x11-toolkits/fox14
|
LIB_DEPENDS= FOX-1.4:${PORTSDIR}/x11-toolkits/fox14
|
||||||
|
|
||||||
USE_BISON= build
|
USE_BISON= build
|
||||||
GNU_CONFIGURE= yes
|
GNU_CONFIGURE= yes
|
||||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" LDFLAGS="-L${LOCALBASE}/lib"
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" LDFLAGS="-L${LOCALBASE}/lib"
|
||||||
CONFIGURE_ARGS+= --disable-alsa
|
CONFIGURE_ARGS= --disable-alsa
|
||||||
|
|
||||||
OPTIONS= LARGEFILE "Enable 64-bit I/O support (not yet!)" off \
|
OPTIONS= LARGEFILE "Enable 64-bit I/O support (not yet!)" off \
|
||||||
JACK "Enable Jack audio server support" on \
|
JACK "Enable Jack audio server support" off \
|
||||||
AUDIOFILE "Enable Audio File Library support" on \
|
AUDIOFILE "Enable Audio File Library support" on \
|
||||||
PORTAUDIO "Enable PortAudio support" on \
|
PORTAUDIO "Enable PortAudio support" on \
|
||||||
OGG "Enable OGG support" on \
|
OGG "Enable OGG support" on \
|
||||||
VORBIS "Enable Vorbis support" on \
|
VORBIS "Enable Vorbis support" on \
|
||||||
FLAC "Enable FLAC support" on \
|
FLAC "Enable FLAC support" on \
|
||||||
FFTW "Enable FFTW support" on \
|
FFTW "Enable FFTW support" off \
|
||||||
SOUNDTOUCH "Enable SoundTouch features" on \
|
SOUNDTOUCH "Enable SoundTouch features" on \
|
||||||
LADSPA "Enable LADSPA plugin support" on \
|
LADSPA "Enable LADSPA plugin support" on \
|
||||||
LAME "Enable loading and saving MP3s" on \
|
LAME "Enable loading and saving MP3 files" on \
|
||||||
CDRDAO "Enable burning audio files to CD" on \
|
CDRDAO "Enable burning audio files to CD" off \
|
||||||
NLS "Enable National Language Support" on
|
NLS "Enable Native Language Support" on
|
||||||
|
|
||||||
.include <bsd.port.pre.mk>
|
.include <bsd.port.pre.mk>
|
||||||
|
|
||||||
|
@ -104,9 +106,8 @@ PLIST_SUB+= NLS="@comment "
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
post-patch: .SILENT
|
post-patch: .SILENT
|
||||||
${REINPLACE_CMD} -e '/atoll/d' ${WRKSRC}/config/platform/bsd.h
|
${REINPLACE_CMD} -E '/atoll|round|nearbyint/d' \
|
||||||
${REINPLACE_CMD} -e '/round/d' ${WRKSRC}/config/platform/bsd.h
|
${WRKSRC}/config/platform/bsd.h
|
||||||
${REINPLACE_CMD} -e '/nearbyint/d' ${WRKSRC}/config/platform/bsd.h
|
|
||||||
${REINPLACE_CMD} -E 's,(_nl_expand_alias \()\),\1...), ; \
|
${REINPLACE_CMD} -E 's,(_nl_expand_alias \()\),\1...), ; \
|
||||||
/^C(XX)?FLAGS=/d ; /CXXFLAGS="\$$CXXFLAGS -[gW]/d' \
|
/^C(XX)?FLAGS=/d ; /CXXFLAGS="\$$CXXFLAGS -[gW]/d' \
|
||||||
${WRKSRC}/configure
|
${WRKSRC}/configure
|
||||||
|
|
Loading…
Add table
Reference in a new issue