freebsd-ports/audio/libmp3splt/Makefile
Tijl Coosemans 15c4a5ecf3 Replace USE_AUTOTOOLS=libltdl with an ordinary LIB_DEPENDS in all ports.
There are only 60 such ports so there doesn't need to be a separate
keyword or USES for this.

Approved by:	portmgr (bapt)
2014-09-17 07:38:15 +00:00

87 lines
2.2 KiB
Makefile

# Created by: Anton Yuzhaninov <citrin@citrin.ru>
# $FreeBSD$
PORTNAME= libmp3splt
PORTVERSION= 0.8.2
PORTREVISION= 2
CATEGORIES= audio
MASTER_SITES= SF/mp3splt/${PORTNAME}/${PORTVERSION}
MAINTAINER= citrin@citrin.ru
COMMENT= Library for splitting of various audio files
LICENSE= GPLv2
LIB_DEPENDS= libltdl.so:${PORTSDIR}/devel/libltdl
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --disable-cutter --disable-doxygen_doc
USES= libtool pathfix pkgconfig
USE_LDCONFIG= yes
OPTIONS_MULTI= plugin
OPTIONS_MULTI_plugin= MAD VORBIS
OPTIONS_DEFINE= ID3 PCRE NLS
PCRE_DESC= PCRE support to set tags from input filename
OPTIONS_DEFAULT= MAD VORBIS ID3 PCRE NLS
PLUGIN_DIR= libmp3splt0
PLIST_DIRS= include/libmp3splt lib/${PLUGIN_DIR}
PLIST_FILES= include/libmp3splt/mp3splt.h include/libmp3splt/version.h lib/libmp3splt.a \
lib/libmp3splt.so lib/libmp3splt.so.0 lib/libmp3splt.so.0.0.8 \
libdata/pkgconfig/libmp3splt.pc
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MMAD}
LIB_DEPENDS+= libmad.so:${PORTSDIR}/audio/libmad
PLIST_FILES+= lib/${PLUGIN_DIR}/libsplt_mp3.a \
lib/${PLUGIN_DIR}/libsplt_mp3.so \
lib/${PLUGIN_DIR}/libsplt_mp3.so.0 \
lib/${PLUGIN_DIR}/libsplt_mp3.so.0.0.0
.else
CONFIGURE_ARGS+= --disable-mp3
.endif
.if ${PORT_OPTIONS:MVORBIS}
LIB_DEPENDS+= libogg.so:${PORTSDIR}/audio/libogg \
libvorbis.so:${PORTSDIR}/audio/libvorbis
PLIST_FILES+= lib/${PLUGIN_DIR}/libsplt_ogg.a \
lib/${PLUGIN_DIR}/libsplt_ogg.so \
lib/${PLUGIN_DIR}/libsplt_ogg.so.0 \
lib/${PLUGIN_DIR}/libsplt_ogg.so.0.0.0
.else
CONFIGURE_ARGS+= --disable-ogg
.endif
.if ${PORT_OPTIONS:MPCRE}
LIB_DEPENDS+= libpcre.so:${PORTSDIR}/devel/pcre
.else
CONFIGURE_ARGS+= --disable-pcre
.endif
.if ${PORT_OPTIONS:MID3}
LIB_DEPENDS+= libid3tag.so:${PORTSDIR}/audio/libid3tag
.else
CONFIGURE_ARGS+= --disable-id3tag
.endif
.if ${PORT_OPTIONS:MNLS}
USES+= gettext
LANGUAGES= de_DE cs es fr_FR hr
.for language in ${LANGUAGES}
PLIST_FILES+= share/locale/${language}/LC_MESSAGES/libmp3splt0.mo
.endfor
PLIST_FILES+= "@dirrmtry share/locale/de_DE/LC_MESSAGES"
PLIST_FILES+= "@dirrmtry share/locale/de_DE"
.else
CONFIGURE_ARGS+= --disable-nls
.endif
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
.include <bsd.port.mk>