freebsd-ports/audio/py-fmoo-audiotools/Makefile
Jason E. Hale 656577b723 Update sysutils/libcdio to 2.0.0
- Add regression tests

Update multimedia/vcdimager to 2.0.1
- Previous version is incompatible with new libcdio API; update was neccesary
- Add regression tests
- Fix LICENSE
- Sort pkg-plist
- Update WWW in pkg-descr

Bump PORTREVISON on dependent ports due to libcdio shared libary increase

Changes (libcdio):	http://git.savannah.gnu.org/cgit/libcdio.git/plain/NEWS?h=release-2.0.0
Changes (vcdimager):	https://github.com/rocky/vcdimager/blob/3b56705/NEWS
Differential Revision:	https://reviews.freebsd.org/D14469
2018-04-05 20:13:33 +00:00

83 lines
2.5 KiB
Makefile

# $FreeBSD$
PORTNAME= fmoo-audiotools
PORTVERSION= 3.0
PORTREVISION= 2
CATEGORIES= audio python
MASTER_SITES= SF/audiotools/audiotools
DISTNAME= audiotools-${PORTVERSION}
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= ryu0@ymail.com
COMMENT= Collection of command line audio handling utilities
LICENSE= GPLv2
LICENSE_FILE= ${WRKSRC}/COPYING
USES= pkgconfig python
USE_PYTHON= autoplist concurrent distutils
OPTIONS_DEFINE= CDIO LAME MPG123 OPUS TWOLAME VORBIS
OPTIONS_DEFAULT=CDIO MPG123 OPUS TWOLAME VORBIS
CDIO_LIB_DEPENDS= libcdio_cdda.so:sysutils/libcdio-paranoia
LAME_LIB_DEPENDS= libmp3lame.so:audio/lame
MPG123_LIB_DEPENDS= libmpg123.so:audio/mpg123
OPUS_LIB_DEPENDS= libopusfile.so:audio/opusfile
TWOLAME_LIB_DEPENDS= libtwolame.so:audio/twolame
VORBIS_LIB_DEPENDS= libvorbisenc.so:audio/libvorbis
CPPFLAGS+= -I${LOCALBASE}/include
.include <bsd.port.options.mk>
post-configure:
@${ECHO_CMD} '[Libraries]' > ${WRKSRC}/setup.cfg
@${ECHO_CMD} 'alsa: no' >> ${WRKSRC}/setup.cfg
@${ECHO_CMD} 'libdvd-audio: no' >> ${WRKSRC}/setup.cfg
@${ECHO_CMD} 'libpulse: no' >> ${WRKSRC}/setup.cfg
.if ${PORT_OPTIONS:MCDIO}
@${ECHO_CMD} 'libcdio_paranoia: probe' >> ${WRKSRC}/setup.cfg
.else
@${ECHO_CMD} 'libcdio_paranoia: no' >> ${WRKSRC}/setup.cfg
.endif
.if ${PORT_OPTIONS:MLAME}
@${ECHO_CMD} 'mp3lame: probe' >> ${WRKSRC}/setup.cfg
.else
@${ECHO_CMD} 'mp3lame: no' >> ${WRKSRC}/setup.cfg
.endif
.if ${PORT_OPTIONS:MMPG123}
@${ECHO_CMD} 'libmpg123: probe' >> ${WRKSRC}/setup.cfg
.else
@${ECHO_CMD} 'libmpg123: no' >> ${WRKSRC}/setup.cfg
.endif
.if ${PORT_OPTIONS:MOPUS}
@${ECHO_CMD} 'opus: probe' >> ${WRKSRC}/setup.cfg
@${ECHO_CMD} 'opusfile: probe' >> ${WRKSRC}/setup.cfg
.else
@${ECHO_CMD} 'opus: no' >> ${WRKSRC}/setup.cfg
@${ECHO_CMD} 'opusfile: no' >> ${WRKSRC}/setup.cfg
.endif
.if ${PORT_OPTIONS:MTWOLAME}
@${ECHO_CMD} 'twolame: probe' >> ${WRKSRC}/setup.cfg
.else
@${ECHO_CMD} 'twolame: no' >> ${WRKSRC}/setup.cfg
.endif
.if ${PORT_OPTIONS:MVORBIS}
@${ECHO_CMD} 'vorbisenc: probe' >> ${WRKSRC}/setup.cfg
@${ECHO_CMD} 'vorbisfile: probe' >> ${WRKSRC}/setup.cfg
.else
@${ECHO_CMD} 'vorbisenc: no' >> ${WRKSRC}/setup.cfg
@${ECHO_CMD} 'vorbisfile: no' >> ${WRKSRC}/setup.cfg
.endif
post-install:
@${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/audiotools/*.so
.include <bsd.port.mk>