mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-30 05:40:06 +00:00
- When helper programs does not appear at compile time, the generated
script is broken. Therefore, disable helper program search at compile time and let it searches programs at runtime. - Helper programs can be installed via OPTIONS. Install madplay for MP3 as default. PR: ports/107386 (based on) Submitted by: Jonathan Liu <Net147 at hotmail.com> Approved by: maintainer via mail
This commit is contained in:
parent
ac2319576b
commit
804a6c180e
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=198423
@ -7,6 +7,7 @@
|
|||||||
|
|
||||||
PORTNAME= normalize
|
PORTNAME= normalize
|
||||||
PORTVERSION= 0.7.7
|
PORTVERSION= 0.7.7
|
||||||
|
PORTREVISION= 1
|
||||||
CATEGORIES= audio
|
CATEGORIES= audio
|
||||||
MASTER_SITES= http://download.savannah.gnu.org/releases/normalize/
|
MASTER_SITES= http://download.savannah.gnu.org/releases/normalize/
|
||||||
|
|
||||||
@ -16,16 +17,19 @@ COMMENT= A tool for adjusting the volume of wave/MP3 files to a standard level
|
|||||||
LIB_DEPENDS= mad.2:${PORTSDIR}/audio/libmad
|
LIB_DEPENDS= mad.2:${PORTSDIR}/audio/libmad
|
||||||
|
|
||||||
USE_BZIP2= yes
|
USE_BZIP2= yes
|
||||||
USE_GETOPT_LONG= yes
|
|
||||||
GNU_CONFIGURE= yes
|
GNU_CONFIGURE= yes
|
||||||
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
||||||
CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}"
|
CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}"
|
||||||
|
CONFIGURE_ARGS= --disable-helper-search
|
||||||
CPPFLAGS= -I${LOCALBASE}/include
|
CPPFLAGS= -I${LOCALBASE}/include
|
||||||
LDFLAGS= -L${LOCALBASE}/lib
|
LDFLAGS= -L${LOCALBASE}/lib
|
||||||
|
|
||||||
MAN1= normalize.1 normalize-mp3.1
|
MAN1= normalize.1 normalize-mp3.1
|
||||||
|
|
||||||
OPTIONS= XMMS "Build XMMS plugin" off
|
OPTIONS= XMMS "Build XMMS plugin" off \
|
||||||
|
MP3 "MP3 support" on \
|
||||||
|
OGG "OGG support" off \
|
||||||
|
FLAG "FLAC support" off
|
||||||
|
|
||||||
.include <bsd.port.pre.mk>
|
.include <bsd.port.pre.mk>
|
||||||
|
|
||||||
@ -34,10 +38,23 @@ LIB_DEPENDS+= xmms.4:${PORTSDIR}/multimedia/xmms
|
|||||||
PLIST_SUB+= XMMS=""
|
PLIST_SUB+= XMMS=""
|
||||||
PLIST_SUB+= X11BASE="${X11BASE}"
|
PLIST_SUB+= X11BASE="${X11BASE}"
|
||||||
.else
|
.else
|
||||||
CONFIGURE_ARGS= --disable-xmms
|
CONFIGURE_ARGS+=--disable-xmms
|
||||||
PLIST_SUB+= XMMS="@comment "
|
PLIST_SUB+= XMMS="@comment "
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
|
.if defined(WITH_MP3)
|
||||||
|
RUN_DEPENDS+= madplay:${PORTSDIR}/audio/madplay \
|
||||||
|
lame:${PORTSDIR}/audio/lame
|
||||||
|
.endif
|
||||||
|
|
||||||
|
.if defined(WITH_OGG)
|
||||||
|
RUN_DEPENDS+= oggdec:${PORTSDIR}/audio/vorbis-tools
|
||||||
|
.endif
|
||||||
|
|
||||||
|
.if defined(WITH_FLAC)
|
||||||
|
RUN_DEPENDS+= flac:${PORTSDIR}/audio/flac
|
||||||
|
.endif
|
||||||
|
|
||||||
.if !defined(WITHOUT_NLS)
|
.if !defined(WITHOUT_NLS)
|
||||||
USE_GETTEXT= yes
|
USE_GETTEXT= yes
|
||||||
PLIST_SUB+= NLS=""
|
PLIST_SUB+= NLS=""
|
||||||
|
Loading…
Reference in New Issue
Block a user